From 3ef5a8e363fba50ba7d45ae88f64ed4560169939 Mon Sep 17 00:00:00 2001 From: Robert Forkel Date: Tue, 14 Nov 2023 12:39:23 +0100 Subject: [PATCH] towards new model --- .github/workflows/cldf-validation.yml | 29 + .gitignore | 73 +- .zenodo.json | 85 + CONTRIBUTORS.md | 20 + LICENSE | 408 + README.md | 31 +- cldf/.gitattributes | 1 + cldf/README.md | 124 + cldf/StructureDataset-metadata.json | 403 + cldf/codes.csv | 84 + cldf/data.csv | 13958 ++++++++ cldf/requirements.txt | 88 + cldf/societies.csv | 340 + cldf/sources.bib | 8403 +++++ cldf/variables.csv | 41 + cldfbench_binford.py | 9 + etc/README.md | 4 + map.png | Bin 0 -> 177618 bytes metadata.json | 8 + raw/README.md | 1 + raw/codes.csv | 109 + raw/data.csv | 13958 ++++++++ raw/societies.csv | 340 + raw/societies_mapping.csv | 340 + raw/sources.bib | 41602 ++++++++++++++++++++++++ raw/variables.csv | 41 + setup.cfg | 4 + setup.py | 22 + test.py | 3 + 29 files changed, 80463 insertions(+), 66 deletions(-) create mode 100644 .github/workflows/cldf-validation.yml create mode 100644 .zenodo.json create mode 100644 CONTRIBUTORS.md create mode 100644 LICENSE create mode 100644 cldf/.gitattributes create mode 100644 cldf/README.md create mode 100644 cldf/StructureDataset-metadata.json create mode 100644 cldf/codes.csv create mode 100644 cldf/data.csv create mode 100644 cldf/requirements.txt create mode 100644 cldf/societies.csv create mode 100644 cldf/sources.bib create mode 100644 cldf/variables.csv create mode 100644 cldfbench_binford.py create mode 100644 etc/README.md create mode 100644 map.png create mode 100644 metadata.json create mode 100644 raw/README.md create mode 100644 raw/codes.csv create mode 100644 raw/data.csv create mode 100644 raw/societies.csv create mode 100644 raw/societies_mapping.csv create mode 100644 raw/sources.bib create mode 100644 raw/variables.csv create mode 100644 setup.cfg create mode 100644 setup.py create mode 100644 test.py diff --git a/.github/workflows/cldf-validation.yml b/.github/workflows/cldf-validation.yml new file mode 100644 index 0000000..bfaa23e --- /dev/null +++ b/.github/workflows/cldf-validation.yml @@ -0,0 +1,29 @@ +name: CLDF-validation + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.10"] + + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install pytest-cldf + - name: Test with pytest + run: | + pytest --cldf-metadata=cldf/StructureDataset-metadata.json test.py diff --git a/.gitignore b/.gitignore index 68bc17f..868a5d3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ __pycache__/ # Distribution / packaging .Python +env/ build/ develop-eggs/ dist/ @@ -20,11 +21,9 @@ parts/ sdist/ var/ wheels/ -share/python-wheels/ *.egg-info/ .installed.cfg *.egg -MANIFEST # PyInstaller # Usually these files are written by a python script from a template @@ -39,17 +38,13 @@ pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ -.nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover -*.py,cover .hypothesis/ -.pytest_cache/ -cover/ # Translations *.mo @@ -58,8 +53,6 @@ cover/ # Django stuff: *.log local_settings.py -db.sqlite3 -db.sqlite3-journal # Flask stuff: instance/ @@ -72,61 +65,27 @@ instance/ docs/_build/ # PyBuilder -.pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints -# IPython -profile_default/ -ipython_config.py - # pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock - -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -#pdm.lock -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it -# in version control. -# https://pdm.fming.dev/#use-with-ide -.pdm.toml - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ - -# Celery stuff +.python-version + +# celery beat schedule file celerybeat-schedule -celerybeat.pid # SageMath parsed files *.sage.py -# Environments +# dotenv .env + +# virtualenv .venv -env/ venv/ ENV/ -env.bak/ -venv.bak/ # Spyder project settings .spyderproject @@ -140,21 +99,5 @@ venv.bak/ # mypy .mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ +.idea/ -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ diff --git a/.zenodo.json b/.zenodo.json new file mode 100644 index 0000000..8ea44a4 --- /dev/null +++ b/.zenodo.json @@ -0,0 +1,85 @@ +{ + "creators": [ + { + "name": "Lewis R. Binford" + } + ], + "contributors": [ + { + "name": "Kathryn R. Kirby", + "type": "Editor" + }, + { + "name": "Russell D. Gray", + "type": "Editor" + }, + { + "name": "Simon J. Greenhill", + "type": "Editor" + }, + { + "name": "Fiona M. Jordan", + "type": "Editor" + }, + { + "name": "Stephanie Gomes-Ng", + "type": "Editor" + }, + { + "name": "Hans-J\u00f6rg Bibiko", + "type": "Editor" + }, + { + "name": "Dami\u00e1n E. Blasi", + "type": "Editor" + }, + { + "name": "Carlos A. Botero", + "type": "Editor" + }, + { + "name": "Claire Bowern", + "type": "Editor" + }, + { + "name": "Carol R. Ember", + "type": "Editor" + }, + { + "name": "Dan Leehr", + "type": "Editor" + }, + { + "name": "Bobbi S. Low", + "type": "Editor" + }, + { + "name": "Joe McCarter", + "type": "Editor" + }, + { + "name": "William Divale", + "type": "Editor" + }, + { + "name": "Michael C. Gavin", + "type": "Editor" + } + ], + "communities": [ + { + "identifier": "dplace" + } + ], + "title": "D-PLACE dataset derived from Binford 2001 'Constructing Frames of Reference'", + "access_right": "open", + "keywords": [ + "cldf:StructureDataset", + "linguistics" + ], + "upload_type": "dataset", + "description": "

Cite the source of the dataset as:

\n\n
\n

Binford, L. 2001. Constructing Frames of Reference: An Analytical Method for Archaeological Theory Building Using Hunter-gatherer and Environmental Data Sets. University of California Press

\n
", + "license": { + "id": "CC-BY-NC-4.0" + } +} \ No newline at end of file diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..479c49c --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,20 @@ +# Contributors + +Name | GitHub user | Role +--- | --- | --- +Lewis R. Binford | | Author +Kathryn R. Kirby | | editor +Russell D. Gray | | editor +Simon J. Greenhill | | editor +Fiona M. Jordan | | editor +Stephanie Gomes-Ng | | editor +Hans-Jörg Bibiko | | editor +Damián E. Blasi | | editor +Carlos A. Botero | | editor +Claire Bowern | | editor +Carol R. Ember | | editor +Dan Leehr | | editor +Bobbi S. Low | | editor +Joe McCarter | | editor +William Divale | | editor +Michael C. Gavin | | editor diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9520d77 --- /dev/null +++ b/LICENSE @@ -0,0 +1,408 @@ +Attribution-NonCommercial 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-NonCommercial 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-NonCommercial 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. NonCommercial means not primarily intended for or directed towards + commercial advantage or monetary compensation. For purposes of + this Public License, the exchange of the Licensed Material for + other material subject to Copyright and Similar Rights by digital + file-sharing or similar means is NonCommercial provided there is + no payment of monetary compensation in connection with the + exchange. + + j. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + k. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + l. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part, for NonCommercial purposes only; and + + b. produce, reproduce, and Share Adapted Material for + NonCommercial purposes only. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties, including when + the Licensed Material is used other than for NonCommercial + purposes. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database for NonCommercial purposes + only; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + diff --git a/README.md b/README.md index 32da489..eab11f7 100644 --- a/README.md +++ b/README.md @@ -1 +1,30 @@ -# dplace-dataset-binford \ No newline at end of file +# D-PLACE dataset derived from Binford 2001 'Constructing Frames of Reference' + +[![CLDF validation](https://github.com/D-PLACE/dplace-dataset-binford/workflows/CLDF-validation/badge.svg)](https://github.com/D-PLACE/dplace-dataset-binford/actions?query=workflow%3ACLDF-validation) + +## How to cite + +If you use these data please cite +- the original source + > Binford, L. 2001. Constructing Frames of Reference: An Analytical Method for Archaeological Theory Building Using Hunter-gatherer and Environmental Data Sets. University of California Press +- the derived dataset using the DOI of the [particular released version](../../releases/) you were using + +## Description + + +The Binford Hunter-Gatherer dataset describes cultural practices for 339 hunter-gatherer groups. Approximately two-thirds of the societies described by Binford are also described in the Ethnographic Atlas. However, the Binford database includes a number of societies not in the Ethnographic Atlas, including many in Australia and northern North America. + +This dataset is licensed under a CC-BY-NC-4.0 license + + + + +![](map.png) + + + +## CLDF Datasets + +The following CLDF datasets are available in [cldf](cldf): + +- CLDF [StructureDataset](https://github.com/cldf/cldf/tree/master/modules/StructureDataset) at [cldf/StructureDataset-metadata.json](cldf/StructureDataset-metadata.json) \ No newline at end of file diff --git a/cldf/.gitattributes b/cldf/.gitattributes new file mode 100644 index 0000000..087aab7 --- /dev/null +++ b/cldf/.gitattributes @@ -0,0 +1 @@ +*.csv text eol=crlf \ No newline at end of file diff --git a/cldf/README.md b/cldf/README.md new file mode 100644 index 0000000..2465fc6 --- /dev/null +++ b/cldf/README.md @@ -0,0 +1,124 @@ + + +# StructureDataset D-PLACE dataset derived from Binford 2001 'Constructing Frames of Reference' + +**CLDF Metadata**: [StructureDataset-metadata.json](./StructureDataset-metadata.json) + +**Sources**: [sources.bib](./sources.bib) + +The Binford Hunter-Gatherer dataset describes cultural practices for 339 hunter-gatherer groups. Approximately two-thirds of the societies described by Binford are also described in the Ethnographic Atlas. However, the Binford database includes a number of societies not in the Ethnographic Atlas, including many in Australia and northern North America. + +property | value + --- | --- +[dc:bibliographicCitation](http://purl.org/dc/terms/bibliographicCitation) | Binford, L. 2001. Constructing Frames of Reference: An Analytical Method for Archaeological Theory Building Using Hunter-gatherer and Environmental Data Sets. University of California Press +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF StructureDataset](http://cldf.clld.org/v1.0/terms.rdf#StructureDataset) +[dc:license](http://purl.org/dc/terms/license) | https://creativecommons.org/licenses/by-nc/4.0/ +[dcat:accessURL](http://www.w3.org/ns/dcat#accessURL) | https://github.com/D-PLACE/dplace-dataset-binford +[prov:wasDerivedFrom](http://www.w3.org/ns/prov#wasDerivedFrom) |
  1. D-PLACE/dplace-dataset-binford 743a7dc
  2. Glottolog v4.8
+[prov:wasGeneratedBy](http://www.w3.org/ns/prov#wasGeneratedBy) |
  1. python: 3.10.12
  2. python-packages: requirements.txt
+[rdf:ID](http://www.w3.org/1999/02/22-rdf-syntax-ns#ID) | dplace-dataset-binford +[rdf:type](http://www.w3.org/1999/02/22-rdf-syntax-ns#type) | http://www.w3.org/ns/dcat#Distribution + + +## Table [data.csv](./data.csv) + +Values are coded datapoints, i.e. measurements of a variable for a society. + +**Note:** Missing data is signaled by an empty Value column. + +property | value + --- | --- +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF ValueTable](http://cldf.clld.org/v1.0/terms.rdf#ValueTable) +[dc:extent](http://purl.org/dc/terms/extent) | 13957 + + +### Columns + +Name/Property | Datatype | Description + --- | --- | --- +[ID](http://cldf.clld.org/v1.0/terms.rdf#id) | `string`
Regex: `[a-zA-Z0-9_\-]+` | Primary key +[Soc_ID](http://cldf.clld.org/v1.0/terms.rdf#languageReference) | `string` | References [societies.csv::ID](#table-societiescsv) +[Var_ID](http://cldf.clld.org/v1.0/terms.rdf#parameterReference) | `string` | References [variables.csv::ID](#table-variablescsv) +[Value](http://cldf.clld.org/v1.0/terms.rdf#value) | `string` | Values for categorical and ordinal variables reference the corresponding code via the Code_ID column. Values for continuous variables have the measured number in the Value column and an empty Code_ID. +[Code_ID](http://cldf.clld.org/v1.0/terms.rdf#codeReference) | `string` | References [codes.csv::ID](#table-codescsv) +[Comment](http://cldf.clld.org/v1.0/terms.rdf#comment) | `string` | +[Source](http://cldf.clld.org/v1.0/terms.rdf#source) | list of `string` (separated by `;`) | References [sources.bib::BibTeX-key](./sources.bib) +`sub_case` | `string` | More specific description of the population the data refer to in terms of society or area. +`year` | `string`
Regex: `-?[0-9]{1,4}(-[0-9]{4})?` | Focal year, i.e. the time period to which the data refer. +`source_coded_data` | `string` | The source of the coded data, which was aggregated in this dataset. +`admin_comment` | `string` | + +## Table [societies.csv](./societies.csv) + +We use the term “society” to refer to cultural groups. In most cases, a society can be understood to represent a group of people at a focal location with a shared language that differs from that of their neighbors. However, in some cases multiple societies share a language. + +property | value + --- | --- +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF LanguageTable](http://cldf.clld.org/v1.0/terms.rdf#LanguageTable) +[dc:extent](http://purl.org/dc/terms/extent) | 339 + + +### Columns + +Name/Property | Datatype | Description + --- | --- | --- +[ID](http://cldf.clld.org/v1.0/terms.rdf#id) | `string`
Regex: `[a-zA-Z0-9_\-]+` | Primary key +[Name](http://cldf.clld.org/v1.0/terms.rdf#name) | `string` | +[Latitude](http://cldf.clld.org/v1.0/terms.rdf#latitude) | `decimal`
≥ -90
≤ 90 | +[Longitude](http://cldf.clld.org/v1.0/terms.rdf#longitude) | `decimal`
≥ -180
≤ 180 | +[Glottocode](http://cldf.clld.org/v1.0/terms.rdf#glottocode) | `string`
Regex: `[a-z0-9]{4}[1-9][0-9]{3}` | +`Name_and_ID_in_source` | `string` | Society names identified as pejorative have been replaced with a preferred, English-language ethnonym. The name (and ID) as given in the source dataset is kept in this field. +`xd_id` | `string` | “cross-data-set” identifier, used to link societies present in different datasets, if they share a focal location. Note: If this field is empty, other fields such as Name, Glottocode, focal year and location may be used to identify societies across datasets if appropriate. +`alt_names_by_society` | list of `string` (separated by `; `) | A list of ‘alternate’ names for the society; includes, where available, one or more autonyms in the society’s own language, as well as other commonly encountered ethnonyms. +`main_focal_year` | `integer` | Focal year specifying the time period to which the data refer, given as number of years BCE - if negative - or CE. +`HRAF_name_ID` | `string` | Name(s) and ID(s) of the corresponding society in HRAF (the Human Relations Area Files) +`HRAF_ID` | `string` | ID of the corresponding society in HRAF +`origLat` | `decimal`
≥ -90
≤ 90 | Uncorrected latitude as given in the source. +`origLong` | `decimal`
≥ -270
≤ 180 | Uncorrected longitude as given in the source. +[comment](http://cldf.clld.org/v1.0/terms.rdf#comment) | `string` | +`glottocode_comment` | `string` | Comment on the Glottocode assignment. +`region` | `string` | World Geographical Scheme for Recording Plant Distributions level2 region + +## Table [variables.csv](./variables.csv) + +Variables are cultural features or practices, or environmental descriptors. + +property | value + --- | --- +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF ParameterTable](http://cldf.clld.org/v1.0/terms.rdf#ParameterTable) +[dc:extent](http://purl.org/dc/terms/extent) | 40 + + +### Columns + +Name/Property | Datatype | Description + --- | --- | --- +[ID](http://cldf.clld.org/v1.0/terms.rdf#id) | `string`
Regex: `[A-Za-z.0-9_]+([0-9]+)?` | Primary key +[Name](http://cldf.clld.org/v1.0/terms.rdf#name) | `string` | +[Description](http://cldf.clld.org/v1.0/terms.rdf#description) | `string` | +[ColumnSpec](http://cldf.clld.org/v1.0/terms.rdf#columnSpec) | `json` | +`category` | list of `string` (separated by `, `) | +`type` | `string`
Valid choices:
`Continuous` `Categorical` `Ordinal` | Variables may be categorical (and then must be accompanied by a list of possible ‘codes’, i.e. rows in Codetable. Variables can also be continuous (e.g. Population size) or ordinal. Ordinal variables are accompanied by a list of codes (like categorical variables). The order of codes is encoded as `ord` column in CodeTable. +`unit` | `string` | The unit of measurement +`source_comment` | `string` | A note about the source of this variable. +`changes` | `string` | Notes about how a variable may have been derived from the source. +[comment](http://cldf.clld.org/v1.0/terms.rdf#comment) | `string` | + +## Table [codes.csv](./codes.csv) + +property | value + --- | --- +[dc:conformsTo](http://purl.org/dc/terms/conformsTo) | [CLDF CodeTable](http://cldf.clld.org/v1.0/terms.rdf#CodeTable) +[dc:extent](http://purl.org/dc/terms/extent) | 83 + + +### Columns + +Name/Property | Datatype | Description + --- | --- | --- +[ID](http://cldf.clld.org/v1.0/terms.rdf#id) | `string`
Regex: `[a-zA-Z0-9_\-]+` | Primary key +[Var_ID](http://cldf.clld.org/v1.0/terms.rdf#parameterReference) | `string` | The parameter or variable the code belongs to.
References [variables.csv::ID](#table-variablescsv) +[Name](http://cldf.clld.org/v1.0/terms.rdf#name) | `string` | +[Description](http://cldf.clld.org/v1.0/terms.rdf#description) | `string` | +`ord` | `integer` | + diff --git a/cldf/StructureDataset-metadata.json b/cldf/StructureDataset-metadata.json new file mode 100644 index 0000000..ab0a885 --- /dev/null +++ b/cldf/StructureDataset-metadata.json @@ -0,0 +1,403 @@ +{ + "@context": [ + "http://www.w3.org/ns/csvw", + { + "@language": "en" + } + ], + "dc:bibliographicCitation": "Binford, L. 2001. Constructing Frames of Reference: An Analytical Method for Archaeological Theory Building Using Hunter-gatherer and Environmental Data Sets. University of California Press", + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#StructureDataset", + "dc:description": "The Binford Hunter-Gatherer dataset describes cultural practices for 339 hunter-gatherer groups. Approximately two-thirds of the societies described by Binford are also described in the Ethnographic Atlas. However, the Binford database includes a number of societies not in the Ethnographic Atlas, including many in Australia and northern North America.", + "dc:license": "https://creativecommons.org/licenses/by-nc/4.0/", + "dc:source": "sources.bib", + "dc:title": "D-PLACE dataset derived from Binford 2001 'Constructing Frames of Reference'", + "dcat:accessURL": "https://github.com/D-PLACE/dplace-dataset-binford", + "prov:wasDerivedFrom": [ + { + "rdf:about": "https://github.com/D-PLACE/dplace-dataset-binford", + "rdf:type": "prov:Entity", + "dc:created": "743a7dc", + "dc:title": "Repository" + }, + { + "rdf:about": "https://github.com/glottolog/glottolog", + "rdf:type": "prov:Entity", + "dc:created": "v4.8", + "dc:title": "Glottolog" + } + ], + "prov:wasGeneratedBy": [ + { + "dc:title": "python", + "dc:description": "3.10.12" + }, + { + "dc:title": "python-packages", + "dc:relation": "requirements.txt" + } + ], + "rdf:ID": "dplace-dataset-binford", + "rdf:type": "http://www.w3.org/ns/dcat#Distribution", + "tables": [ + { + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#ValueTable", + "dc:description": "Values are coded datapoints, i.e. measurements of a variable for a society.\n\n**Note:** Missing data is signaled by an empty Value column.", + "dc:extent": 13957, + "tableSchema": { + "columns": [ + { + "datatype": { + "base": "string", + "format": "[a-zA-Z0-9_\\-]+" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", + "required": true, + "name": "ID" + }, + { + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#languageReference", + "required": true, + "name": "Soc_ID" + }, + { + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#parameterReference", + "required": true, + "name": "Var_ID" + }, + { + "dc:description": "Values for categorical and ordinal variables reference the corresponding code via the Code_ID column. Values for continuous variables have the measured number in the Value column and an empty Code_ID.", + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#value", + "required": false, + "name": "Value" + }, + { + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#codeReference", + "required": false, + "name": "Code_ID" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#comment", + "required": false, + "name": "Comment" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#source", + "required": false, + "separator": ";", + "name": "Source" + }, + { + "dc:description": "More specific description of the population the data refer to in terms of society or area.", + "name": "sub_case" + }, + { + "dc:description": "Focal year, i.e. the time period to which the data refer.", + "datatype": { + "base": "string", + "format": "-?[0-9]{1,4}(-[0-9]{4})?" + }, + "name": "year" + }, + { + "dc:description": "The source of the coded data, which was aggregated in this dataset.", + "name": "source_coded_data" + }, + { + "name": "admin_comment" + } + ], + "foreignKeys": [ + { + "columnReference": [ + "Soc_ID" + ], + "reference": { + "resource": "societies.csv", + "columnReference": [ + "ID" + ] + } + }, + { + "columnReference": [ + "Var_ID" + ], + "reference": { + "resource": "variables.csv", + "columnReference": [ + "ID" + ] + } + }, + { + "columnReference": [ + "Code_ID" + ], + "reference": { + "resource": "codes.csv", + "columnReference": [ + "ID" + ] + } + } + ], + "primaryKey": [ + "ID" + ] + }, + "url": "data.csv" + }, + { + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#LanguageTable", + "dc:description": "We use the term \u201csociety\u201d to refer to cultural groups. In most cases, a society can be understood to represent a group of people at a focal location with a shared language that differs from that of their neighbors. However, in some cases multiple societies share a language.", + "dc:extent": 339, + "tableSchema": { + "columns": [ + { + "datatype": { + "base": "string", + "format": "[a-zA-Z0-9_\\-]+" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", + "required": true, + "name": "ID" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#name", + "required": false, + "name": "Name" + }, + { + "datatype": { + "base": "decimal", + "minimum": "-90", + "maximum": "90" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#latitude", + "required": false, + "name": "Latitude" + }, + { + "datatype": { + "base": "decimal", + "minimum": "-180", + "maximum": "180" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#longitude", + "required": false, + "name": "Longitude" + }, + { + "datatype": { + "base": "string", + "format": "[a-z0-9]{4}[1-9][0-9]{3}" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#glottocode", + "required": false, + "valueUrl": "http://glottolog.org/resource/languoid/id/{Glottocode}", + "name": "Glottocode" + }, + { + "dc:description": "Society names identified as pejorative have been replaced with a preferred, English-language ethnonym. The name (and ID) as given in the source dataset is kept in this field.", + "name": "Name_and_ID_in_source" + }, + { + "dc:description": "\u201ccross-data-set\u201d identifier, used to link societies present in different datasets, if they share a focal location. Note: If this field is empty, other fields such as Name, Glottocode, focal year and location may be used to identify societies across datasets if appropriate.", + "name": "xd_id" + }, + { + "dc:description": "A list of \u2018alternate\u2019 names for the society; includes, where available, one or more autonyms in the society\u2019s own language, as well as other commonly encountered ethnonyms.", + "separator": "; ", + "name": "alt_names_by_society" + }, + { + "dc:description": "Focal year specifying the time period to which the data refer, given as number of years BCE - if negative - or CE.", + "datatype": "integer", + "name": "main_focal_year" + }, + { + "dc:description": "Name(s) and ID(s) of the corresponding society in HRAF (the Human Relations Area Files)", + "name": "HRAF_name_ID" + }, + { + "dc:description": "ID of the corresponding society in HRAF", + "valueUrl": "https://ehrafworldcultures.yale.edu/cultures/{HRAF_ID}/description", + "name": "HRAF_ID" + }, + { + "dc:description": "Uncorrected latitude as given in the source.", + "datatype": { + "base": "decimal", + "minimum": "-90", + "maximum": "90" + }, + "name": "origLat" + }, + { + "dc:description": "Uncorrected longitude as given in the source.", + "datatype": { + "base": "decimal", + "minimum": "-270", + "maximum": "180" + }, + "name": "origLong" + }, + { + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#comment", + "name": "comment" + }, + { + "dc:description": "Comment on the Glottocode assignment.", + "name": "glottocode_comment" + }, + { + "dc:description": "World Geographical Scheme for Recording Plant Distributions level2 region", + "name": "region" + } + ], + "primaryKey": [ + "ID" + ] + }, + "url": "societies.csv" + }, + { + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#ParameterTable", + "dc:description": "Variables are cultural features or practices, or environmental descriptors.", + "dc:extent": 40, + "tableSchema": { + "columns": [ + { + "datatype": { + "base": "string", + "format": "[A-Za-z.0-9_]+([0-9]+)?" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", + "required": true, + "name": "ID" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#name", + "required": false, + "name": "Name" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#description", + "required": false, + "name": "Description" + }, + { + "datatype": "json", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#columnSpec", + "required": false, + "name": "ColumnSpec" + }, + { + "dc:description": "", + "separator": ", ", + "name": "category" + }, + { + "dc:description": "Variables may be categorical (and then must be accompanied by a list of possible \u2018codes\u2019, i.e. rows in Codetable. Variables can also be continuous (e.g. Population size) or ordinal. Ordinal variables are accompanied by a list of codes (like categorical variables). The order of codes is encoded as `ord` column in CodeTable.", + "datatype": { + "base": "string", + "format": "Continuous|Categorical|Ordinal" + }, + "name": "type" + }, + { + "dc:description": "The unit of measurement", + "name": "unit" + }, + { + "dc:description": "A note about the source of this variable.", + "name": "source_comment" + }, + { + "dc:description": "Notes about how a variable may have been derived from the source.", + "name": "changes" + }, + { + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#comment", + "name": "comment" + } + ], + "primaryKey": [ + "ID" + ] + }, + "url": "variables.csv" + }, + { + "dc:conformsTo": "http://cldf.clld.org/v1.0/terms.rdf#CodeTable", + "dc:extent": 83, + "tableSchema": { + "columns": [ + { + "datatype": { + "base": "string", + "format": "[a-zA-Z0-9_\\-]+" + }, + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#id", + "required": true, + "name": "ID" + }, + { + "dc:description": "The parameter or variable the code belongs to.", + "dc:extent": "singlevalued", + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#parameterReference", + "required": true, + "name": "Var_ID" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#name", + "required": false, + "name": "Name" + }, + { + "datatype": "string", + "propertyUrl": "http://cldf.clld.org/v1.0/terms.rdf#description", + "required": false, + "name": "Description" + }, + { + "datatype": "integer", + "name": "ord" + } + ], + "foreignKeys": [ + { + "columnReference": [ + "Var_ID" + ], + "reference": { + "resource": "variables.csv", + "columnReference": [ + "ID" + ] + } + } + ], + "primaryKey": [ + "ID" + ] + }, + "url": "codes.csv" + } + ] +} \ No newline at end of file diff --git a/cldf/codes.csv b/cldf/codes.csv new file mode 100644 index 0000000..1dfb690 --- /dev/null +++ b/cldf/codes.csv @@ -0,0 +1,84 @@ +ID,Var_ID,Name,Description,ord +B004-NA,B004,Missing data,Missing data,99 +B004-1,B004,Hunting,Majority of a group's nutritional intake comes from terrestrial animal resources,1 +B004-2,B004,Gathering,Majority of a group's nutritional intake comes from terrestrial plant resources,2 +B004-3,B004,Fishing (aquatic),Majority of a group's nutritional intake comes from aquatic resources,3 +B005-NA,B005,Missing data,Missing data,99 +B005-1,B005,Normal,"Normal HGF group: at time of contact, subsistence was based exclusively on hunting, gathering and/or fishing. No domesticated resources were exploited, except perhas the dog or plant substance such as tobacco.",1 +B005-2,B005,Suspect,"Suspect: altrough the group may be organized similarly to hunter-gatherer-fishers, some subsistence may come from exchanges with non-HGF groups",2 +B009-NA,B009,Missing data,Missing data,99 +B009-1,B009,Mobile,Group is mobile and moves entire population from camp to camp as they go about the subsistence round,1 +B009-2,B009,Sedentary,Group is completely sedentary or group moves into and out of a central location that is maintained for more than one year,2 +B017-NA,B017,Missing data,Missing data,99 +B017-1,B017,"Nuclear, monogamous",Independent nuclear families with monogamy,1 +B017-2,B017,"Nuclear, limited polygyny",Independent nuclear families with occasional or limited polygyny,2 +B017-3,B017,Polyandrous,Independent polyandrous families,3 +B017-4,B017,"Polygyny, atypical cowives pattern","Independent polygynous families, unusual co-wives pattern (either polygyny is preferentially sororal, with cowives in separate quarters or it is typically non-sororal, with cowives in same quarters",4 +B017-5,B017,"Polygyny, typical cowives pattern","Independent polygynous families, usual co-wives pattern (either polygyny is preferentially sororal, with cowives in same quarters, OR typically non-sororal, with cowives in separate quarters)",5 +B017-6,B017,Minimal extended,"Minimal extended or ""stem"" families, i.e., those consisting of only two related families of procreation (disregarding polygamous unions), particularly of adjacent generations",6 +B017-7,B017,Small extended,"Small extended families, i.e., those normally embracing the families of procreation of only one individual in the senior generation but of at least two in the next generation. Such families usually dissolve on the death of the head",7 +B017-8,B017,Large extended,"Large extended families, i.e., corporate aggregations of smaller family units occupying a single dwelling or a number of adjacent dwellings and normally embracing the families of procreation of at least two siblings or cousins in each of at least two adjacent generations",8 +B018-NA,B018,Missing data,Missing data,99 +B018-1,B018,Monogamous,Monogamous,1 +B018-2,B018,Limited polygyny,"Polygynous, with polygyny occasional or limited",2 +B018-3,B018,"Polygyny, sororal cohabit","Polygynous, with polygyny common and preferentially sororal, and co-wives not reported to occupy separate quarters",3 +B018-4,B018,"Polygyny, sororal separate","Polygynous, with polygyny common and preferentially sororal, and co-wives typically occupying separate quarters",4 +B018-5,B018,"Polygyny, non-sororal cohabit","Polygynous, with polygyny general and not reported to be preferentially sororal, and co-wives typically occupying separate quarters",5 +B018-6,B018,"Polygyny, non-sororal separate","Polygynous, with polygyny general and not reported to be preferentially sororal, and co-wives not reported to occupy separate quarters",6 +B018-7,B018,Polyandrous,Polyandrous,7 +B029-NA,B029,Missing data,Missing data,99 +B029-1,B029,Autonomous,"Local autonomy, senior male ""guidance""",1 +B029-2,B029,Local autonomy with leader,"Local autonomy with performance-based leadership, leaders are acknowledged",2 +B029-3,B029,Local autonomy with leader and council,Local autonomy with a formal council and a leader who assembles the council and has other group duties,3 +B029-4,B029,Regional leaders,Neighbourhoods of villages/settlements/large camps integrated into an overarching leadership and decision making organization,4 +B030-NA,B030,Missing data,Missing data,99 +B030-1,B030,"Autonomous, matrix of similar HG groups",Group is autonomous and exists in a matrix of similarly scaled hunter-gatherer systems,1 +B030-2,B030,"Autonomous, articulated to more complex HG group(s)",Group is autonomous but is articularted to a socially or politically more complex group of hunter-gatherers,2 +B030-3,B030,Articulated to a non-HG society,"Group exists in a culturally heterogeneous region and is articulated to a non-hunter gatherer society, either mutualistically or in a patron-client relationship",3 +B031-NA,B031,Missing data,Missing data,99 +B031-1,B031,Absence of distinctions,Absence of any significant class distinctions,1 +B031-2,B031,Wealth distinctions only,Wealth distinctions only,2 +B031-3,B031,Dual: hereditary aristocracy and lower class,Dual stratification into a hereditary aristocracy and a lower class of ordinary people,3 +B032-NA,B032,Missing data,Missing data,99 +B032-1,B032,No special prerogatives,No special prerogatives,1 +B032-2,B032,No subsistence relief; some assistants,"No relief from subsistence and no special dress prerogatives, but messengers as regular assistants",2 +B032-3,B032,No subsistence relief; some assistants and dress,"No relief from subsistence and only minor dress prerogatives, but both messengers and a talking chief or speaker for the leader",3 +B032-4,B032,Some subsistence relief,"Some regular relief from subsistence, in-kind contributions to the leader from the ""people,"" sometimes special roles for the leader's wife",4 +B032-5,B032,"Complete subsistence relief; assistants, distinctive dress","Complete relief from subsistence duties, more assistants, special roles associated with the leader, visible symbols associated with the office, perhaps a permanent ""guard,"" perhaps special marriage rules, and very distinctive clothing",5 +B033-NA,B033,Missing data,Missing data,99 +B033-1,B033,Absent,Absent,1 +B033-2,B033,Rarely used,Rarely used,2 +B033-3,B033,Commonly used,Commonly used,3 +B033-4,B033,Many convertible items,Many convertible items,4 +B034-NA,B034,Missing data,Missing data,99 +B034-1,B034,Absent,Absent,1 +B034-2,B034,Few (1-3),Few (1-3),2 +B034-3,B034,Moderate (4-7),Moderate (4-7),3 +B034-4,B034,Many (>= 8),Many (equal to or greater than 8),4 +B035-NA,B035,Missing data,Missing data,99 +B035-1,B035,Exogamous,Exogamous,1 +B035-2,B035,Exogamous clan,Exogamous clan,2 +B035-3,B035,Agamous,Agamous,3 +B035-4,B035,Endogamous demed,Endogamous demed,4 +B035-5,B035,Endogamous segmented,Endogamous segmented,5 +B036-NA,B036,Missing data,Missing data,99 +B036-1,B036,No permanent structures,No permanent community structures,1 +B036-2,B036,Host's residence,Rituals and ceremonies held in host's residence,2 +B036-3,B036,Sweat lodge,Sweat lodge,3 +B036-4,B036,Dance house,Dance house,4 +B036-5,B036,Dance or Men's house and Sweat lodge,"Dance house or men's house, and sweat house",5 +B036-6,B036,Functionally specific comm. house,Functionally specific community house,6 +B036-7,B036,Complex of structures,Complex of community structures present,7 +B037-NA,B037,Missing data,Missing data,99 +B037-1,B037,"No ownership, use rights recognized","No ownership reported, use rights recognized by others",1 +B037-2,B037,"Grp ownership, hh claim trees/similar features","Local group claims exclusive use rights over resource location, residential sites, while households may claim special trees and similar features of the landscape",2 +B037-3,B037,"Grp ownership, subgrps claim excl. access to resources","Local group claims for hunting areas, dominant animals, fishing sites, and animal drive locations, such claims administered by group leader, but smaller segments may claim exclusive access to resource locations",3 +B037-4,B037,Elite ownership,Elite ownership of land and resources,4 +B038-NA,B038,Missing data,Missing data,99 +B038-1,B038,Mounted hunters,Mounted hunters,1 +B038-2,B038,Agriculturalists,Agriculturalists,2 +B038-3,B038,Mutualists,Mutualists,3 +B038-4,B038,"Egalitarian, no leaders",Egalitarian but without leaders,4 +B038-5,B038,"Egalitarian, leaders",Egalitarian with leaders,5 +B038-6,B038,Ranked wealth,Ranked wealth,6 +B038-7,B038,Ranked elites,Ranked elites,7 diff --git a/cldf/data.csv b/cldf/data.csv new file mode 100644 index 0000000..b771f69 --- /dev/null +++ b/cldf/data.csv @@ -0,0 +1,13958 @@ +ID,Soc_ID,Var_ID,Value,Code_ID,Comment,Source,sub_case,year,source_coded_data,admin_comment +1,B1,B001,65,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_5.01, +2,B10,B001,65,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_5.01, +3,B100,B001,60,,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_5.01, +4,B101,B001,60,,,kaberry1939,,1934,Binford_2001_Table_5.01, +5,B102,B001,35,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_5.01, +6,B103,B001,13,,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_5.01, +7,B104,B001,55,,,,,,Binford_2001_Table_5.01, +8,B105,B001,68,,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_5.01, +9,B106,B001,55,,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_5.01, +10,B107,B001,24,,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_5.01, +11,B108,B001,65,,,kaberry1939;nind1831,,1934,Binford_2001_Table_5.01, +12,B109,B001,70,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_5.01, +13,B11,B001,82,,,morris1982a,,1972,Binford_2001_Table_5.01, +14,B110,B001,65,,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_5.01, +15,B111,B001,70,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01, +16,B112,B001,80,,,petersonandlong1986,,1968,Binford_2001_Table_5.01, +17,B113,B001,65,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_5.01, +18,B114,B001,20,,,colliverandwoolston1975,,1848,Binford_2001_Table_5.01, +19,B115,B001,55,,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_5.01, +20,B116,B001,65,,,duncankemp1964,,1900,Binford_2001_Table_5.01, +21,B117,B001,65,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_5.01, +22,B118,B001,75,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_5.01, +23,B119,B001,35,,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_5.01, +24,B12,B001,45,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_5.01, +25,B120,B001,65,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_5.01, +26,B121,B001,55,,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_5.01, +27,B122,B001,65,,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +28,B123,B001,65,,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_5.01, +29,B124,B001,55,,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_5.01, +30,B125,B001,45,,,parker1905,,1880,Binford_2001_Table_5.01, +31,B126,B001,50,,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_5.01, +32,B127,B001,55,,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +33,B128,B001,40,,,,,1890,Binford_2001_Table_5.01, +34,B129,B001,45,,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +35,B13,B001,35,,,rai1982;wastl1957,,1979,Binford_2001_Table_5.01, +36,B130,B001,40,,,,,1910,Binford_2001_Table_5.01, +37,B131,B001,45,,,,,1850,Binford_2001_Table_5.01, +38,B132,B001,40,,,nind1831,,1850,Binford_2001_Table_5.01, +39,B133,B001,35,,,williams1985,,1850,Binford_2001_Table_5.01, +40,B134,B001,35,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_5.01, +41,B135,B001,45,,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_5.01, +42,B136,B001,25,,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_5.01, +43,B137,B001,15,,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_5.01, +44,B14,B001,50,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_5.01, +45,B143,B001,30,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_5.01, +46,B144,B001,75,,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_5.01, +47,B145,B001,75,,,gifford1926b;strong1929a,,1870,Binford_2001_Table_5.01, +48,B146,B001,55,,,meigs1939,,1880,Binford_2001_Table_5.01, +49,B147,B001,55,,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_5.01, +50,B148,B001,50,,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_5.01, +51,B149,B001,60,,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_5.01, +52,B15,B001,85,,,furerhaimendorf1943b,,1940,Binford_2001_Table_5.01, +53,B150,B001,60,,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_5.01, +54,B151,B001,45,,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_5.01, +55,B152,B001,50,,,voegelin1938,,1850,Binford_2001_Table_5.01, +56,B153,B001,60,,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_5.01, +57,B154,B001,50,,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_5.01, +58,B155,B001,50,,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_5.01, +59,B156,B001,40,,,,,1770,Binford_2001_Table_5.01, +60,B157,B001,50,,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_5.01, +61,B158,B001,60,,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +62,B159,B001,65,,,cook1956;gifford1926a,,1860,Binford_2001_Table_5.01, +63,B16,B001,75,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_5.01, +64,B160,B001,35,,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_5.01, +65,B161,B001,25,,,cookandheizer1965,,1860,Binford_2001_Table_5.01, +66,B162,B001,30,,,dixon1910,,1860,Binford_2001_Table_5.01, +67,B163,B001,50,,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_5.01, +68,B164,B001,50,,,gifford1926b,,1805,Binford_2001_Table_5.01, +69,B165,B001,45,,,barrett1908;cook1956,,1860,Binford_2001_Table_5.01, +70,B166,B001,40,,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_5.01, +71,B167,B001,45,,,,,,Binford_2001_Table_5.01, +72,B168,B001,40,,,collierandthalman1991,,1850,Binford_2001_Table_5.01, +73,B169,B001,40,,,cook1956;nomland1938,,,Binford_2001_Table_5.01, +74,B17,B001,85,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_5.01, +75,B170,B001,60,,,cook1955,,,Binford_2001_Table_5.01, +76,B171,B001,50,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_5.01, +77,B172,B001,55,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_5.01, +78,B173,B001,50,,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +79,B174,B001,45,,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +80,B175,B001,55,,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_5.01, +81,B176,B001,35,,,gray1987,,1860,Binford_2001_Table_5.01, +82,B177,B001,25,,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +83,B178,B001,25,,,cook1956;drucker1940,,1870,Binford_2001_Table_5.01, +84,B179,B001,45,,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_5.01, +85,B18,B001,65,,,senandsen1955;williams1974,,1963,Binford_2001_Table_5.01, +86,B180,B001,35,,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_5.01, +87,B181,B001,10,,,gray1987,,1870,Binford_2001_Table_5.01, +88,B182,B001,35,,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_5.01, +89,B183,B001,35,,,gifford1926b,,1860,Binford_2001_Table_5.01, +90,B184,B001,30,,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_5.01, +91,B185,B001,50,,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_5.01, +92,B186,B001,20,,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_5.01, +93,B187,B001,30,,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_5.01, +94,B188,B001,45,,,gifford1926b;ray1963,,1860,Binford_2001_Table_5.01, +95,B189,B001,30,,,gifford1926b;spier1930,,1860,Binford_2001_Table_5.01, +96,B19,B001,90,,,ehrenfels1952,,1946,Binford_2001_Table_5.01, +97,B190,B001,70,,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_5.01, +98,B191,B001,65,,,,,1570,Binford_2001_Table_5.01, +99,B192,B001,75,,,smith1978a;steward1938,,1860,Binford_2001_Table_5.01, +100,B193,B001,30,,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_5.01, +101,B194,B001,65,,,,,1715,Binford_2001_Table_5.01, +102,B195,B001,65,,,steward1938,,1850,Binford_2001_Table_5.01, +103,B196,B001,60,,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_5.01, +104,B197,B001,60,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +105,B198,B001,65,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_5.01, +106,B199,B001,60,,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_5.01, +107,B2,B001,65,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_5.01, +108,B20,B001,75,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_5.01, +109,B200,B001,60,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +110,B201,B001,50,,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +111,B202,B001,65,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_5.01, +112,B203,B001,55,,,steward1938;thomas1983,,1860,Binford_2001_Table_5.01, +113,B204,B001,60,,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_5.01, +114,B205,B001,48,,,davis1965,,1870,Binford_2001_Table_5.01, +115,B206,B001,55,,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_5.01, +116,B207,B001,30,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +117,B208,B001,50,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_5.01, +118,B209,B001,40,,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_5.01, +119,B21,B001,90,,,bird1983;birddavid1987,,1978,Binford_2001_Table_5.01, +120,B210,B001,50,,,fowler1992,,1870,Binford_2001_Table_5.01, +121,B211,B001,50,,,steward1938,,1860,Binford_2001_Table_5.01, +122,B212,B001,40,,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +123,B213,B001,45,,,steward1938,,1870,Binford_2001_Table_5.01, +124,B214,B001,50,,,steward1938,,1860,Binford_2001_Table_5.01, +125,B215,B001,45,,,steward1938,,1870,Binford_2001_Table_5.01, +126,B216,B001,40,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_5.01, +127,B217,B001,55,,,steward1938,,1860,Binford_2001_Table_5.01, +128,B218,B001,45,,,steward1938,,1860,Binford_2001_Table_5.01, +129,B219,B001,40,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_5.01, +130,B22,B001,10,,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_5.01, +131,B221,B001,40,,,steward1938,,1860,Binford_2001_Table_5.01, +132,B222,B001,35,,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_5.01, +133,B223,B001,45,,,lowie1924,,1870,Binford_2001_Table_5.01, +134,B224,B001,50,,,steward1938,,1860,Binford_2001_Table_5.01, +135,B225,B001,48,,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_5.01, +136,B226,B001,50,,,brink1969;kelly1932,,1870,Binford_2001_Table_5.01, +137,B227,B001,20,,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_5.01, +138,B228,B001,55,,,steward1938,,1860,Binford_2001_Table_5.01, +139,B229,B001,30,,,steward1938,,1860,Binford_2001_Table_5.01, +140,B23,B001,10,,,qiu1983,,1900,Binford_2001_Table_5.01, +141,B230,B001,40,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_5.01, +142,B231,B001,45,,,whiting1950,,1870,Binford_2001_Table_5.01, +143,B232,B001,20,,,boas1899;steward1938,,1860,Binford_2001_Table_5.01, +144,B233,B001,45,,,steward1938,,1860,Binford_2001_Table_5.01, +145,B234,B001,35,,,boas1899;steward1974b,,1860,Binford_2001_Table_5.01, +146,B24,B001,5,,,lee1967;shimkin1939,,1900,Binford_2001_Table_5.01, +147,B240,B001,60,,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_5.01, +148,B241,B001,20,,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_5.01, +149,B242,B001,60,,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_5.01, +150,B243,B001,20,,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_5.01, +151,B244,B001,10,,,bamforth1988;ewers1955,,1860,Binford_2001_Table_5.01, +152,B245,B001,15,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_5.01, +153,B246,B001,20,,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_5.01, +154,B248,B001,20,,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_5.01, +155,B249,B001,10,,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_5.01, +156,B25,B001,3,,,shternberg1933,,1920,Binford_2001_Table_5.01, +157,B250,B001,15,,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_5.01, +158,B252,B001,30,,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +159,B253,B001,20,,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_5.01, +160,B254,B001,10,,,skinner1914,,1850,Binford_2001_Table_5.01, +161,B255,B001,20,,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_5.01, +162,B256,B001,20,,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_5.01, +163,B257,B001,20,,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +164,B258,B001,10,,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_5.01, +165,B259,B001,10,,,bamforth1988;ewers1955,,1850,Binford_2001_Table_5.01, +166,B26,B001,5,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_5.01, +167,B260,B001,10,,,bamforth1988;jenness1938,,1880,Binford_2001_Table_5.01, +168,B268,B001,15,,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_5.01, +169,B269,B001,10,,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +170,B27,B001,1,,,chard1963;popov1966,,1933,Binford_2001_Table_5.01, +171,B270,B001,15,,,smith1940a;smith1940b,,1870,Binford_2001_Table_5.01, +172,B271,B001,10,,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_5.01, +173,B272,B001,15,,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_5.01, +174,B273,B001,5,,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_5.01, +175,B274,B001,15,,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_5.01, +176,B275,B001,10,,,boyd1990;zenk1990,,1860,Binford_2001_Table_5.01, +177,B276,B001,10,,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_5.01, +178,B277,B001,10,,,stern1934,,1880,Binford_2001_Table_5.01, +179,B278,B001,10,,,olson1936a;schalk1978,,1860,Binford_2001_Table_5.01, +180,B279,B001,10,,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_5.01, +181,B28,B001,1,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_5.01, +182,B280,B001,10,,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_5.01, +183,B281,B001,30,,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_5.01, +184,B282,B001,10,,,kennedyandbouchard1990,,1860,Binford_2001_Table_5.01, +185,B283,B001,10,,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_5.01, +186,B284,B001,10,,,pettitt1950,,1880,Binford_2001_Table_5.01, +187,B285,B001,10,,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_5.01, +188,B286,B001,10,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_5.01, +189,B287,B001,10,,,olson1940;schalk1978,,1880,Binford_2001_Table_5.01, +190,B288,B001,5,,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +191,B289,B001,5,,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_5.01, +192,B290,B001,1,,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +193,B291,B001,5,,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_5.01, +194,B292,B001,1,,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_5.01, +195,B293,B001,1,,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_5.01, +196,B294,B001,1,,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_5.01, +197,B295,B001,0.01,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_5.01, +198,B296,B001,5,,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_5.01, +199,B297,B001,0.01,,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_5.01, +200,B298,B001,1,,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_5.01, +201,B299,B001,1,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_5.01, +202,B3,B001,70,,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_5.01, +203,B315,B001,30,,,murdock1980,,1850,Binford_2001_Table_5.01, +204,B316,B001,30,,,,,1860,Binford_2001_Table_5.01, +205,B317,B001,20,,,teit1928,,1870,Binford_2001_Table_5.01, +206,B318,B001,30,,,,,1880,Binford_2001_Table_5.01, +207,B319,B001,25,,,spierandsapir1930,,1860,Binford_2001_Table_5.01, +208,B320,B001,20,,,teit1930,,1860,Binford_2001_Table_5.01, +209,B321,B001,15,,,clineetal1938,,1880,Binford_2001_Table_5.01, +210,B322,B001,25,,,grabert1974;teit1930,,1860,Binford_2001_Table_5.01, +211,B323,B001,25,,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_5.01, +212,B324,B001,33,,,spinden1908,,1850,Binford_2001_Table_5.01, +213,B325,B001,20,,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_5.01, +214,B326,B001,20,,,teit1930,,1870,Binford_2001_Table_5.01, +215,B327,B001,15,,,jenness1935;quimby1962,,1870,Binford_2001_Table_5.01, +216,B328,B001,15,,,kinietz1947,,1800,Binford_2001_Table_5.01, +217,B329,B001,10,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_5.01, +218,B330,B001,20,,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_5.01, +219,B331,B001,10,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_5.01, +220,B332,B001,5,,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_5.01, +221,B333,B001,15,,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_5.01, +222,B334,B001,10,,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_5.01, +223,B335,B001,15,,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_5.01, +224,B336,B001,10,,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_5.01, +225,B337,B001,10,,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_5.01, +226,B338,B001,0.9,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_5.01, +227,B339,B001,5,,,dunning1959;rogers1969,,1850,Binford_2001_Table_5.01, +228,B340,B001,5,,,morantz1983;rogers1969,,1900,Binford_2001_Table_5.01, +229,B341,B001,10,,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_5.01, +230,B342,B001,10,,,lane1952;tanner1944,,1880,Binford_2001_Table_5.01, +231,B343,B001,10,,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_5.01, +232,B344,B001,10,,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_5.01, +233,B345,B001,10,,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_5.01, +234,B346,B001,10,,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_5.01, +235,B347,B001,10,,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_5.01, +236,B348,B001,10,,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +237,B349,B001,10,,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_5.01, +238,B35,B001,30,,,,,1950,Binford_2001_Table_5.01, +239,B350,B001,10,,,gillespie1981,,1800,Binford_2001_Table_5.01, +240,B351,B001,10,,,adney1900;crowandobley1981,,1880,Binford_2001_Table_5.01, +241,B352,B001,10,,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_5.01, +242,B353,B001,5,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_5.01, +243,B354,B001,5,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_5.01, +244,B355,B001,5,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_5.01, +245,B356,B001,2,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_5.01, +246,B357,B001,2,,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_5.01, +247,B358,B001,3,,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_5.01, +248,B359,B001,3,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_5.01, +249,B36,B001,60,,,metraux1948,,1960,Binford_2001_Table_5.01, +250,B360,B001,3,,,morantz1983;skinner1911,,1900,Binford_2001_Table_5.01, +251,B361,B001,3,,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_5.01, +252,B362,B001,3,,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_5.01, +253,B363,B001,2,,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_5.01, +254,B364,B001,2,,,michael1967;snow1981,,1860,Binford_2001_Table_5.01, +255,B365,B001,1,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_5.01, +256,B369,B001,1,,,ray1992;seltzer1933,,1870,Binford_2001_Table_5.01, +257,B37,B001,55,,,kloos1977;kloos1982,,1968,Binford_2001_Table_5.01, +258,B370,B001,1,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_5.01, +259,B371,B001,1,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_5.01, +260,B372,B001,0.01,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_5.01, +261,B373,B001,0.1,,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_5.01, +262,B374,B001,0.1,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_5.01, +263,B375,B001,0.1,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_5.01, +264,B377,B001,0.1,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_5.01, +265,B378,B001,0.1,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_5.01, +266,B379,B001,0.1,,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_5.01, +267,B38,B001,41,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_5.01, +268,B380,B001,0.01,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_5.01, +269,B381,B001,0.01,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_5.01, +270,B382,B001,0.01,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_5.01, +271,B383,B001,0.01,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_5.01, +272,B384,B001,0.01,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_5.01, +273,B385,B001,0.01,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_5.01, +274,B386,B001,0.01,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_5.01, +275,B387,B001,0.01,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_5.01, +276,B388,B001,0.01,,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_5.01, +277,B389,B001,0.01,,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_5.01, +278,B39,B001,60,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_5.01, +279,B390,B001,0.01,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_5.01, +280,B4,B001,50,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_5.01, +281,B40,B001,76,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_5.01, +282,B41,B001,70,,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_5.01, +283,B42,B001,20,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_5.01, +284,B43,B001,45,,,holmberg1950,,1940,Binford_2001_Table_5.01, +285,B44,B001,35,,,stearman1989,,1968,Binford_2001_Table_5.01, +286,B45,B001,75,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_5.01, +287,B46,B001,25,,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_5.01, +288,B47,B001,30,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01, +289,B48,B001,60,,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_5.01, +290,B49,B001,55,,,kozaketal1979,,1954,Binford_2001_Table_5.01, +291,B5,B001,35,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_5.01, +292,B50,B001,35,,,henry1964,,1910,Binford_2001_Table_5.01, +293,B51,B001,30,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_5.01, +294,B52,B001,5,,,cooper1946d,,1880,Binford_2001_Table_5.01, +295,B53,B001,5,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_5.01, +296,B54,B001,5,,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_5.01, +297,B55,B001,5,,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_5.01, +298,B6,B001,50,,,temple1903,,1906,Binford_2001_Table_5.01, +299,B60,B001,79.5,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_5.01, +300,B61,B001,90.3,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_5.01, +301,B62,B001,85,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_5.01, +302,B63,B001,85,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_5.01, +303,B64,B001,88.2,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_5.01, +304,B65,B001,90,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_5.01, +305,B66,B001,85,,,kellyandpoyer1993,,,Binford_2001_Table_5.01, +306,B67,B001,60,,,clark1951,,1950,Binford_2001_Table_5.01, +307,B68,B001,55,,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_5.01, +308,B69,B001,60,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_5.01, +309,B7,B001,87,,,fox1952;reed1904,,1903,Binford_2001_Table_5.01, +310,B70,B001,45,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_5.01, +311,B71,B001,65,,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_5.01, +312,B72,B001,67,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_5.01, +313,B73,B001,67,,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_5.01, +314,B74,B001,55,,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_5.01, +315,B75,B001,55,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_5.01, +316,B76,B001,55,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_5.01, +317,B77,B001,52,,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_5.01, +318,B78,B001,40,,,potgieter1955;toerien1958,,1950,Binford_2001_Table_5.01, +319,B79,B001,70,,,bleek1924a,,,Binford_2001_Table_5.01, +320,B8,B001,60,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_5.01, +321,B82,B001,35,,,moore1979,,1848,Binford_2001_Table_5.01, +322,B83,B001,20,,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +323,B84,B001,40,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_5.01, +324,B85,B001,40,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_5.01, +325,B86,B001,35,,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_5.01, +326,B87,B001,35,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_5.01, +327,B88,B001,55,,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_5.01, +328,B89,B001,60,,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_5.01, +329,B9,B001,50,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_5.01, +330,B90,B001,50,,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_5.01, +331,B91,B001,55,,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_5.01, +332,B92,B001,30,,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_5.01, +333,B93,B001,20,,,thomson1933;thomson1934,,1930,Binford_2001_Table_5.01, +334,B94,B001,65,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_5.01, +335,B95,B001,40,,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_5.01, +336,B96,B001,35,,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_5.01, +337,B97,B001,30,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_5.01, +338,B98,B001,25,,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_5.01, +339,B99,B001,30,,,stanner1933,,1900,Binford_2001_Table_5.01, +340,B1,B010,22,,,sellato1994[143-44],,1970,Binford_2001_Tables_5.01_and_8.01, +341,B10,B010,14,,,"bailey1863[296, 308];seligmannandseligmann1911[43-44]",,1900,Binford_2001_Tables_5.01_and_8.01, +342,B100,B010,18,,,blundell1980[106-7];love1936[93],,,Binford_2001_Tables_5.01_and_8.01, +343,B101,B010,,,,,,,, +344,B102,B010,,,,,,,, +345,B103,B010,15.4,,,tindale1962a[269],,1928,Binford_2001_Tables_5.01_and_8.01, +346,B104,B010,,,,,,,, +347,B105,B010,20,,,harris1978[128],,1900,Binford_2001_Tables_5.01_and_8.01, +348,B106,B010,11,,,radcliffebrown1912[146],,1910,Binford_2001_Tables_5.01_and_8.01, +349,B107,B010,19,,"Note, Binford Table 5.01 lists '9', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",brayshaw1990[31];lumholtz1889[194],,1870,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '9', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +350,B108,B010,16,,,nind1831[22],,1934,Binford_2001_Tables_5.01_and_8.01, +351,B109,B010,9,,,"meggitt1962[47, 50, 56]",,1965,Binford_2001_Tables_5.01_and_8.01, +352,B11,B010,10,,,"morris1982a[36-37, 174]",,1972,Binford_2001_Tables_5.01_and_8.01, +353,B110,B010,8,,,petersonandlong1986[116-17];tonkinson1978[53],,1880,Binford_2001_Tables_5.01_and_8.01, +354,B111,B010,16,,"Note, Binford Table 5.01 lists '8', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",harris1978[128],,1960,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '8', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +355,B112,B010,11.5,,,"petersonandlong1986[112-15, 124]",,1968,Binford_2001_Tables_5.01_and_8.01, +356,B113,B010,8.5,,,long1971[264-65];meggitt1962[55];petersonandlong1986[104-11],,1936,Binford_2001_Tables_5.01_and_8.01, +357,B114,B010,,,,,,,, +358,B115,B010,20,,,morwood1987[339];winterbotham1980[41],,1840,Binford_2001_Tables_5.01_and_8.01, +359,B116,B010,,,,,,,, +360,B117,B010,16,,"Note, Binford Table 5.01 lists '10', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",binfordfieldnotes1974;denham1975[120];oconnell1987[85],,1965,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '10', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +361,B118,B010,11,,,gould1977[21-22],,1968,Binford_2001_Tables_5.01_and_8.01, +362,B119,B010,14,,,gardner1978[239-46],,1850,Binford_2001_Tables_5.01_and_8.01, +363,B12,B010,17,,,headlandperscomm1993,,1965,Binford_2001_Tables_5.01_and_8.01, +364,B120,B010,10,,,"brokensha1975[19, 33];layton1983[26];petersonandlong1986[127];tindale1972[224, 244]",,1968,Binford_2001_Tables_5.01_and_8.01, +365,B121,B010,7,,"Note, Binford Table 5.01 lists '6.7', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.","gason1879[257, 264];sturt1849a[1:254, 261, 296, 316, 407, 414];sturt1849a[2:70, 74]",,1900,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '6.7', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +366,B122,B010,,,,,,,, +367,B123,B010,9.5,,,tindaleperscomm1965,,1922,Binford_2001_Tables_5.01_and_8.01, +368,B124,B010,9.6,,,"spencerandgillen1927[15, 506]",,1900,Binford_2001_Tables_5.01_and_8.01, +369,B125,B010,,,,,,,, +370,B126,B010,10.6,,,petersonandlong1986[129-34],,1912,Binford_2001_Tables_5.01_and_8.01, +371,B127,B010,,,,,,,, +372,B128,B010,,,,,,,, +373,B129,B010,,,,,,,, +374,B13,B010,12,,,"rai1982[63, 66, 119]",,1979,Binford_2001_Tables_5.01_and_8.01, +375,B130,B010,,,,,,,, +376,B131,B010,,,,,,,, +377,B132,B010,9,,,nind1831[28],,1850,Binford_2001_Tables_5.01_and_8.01, +378,B133,B010,25,,,williams1985[75],,1850,Binford_2001_Tables_5.01_and_8.01, +379,B134,B010,7.3,,,"gaughwinandsullivan1984[92, 94]",,1850,Binford_2001_Tables_5.01_and_8.01, +380,B135,B010,10,,,fisonandhowitt1880[209];howitt1904[773-77],,1850,Binford_2001_Tables_5.01_and_8.01, +381,B136,B010,7.5,,,"hiatt1967[201];jones1971[278, 279]",,1830,Binford_2001_Tables_5.01_and_8.01, +382,B137,B010,7.5,,,"hiatt1967[201];jones1971[278, 279]",,1830,Binford_2001_Tables_5.01_and_8.01, +383,B14,B010,18.9,,,"vanoverbergh1925[195, 196-98, 432]",,1924,Binford_2001_Tables_5.01_and_8.01, +384,B143,B010,17,,,bowen1976[24-30];griffen1959[vii],,1900,Binford_2001_Tables_5.01_and_8.01, +385,B144,B010,20,,,"bean1972[76];kroeber1925a[692, 706-7];strong1929a[43-56]",,1870,Binford_2001_Tables_5.01_and_8.01, +386,B145,B010,,,,,,,, +387,B146,B010,,,,,,,, +388,B147,B010,,,,,,,, +389,B148,B010,,,,,,,, +390,B149,B010,,,,,,,, +391,B15,B010,19.3,,,furerhaimendorf1943b[366],,1940,Binford_2001_Tables_5.01_and_8.01, +392,B150,B010,14,,"Note, Binford Table 8.01 gives value of ""1""; assumed this was a typo and adopted value from table 5.01",oxendine1983[50-57],,1860,Binford_2001_Table_5.01,"Note, Binford Table 8.01 gives value of ""1""; assumed this was a typo and adopted value from table 5.01" +393,B151,B010,,,,,,,, +394,B152,B010,14,,"Note, Binford Table 5.01 lists '10', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",voegelin1938[39-43],,1850,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '10', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +395,B153,B010,13,,,goldschmidt1948[445],,1850,Binford_2001_Tables_5.01_and_8.01, +396,B154,B010,16,,,cook1955[35],,1850,Binford_2001_Tables_5.01_and_8.01, +397,B155,B010,,,,,,,, +398,B156,B010,,,,,,,, +399,B157,B010,13,,,gifford1932b[42-47],,1870,Binford_2001_Tables_5.01_and_8.01, +400,B158,B010,,,,,,,, +401,B159,B010,,,,,,,, +402,B16,B010,19.5,,,"pookajorn1985[187, 207];velder1963[186-87]",,1963,Binford_2001_Tables_5.01_and_8.01, +403,B160,B010,20,,,"dubois1935[28, 29]",,1860,Binford_2001_Tables_5.01_and_8.01, +404,B161,B010,,,,,,,, +405,B162,B010,,,,,,,, +406,B163,B010,11,,,wilsonandtowne1978[388],,1850,Binford_2001_Tables_5.01_and_8.01, +407,B164,B010,,,,,,,, +408,B165,B010,,,,,,,, +409,B166,B010,,,,,,,, +410,B167,B010,,,,,,,, +411,B168,B010,,,,,,,, +412,B169,B010,,,,,,,, +413,B17,B010,14,,,"gardner1965[101];gardner1988[93, 94]",,1963,Binford_2001_Tables_5.01_and_8.01, +414,B170,B010,,,,,,,, +415,B171,B010,,,,,,,, +416,B172,B010,,,,,,,, +417,B173,B010,,,,,,,, +418,B174,B010,,,,,,,, +419,B175,B010,19,,,cook1955[36],,1850,Binford_2001_Tables_5.01_and_8.01, +420,B176,B010,18,,,gray1987[37-40],,1860,Binford_2001_Tables_5.01_and_8.01, +421,B177,B010,,,,,,,, +422,B178,B010,18,,,cook1956[101];drucker1940[226-27],,1870,Binford_2001_Tables_5.01_and_8.01, +423,B179,B010,,,,,,,, +424,B18,B010,26.8,,,senandsen1955[172];williams1974[79],,1963,Binford_2001_Tables_5.01_and_8.01, +425,B180,B010,,,,,,,, +426,B181,B010,,,,,,,, +427,B182,B010,,,,,,,, +428,B183,B010,,,,,,,, +429,B184,B010,,,,,,,, +430,B185,B010,,,,,,,, +431,B186,B010,,,,,,,, +432,B187,B010,,,,,,,, +433,B188,B010,15,,,ray1963[204],,1860,Binford_2001_Tables_5.01_and_8.01, +434,B189,B010,18,,,"spier1930[5-8, 23]",,1860,Binford_2001_Tables_5.01_and_8.01, +435,B19,B010,17.5,,,ehrenfels1952[66-67],,1946,Binford_2001_Tables_5.01_and_8.01, +436,B190,B010,11.7,,,aschmann1967[122],,1760,Binford_2001_Tables_5.01_and_8.01, +437,B191,B010,,,,,,,, +438,B192,B010,7.5,,,steward1938[85-91],,1860,Binford_2001_Tables_5.01_and_8.01, +439,B193,B010,,,,,,,, +440,B194,B010,,,,,,,, +441,B195,B010,7.5,,,steward1938[84],,1850,Binford_2001_Tables_5.01_and_8.01, +442,B196,B010,,,,,,,, +443,B197,B010,13.5,,,steward1938[80-84],,1860,Binford_2001_Tables_5.01_and_8.01, +444,B198,B010,7,,,"hayden1936[142, 165-68, 70];kroeber1935[45]",,1870,Binford_2001_Tables_5.01_and_8.01, +445,B199,B010,15,,,voegelin1938[48],,1860,Binford_2001_Tables_5.01_and_8.01, +446,B2,B010,19,,,eder1978[56];eder1987[105],,1968,Binford_2001_Tables_5.01_and_8.01, +447,B20,B010,10.2,,,bhanu1992[table 1.1],,1974,Binford_2001_Tables_5.01_and_8.01, +448,B200,B010,9,,,"steward1938[77, 78, 80]",,1860,Binford_2001_Tables_5.01_and_8.01, +449,B201,B010,,,,,,,, +450,B202,B010,13,,,liljebladandfowler1986[414-15];steward1938[110],,1870,Binford_2001_Tables_5.01_and_8.01, +451,B203,B010,9.5,,,steward1938[110],,1860,Binford_2001_Tables_5.01_and_8.01, +452,B204,B010,10.1,,"Note, two estimates provided by Binford (10.1, 9.6). The latter refers specifically to Kaibab Southern Paiute; this entry is one of those estimates",kelly1964[11-22],,1860,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (10.1, 9.6). The latter refers specifically to Kaibab Southern Paiute." +453,B204,B010,9.6,,"Note, two estimates provided by Binford (10.1, 9.6). The latter refers specifically to Kaibab Southern Paiute; this entry is one of those estimates",eulerandfowler1966[35],Special reference to Kaibab Southern Paiute,1860,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (10.1, 9.6). The latter refers specifically to Kaibab Southern Paiute." +454,B205,B010,9.6,,,davis1965[36],,1870,Binford_2001_Tables_5.01_and_8.01, +455,B206,B010,,,,,,,, +456,B207,B010,11.2,,,gouldperscomm1992,,1860,Binford_2001_Tables_5.01_and_8.01, +457,B208,B010,,,,,,,, +458,B209,B010,17.5,,,"janetski1983[53-54, 75]",,1860,Binford_2001_Tables_5.01_and_8.01, +459,B21,B010,13.8,,,bird1983[58],,1978,Binford_2001_Tables_5.01_and_8.01, +460,B210,B010,18,,,"fowler1992[35-37, 154]",,1870,Binford_2001_Tables_5.01_and_8.01, +461,B211,B010,10.5,,,steward1938[61],,1860,Binford_2001_Tables_5.01_and_8.01, +462,B212,B010,,,,,,,, +463,B213,B010,,,,,,,, +464,B214,B010,10,,,steward1938[132],,1860,Binford_2001_Tables_5.01_and_8.01, +465,B215,B010,11,,,steward1938[124-27],,1870,Binford_2001_Tables_5.01_and_8.01, +466,B216,B010,12,,"Note, Binford Table 5.01 lists '11.4', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",lowie1924[284];steward1938[161],,1860,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '11.4', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +467,B217,B010,11,,,steward1938[117],,1860,Binford_2001_Tables_5.01_and_8.01, +468,B218,B010,10,,,"steward1938[101, 108]",,1860,Binford_2001_Tables_5.01_and_8.01, +469,B219,B010,,,,,,,, +470,B22,B010,15.1,,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (15.1) and the second to Kuril Island Ainu (22); this entry is one of those estimates",watanabe1964a[8-9],Special reference to Hokkaido Ainu,1900,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (15.1) and the second to Kuril Island Ainu (22)" +471,B22,B010,22,,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (15.1) and the second to Kuril Island Ainu (22); this entry is one of those estimates","landor1893[89, 125]",Special reference to Kuril Island Ainu,1900,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (15.1) and the second to Kuril Island Ainu (22)" +472,B221,B010,16,,,steward1938[174],,1860,Binford_2001_Tables_5.01_and_8.01, +473,B222,B010,,,,,,,, +474,B223,B010,16,,,lowie1924[284],,1870,Binford_2001_Tables_5.01_and_8.01, +475,B224,B010,12.5,,,steward1938[130],,1860,Binford_2001_Tables_5.01_and_8.01, +476,B225,B010,9,,,price1962[40],,1850,Binford_2001_Tables_5.01_and_8.01, +477,B226,B010,13,,,"kelly1932[78, 105]",,1870,Binford_2001_Tables_5.01_and_8.01, +478,B227,B010,16,,,shimkin1947[255];steward1974a[373],,1860,Binford_2001_Tables_5.01_and_8.01, +479,B228,B010,21,,,steward1938[145-46],,1860,Binford_2001_Tables_5.01_and_8.01, +480,B229,B010,12,,,steward1938[209],,1860,Binford_2001_Tables_5.01_and_8.01, +481,B23,B010,20,,"Binford noted this was an ""estimate""",qiu1983,,1900,Binford_2001_Tables_5.01_and_8.01, +482,B230,B010,16,,,steward1974b[147],,1860,Binford_2001_Tables_5.01_and_8.01, +483,B231,B010,11,,,whiting1950[19],,1870,Binford_2001_Tables_5.01_and_8.01, +484,B232,B010,18.3,,,steward1938[186-89],,1860,Binford_2001_Tables_5.01_and_8.01, +485,B233,B010,16,,,steward1938[113],,1860,Binford_2001_Tables_5.01_and_8.01, +486,B234,B010,17,,,steward1974b[147],,1860,Binford_2001_Tables_5.01_and_8.01, +487,B24,B010,24,,"Note, Binford Table 5.01 lists '19', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",lee1967[24];shimkin1939[150],,1900,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '19', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +488,B240,B010,25,,,basehartperscomm1972;swanton1952[323],,1880,Binford_2001_Tables_5.01_and_8.01, +489,B241,B010,60,,,wallaceandhoebel1952[23],,1870,Binford_2001_Tables_5.01_and_8.01, +490,B242,B010,34,,,basehart1972[5];morice1906b[496];opler1937[177-82],,1880,Binford_2001_Tables_5.01_and_8.01, +491,B243,B010,35,,,bamforth1988[106-9],,1870,Binford_2001_Tables_5.01_and_8.01, +492,B244,B010,,,,,,,, +493,B245,B010,45,,,"moore1987[180-86, 194]",,1860,Binford_2001_Tables_5.01_and_8.01, +494,B246,B010,36,,,flannery1953[54];gussowetal1974[23],,1860,Binford_2001_Tables_5.01_and_8.01, +495,B248,B010,66,,,bamforth1988[106-9];denig1961[165],,1870,Binford_2001_Tables_5.01_and_8.01, +496,B249,B010,38,,,culbertson1952[135],,1870,Binford_2001_Tables_5.01_and_8.01, +497,B25,B010,23,,,shternberg1933[385],,1920,Binford_2001_Tables_5.01_and_8.01, +498,B250,B010,,,,,,,, +499,B252,B010,43,,,steward1938[201-6],,1860,Binford_2001_Tables_5.01_and_8.01, +500,B253,B010,34,,,bamforth1988[106-9];swanton1952[278],,1870,Binford_2001_Tables_5.01_and_8.01, +501,B254,B010,40,,,skinner1914[477],,1850,Binford_2001_Tables_5.01_and_8.01, +502,B255,B010,45,,,ewers1955[303],,1850,Binford_2001_Tables_5.01_and_8.01, +503,B256,B010,70,,,bushnell1922[26];ewers1955[303],,1850,Binford_2001_Tables_5.01_and_8.01, +504,B257,B010,55,,,bushnell1922[32-33];culbertson1952[107];lowrieandclarke1832,,1870,Binford_2001_Tables_5.01_and_8.01, +505,B258,B010,40,,,"bamforth1988[106-109];bushnell1922[20, 21]",,1850,Binford_2001_Tables_5.01_and_8.01, +506,B259,B010,42,,,bamforth1988[106-109],,1850,Binford_2001_Tables_5.01_and_8.01, +507,B26,B010,12.3,,,"kreynovich1979[191-92, 196]",,1900,Binford_2001_Tables_5.01_and_8.01, +508,B260,B010,43,,,bamforth1988[106-109];jenness1938[10-11],,1880,Binford_2001_Tables_5.01_and_8.01, +509,B268,B010,,,,,,,, +510,B269,B010,,,,,,,, +511,B27,B010,14,,,"popov1966[12, 103]",,1933,Binford_2001_Tables_5.01_and_8.01, +512,B270,B010,28,,,smith1940a[7-14],,1870,Binford_2001_Tables_5.01_and_8.01, +513,B271,B010,,,,,,,, +514,B272,B010,,,,,,,, +515,B273,B010,,,,,,,, +516,B274,B010,,,,,,,, +517,B275,B010,,,,,,,, +518,B276,B010,,,,,,,, +519,B277,B010,,,,,,,, +520,B278,B010,,,,,,,, +521,B279,B010,,,,,,,, +522,B28,B010,15,,,krupnik1983a[94-95],,1860,Binford_2001_Tables_5.01_and_8.01, +523,B280,B010,,,,,,,, +524,B281,B010,,,,,,,, +525,B282,B010,,,,,,,, +526,B283,B010,,,,,,,, +527,B284,B010,29,,,pettitt1950[3-5],,1880,Binford_2001_Tables_5.01_and_8.01, +528,B285,B010,,,,,,,, +529,B286,B010,,,,,,,, +530,B287,B010,,,,,,,, +531,B288,B010,,,,,,,, +532,B289,B010,,,,,,,, +533,B290,B010,,,,,,,, +534,B291,B010,,,,,,,, +535,B292,B010,,,,,,,, +536,B293,B010,,,,,,,, +537,B294,B010,,,,,,,, +538,B295,B010,,,,,,,, +539,B296,B010,19,,,michael1967[306],,1850,Binford_2001_Tables_5.01_and_8.01, +540,B297,B010,,,,,,,, +541,B298,B010,,,,,,,, +542,B299,B010,,,,,,,, +543,B3,B010,12,,,hagen1908[25-28];persoon1989[511],,1900,Binford_2001_Tables_5.01_and_8.01, +544,B315,B010,,,,,,,, +545,B316,B010,,,,,,,, +546,B317,B010,,,,,,,, +547,B318,B010,,,,,,,, +548,B319,B010,25,,,spierandsapir1930[166-67],,1860,Binford_2001_Tables_5.01_and_8.01, +549,B320,B010,21,,,"teit1930[39, 331]",,1860,Binford_2001_Tables_5.01_and_8.01, +550,B321,B010,20,,,clineetal1938[87],,1880,Binford_2001_Tables_5.01_and_8.01, +551,B322,B010,23,,,teit1930[207-11],,1860,Binford_2001_Tables_5.01_and_8.01, +552,B323,B010,,,,,,,, +553,B324,B010,,,,,,,, +554,B325,B010,18,,,teit1900[241-48],,1860,Binford_2001_Tables_5.01_and_8.01, +555,B326,B010,22,,,teit1930[331],,1870,Binford_2001_Tables_5.01_and_8.01, +556,B327,B010,15,,,jenness1935[13],,1870,Binford_2001_Tables_5.01_and_8.01, +557,B328,B010,,,,,,,, +558,B329,B010,15,,,speck1922[143-44],,1700,Binford_2001_Tables_5.01_and_8.01, +559,B330,B010,24,,,teit1930[331];turneyhigh1937[98],,1860,Binford_2001_Tables_5.01_and_8.01, +560,B331,B010,21,,,hickerson1967[54-55],,1880,Binford_2001_Tables_5.01_and_8.01, +561,B332,B010,15,,,bishop1978[222-26],,1870,Binford_2001_Tables_5.01_and_8.01, +562,B333,B010,,,,,,,, +563,B334,B010,22,,,"dunning1959[57, 58, 84];rogers1969[31]",,1940,Binford_2001_Tables_5.01_and_8.01, +564,B335,B010,7,,,"rogers1963b[67, 76, 88];rogers1969[25, 31]",,1900,Binford_2001_Tables_5.01_and_8.01, +565,B336,B010,20,,,goldman1940[334],,1865,Binford_2001_Tables_5.01_and_8.01, +566,B337,B010,18,,,hickerson1962[30-33],,1800,Binford_2001_Tables_5.01_and_8.01, +567,B338,B010,15,,"Note, Binford Table 5.01 lists '6', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",rogers1963a[23];rogers1969[30],,1880,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '6', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +568,B339,B010,,,,,,,, +569,B340,B010,12,,,"morantz1983[89, 106];rogers1969[31]",,1900,Binford_2001_Tables_5.01_and_8.01, +570,B341,B010,10,,,rogersandblack1976[19],,1890,Binford_2001_Tables_5.01_and_8.01, +571,B342,B010,22,,,tanner1944[592-609],,1880,Binford_2001_Tables_5.01_and_8.01, +572,B343,B010,18,,,dennison1981[434-35];jenness1937[14],,1880,Binford_2001_Tables_5.01_and_8.01, +573,B344,B010,20,,,ives1985[166-67],,1850,Binford_2001_Tables_5.01_and_8.01, +574,B345,B010,13,,,"helm1961[50-52, 169];ives1985[166-67];janes1983[50-51]",,1860,Binford_2001_Tables_5.01_and_8.01, +575,B346,B010,16,,,honigmann1949[33-37],,1920,Binford_2001_Tables_5.01_and_8.01, +576,B347,B010,,,,,,,, +577,B348,B010,,,,,,,, +578,B349,B010,18,,,jenness1943[485-86],,1880,Binford_2001_Tables_5.01_and_8.01, +579,B35,B010,,,,,,,, +580,B350,B010,15,,,gillespie1981[334-35],,1800,Binford_2001_Tables_5.01_and_8.01, +581,B351,B010,,,,,,,, +582,B352,B010,13,,,"helm1961[169];savishinsky1974[47, 54]",,1860,Binford_2001_Tables_5.01_and_8.01, +583,B353,B010,17,,,honigmann1956b[58];honigmann1981[228-29],,1900,Binford_2001_Tables_5.01_and_8.01, +584,B354,B010,14,,,clark1974[96],,1880,Binford_2001_Tables_5.01_and_8.01, +585,B355,B010,23,,"Note, focal year differs from that for some other data for society",smith1976[19];smith1978a[81];smith1981[275],,1800,Binford_2001_Tables_5.01_and_8.01, +586,B356,B010,32,,,"slobodin1969[58-59, 64]",,1880,Binford_2001_Tables_5.01_and_8.01, +587,B357,B010,8,,,michael1967[307],Special reference to Kusk Ingalik,1880,Binford_2001_Tables_5.01_and_8.01, +588,B358,B010,12,,"Note, Binford Table 5.01 lists '12.5', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",mackenzie1966[49-56],,1860,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '12.5', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +589,B359,B010,17,,,mckennan1959[18],,1930,Binford_2001_Tables_5.01_and_8.01, +590,B36,B010,,,,,,,, +591,B360,B010,12,,,morantz1983[106],,1900,Binford_2001_Tables_5.01_and_8.01, +592,B361,B010,22,,,helm1968[120],,1860,Binford_2001_Tables_5.01_and_8.01, +593,B362,B010,,,,,,,, +594,B363,B010,17,,,legros1982[68-69],,1890,Binford_2001_Tables_5.01_and_8.01, +595,B364,B010,,,,,,,, +596,B365,B010,23,,,"henriksen1973[58-59, 68]",,1890,Binford_2001_Tables_5.01_and_8.01, +597,B369,B010,27.5,,,ray1992[295],,1870,Binford_2001_Tables_5.01_and_8.01, +598,B37,B010,18.5,,,kloos1977[116],,1968,Binford_2001_Tables_5.01_and_8.01, +599,B370,B010,18,,,burch1975[257-58],,1890,Binford_2001_Tables_5.01_and_8.01, +600,B371,B010,24.5,,,burch1975[269-72];burch1984[305],,1880,Binford_2001_Tables_5.01_and_8.01, +601,B372,B010,11,,,"taylor1974[15-19, 64]",,1890,Binford_2001_Tables_5.01_and_8.01, +602,B373,B010,20,,,"willmott1960[48, 53]",,1890,Binford_2001_Tables_5.01_and_8.01, +603,B374,B010,19.5,,,birketsmith1929[67-69],,1900,Binford_2001_Tables_5.01_and_8.01, +604,B375,B010,17.5,,,binfordfieldnotes1971;burch1975[255],,1900,Binford_2001_Tables_5.01_and_8.01, +605,B377,B010,8.9,,,amsden1977[224],,1898-1909,Binford_2001_Tables_5.01_and_8.01, +606,B377,B010,18.5,,,amsden1977[224],,1934-1950,Binford_2001_Tables_5.01_and_8.01, +607,B377,B010,7.8,,,amsden1977[224],,1951-1959,Binford_2001_Tables_5.01_and_8.01, +608,B378,B010,12,,,mcghee1988[11];tyrrell1897[167],,1910,Binford_2001_Tables_5.01_and_8.01, +609,B379,B010,19,,,moore1923[340],,1920,Binford_2001_Tables_5.01_and_8.01, +610,B38,B010,15.1,,,gragson1989[289-90];greavesperscomm1993,,1989,Binford_2001_Tables_5.01_and_8.01, +611,B380,B010,13,,,burch1975[260-69],,1880,Binford_2001_Tables_5.01_and_8.01, +612,B381,B010,18,,,"jenness1922[30, 55, 57];rasmussen1932[70, 78-85]",,1920,Binford_2001_Tables_5.01_and_8.01, +613,B382,B010,18,,,"briggs1970[15, 372-74]",,1920,Binford_2001_Tables_5.01_and_8.01, +614,B383,B010,13,,,"rae1850[40, 48, 49]",,1880,Binford_2001_Tables_5.01_and_8.01, +615,B384,B010,12,,"Note, Binford Table 5.01 lists '20', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",mathiassen1928[32],,1920,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '20', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +616,B385,B010,16.2,,,"perry1898[131, 171-72, 267-68, 336, 386, 431];york1875[179]",,1880,Binford_2001_Tables_5.01_and_8.01, +617,B386,B010,12,,,"boas1888[426];hantzsch1977[39, 99];low1906[57-58]",,1880,Binford_2001_Tables_5.01_and_8.01, +618,B387,B010,22,,,"mclintock1860[8, 230, 232, 235, 239, 240]",,1880,Binford_2001_Tables_5.01_and_8.01, +619,B388,B010,14,,,mirsky1937a[53];peterson1984[623],,1880,Binford_2001_Tables_5.01_and_8.01, +620,B389,B010,14,,,simpson1875[237];spencer1959[15],,1880,Binford_2001_Tables_5.01_and_8.01, +621,B39,B010,20,,,wilbert1957[90],,1960,Binford_2001_Tables_5.01_and_8.01, +622,B390,B010,11.5,,,"ekblaw1948[3];steensby1910[266, 296, 324]",,1880,Binford_2001_Tables_5.01_and_8.01, +623,B4,B010,19.3,,,rizvi1990[8],,1989,Binford_2001_Tables_5.01_and_8.01, +624,B40,B010,18.8,,,politis1992[3];politisperscomm1992,,1990,Binford_2001_Tables_5.01_and_8.01, +625,B41,B010,,,,,,,, +626,B42,B010,16.6,,,metraux1946guato[410],,1901,Binford_2001_Tables_5.01_and_8.01, +627,B43,B010,16,,,holmberg1950[51],,1940,Binford_2001_Tables_5.01_and_8.01, +628,B44,B010,18,,,"stearman1989[26, 31]",,1968,Binford_2001_Tables_5.01_and_8.01, +629,B45,B010,17.5,,,levistrauss1970[288];oberg1953[86],,1938,Binford_2001_Tables_5.01_and_8.01, +630,B46,B010,35,,,"hann1991[42, 159, 168]",,1600,Binford_2001_Tables_5.01_and_8.01, +631,B47,B010,17.5,,"Note, Binford Table 5.01 lists '26.7', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.","clastres1972[163];oberg1953[18, 38]",,1975,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '26.7', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +632,B48,B010,,,,,,,, +633,B49,B010,20,,"Note, Binford Table 5.01 lists '6', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",kozaketal1979[360],,1954,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '6', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +634,B5,B010,10,,,bose1964[305],,1952,Binford_2001_Tables_5.01_and_8.01, +635,B50,B010,27,,,"henry1964[11, 50, 159]",,1910,Binford_2001_Tables_5.01_and_8.01, +636,B51,B010,25,,,cooper1946c[150];goni1988[145],,1870,Binford_2001_Tables_5.01_and_8.01, +637,B52,B010,,,,,,,, +638,B53,B010,13.4,,,birdperscomm1970,,1900,Binford_2001_Tables_5.01_and_8.01, +639,B54,B010,20,,,chapman1982[58];cooper1946b[117];gusinde1931[205],,1880,Binford_2001_Tables_5.01_and_8.01, +640,B55,B010,13,,,"gusinde1937a[384, 387]",,1870,Binford_2001_Tables_5.01_and_8.01, +641,B6,B010,8.6,,,"temple1903[62, 77, 84]",,1906,Binford_2001_Tables_5.01_and_8.01, +642,B60,B010,18,,,"bahuchet1988[131];hudson1990[58, 63, 71]",,1980,Binford_2001_Tables_5.01_and_8.01, +643,B61,B010,19.7,,,"heymer1980[178, 193-96]",,1976,Binford_2001_Tables_5.01_and_8.01, +644,B62,B010,19.7,,,"terashima1980[234, 235, 262]",,1977,Binford_2001_Tables_5.01_and_8.01, +645,B63,B010,17.5,,,cavallisforza1986c[32-33],,1980,Binford_2001_Tables_5.01_and_8.01, +646,B63,B010,16,,,valloisandmarquer1976[113],,1980,Binford_2001_Tables_5.01_and_8.01, +647,B64,B010,17.8,,,baileyandpeacock1988[99-100];fisherandstrickland1989[476],,1980,Binford_2001_Tables_5.01_and_8.01, +648,B65,B010,30.7,,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (30.7) and the second to Epula Mbuti (30.2); this entry is one of those estimates","tanno1976[107, 108, 130]",Special reference to Mawambo Mbuti,1930,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (30.7) and the second to Epula Mbuti (30.2)" +649,B65,B010,30.2,,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (30.7) and the second to Epula Mbuti (30.2); this entry is one of those estimates","turnbull1965a[97, 98]",Special reference to Epula Mbuti,1930,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (30.7) and the second to Epula Mbuti (30.2)" +650,B66,B010,,,,,,,, +651,B67,B010,,,,,,,, +652,B68,B010,,,,,,,, +653,B69,B010,16.5,,,blurtonjonesetal1992[164];hawkesetal1989[344];woodburn1968b[104],,1910,Binford_2001_Tables_5.01_and_8.01, +654,B7,B010,11,,,fox1952[188];reed1904[19],,1903,Binford_2001_Tables_5.01_and_8.01, +655,B70,B010,17,,,huntingford1951[8];huntingford1954[128],,1920,Binford_2001_Tables_5.01_and_8.01, +656,B71,B010,12,,,bleek1929[109];decastroandalmeida1956[9],,1928,Binford_2001_Tables_5.01_and_8.01, +657,B72,B010,10.4,,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (10.4) and the second to Dobe !Kung (11); this entry is one of those estimates",marshall1960[328],Special reference to Was Nyae !Kung,1950,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (10.4) and the second to Dobe !Kung (11)" +658,B72,B010,11,,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (10.4) and the second to Dobe !Kung (11); this entry is one of those estimates",lee1972a[330],Special reference to Dobe !Kung,1950,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (10.4) and the second to Dobe !Kung (11)" +659,B73,B010,6,,,guenther1986[186];schapera1930[78],,1910,Binford_2001_Tables_5.01_and_8.01, +660,B74,B010,5.6,,,silberbauer1972[296];silberbauer1981a[195-98],,1962,Binford_2001_Tables_5.01_and_8.01, +661,B75,B010,8,,,kentandvierich1989,,1976,Binford_2001_Tables_5.01_and_8.01, +662,B76,B010,13,,,eibleibesfeldt1972[32-33],,1968,Binford_2001_Tables_5.01_and_8.01, +663,B77,B010,9,,,dart1937b[160-65];steyn1984[118],,1920,Binford_2001_Tables_5.01_and_8.01, +664,B78,B010,,,,,,,, +665,B79,B010,8,,,"bleek1924a[viii, ix]",,,Binford_2001_Tables_5.01_and_8.01, +666,B8,B010,11,,,radcliffebrown1948[28],,1870,Binford_2001_Tables_5.01_and_8.01, +667,B82,B010,17.5,,,moore1979[39],,1848,Binford_2001_Tables_5.01_and_8.01, +668,B83,B010,,,,,,,, +669,B84,B010,18.5,,,altman1987[15-27];berndtandberndt1970[3-14],,1978,Binford_2001_Tables_5.01_and_8.01, +670,B85,B010,16,,,peterson1970[11];peterson1973[185];peterson1992;petersonandlong1986[40],,1970,Binford_2001_Tables_5.01_and_8.01, +671,B86,B010,10,,,meehan1982[31-41],,1973,Binford_2001_Tables_5.01_and_8.01, +672,B87,B010,16,,,peterson1972[26];petersonandlong1986[40],,1950,Binford_2001_Tables_5.01_and_8.01, +673,B88,B010,18,,,thomson1949[16];warner1958[127-28],,1930,Binford_2001_Tables_5.01_and_8.01, +674,B89,B010,17,,,kaberry1935[428],,1920,Binford_2001_Tables_5.01_and_8.01, +675,B9,B010,17,,,"brandt1961[131-33];rambo1985[4, 33];schebesta1962a[17, 220]",,1920,Binford_2001_Tables_5.01_and_8.01, +676,B90,B010,8,,Binford estimate from photos,wills1980[85],,1920,Binford_2001_Tables_5.01_and_8.01, +677,B91,B010,9,,,leichhardt1847[507];mccarthyandmacarthur1960[90-96],,1920,Binford_2001_Tables_5.01_and_8.01, +678,B92,B010,17,,,biernoff1979[12];mcarthur1960[95];thomson1949[4],,1960,Binford_2001_Tables_5.01_and_8.01, +679,B93,B010,15,,,thomson1934[241],,1930,Binford_2001_Tables_5.01_and_8.01, +680,B94,B010,14,,,"petersonandlong1986[88-89, 95-99];sharp1934[425]",,1937,Binford_2001_Tables_5.01_and_8.01, +681,B95,B010,18,,,"hartandpilling1960[35, 36, 65, 66]",,1920,Binford_2001_Tables_5.01_and_8.01, +682,B96,B010,14.3,,,"andersonandrobins1988[187, 191-92]",,1880,Binford_2001_Tables_5.01_and_8.01, +683,B97,B010,10,,,petersonandlong1986[78-79],,1930,Binford_2001_Tables_5.01_and_8.01, +684,B98,B010,,,,,,,, +685,B99,B010,18,,"Binford noted this was an ""estimate""",stanner1933[393],,1900,Binford_2001_Tables_5.01_and_8.01, +686,B1,B011,30,,"Note, first of three estimates provided by Binford (30, 26, 30) for this society","harrison1949[135, 139];urquhart1951[515, 505]",,1970,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (30, 26, 30)" +687,B1,B011,26,,"Note, second of three estimates provided by Binford (30, 26, 30) for this society",brosius1986[174],,1970,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (30, 26, 30)" +688,B1,B011,30,,"Note, third of three estimates provided by Binford (30, 26, 30) for this society",sellato1994[143-44],,1970,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (30, 26, 30)" +689,B10,B011,29,,,"bailey1863[296, 308];seligmannandseligmann1911[43-44]",,1900,Binford_2001_Tables_5.01_and_8.01, +690,B100,B011,35,,,blundell1980[106-7];love1936[93],,,Binford_2001_Tables_5.01_and_8.01, +691,B101,B011,,,,,,,, +692,B102,B011,45,,,memmott1983a[367],,1909,Binford_2001_Tables_5.01_and_8.01, +693,B103,B011,29,,,tindale1962a[269],,1928,Binford_2001_Tables_5.01_and_8.01, +694,B104,B011,,,,,,,, +695,B105,B011,45,,,harris1978[128],,1900,Binford_2001_Tables_5.01_and_8.01, +696,B106,B011,31,,,radcliffebrown1912[146],,1910,Binford_2001_Tables_5.01_and_8.01, +697,B107,B011,25,,,brayshaw1990[31];lumholtz1889[194],,1870,Binford_2001_Tables_5.01_and_8.01, +698,B108,B011,50,,,nind1831[22],,1934,Binford_2001_Tables_5.01_and_8.01, +699,B109,B011,42,,,"meggitt1962[47, 50, 56]",,1965,Binford_2001_Tables_5.01_and_8.01, +700,B11,B011,34.1,,,"morris1982a[36-37, 174]",,1972,Binford_2001_Tables_5.01_and_8.01, +701,B110,B011,25,,,petersonandlong1986[116-17];tonkinson1978[53],,1880,Binford_2001_Tables_5.01_and_8.01, +702,B111,B011,32,,"Note, Binford Table 5.01 lists '25' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",harris1978[128],,1960,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '25' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +703,B112,B011,,,,,,,, +704,B113,B011,21,,,long1971[264-65];meggitt1962[55];petersonandlong1986[104-11],,1936,Binford_2001_Tables_5.01_and_8.01, +705,B114,B011,,,,,,,, +706,B115,B011,60,,,morwood1987[339];winterbotham1980[41],,1840,Binford_2001_Tables_5.01_and_8.01, +707,B116,B011,,,,,,,, +708,B117,B011,30,,,binfordfieldnotes1974;denham1975[120];oconnell1987[85],,1965,Binford_2001_Tables_5.01_and_8.01, +709,B118,B011,25,,,gould1977[21-22],,1968,Binford_2001_Tables_5.01_and_8.01, +710,B119,B011,90,,"Note, Binford Table 5.01 lists '40' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",gardner1978[239-46],,1850,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '40' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +711,B12,B011,30,,,headlandperscomm1993,,1965,Binford_2001_Tables_5.01_and_8.01, +712,B120,B011,23,,,"brokensha1975[19, 33];layton1983[26];petersonandlong1986[127];tindale1972[224, 244]",,1968,Binford_2001_Tables_5.01_and_8.01, +713,B121,B011,22,,,"gason1879[257, 264];sturt1849a[1:254, 261, 296, 316, 407, 414];sturt1849a[2:70, 74]",,1900,Binford_2001_Tables_5.01_and_8.01, +714,B122,B011,,,,,,,, +715,B123,B011,28,,,tindaleperscomm1965,,1922,Binford_2001_Tables_5.01_and_8.01, +716,B124,B011,30,,,"spencerandgillen1927[15, 506]",,1900,Binford_2001_Tables_5.01_and_8.01, +717,B125,B011,,,,,,,, +718,B126,B011,,,,,,,, +719,B127,B011,,,,,,,, +720,B128,B011,,,,,,,, +721,B129,B011,,,,,,,, +722,B13,B011,21,,,"rai1982[63, 66, 119]",,1979,Binford_2001_Tables_5.01_and_8.01, +723,B130,B011,,,,,,,, +724,B131,B011,,,,,,,, +725,B132,B011,50,,,nind1831[28],,1850,Binford_2001_Tables_5.01_and_8.01, +726,B133,B011,175,,,williams1985[75],,1850,Binford_2001_Tables_5.01_and_8.01, +727,B134,B011,44,,,"gaughwinandsullivan1984[92, 94]",,1850,Binford_2001_Tables_5.01_and_8.01, +728,B135,B011,50,,,fisonandhowitt1880[209];howitt1904[773-77],,1850,Binford_2001_Tables_5.01_and_8.01, +729,B136,B011,35,,,"hiatt1967[201];jones1971[278, 279]",,1830,Binford_2001_Tables_5.01_and_8.01, +730,B137,B011,33,,,"hiatt1967[201];jones1971[278, 279]",,1830,Binford_2001_Tables_5.01_and_8.01, +731,B14,B011,43.3,,,"vanoverbergh1925[195, 196-98, 432]",,1924,Binford_2001_Tables_5.01_and_8.01, +732,B143,B011,45,,,bowen1976[24-30];griffen1959[vii],,1900,Binford_2001_Tables_5.01_and_8.01, +733,B144,B011,75,,,"bean1972[76];kroeber1925a[692, 706-7];strong1929a[43-56]",,1870,Binford_2001_Tables_5.01_and_8.01, +734,B145,B011,97,,,strong1929a[187-19],,1870,Binford_2001_Tables_5.01_and_8.01, +735,B146,B011,62,,,meigs1939[18-20],,1880,Binford_2001_Tables_5.01_and_8.01, +736,B147,B011,39,,,"kroeber1925a[712, 719];luomala1978[597]",,1850,Binford_2001_Tables_5.01_and_8.01, +737,B148,B011,91,,"Note, Binford Table 5.01 lists '91.6' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",cook1955[40],,1860,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '91.6' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +738,B149,B011,68,,,kroeber1925a[617-18],,1870,Binford_2001_Tables_5.01_and_8.01, +739,B15,B011,48,,,furerhaimendorf1943b[366],,1940,Binford_2001_Tables_5.01_and_8.01, +740,B150,B011,110,,,oxendine1983[50-57],,1860,Binford_2001_Tables_5.01_and_8.01, +741,B151,B011,40,,,cook1955[40],,1860,Binford_2001_Tables_5.01_and_8.01, +742,B152,B011,21,,,voegelin1938[39-43],,1850,Binford_2001_Tables_5.01_and_8.01, +743,B153,B011,65,,,goldschmidt1948[445],,1850,Binford_2001_Tables_5.01_and_8.01, +744,B154,B011,40,,,cook1955[35],,1850,Binford_2001_Tables_5.01_and_8.01, +745,B155,B011,53,,,johnson1978[352],,1850,Binford_2001_Tables_5.01_and_8.01, +746,B156,B011,,,,,,,, +747,B157,B011,32,,,gifford1932b[42-47],,1870,Binford_2001_Tables_5.01_and_8.01, +748,B158,B011,,,,,,,, +749,B159,B011,150,,,cook1956[116-17],,1860,Binford_2001_Tables_5.01_and_8.01, +750,B16,B011,40,,,"pookajorn1985[187, 207];velder1963[186-87]",,1963,Binford_2001_Tables_5.01_and_8.01, +751,B160,B011,50,,,"dubois1935[28, 29]",,1860,Binford_2001_Tables_5.01_and_8.01, +752,B161,B011,557,,,cookandheizer1965[71],,1860,Binford_2001_Tables_5.01_and_8.01, +753,B162,B011,42,,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable.",dixon1910,,1860,Binford_2001_Table_5.01,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable." +754,B163,B011,45,,,wilsonandtowne1978[388],,1850,Binford_2001_Tables_5.01_and_8.01, +755,B164,B011,,,,,,,, +756,B165,B011,150,,,cook1956[118],,1860,Binford_2001_Tables_5.01_and_8.01, +757,B166,B011,23,,,cook1956[103-5],,1860,Binford_2001_Tables_5.01_and_8.01, +758,B167,B011,,,,,,,, +759,B168,B011,26,,,"collierandthalman1991[72, 177-78]",,1850,Binford_2001_Tables_5.01_and_8.01, +760,B169,B011,45,,,cook1956[102],,,Binford_2001_Tables_5.01_and_8.01, +761,B17,B011,25,,,"gardner1965[101];gardner1988[93, 94]",,1963,Binford_2001_Tables_5.01_and_8.01, +762,B170,B011,90,,,cook1955[122],,,Binford_2001_Tables_5.01_and_8.01, +763,B171,B011,25,,,cook1956[107],,1850,Binford_2001_Tables_5.01_and_8.01, +764,B172,B011,95,,,cook1956[124],,1860,Binford_2001_Tables_5.01_and_8.01, +765,B173,B011,127,,,cook1956[114],,1860,Binford_2001_Tables_5.01_and_8.01, +766,B174,B011,,,,,,,, +767,B175,B011,45,,,cook1955[36],,1850,Binford_2001_Tables_5.01_and_8.01, +768,B176,B011,50,,,gray1987[37-40],,1860,Binford_2001_Tables_5.01_and_8.01, +769,B177,B011,,,,,,,, +770,B178,B011,96,,,cook1956[101];drucker1940[226-27],,1870,Binford_2001_Tables_5.01_and_8.01, +771,B179,B011,48,,,cookandheizer1965[70],,1860,Binford_2001_Tables_5.01_and_8.01, +772,B18,B011,46,,,senandsen1955[172];williams1974[79],,1963,Binford_2001_Tables_5.01_and_8.01, +773,B180,B011,113,,,cook1956[100],,1860,Binford_2001_Tables_5.01_and_8.01, +774,B181,B011,60,,,gray1987[56],,1870,Binford_2001_Tables_5.01_and_8.01, +775,B182,B011,30,,,cook1956[98],,1860,Binford_2001_Tables_5.01_and_8.01, +776,B183,B011,,,,,,,, +777,B184,B011,33,,,cook1956[97],,1860,Binford_2001_Tables_5.01_and_8.01, +778,B185,B011,40,,,cookandheizer1965[71],,1850,Binford_2001_Tables_5.01_and_8.01, +779,B186,B011,45,,,cook1956[101];schalk1978[125],,1850,Binford_2001_Tables_5.01_and_8.01, +780,B187,B011,23,,,kroeber1962[36-37],,1860,Binford_2001_Tables_5.01_and_8.01, +781,B188,B011,92,,,ray1963[204],,1860,Binford_2001_Tables_5.01_and_8.01, +782,B189,B011,31,,,"spier1930[5-8, 23]",,1860,Binford_2001_Tables_5.01_and_8.01, +783,B19,B011,31.7,,,ehrenfels1952[66-67],,1946,Binford_2001_Tables_5.01_and_8.01, +784,B190,B011,45,,,aschmann1967[122],,1760,Binford_2001_Tables_5.01_and_8.01, +785,B191,B011,,,,,,,, +786,B192,B011,22.5,,,steward1938[85-91],,1860,Binford_2001_Tables_5.01_and_8.01, +787,B193,B011,,,,,,,, +788,B194,B011,31,,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable.",,,1715,Binford_2001_Table_5.01,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable." +789,B195,B011,22.5,,,steward1938[84],,1850,Binford_2001_Tables_5.01_and_8.01, +790,B196,B011,107,,,gifford1932a[180-89],,1870,Binford_2001_Tables_5.01_and_8.01, +791,B197,B011,55,,,steward1938[80-84],,1860,Binford_2001_Tables_5.01_and_8.01, +792,B198,B011,27.8,,,"hayden1936[142, 165-68, 70];kroeber1935[45]",,1870,Binford_2001_Tables_5.01_and_8.01, +793,B199,B011,31,,,voegelin1938[48],,1860,Binford_2001_Tables_5.01_and_8.01, +794,B2,B011,58,,,eder1978[56];eder1987[105],,1968,Binford_2001_Tables_5.01_and_8.01, +795,B20,B011,20.5,,,bhanu1992[table 1.1],,1974,Binford_2001_Tables_5.01_and_8.01, +796,B200,B011,30,,,"steward1938[77, 78, 80]",,1860,Binford_2001_Tables_5.01_and_8.01, +797,B201,B011,,,,,,,, +798,B202,B011,64,,,liljebladandfowler1986[414-15];steward1938[110],,1870,Binford_2001_Tables_5.01_and_8.01, +799,B203,B011,19.5,,,steward1938[110],,1860,Binford_2001_Tables_5.01_and_8.01, +800,B204,B011,21.2,,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",kelly1964[11-22],,1860,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +801,B204,B011,27,,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",eulerandfowler1966[35],Special reference to Kaibab Southern Paiute),1860,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +802,B204,B011,26,,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",stoffleandevans1978[183],Special reference to Las Vegas Southern Paiute,1860,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +803,B205,B011,25,,,davis1965[36],,1870,Binford_2001_Tables_5.01_and_8.01, +804,B206,B011,23,,,steward1938[58-59],,1860,Binford_2001_Tables_5.01_and_8.01, +805,B207,B011,34,,,gouldperscomm1992,,1860,Binford_2001_Tables_5.01_and_8.01, +806,B208,B011,50,,,"fowlerandliljeblad1986[443, 457]",,1860,Binford_2001_Tables_5.01_and_8.01, +807,B209,B011,50,,,"janetski1983[53-54, 75]",,1860,Binford_2001_Tables_5.01_and_8.01, +808,B21,B011,69,,,bird1983[58],,1978,Binford_2001_Tables_5.01_and_8.01, +809,B210,B011,46,,,"fowler1992[35-37, 154]",,1870,Binford_2001_Tables_5.01_and_8.01, +810,B211,B011,27,,,steward1938[61],,1860,Binford_2001_Tables_5.01_and_8.01, +811,B212,B011,,,,,,,, +812,B213,B011,24,,,steward1938[177],,1870,Binford_2001_Tables_5.01_and_8.01, +813,B214,B011,33,,,steward1938[132],,1860,Binford_2001_Tables_5.01_and_8.01, +814,B215,B011,24,,,steward1938[124-27],,1870,Binford_2001_Tables_5.01_and_8.01, +815,B216,B011,23,,,lowie1924[284];steward1938[161],,1860,Binford_2001_Tables_5.01_and_8.01, +816,B217,B011,32,,,steward1938[117],,1860,Binford_2001_Tables_5.01_and_8.01, +817,B218,B011,30,,,"steward1938[101, 108]",,1860,Binford_2001_Tables_5.01_and_8.01, +818,B219,B011,29,,,cook1955[37],,1860,Binford_2001_Tables_5.01_and_8.01, +819,B22,B011,30.3,,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (30.3) and the second to Kuril Island Ainu (68); this entry is one of those estimates",watanabe1964a[8-9],Special reference to Hokkaido Ainu,1900,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (30.3) and the second to Kuril Island Ainu (68)" +820,B22,B011,68,,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (30.3) and the second to Kuril Island Ainu (68); this entry is one of those estimates","landor1893[89, 125]",Special reference to Kuril Island Ainu,1900,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (30.3) and the second to Kuril Island Ainu (68)" +821,B221,B011,38,,,steward1938[174],,1860,Binford_2001_Tables_5.01_and_8.01, +822,B222,B011,37,,,callawayetal1986[352];smith1974[123],,1860,Binford_2001_Tables_5.01_and_8.01, +823,B223,B011,40,,,lowie1924[284],,1870,Binford_2001_Tables_5.01_and_8.01, +824,B224,B011,20,,,steward1938[130],,1860,Binford_2001_Tables_5.01_and_8.01, +825,B225,B011,29,,,price1962[40],,1850,Binford_2001_Tables_5.01_and_8.01, +826,B226,B011,28.4,,,"kelly1932[78, 105]",,1870,Binford_2001_Tables_5.01_and_8.01, +827,B227,B011,50,,,shimkin1947[255];steward1974a[373],,1860,Binford_2001_Tables_5.01_and_8.01, +828,B228,B011,48,,,steward1938[145-46],,1860,Binford_2001_Tables_5.01_and_8.01, +829,B229,B011,60,,,steward1938[209],,1860,Binford_2001_Tables_5.01_and_8.01, +830,B23,B011,60,,"Binford noted this was an ""estimate""",qiu1983,,1900,Binford_2001_Tables_5.01_and_8.01, +831,B230,B011,43,,,steward1974b[147],,1860,Binford_2001_Tables_5.01_and_8.01, +832,B231,B011,,,,,,,, +833,B232,B011,,,,,,,, +834,B233,B011,,,,,,,, +835,B234,B011,45,,,steward1974b[147],,1860,Binford_2001_Tables_5.01_and_8.01, +836,B24,B011,33,,,lee1967[24];shimkin1939[150],,1900,Binford_2001_Tables_5.01_and_8.01, +837,B240,B011,75,,,basehartperscomm1972;swanton1952[323],,1880,Binford_2001_Tables_5.01_and_8.01, +838,B241,B011,269,,,wallaceandhoebel1952[23],,1870,Binford_2001_Tables_5.01_and_8.01, +839,B242,B011,95,,,basehart1972[5];morice1906b[496];opler1937[177-82],,1880,Binford_2001_Tables_5.01_and_8.01, +840,B243,B011,313,,,bamforth1988[106-9],,1870,Binford_2001_Tables_5.01_and_8.01, +841,B244,B011,291,,,bamforth1988[106-9],,1860,Binford_2001_Tables_5.01_and_8.01, +842,B245,B011,275,,,"moore1987[180-86, 194]",,1860,Binford_2001_Tables_5.01_and_8.01, +843,B246,B011,325,,,flannery1953[54];gussowetal1974[23],,1860,Binford_2001_Tables_5.01_and_8.01, +844,B248,B011,330,,,bamforth1988[106-9];denig1961[165],,1870,Binford_2001_Tables_5.01_and_8.01, +845,B249,B011,283,,,culbertson1952[135],,1870,Binford_2001_Tables_5.01_and_8.01, +846,B25,B011,90,,,shternberg1933[385],,1920,Binford_2001_Tables_5.01_and_8.01, +847,B250,B011,122,,,chamberlain1892[551],,1880,Binford_2001_Tables_5.01_and_8.01, +848,B252,B011,170,,,steward1938[201-6],,1860,Binford_2001_Tables_5.01_and_8.01, +849,B253,B011,188,,,bamforth1988[106-9];swanton1952[278],,1870,Binford_2001_Tables_5.01_and_8.01, +850,B254,B011,250,,,skinner1914[477],,1850,Binford_2001_Tables_5.01_and_8.01, +851,B255,B011,254,,,ewers1955[303],,1850,Binford_2001_Tables_5.01_and_8.01, +852,B256,B011,346,,,bushnell1922[26];ewers1955[303],,1850,Binford_2001_Tables_5.01_and_8.01, +853,B257,B011,159,,,bushnell1922[32-33];culbertson1952[107];lowrieandclarke1832,,1870,Binford_2001_Tables_5.01_and_8.01, +854,B258,B011,75,,,"bamforth1988[106-109];bushnell1922[20, 21]",,1850,Binford_2001_Tables_5.01_and_8.01, +855,B259,B011,250,,,bamforth1988[106-109],,1850,Binford_2001_Tables_5.01_and_8.01, +856,B26,B011,55,,,"kreynovich1979[191-92, 196]",,1900,Binford_2001_Tables_5.01_and_8.01, +857,B260,B011,140,,,bamforth1988[106-109];jenness1938[10-11],,1880,Binford_2001_Tables_5.01_and_8.01, +858,B268,B011,106,,,"suttles1990[453, 473]",,1880,Binford_2001_Tables_5.01_and_8.01, +859,B269,B011,,,,,,,, +860,B27,B011,29,,,"popov1966[12, 103]",,1933,Binford_2001_Tables_5.01_and_8.01, +861,B270,B011,145,,,smith1940a[7-14],,1870,Binford_2001_Tables_5.01_and_8.01, +862,B271,B011,80,,,elmendorf1960[32-55],,1850,Binford_2001_Tables_5.01_and_8.01, +863,B272,B011,110,,,taylor1974a[187],,1880,Binford_2001_Tables_5.01_and_8.01, +864,B273,B011,195,,"Note, focal year differs from that for some other data for society",drucker1951[222-49];koppert1930a[53],,1881,Binford_2001_Tables_5.01_and_8.01, +865,B274,B011,52,,,ray1938[38-41],,1850,Binford_2001_Tables_5.01_and_8.01, +866,B275,B011,58,,,boyd1990[136];zenk1990[572],,1860,Binford_2001_Tables_5.01_and_8.01, +867,B276,B011,85,,,teit1906b[199],,1860,Binford_2001_Tables_5.01_and_8.01, +868,B277,B011,140,,,stern1934[7],,1880,Binford_2001_Tables_5.01_and_8.01, +869,B278,B011,36,,,schalk1978[165],,1860,Binford_2001_Tables_5.01_and_8.01, +870,B279,B011,37,,,duff1952[45],,1880,Binford_2001_Tables_5.01_and_8.01, +871,B28,B011,35,,,krupnik1983a[94-95],,1860,Binford_2001_Tables_5.01_and_8.01, +872,B280,B011,48,,,suttles1990[462];wilson1866[286],,1880,Binford_2001_Tables_5.01_and_8.01, +873,B281,B011,65,,,seaburgandmiller1990[561],,,Binford_2001_Tables_5.01_and_8.01, +874,B282,B011,240,,,kennedyandbouchard1990[450-51],,1860,Binford_2001_Tables_5.01_and_8.01, +875,B283,B011,181,,,hilton1990[313],,1880,Binford_2001_Tables_5.01_and_8.01, +876,B284,B011,112,,,pettitt1950[3-5],,1880,Binford_2001_Tables_5.01_and_8.01, +877,B285,B011,166,,,boyd1990[136];suttles1990[456],,1860,Binford_2001_Tables_5.01_and_8.01, +878,B286,B011,164,,,swan1870[2],,1860,Binford_2001_Tables_5.01_and_8.01, +879,B287,B011,650,,,schalk1978[165],,1880,Binford_2001_Tables_5.01_and_8.01, +880,B288,B011,420,,,schalk1978[165],,1890,Binford_2001_Tables_5.01_and_8.01, +881,B289,B011,389,,,"schalk1978[126, 165]",,1880,Binford_2001_Tables_5.01_and_8.01, +882,B290,B011,577,,,"schalk1978[126, 165]",,1890,Binford_2001_Tables_5.01_and_8.01, +883,B291,B011,58,,,schalk1978[165],,1880,Binford_2001_Tables_5.01_and_8.01, +884,B292,B011,197,,,"schalk1978[127, 165]",,1880,Binford_2001_Tables_5.01_and_8.01, +885,B293,B011,179,,,adams1973[8],,1880,Binford_2001_Tables_5.01_and_8.01, +886,B294,B011,162,,,knechtandjordan1985[21],,1840,Binford_2001_Tables_5.01_and_8.01, +887,B295,B011,57,,,birketsmithanddelaguna1938[19],,1890,Binford_2001_Tables_5.01_and_8.01, +888,B296,B011,108,,,michael1967[306],,1850,Binford_2001_Tables_5.01_and_8.01, +889,B297,B011,40,,"Note, two estimates provided by Binford, neither of which corresponds to the focal year (1843: 40, and 1890: 67); this entry is one of those estimates",michael1967[306],,1843,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, neither of which corresponds to the focal year (1843: 40, and 1890: 67)" +890,B297,B011,67,,"Note, two estimates provided by Binford, neither of which corresponds to the focal year (1843: 40, and 1890: 67); this entry is one of those estimates",delaguna1956[256],,1890,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, neither of which corresponds to the focal year (1843: 40, and 1890: 67)" +891,B298,B011,55,,,lantis1970a[178];mitchellanddonald1988[319-21],,1830,Binford_2001_Tables_5.01_and_8.01, +892,B299,B011,54.6,,,lantis1946[163-64],,1930,Binford_2001_Tables_5.01_and_8.01, +893,B3,B011,,,,,,,, +894,B315,B011,,,,,,,, +895,B316,B011,,,,,,,, +896,B317,B011,275,,,teit1928[93-108],,1870,Binford_2001_Tables_5.01_and_8.01, +897,B318,B011,,,,,,,, +898,B319,B011,205,,,spierandsapir1930[166-67],,1860,Binford_2001_Tables_5.01_and_8.01, +899,B320,B011,60,,,"teit1930[39, 331]",,1860,Binford_2001_Tables_5.01_and_8.01, +900,B321,B011,83,,,clineetal1938[87],,1880,Binford_2001_Tables_5.01_and_8.01, +901,B322,B011,50,,,teit1930[207-11],,1860,Binford_2001_Tables_5.01_and_8.01, +902,B323,B011,50,,,teit1930[211],,1870,Binford_2001_Tables_5.01_and_8.01, +903,B324,B011,134,,,"spinden1908[174-75, 196, 240]",,1850,Binford_2001_Tables_5.01_and_8.01, +904,B325,B011,113,,,teit1900[241-48],,1860,Binford_2001_Tables_5.01_and_8.01, +905,B326,B011,75,,,teit1930[331],,1870,Binford_2001_Tables_5.01_and_8.01, +906,B327,B011,65,,,jenness1935[13],,1870,Binford_2001_Tables_5.01_and_8.01, +907,B328,B011,76,,,kinietz1947[247],,1800,Binford_2001_Tables_5.01_and_8.01, +908,B329,B011,25,,,speck1922[143-44],,1700,Binford_2001_Tables_5.01_and_8.01, +909,B330,B011,73,,,teit1930[331];turneyhigh1937[98],,1860,Binford_2001_Tables_5.01_and_8.01, +910,B331,B011,57,,,hickerson1967[54-55],,1880,Binford_2001_Tables_5.01_and_8.01, +911,B332,B011,45,,,bishop1978[222-26],,1870,Binford_2001_Tables_5.01_and_8.01, +912,B333,B011,108,,,teit1905[457-66],,1850,Binford_2001_Tables_5.01_and_8.01, +913,B334,B011,55,,,"dunning1959[57, 58, 84];rogers1969[31]",,1940,Binford_2001_Tables_5.01_and_8.01, +914,B335,B011,50,,,"rogers1963b[67, 76, 88];rogers1969[25, 31]",,1900,Binford_2001_Tables_5.01_and_8.01, +915,B336,B011,85,,,goldman1940[334],,1865,Binford_2001_Tables_5.01_and_8.01, +916,B337,B011,36,,,hickerson1962[30-33],,1800,Binford_2001_Tables_5.01_and_8.01, +917,B338,B011,37,,,rogers1963a[23];rogers1969[30],,1880,Binford_2001_Tables_5.01_and_8.01, +918,B339,B011,50,,,rogers1969[43],,1850,Binford_2001_Tables_5.01_and_8.01, +919,B340,B011,58,,,"morantz1983[89, 106];rogers1969[31]",,1900,Binford_2001_Tables_5.01_and_8.01, +920,B341,B011,50,,,rogersandblack1976[19],,1890,Binford_2001_Tables_5.01_and_8.01, +921,B342,B011,95,,,tanner1944[592-609],,1880,Binford_2001_Tables_5.01_and_8.01, +922,B343,B011,40,,,dennison1981[434-35];jenness1937[14],,1880,Binford_2001_Tables_5.01_and_8.01, +923,B344,B011,58,,,ives1985[166-67],,1850,Binford_2001_Tables_5.01_and_8.01, +924,B345,B011,39,,,"helm1961[50-52, 169];ives1985[166-67];janes1983[50-51]",,1860,Binford_2001_Tables_5.01_and_8.01, +925,B346,B011,58,,,honigmann1949[33-37],,1920,Binford_2001_Tables_5.01_and_8.01, +926,B347,B011,71,,,maclachlan1981[460-61],,1870,Binford_2001_Tables_5.01_and_8.01, +927,B348,B011,,,,,,,, +928,B349,B011,54,,,jenness1943[485-86],,1880,Binford_2001_Tables_5.01_and_8.01, +929,B35,B011,,,,,,,, +930,B350,B011,60,,,gillespie1981[334-35],,1800,Binford_2001_Tables_5.01_and_8.01, +931,B351,B011,,,,,,,, +932,B352,B011,26,,,"helm1961[169];savishinsky1974[47, 54]",,1860,Binford_2001_Tables_5.01_and_8.01, +933,B353,B011,55,,,honigmann1956b[58];honigmann1981[228-29],,1900,Binford_2001_Tables_5.01_and_8.01, +934,B354,B011,38,,,clark1974[96],,1880,Binford_2001_Tables_5.01_and_8.01, +935,B355,B011,75,,"Note, focal year differs from that for some other data for society",smith1976[19];smith1978a[81];smith1981[275],,1880,Binford_2001_Tables_5.01_and_8.01, +936,B356,B011,78,,,"slobodin1969[58-59, 64]",,1880,Binford_2001_Tables_5.01_and_8.01, +937,B357,B011,29,,"Note, two estimates provided by Binford, the first refers specifically to Kusk Ingalik (29) and the second to Yukon Ingalik (77); this entry is one of those estimates",michael1967[307],Special reference to Kusk Ingalik),1880,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Kusk Ingalik (29) and the second to Yukon Ingalik (77)" +938,B357,B011,77,,"Note, two estimates provided by Binford, the first refers specifically to Kusk Ingalik (29) and the second to Yukon Ingalik (77); this entry is one of those estimates",sullivan1942[10],Special reference to Yukon Ingalik,1880,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Kusk Ingalik (29) and the second to Yukon Ingalik (77)" +939,B358,B011,29,,,mackenzie1966[49-56],,1860,Binford_2001_Tables_5.01_and_8.01, +940,B359,B011,39,,,mckennan1959[18],,1930,Binford_2001_Tables_5.01_and_8.01, +941,B36,B011,50,,,metraux1948[863],,1960,Binford_2001_Tables_5.01_and_8.01, +942,B360,B011,55,,,morantz1983[106],,1900,Binford_2001_Tables_5.01_and_8.01, +943,B361,B011,60,,,helm1968[120],,1860,Binford_2001_Tables_5.01_and_8.01, +944,B362,B011,68,,"Note, focal year differs from that for some other data for society",michael1967[306],,1843,Binford_2001_Tables_5.01_and_8.01, +945,B363,B011,60,,,legros1982[68-69],,1890,Binford_2001_Tables_5.01_and_8.01, +946,B364,B011,66,,,snow1981[615],,1860,Binford_2001_Tables_5.01_and_8.01, +947,B365,B011,39,,,"henriksen1973[58-59, 68]",,1890,Binford_2001_Tables_5.01_and_8.01, +948,B369,B011,48,,,ray1992[295],,1870,Binford_2001_Tables_5.01_and_8.01, +949,B37,B011,28,,,kloos1977[116],,1968,Binford_2001_Tables_5.01_and_8.01, +950,B370,B011,30,,,burch1975[257-58],,1890,Binford_2001_Tables_5.01_and_8.01, +951,B371,B011,49,,,burch1975[269-72];burch1984[305],,1880,Binford_2001_Tables_5.01_and_8.01, +952,B372,B011,35,,,"taylor1974[15-19, 64]",,1890,Binford_2001_Tables_5.01_and_8.01, +953,B373,B011,40,,,"willmott1960[48, 53]",,1890,Binford_2001_Tables_5.01_and_8.01, +954,B374,B011,40,,,birketsmith1929[67-69],,1900,Binford_2001_Tables_5.01_and_8.01, +955,B375,B011,30,,,binfordfieldnotes1971;burch1975[255],,1900,Binford_2001_Tables_5.01_and_8.01, +956,B377,B011,31.1,,,amsden1977[224],,1898-1909,Binford_2001_Tables_5.01_and_8.01, +957,B377,B011,25.1,,,amsden1977[224],,1934-1950,Binford_2001_Tables_5.01_and_8.01, +958,B377,B011,40.5,,,amsden1977[224],,1951-1959,Binford_2001_Tables_5.01_and_8.01, +959,B378,B011,45,,,mcghee1988[11];tyrrell1897[167],,1910,Binford_2001_Tables_5.01_and_8.01, +960,B379,B011,121,,,moore1923[340],,1920,Binford_2001_Tables_5.01_and_8.01, +961,B38,B011,57,,,gragson1989[289-90];greavesperscomm1993,,1989,Binford_2001_Tables_5.01_and_8.01, +962,B380,B011,179,,"Note, Binford Table 5.01 lists '79' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",burch1975[260-69],,1880,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '79' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +963,B381,B011,105,,,"jenness1922[30, 55, 57];rasmussen1932[70, 78-85]",,1920,Binford_2001_Tables_5.01_and_8.01, +964,B382,B011,35,,,"briggs1970[15, 372-74]",,1920,Binford_2001_Tables_5.01_and_8.01, +965,B383,B011,26,,,"rae1850[40, 48, 49]",,1880,Binford_2001_Tables_5.01_and_8.01, +966,B384,B011,60,,,mathiassen1928[32],,1920,Binford_2001_Tables_5.01_and_8.01, +967,B385,B011,31.5,,,"perry1898[131, 171-72, 267-68, 336, 386, 431];york1875[179]",,1880,Binford_2001_Tables_5.01_and_8.01, +968,B386,B011,70,,,"boas1888[426];hantzsch1977[39, 99];low1906[57-58]",,1880,Binford_2001_Tables_5.01_and_8.01, +969,B387,B011,85,,,"mclintock1860[8, 230, 232, 235, 239, 240]",,1880,Binford_2001_Tables_5.01_and_8.01, +970,B388,B011,30.9,,,mirsky1937a[53];peterson1984[623],,1880,Binford_2001_Tables_5.01_and_8.01, +971,B389,B011,309,,,simpson1875[237];spencer1959[15],,1880,Binford_2001_Tables_5.01_and_8.01, +972,B39,B011,60,,,wilbert1957[90],,1960,Binford_2001_Tables_5.01_and_8.01, +973,B390,B011,35,,,"ekblaw1948[3];steensby1910[266, 296, 324]",,1880,Binford_2001_Tables_5.01_and_8.01, +974,B4,B011,31,,,rizvi1990[8],,1989,Binford_2001_Tables_5.01_and_8.01, +975,B40,B011,47,,,politis1992[3];politisperscomm1992,,1990,Binford_2001_Tables_5.01_and_8.01, +976,B41,B011,118,,,baldus1937[115-23];levistrauss1936[269],,1920,Binford_2001_Tables_5.01_and_8.01, +977,B42,B011,37,,,metraux1946guato[410],,1901,Binford_2001_Tables_5.01_and_8.01, +978,B43,B011,70,,,holmberg1950[51],,1940,Binford_2001_Tables_5.01_and_8.01, +979,B44,B011,43,,,"stearman1989[26, 31]",,1968,Binford_2001_Tables_5.01_and_8.01, +980,B45,B011,47,,,levistrauss1970[288];oberg1953[86],,1938,Binford_2001_Tables_5.01_and_8.01, +981,B46,B011,62,,,"hann1991[42, 159, 168]",,1600,Binford_2001_Tables_5.01_and_8.01, +982,B47,B011,50,,"Note, Binford Table 5.01 lists '60' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.","clastres1972[163];oberg1953[18, 38]",,1975,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '60' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +983,B48,B011,50,,,metrauxandbaldus1946[534],,1880,Binford_2001_Tables_5.01_and_8.01, +984,B49,B011,30,,,kozaketal1979[360],,1954,Binford_2001_Tables_5.01_and_8.01, +985,B5,B011,23,,,bose1964[305],,1952,Binford_2001_Tables_5.01_and_8.01, +986,B50,B011,,,,,,,, +987,B51,B011,75,,,cooper1946c[150];goni1988[145],,1870,Binford_2001_Tables_5.01_and_8.01, +988,B52,B011,,,,,,,, +989,B53,B011,,,,,,,, +990,B54,B011,45,,,chapman1982[58];cooper1946b[117];gusinde1931[205],,1880,Binford_2001_Tables_5.01_and_8.01, +991,B55,B011,24,,,"gusinde1937a[384, 387]",,1870,Binford_2001_Tables_5.01_and_8.01, +992,B6,B011,25.8,,,"temple1903[62, 77, 84]",,1906,Binford_2001_Tables_5.01_and_8.01, +993,B60,B011,36,,,"bahuchet1988[131];hudson1990[58, 63, 71]",,1980,Binford_2001_Tables_5.01_and_8.01, +994,B61,B011,30,,,"heymer1980[178, 193-96]",,1976,Binford_2001_Tables_5.01_and_8.01, +995,B62,B011,60,,,"terashima1980[234, 235, 262]",,1977,Binford_2001_Tables_5.01_and_8.01, +996,B63,B011,32.6,,"Note, two estimates provided by Binford (32.6, 31.75); this entry is one of those estimates",cavallisforza1986c[32-33],,1980,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (32.6, 31.75)" +997,B63,B011,31.75,,"Note, two estimates provided by Binford (32.6, 31.75); this entry is one of those estimates",valloisandmarquer1976[113],,1980,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (32.6, 31.75)" +998,B64,B011,33,,,baileyandpeacock1988[99-100];fisherandstrickland1989[476],,1980,Binford_2001_Tables_5.01_and_8.01, +999,B65,B011,60,,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (60) and the second to Epula Mbuti (104); this entry is one of those estimates","tanno1976[107, 108, 130]",Special reference to Mawambo Mbuti,1930,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (60) and the second to Epula Mbuti (104)" +1000,B65,B011,104,,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (60) and the second to Epula Mbuti (104); this entry is one of those estimates","turnbull1965a[97, 98]",Special reference to Epula Mbuti,1930,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (60) and the second to Epula Mbuti (104)" +1001,B66,B011,40,,,kellyandpoyer1993[1],,,Binford_2001_Tables_5.01_and_8.01, +1002,B67,B011,23,,,clark1951[65],,1950,Binford_2001_Tables_5.01_and_8.01, +1003,B68,B011,60,,,fourie1927[51],,1920,Binford_2001_Tables_5.01_and_8.01, +1004,B69,B011,42,,,blurtonjonesetal1992[164];hawkesetal1989[344];woodburn1968b[104],,1910,Binford_2001_Tables_5.01_and_8.01, +1005,B7,B011,35,,,fox1952[188];reed1904[19],,1903,Binford_2001_Tables_5.01_and_8.01, +1006,B70,B011,46,,,huntingford1951[8];huntingford1954[128],,1920,Binford_2001_Tables_5.01_and_8.01, +1007,B71,B011,31,,,bleek1929[109];decastroandalmeida1956[9],,1928,Binford_2001_Tables_5.01_and_8.01, +1008,B72,B011,24.3,,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (24.3) and the second to Dobe !Kung (23); this entry is one of those estimates",marshall1960[328],Special reference to Was Nyae !Kung,1950,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (24.3) and the second to Dobe !Kung (23)" +1009,B72,B011,23,,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (24.3) and the second to Dobe !Kung (23); this entry is one of those estimates",lee1972a[330],Special reference to Dobe !Kung,1950,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (24.3) and the second to Dobe !Kung (23)" +1010,B73,B011,20.2,,,guenther1986[186];schapera1930[78],,1910,Binford_2001_Tables_5.01_and_8.01, +1011,B74,B011,36,,,silberbauer1972[296];silberbauer1981a[195-98],,1962,Binford_2001_Tables_5.01_and_8.01, +1012,B75,B011,20.8,,,kentandvierich1989,,1976,Binford_2001_Tables_5.01_and_8.01, +1013,B76,B011,54,,,eibleibesfeldt1972[32-33],,1968,Binford_2001_Tables_5.01_and_8.01, +1014,B77,B011,21,,,dart1937b[160-65];steyn1984[118],,1920,Binford_2001_Tables_5.01_and_8.01, +1015,B78,B011,,,,,,,, +1016,B79,B011,24,,,"bleek1924a[viii, ix]",,,Binford_2001_Tables_5.01_and_8.01, +1017,B8,B011,43,,,radcliffebrown1948[28],,1870,Binford_2001_Tables_5.01_and_8.01, +1018,B82,B011,50,,,moore1979[39],,1848,Binford_2001_Tables_5.01_and_8.01, +1019,B83,B011,,,,,,,, +1020,B84,B011,44,,,altman1987[15-27];berndtandberndt1970[3-14],,1978,Binford_2001_Tables_5.01_and_8.01, +1021,B85,B011,34,,,peterson1970[11];peterson1973[185];peterson1992;petersonandlong1986[40],,1970,Binford_2001_Tables_5.01_and_8.01, +1022,B86,B011,35,,,meehan1982[31-41],,1973,Binford_2001_Tables_5.01_and_8.01, +1023,B87,B011,34,,,peterson1972[26];petersonandlong1986[40],,1950,Binford_2001_Tables_5.01_and_8.01, +1024,B88,B011,36,,,thomson1949[16];warner1958[127-28],,1930,Binford_2001_Tables_5.01_and_8.01, +1025,B89,B011,32,,,kaberry1935[428],,1920,Binford_2001_Tables_5.01_and_8.01, +1026,B9,B011,34,,,"brandt1961[131-33];rambo1985[4, 33];schebesta1962a[17, 220]",,1920,Binford_2001_Tables_5.01_and_8.01, +1027,B90,B011,45,,Binford estimate from photos,wills1980[85],,1920,Binford_2001_Tables_5.01_and_8.01, +1028,B91,B011,32,,,leichhardt1847[507];mccarthyandmacarthur1960[90-96],,1920,Binford_2001_Tables_5.01_and_8.01, +1029,B92,B011,30,,,biernoff1979[12];mcarthur1960[95];thomson1949[4],,1960,Binford_2001_Tables_5.01_and_8.01, +1030,B93,B011,,,,,,,, +1031,B94,B011,30,,,"petersonandlong1986[88-89, 95-99];sharp1934[425]",,1937,Binford_2001_Tables_5.01_and_8.01, +1032,B95,B011,32,,,"hartandpilling1960[35, 36, 65, 66]",,1920,Binford_2001_Tables_5.01_and_8.01, +1033,B96,B011,,,,,,,, +1034,B97,B011,32,,,petersonandlong1986[78-79],,1930,Binford_2001_Tables_5.01_and_8.01, +1035,B98,B011,35,,,haleandtindale1933[77-78],,1926,Binford_2001_Tables_5.01_and_8.01, +1036,B99,B011,30,,"Binford noted this was an ""estimate""",stanner1933[393],,1900,Binford_2001_Tables_5.01_and_8.01, +1037,B1,B012,62,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Tables_5.01_and_8.01, +1038,B10,B012,72,,,"bailey1863[296, 308];seligmannandseligmann1911[43-44]",,1900,Binford_2001_Tables_5.01_and_8.01, +1039,B100,B012,150,,,blundell1980[106-7];love1936[93],,,Binford_2001_Tables_5.01_and_8.01, +1040,B101,B012,,,,,,,, +1041,B102,B012,,,,,,,, +1042,B103,B012,85,,,tindale1962a[269],,1928,Binford_2001_Tables_5.01_and_8.01, +1043,B104,B012,,,,,,,, +1044,B105,B012,285,,,harris1978[128],,1900,Binford_2001_Tables_5.01_and_8.01, +1045,B106,B012,,,,,,,, +1046,B107,B012,250,,,brayshaw1990[31];lumholtz1889[194],,1870,Binford_2001_Tables_5.01_and_8.01, +1047,B108,B012,,,,,,,, +1048,B109,B012,200,,,"meggitt1962[47, 50, 56]",,1965,Binford_2001_Tables_5.01_and_8.01, +1049,B11,B012,141,,,"morris1982a[36-37, 174]",,1972,Binford_2001_Tables_5.01_and_8.01, +1050,B110,B012,130,,,petersonandlong1986[116-17];tonkinson1978[53],,1880,Binford_2001_Tables_5.01_and_8.01, +1051,B111,B012,250,,"Note, Binford Table 5.01 lists '180', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",harris1978[128],,1960,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '180', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +1052,B112,B012,,,,,,,, +1053,B113,B012,300,,,long1971[264-65];meggitt1962[55];petersonandlong1986[104-11],,1936,Binford_2001_Tables_5.01_and_8.01, +1054,B114,B012,150,,,colliverandwoolston1975[93],,1848,Binford_2001_Tables_5.01_and_8.01, +1055,B115,B012,400,,,morwood1987[339];winterbotham1980[41],,1840,Binford_2001_Tables_5.01_and_8.01, +1056,B116,B012,,,,,,,, +1057,B117,B012,230,,,binfordfieldnotes1974;denham1975[120];oconnell1987[85],,1965,Binford_2001_Tables_5.01_and_8.01, +1058,B118,B012,150,,,gould1977[21-22],,1968,Binford_2001_Tables_5.01_and_8.01, +1059,B119,B012,250,,,gardner1978[239-46],,1850,Binford_2001_Tables_5.01_and_8.01, +1060,B12,B012,82,,,headlandperscomm1993,,1965,Binford_2001_Tables_5.01_and_8.01, +1061,B120,B012,256,,,"brokensha1975[19, 33];layton1983[26];petersonandlong1986[127];tindale1972[224, 244]",,1968,Binford_2001_Tables_5.01_and_8.01, +1062,B121,B012,350,,,"gason1879[257, 264];sturt1849a[1:254, 261, 296, 316, 407, 414];sturt1849a[2:70, 74]",,1900,Binford_2001_Tables_5.01_and_8.01, +1063,B122,B012,,,,,,,, +1064,B123,B012,225,,,tindaleperscomm1965,,1922,Binford_2001_Tables_5.01_and_8.01, +1065,B124,B012,310,,,"spencerandgillen1927[15, 506]",,1900,Binford_2001_Tables_5.01_and_8.01, +1066,B125,B012,,,,,,,, +1067,B126,B012,,,,,,,, +1068,B127,B012,,,,,,,, +1069,B128,B012,,,,,,,, +1070,B129,B012,,,,,,,, +1071,B13,B012,70,,,"rai1982[63, 66, 119]",,1979,Binford_2001_Tables_5.01_and_8.01, +1072,B130,B012,,,,,,,, +1073,B131,B012,,,,,,,, +1074,B132,B012,300,,,nind1831[28],,1850,Binford_2001_Tables_5.01_and_8.01, +1075,B133,B012,350,,,williams1985[75],,1850,Binford_2001_Tables_5.01_and_8.01, +1076,B134,B012,275,,,"gaughwinandsullivan1984[92, 94]",,1850,Binford_2001_Tables_5.01_and_8.01, +1077,B135,B012,270,,,fisonandhowitt1880[209];howitt1904[773-77],,1850,Binford_2001_Tables_5.01_and_8.01, +1078,B136,B012,52,,,"hiatt1967[201];jones1971[278, 279]",,1830,Binford_2001_Tables_5.01_and_8.01, +1079,B137,B012,75,,,"hiatt1967[201];jones1971[278, 279]",,1830,Binford_2001_Tables_5.01_and_8.01, +1080,B14,B012,,,,,,,, +1081,B143,B012,188,,,bowen1976[24-30];griffen1959[vii],,1900,Binford_2001_Tables_5.01_and_8.01, +1082,B144,B012,180,,,"bean1972[76];kroeber1925a[692, 706-7];strong1929a[43-56]",,1870,Binford_2001_Tables_5.01_and_8.01, +1083,B145,B012,195,,,strong1929a[187-19],,1870,Binford_2001_Tables_5.01_and_8.01, +1084,B146,B012,130,,,meigs1939[18-20],,1880,Binford_2001_Tables_5.01_and_8.01, +1085,B147,B012,120,,,"kroeber1925a[712, 719];luomala1978[597]",,1850,Binford_2001_Tables_5.01_and_8.01, +1086,B148,B012,150,,,cook1955[40],,1860,Binford_2001_Tables_5.01_and_8.01, +1087,B149,B012,,,,,,,, +1088,B15,B012,,,,,,,, +1089,B150,B012,300,,,oxendine1983[50-57],,1860,Binford_2001_Tables_5.01_and_8.01, +1090,B151,B012,350,,,cook1955[40],,1860,Binford_2001_Tables_5.01_and_8.01, +1091,B152,B012,110,,,voegelin1938[39-43],,1850,Binford_2001_Tables_5.01_and_8.01, +1092,B153,B012,130,,,goldschmidt1948[445],,1850,Binford_2001_Tables_5.01_and_8.01, +1093,B154,B012,130,,,cook1955[35],,1850,Binford_2001_Tables_5.01_and_8.01, +1094,B155,B012,189,,,johnson1978[352],,1850,Binford_2001_Tables_5.01_and_8.01, +1095,B156,B012,,,,,,,, +1096,B157,B012,70,,,gifford1932b[42-47],,1870,Binford_2001_Tables_5.01_and_8.01, +1097,B158,B012,235,,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable.",barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable." +1098,B159,B012,450,,,cook1956[116-17],,1860,Binford_2001_Tables_5.01_and_8.01, +1099,B16,B012,,,,,,,, +1100,B160,B012,150,,,"dubois1935[28, 29]",,1860,Binford_2001_Tables_5.01_and_8.01, +1101,B161,B012,,,,,,,, +1102,B162,B012,,,,,,,, +1103,B163,B012,165,,,wilsonandtowne1978[388],,1850,Binford_2001_Tables_5.01_and_8.01, +1104,B164,B012,,,,,,,, +1105,B165,B012,,,,,,,, +1106,B166,B012,,,,,,,, +1107,B167,B012,,,,,,,, +1108,B168,B012,,,,,,,, +1109,B169,B012,,,,,,,, +1110,B17,B012,107,,,"gardner1965[101];gardner1988[93, 94]",,1963,Binford_2001_Tables_5.01_and_8.01, +1111,B170,B012,192,,,cook1955[122],,,Binford_2001_Tables_5.01_and_8.01, +1112,B171,B012,150,,,cook1956[107],,1850,Binford_2001_Tables_5.01_and_8.01, +1113,B172,B012,154,,,cook1956[124],,1860,Binford_2001_Tables_5.01_and_8.01, +1114,B173,B012,,,,,,,, +1115,B174,B012,,,,,,,, +1116,B175,B012,250,,,cook1955[36],,1850,Binford_2001_Tables_5.01_and_8.01, +1117,B176,B012,,,,,,,, +1118,B177,B012,,,,,,,, +1119,B178,B012,,,,,,,, +1120,B179,B012,,,,,,,, +1121,B18,B012,160,,,senandsen1955[172];williams1974[79],,1963,Binford_2001_Tables_5.01_and_8.01, +1122,B180,B012,,,,,,,, +1123,B181,B012,,,,,,,, +1124,B182,B012,,,,,,,, +1125,B183,B012,,,,,,,, +1126,B184,B012,,,,,,,, +1127,B185,B012,,,,,,,, +1128,B186,B012,,,,,,,, +1129,B187,B012,275,,,kroeber1962[36-37],,1860,Binford_2001_Tables_5.01_and_8.01, +1130,B188,B012,157,,,ray1963[204],,1860,Binford_2001_Tables_5.01_and_8.01, +1131,B189,B012,97,,,"spier1930[5-8, 23]",,1860,Binford_2001_Tables_5.01_and_8.01, +1132,B19,B012,187,,,ehrenfels1952[66-67],,1946,Binford_2001_Tables_5.01_and_8.01, +1133,B190,B012,128,,,aschmann1967[122],,1760,Binford_2001_Tables_5.01_and_8.01, +1134,B191,B012,,,,,,,, +1135,B192,B012,45,,,steward1938[85-91],,1860,Binford_2001_Tables_5.01_and_8.01, +1136,B193,B012,225,,,stiles1906[80-87],,1800,Binford_2001_Tables_5.01_and_8.01, +1137,B194,B012,153,,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable.",,,1715,Binford_2001_Table_5.01,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable." +1138,B195,B012,,,,,,,, +1139,B196,B012,,,,,,,, +1140,B197,B012,,,,,,,, +1141,B198,B012,60,,,"hayden1936[142, 165-68, 70];kroeber1935[45]",,1870,Binford_2001_Tables_5.01_and_8.01, +1142,B199,B012,45,,,voegelin1938[48],,1860,Binford_2001_Tables_5.01_and_8.01, +1143,B2,B012,,,,,,,, +1144,B20,B012,,,,,,,, +1145,B200,B012,65,,,"steward1938[77, 78, 80]",,1860,Binford_2001_Tables_5.01_and_8.01, +1146,B201,B012,,,,,,,, +1147,B202,B012,300,,,liljebladandfowler1986[414-15];steward1938[110],,1870,Binford_2001_Tables_5.01_and_8.01, +1148,B203,B012,42,,,steward1938[110],,1860,Binford_2001_Tables_5.01_and_8.01, +1149,B204,B012,70,,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",kelly1964[11-22],,1860,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +1150,B204,B012,116,,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",eulerandfowler1966[35],Special reference to Kaibab Southern Paiute,1860,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +1151,B204,B012,200,,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",stoffleandevans1978[183],Special reference to Las Vegas Southern Paiute,1860,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +1152,B205,B012,,,,,,,, +1153,B206,B012,,,,,,,, +1154,B207,B012,119,,,gouldperscomm1992,,1860,Binford_2001_Tables_5.01_and_8.01, +1155,B208,B012,320,,,"fowlerandliljeblad1986[443, 457]",,1860,Binford_2001_Tables_5.01_and_8.01, +1156,B209,B012,160,,,"janetski1983[53-54, 75]",,1860,Binford_2001_Tables_5.01_and_8.01, +1157,B21,B012,,,,,,,, +1158,B210,B012,130,,,"fowler1992[35-37, 154]",,1870,Binford_2001_Tables_5.01_and_8.01, +1159,B211,B012,101,,,steward1938[61],,1860,Binford_2001_Tables_5.01_and_8.01, +1160,B212,B012,,,,,,,, +1161,B213,B012,138,,,steward1938[177],,1870,Binford_2001_Tables_5.01_and_8.01, +1162,B214,B012,150,,,steward1938[132],,1860,Binford_2001_Tables_5.01_and_8.01, +1163,B215,B012,130,,"Note, Binford Table 5.01 lists '180', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",steward1938[124-27],,1870,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '180', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +1164,B216,B012,180,,,lowie1924[284];steward1938[161],,1860,Binford_2001_Tables_5.01_and_8.01, +1165,B217,B012,70,,,steward1938[117],,1860,Binford_2001_Tables_5.01_and_8.01, +1166,B218,B012,132,,,"steward1938[101, 108]",,1860,Binford_2001_Tables_5.01_and_8.01, +1167,B219,B012,,,,,,,, +1168,B22,B012,122.6,,,watanabe1964a[8-9],Special reference to Hokkaido Ainu,1900,Binford_2001_Tables_5.01_and_8.01, +1169,B221,B012,78,,,steward1938[174],,1860,Binford_2001_Tables_5.01_and_8.01, +1170,B222,B012,102,,,callawayetal1986[352];smith1974[123],,1860,Binford_2001_Tables_5.01_and_8.01, +1171,B223,B012,,,,,,,, +1172,B224,B012,110,,,steward1938[130],,1860,Binford_2001_Tables_5.01_and_8.01, +1173,B225,B012,,,,,,,, +1174,B226,B012,100,,,"kelly1932[78, 105]",,1870,Binford_2001_Tables_5.01_and_8.01, +1175,B227,B012,200,,,shimkin1947[255];steward1974a[373],,1860,Binford_2001_Tables_5.01_and_8.01, +1176,B228,B012,65,,,steward1938[145-46],,1860,Binford_2001_Tables_5.01_and_8.01, +1177,B229,B012,,,,,,,, +1178,B23,B012,265,,"Binford noted this was an ""estimate""",qiu1983,,1900,Binford_2001_Tables_5.01_and_8.01, +1179,B230,B012,169,,,steward1974b[147],,1860,Binford_2001_Tables_5.01_and_8.01, +1180,B231,B012,,,,,,,, +1181,B232,B012,300,,,steward1938[186-89],,1860,Binford_2001_Tables_5.01_and_8.01, +1182,B233,B012,96,,,steward1938[113],,1860,Binford_2001_Tables_5.01_and_8.01, +1183,B234,B012,150,,,steward1974b[147],,1860,Binford_2001_Tables_5.01_and_8.01, +1184,B24,B012,182,,,lee1967[24];shimkin1939[150],,1900,Binford_2001_Tables_5.01_and_8.01, +1185,B240,B012,166,,,basehartperscomm1972;swanton1952[323],,1880,Binford_2001_Tables_5.01_and_8.01, +1186,B241,B012,650,,,wallaceandhoebel1952[23],,1870,Binford_2001_Tables_5.01_and_8.01, +1187,B242,B012,200,,,basehart1972[5];morice1906b[496];opler1937[177-82],,1880,Binford_2001_Tables_5.01_and_8.01, +1188,B243,B012,620,,,bamforth1988[106-9],,1870,Binford_2001_Tables_5.01_and_8.01, +1189,B244,B012,,,,,,,, +1190,B245,B012,687,,,"moore1987[180-86, 194]",,1860,Binford_2001_Tables_5.01_and_8.01, +1191,B246,B012,750,,,flannery1953[54];gussowetal1974[23],,1860,Binford_2001_Tables_5.01_and_8.01, +1192,B248,B012,1500,,,bamforth1988[106-9];denig1961[165],,1870,Binford_2001_Tables_5.01_and_8.01, +1193,B249,B012,500,,,culbertson1952[135],,1870,Binford_2001_Tables_5.01_and_8.01, +1194,B25,B012,,,,,,,, +1195,B250,B012,,,,,,,, +1196,B252,B012,650,,,steward1938[201-6],,1860,Binford_2001_Tables_5.01_and_8.01, +1197,B253,B012,445,,,bamforth1988[106-9];swanton1952[278],,1870,Binford_2001_Tables_5.01_and_8.01, +1198,B254,B012,500,,,skinner1914[477],,1850,Binford_2001_Tables_5.01_and_8.01, +1199,B255,B012,762,,,ewers1955[303],,1850,Binford_2001_Tables_5.01_and_8.01, +1200,B256,B012,1100,,,bushnell1922[26];ewers1955[303],,1850,Binford_2001_Tables_5.01_and_8.01, +1201,B257,B012,850,,,bushnell1922[32-33];culbertson1952[107];lowrieandclarke1832,,1870,Binford_2001_Tables_5.01_and_8.01, +1202,B258,B012,285,,,"bamforth1988[106-109];bushnell1922[20, 21]",,1850,Binford_2001_Tables_5.01_and_8.01, +1203,B259,B012,800,,,bamforth1988[106-109],,1850,Binford_2001_Tables_5.01_and_8.01, +1204,B26,B012,180,,,"kreynovich1979[191-92, 196]",,1900,Binford_2001_Tables_5.01_and_8.01, +1205,B260,B012,300,,,bamforth1988[106-109];jenness1938[10-11],,1880,Binford_2001_Tables_5.01_and_8.01, +1206,B268,B012,,,,,,,, +1207,B269,B012,,,,,,,, +1208,B27,B012,116,,,"popov1966[12, 103]",,1933,Binford_2001_Tables_5.01_and_8.01, +1209,B270,B012,,,,,,,, +1210,B271,B012,,,,,,,, +1211,B272,B012,,,,,,,, +1212,B273,B012,,,,,,,, +1213,B274,B012,,,,,,,, +1214,B275,B012,,,,,,,, +1215,B276,B012,,,,,,,, +1216,B277,B012,,,,,,,, +1217,B278,B012,,,,,,,, +1218,B279,B012,,,,,,,, +1219,B28,B012,90,,,krupnik1983a[94-95],,1860,Binford_2001_Tables_5.01_and_8.01, +1220,B280,B012,,,,,,,, +1221,B281,B012,,,,,,,, +1222,B282,B012,,,,,,,, +1223,B283,B012,,,,,,,, +1224,B284,B012,225,,,pettitt1950[3-5],,1880,Binford_2001_Tables_5.01_and_8.01, +1225,B285,B012,,,,,,,, +1226,B286,B012,,,,,,,, +1227,B287,B012,,,,,,,, +1228,B288,B012,,,,,,,, +1229,B289,B012,,,,,,,, +1230,B290,B012,,,,,,,, +1231,B291,B012,,,,,,,, +1232,B292,B012,,,,,,,, +1233,B293,B012,,,,,,,, +1234,B294,B012,,,,,,,, +1235,B295,B012,130,,,birketsmithanddelaguna1938[19],,1890,Binford_2001_Tables_5.01_and_8.01, +1236,B296,B012,,,,,,,, +1237,B297,B012,,,,,,,, +1238,B298,B012,,,,,,,, +1239,B299,B012,133,,,lantis1946[163-64],,1930,Binford_2001_Tables_5.01_and_8.01, +1240,B3,B012,,,,,,,, +1241,B315,B012,212,,,murdock1980[130],,1850,Binford_2001_Tables_5.01_and_8.01, +1242,B316,B012,,,,,,,, +1243,B317,B012,500,,,teit1928[93-108],,1870,Binford_2001_Tables_5.01_and_8.01, +1244,B318,B012,,,,,,,, +1245,B319,B012,700,,,spierandsapir1930[166-67],,1860,Binford_2001_Tables_5.01_and_8.01, +1246,B320,B012,350,,,"teit1930[39, 331]",,1860,Binford_2001_Tables_5.01_and_8.01, +1247,B321,B012,230,,,clineetal1938[87],,1880,Binford_2001_Tables_5.01_and_8.01, +1248,B322,B012,245,,,teit1930[207-11],,1860,Binford_2001_Tables_5.01_and_8.01, +1249,B323,B012,,,,,,,, +1250,B324,B012,438,,,"spinden1908[174-75, 196, 240]",,1850,Binford_2001_Tables_5.01_and_8.01, +1251,B325,B012,265,,,teit1900[241-48],,1860,Binford_2001_Tables_5.01_and_8.01, +1252,B326,B012,350,,,teit1930[331],,1870,Binford_2001_Tables_5.01_and_8.01, +1253,B327,B012,200,,,jenness1935[13],,1870,Binford_2001_Tables_5.01_and_8.01, +1254,B328,B012,,,,,,,, +1255,B329,B012,190,,"Note, Binford Table 5.01 lists '150', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",speck1922[143-44],,1700,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '150', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +1256,B330,B012,300,,,teit1930[331];turneyhigh1937[98],,1860,Binford_2001_Tables_5.01_and_8.01, +1257,B331,B012,210,,"Note, Binford Table 5.01 lists '190', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",hickerson1967[54-55],,1880,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '190', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +1258,B332,B012,185,,,bishop1978[222-26],,1870,Binford_2001_Tables_5.01_and_8.01, +1259,B333,B012,266,,,teit1905[457-66],,1850,Binford_2001_Tables_5.01_and_8.01, +1260,B334,B012,160,,,"dunning1959[57, 58, 84];rogers1969[31]",,1940,Binford_2001_Tables_5.01_and_8.01, +1261,B335,B012,150,,,"rogers1963b[67, 76, 88];rogers1969[25, 31]",,1900,Binford_2001_Tables_5.01_and_8.01, +1262,B336,B012,235,,,goldman1940[334],,1865,Binford_2001_Tables_5.01_and_8.01, +1263,B337,B012,126,,,hickerson1962[30-33],,1800,Binford_2001_Tables_5.01_and_8.01, +1264,B338,B012,215,,,rogers1963a[23];rogers1969[30],,1880,Binford_2001_Tables_5.01_and_8.01, +1265,B339,B012,225,,,rogers1969[43],,1850,Binford_2001_Tables_5.01_and_8.01, +1266,B340,B012,235,,,"morantz1983[89, 106];rogers1969[31]",,1900,Binford_2001_Tables_5.01_and_8.01, +1267,B341,B012,140,,,rogersandblack1976[19],,1890,Binford_2001_Tables_5.01_and_8.01, +1268,B342,B012,245,,,tanner1944[592-609],,1880,Binford_2001_Tables_5.01_and_8.01, +1269,B343,B012,164,,,dennison1981[434-35];jenness1937[14],,1880,Binford_2001_Tables_5.01_and_8.01, +1270,B344,B012,110,,,ives1985[166-67],,1850,Binford_2001_Tables_5.01_and_8.01, +1271,B345,B012,220,,,"helm1961[50-52, 169];ives1985[166-67];janes1983[50-51]",,1860,Binford_2001_Tables_5.01_and_8.01, +1272,B346,B012,139,,,honigmann1949[33-37],,1920,Binford_2001_Tables_5.01_and_8.01, +1273,B347,B012,165,,,maclachlan1981[460-61],,1870,Binford_2001_Tables_5.01_and_8.01, +1274,B348,B012,,,,,,,, +1275,B349,B012,170,,,jenness1943[485-86],,1880,Binford_2001_Tables_5.01_and_8.01, +1276,B35,B012,,,,,,,, +1277,B350,B012,,,,,,,, +1278,B351,B012,214,,,crowandobley1981[511],,1880,Binford_2001_Tables_5.01_and_8.01, +1279,B352,B012,120,,,"helm1961[169];savishinsky1974[47, 54]",,1860,Binford_2001_Tables_5.01_and_8.01, +1280,B353,B012,172,,,honigmann1956b[58];honigmann1981[228-29],,1900,Binford_2001_Tables_5.01_and_8.01, +1281,B354,B012,105,,,clark1974[96],,1880,Binford_2001_Tables_5.01_and_8.01, +1282,B355,B012,295,,,smith1976[19];smith1978a[81];smith1981[275],,1880,Binford_2001_Tables_5.01_and_8.01, +1283,B356,B012,210,,,"slobodin1969[58-59, 64]",,1880,Binford_2001_Tables_5.01_and_8.01, +1284,B357,B012,,,,,,,, +1285,B358,B012,,,,,,,, +1286,B359,B012,,,,,,,, +1287,B36,B012,,,,,,,, +1288,B360,B012,225,,,morantz1983[106],,1900,Binford_2001_Tables_5.01_and_8.01, +1289,B361,B012,162,,,helm1968[120],,1860,Binford_2001_Tables_5.01_and_8.01, +1290,B362,B012,,,,,,,, +1291,B363,B012,,,,,,,, +1292,B364,B012,300,,,snow1981[615],,1860,Binford_2001_Tables_5.01_and_8.01, +1293,B365,B012,117,,,"henriksen1973[58-59, 68]",,1890,Binford_2001_Tables_5.01_and_8.01, +1294,B369,B012,,,,,,,, +1295,B37,B012,66,,,kloos1977[116],,1968,Binford_2001_Tables_5.01_and_8.01, +1296,B370,B012,,,,,,,, +1297,B371,B012,350,,,burch1975[269-72];burch1984[305],,1880,Binford_2001_Tables_5.01_and_8.01, +1298,B372,B012,158,,,"taylor1974[15-19, 64]",,1890,Binford_2001_Tables_5.01_and_8.01, +1299,B373,B012,65,,,"willmott1960[48, 53]",,1890,Binford_2001_Tables_5.01_and_8.01, +1300,B374,B012,75,,,birketsmith1929[67-69],,1900,Binford_2001_Tables_5.01_and_8.01, +1301,B375,B012,105,,,binfordfieldnotes1971;burch1975[255],,1900,Binford_2001_Tables_5.01_and_8.01, +1302,B377,B012,75,,"Note, two estimates provided by Binford for the years 1898-1909 (75) and 1951-1959 (71); this entry is one of those estimates",amsden1977[224],,1898-1909,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford for the years 1898-1909 (75) and 1951-1959 (71)" +1303,B377,B012,71,,"Note, two estimates provided by Binford for the years 1898-1909 (75) and 1951-1959 (71); this entry is one of those estimates",amsden1977[224];binford1991a[80],,1951-1959,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford for the years 1898-1909 (75) and 1951-1959 (71)" +1304,B378,B012,135,,,mcghee1988[11];tyrrell1897[167],,1910,Binford_2001_Tables_5.01_and_8.01, +1305,B379,B012,,,,,,,, +1306,B38,B012,70,,,gragson1989[289-90];greavesperscomm1993,,1989,Binford_2001_Tables_5.01_and_8.01, +1307,B380,B012,,,,,,,, +1308,B381,B012,264,,,"jenness1922[30, 55, 57];rasmussen1932[70, 78-85]",,1920,Binford_2001_Tables_5.01_and_8.01, +1309,B382,B012,,,,,,,, +1310,B383,B012,64,,,"rae1850[40, 48, 49]",,1880,Binford_2001_Tables_5.01_and_8.01, +1311,B384,B012,120,,,mathiassen1928[32],,1920,Binford_2001_Tables_5.01_and_8.01, +1312,B385,B012,,,,,,,, +1313,B386,B012,144,,,"boas1888[426];hantzsch1977[39, 99];low1906[57-58]",,1880,Binford_2001_Tables_5.01_and_8.01, +1314,B387,B012,150,,,"mclintock1860[8, 230, 232, 235, 239, 240]",,1880,Binford_2001_Tables_5.01_and_8.01, +1315,B388,B012,137,,,mirsky1937a[53];peterson1984[623],,1880,Binford_2001_Tables_5.01_and_8.01, +1316,B389,B012,,,,,,,, +1317,B39,B012,179,,,wilbert1957[90],,1960,Binford_2001_Tables_5.01_and_8.01, +1318,B390,B012,150,,,"ekblaw1948[3];steensby1910[266, 296, 324]",,1880,Binford_2001_Tables_5.01_and_8.01, +1319,B4,B012,,,,,,,, +1320,B40,B012,94,,,politis1992[3];politisperscomm1992,,1990,Binford_2001_Tables_5.01_and_8.01, +1321,B41,B012,,,,,,,, +1322,B42,B012,,,,,,,, +1323,B43,B012,,,,,,,, +1324,B44,B012,,,,,,,, +1325,B45,B012,75,,,levistrauss1970[288];oberg1953[86],,1938,Binford_2001_Tables_5.01_and_8.01, +1326,B46,B012,700,,,"hann1991[42, 159, 168]",,1600,Binford_2001_Tables_5.01_and_8.01, +1327,B47,B012,130,,"Note, does not appear in Binford Table 8.01, so references are general to the society and not this particular variable.",clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01,"Note, does not appear in Binford Table 8.01, so references are general to the society and not this particular variable." +1328,B48,B012,84,,,metrauxandbaldus1946[534],,1880,Binford_2001_Tables_5.01_and_8.01, +1329,B49,B012,,,,,,,, +1330,B5,B012,70,,,bose1964[305],,1952,Binford_2001_Tables_5.01_and_8.01, +1331,B50,B012,110,,,"henry1964[11, 50, 159]",,1910,Binford_2001_Tables_5.01_and_8.01, +1332,B51,B012,225,,,cooper1946c[150];goni1988[145],,1870,Binford_2001_Tables_5.01_and_8.01, +1333,B52,B012,,,,,,,, +1334,B53,B012,,,,,,,, +1335,B54,B012,290,,,chapman1982[58];cooper1946b[117];gusinde1931[205],,1880,Binford_2001_Tables_5.01_and_8.01, +1336,B55,B012,250,,,"gusinde1937a[384, 387]",,1870,Binford_2001_Tables_5.01_and_8.01, +1337,B6,B012,65,,,"temple1903[62, 77, 84]",,1906,Binford_2001_Tables_5.01_and_8.01, +1338,B60,B012,111,,,"bahuchet1988[131];hudson1990[58, 63, 71]",,1980,Binford_2001_Tables_5.01_and_8.01, +1339,B61,B012,73,,,"heymer1980[178, 193-96]",,1976,Binford_2001_Tables_5.01_and_8.01, +1340,B62,B012,95,,,"terashima1980[234, 235, 262]",,1977,Binford_2001_Tables_5.01_and_8.01, +1341,B63,B012,104,,"Note, two estimates provided by Binford (104, 90); this entry is one of those estimates",cavallisforza1986c[32-33],,1980,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (104, 90)" +1342,B63,B012,90,,"Note, two estimates provided by Binford (104, 90); this entry is one of those estimates",valloisandmarquer1976[113],,1980,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (104, 90)" +1343,B64,B012,100,,,baileyandpeacock1988[99-100];fisherandstrickland1989[476],,1980,Binford_2001_Tables_5.01_and_8.01, +1344,B65,B012,87,,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (87) and the second to Epula Mbuti (252); this entry is one of those estimates","tanno1976[107, 108, 130]",Special reference to Mawambo Mbuti,1930,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (87) and the second to Epula Mbuti (252)" +1345,B65,B012,252,,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (87) and the second to Epula Mbuti (252); this entry is one of those estimates","turnbull1965a[97, 98]",Special reference to Epula Mbuti,1930,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (87) and the second to Epula Mbuti (252)" +1346,B66,B012,,,,,,,, +1347,B67,B012,70,,,clark1951[65],,1950,Binford_2001_Tables_5.01_and_8.01, +1348,B68,B012,166,,,fourie1927[51],,1920,Binford_2001_Tables_5.01_and_8.01, +1349,B69,B012,,,,,,,, +1350,B7,B012,200,,,fox1952[188];reed1904[19],,1903,Binford_2001_Tables_5.01_and_8.01, +1351,B70,B012,75,,,huntingford1951[8];huntingford1954[128],,1920,Binford_2001_Tables_5.01_and_8.01, +1352,B71,B012,65,,,bleek1929[109];decastroandalmeida1956[9],,1928,Binford_2001_Tables_5.01_and_8.01, +1353,B72,B012,130,,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (130) and the second to Dobe !Kung (45); this entry is one of those estimates",marshall1960[328],Special reference to Was Nyae !Kung,1950,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (130) and the second to Dobe !Kung (45)" +1354,B72,B012,45,,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (130) and the second to Dobe !Kung (45); this entry is one of those estimates",lee1972a[330],Special reference to Dobe !Kung,1950,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (130) and the second to Dobe !Kung (45)" +1355,B73,B012,70,,,guenther1986[186];schapera1930[78],,1910,Binford_2001_Tables_5.01_and_8.01, +1356,B74,B012,85,,,silberbauer1972[296];silberbauer1981a[195-98],,1962,Binford_2001_Tables_5.01_and_8.01, +1357,B75,B012,42,,,kentandvierich1989,,1976,Binford_2001_Tables_5.01_and_8.01, +1358,B76,B012,111,,,eibleibesfeldt1972[32-33],,1968,Binford_2001_Tables_5.01_and_8.01, +1359,B77,B012,77,,,dart1937b[160-65];steyn1984[118],,1920,Binford_2001_Tables_5.01_and_8.01, +1360,B78,B012,100,,,potgieter1955[8],,1950,Binford_2001_Tables_5.01_and_8.01, +1361,B79,B012,,,,,,,, +1362,B8,B012,80,,,radcliffebrown1948[28],,1870,Binford_2001_Tables_5.01_and_8.01, +1363,B82,B012,116,,,moore1979[39],,1848,Binford_2001_Tables_5.01_and_8.01, +1364,B83,B012,,,,,,,, +1365,B84,B012,128,,,altman1987[15-27];berndtandberndt1970[3-14],,1978,Binford_2001_Tables_5.01_and_8.01, +1366,B85,B012,77,,,peterson1970[11];peterson1973[185];peterson1992;petersonandlong1986[40],,1970,Binford_2001_Tables_5.01_and_8.01, +1367,B86,B012,250,,,meehan1982[31-41],,1973,Binford_2001_Tables_5.01_and_8.01, +1368,B87,B012,80,,,peterson1972[26];petersonandlong1986[40],,1950,Binford_2001_Tables_5.01_and_8.01, +1369,B88,B012,290,,,thomson1949[16];warner1958[127-28],,1930,Binford_2001_Tables_5.01_and_8.01, +1370,B89,B012,125,,,kaberry1935[428],,1920,Binford_2001_Tables_5.01_and_8.01, +1371,B9,B012,71,,,"brandt1961[131-33];rambo1985[4, 33];schebesta1962a[17, 220]",,1920,Binford_2001_Tables_5.01_and_8.01, +1372,B90,B012,150,,Binford estimate from photos,wills1980[85],,1920,Binford_2001_Tables_5.01_and_8.01, +1373,B91,B012,200,,,leichhardt1847[507];mccarthyandmacarthur1960[90-96],,1920,Binford_2001_Tables_5.01_and_8.01, +1374,B92,B012,225,,,biernoff1979[12];mcarthur1960[95];thomson1949[4],,1960,Binford_2001_Tables_5.01_and_8.01, +1375,B93,B012,,,,,,,, +1376,B94,B012,,,,,,,, +1377,B95,B012,,,,,,,, +1378,B96,B012,250,,,"andersonandrobins1988[187, 191-92]",,1880,Binford_2001_Tables_5.01_and_8.01, +1379,B97,B012,,,,,,,, +1380,B98,B012,60,,,haleandtindale1933[77-78],,1926,Binford_2001_Tables_5.01_and_8.01, +1381,B99,B012,150,,"Binford noted this was an ""estimate""",stanner1933[393],,1900,Binford_2001_Tables_5.01_and_8.01, +1382,B1,B013,45,,,"harrison1949[135, 139];urquhart1951[505, 515]",,1970,Binford_2001_Tables_5.01_and_8.04, +1383,B10,B013,3,,,seligmannandseligmann1911[43-44],,1900,Binford_2001_Tables_5.01_and_8.04, +1384,B100,B013,13,,,blundell1975[127-29.],,,Binford_2001_Tables_5.01_and_8.04, +1385,B101,B013,,,,,,,, +1386,B102,B013,4,,,memmott1983a[121-26],,1909,Binford_2001_Tables_5.01_and_8.04, +1387,B103,B013,7,,Binford estimate,tindale1962a;tindale1962b,,1928,Binford_2001_Tables_5.01_and_8.04, +1388,B104,B013,,,,,,,, +1389,B105,B013,12,,,harris1982[378-82],,1900,Binford_2001_Tables_5.01_and_8.04, +1390,B106,B013,8,,,radcliffebrown1912[144-47],,1910,Binford_2001_Tables_5.01_and_8.04, +1391,B107,B013,,,,,,,, +1392,B108,B013,13,,"Note, value is from Binford's Table 5.01, no value provided in Table 8.04",kaberry1939;nind1831,,1934,Binford_2001_Table_5.01,"Note, value is from Binford's Table 5.01, no value provided in Table 8.04" +1393,B109,B013,14,,,meggittperscomm1973,,1965,Binford_2001_Tables_5.01_and_8.04, +1394,B11,B013,45,,,"morris1982a[136, 174-80]",,1972,Binford_2001_Tables_5.01_and_8.04, +1395,B110,B013,15,,Binford estimate; Value provided in 8.04 but not 5.01,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Tables_5.01_and_8.04,Value provided in 8.04 but not 5.01 +1396,B111,B013,15,,"Note, value is from Binford's Table 5.01, no value provided in Table 8.04",harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01,"Note, value is from Binford's Table 5.01, no value provided in Table 8.04" +1397,B112,B013,15,,Binford estimate,petersonandlong1986,,1968,Binford_2001_Tables_5.01_and_8.04, +1398,B113,B013,15,,,myers1986[77-89],,1936,Binford_2001_Tables_5.01_and_8.04, +1399,B114,B013,,,,,,,, +1400,B115,B013,8,,,winterbotham1980[41],,1840,Binford_2001_Tables_5.01_and_8.04, +1401,B116,B013,13,,,duncankemp1964[129],,1900,Binford_2001_Tables_5.01_and_8.04, +1402,B117,B013,14,,,binfordfieldnotes1974,,1965,Binford_2001_Tables_5.01_and_8.04, +1403,B118,B013,14,,,gould1968[104-12],,1968,Binford_2001_Tables_5.01_and_8.04, +1404,B119,B013,8,,,belshaw1978[74-78],,1850,Binford_2001_Tables_5.01_and_8.04, +1405,B12,B013,27,,,headlandperscomm1992,,1965,Binford_2001_Tables_5.01_and_8.04, +1406,B120,B013,15,,,tindale1972[233-38],,1968,Binford_2001_Tables_5.01_and_8.04, +1407,B121,B013,,,,,,,, +1408,B122,B013,,,,,,,, +1409,B123,B013,12,,,tindaleperscomm196668,,1922,Binford_2001_Tables_5.01_and_8.04, +1410,B124,B013,14,,,binfordfieldnotes1993;spencerandgillen1927,,1900,Binford_2001_Tables_5.01_and_8.04, +1411,B125,B013,,,,,,,, +1412,B126,B013,17,,,tindaleperscomm1966,,1912,Binford_2001_Tables_5.01_and_8.04, +1413,B127,B013,,,,,,,, +1414,B128,B013,,,,,,,, +1415,B129,B013,8,,,draperperscomm1993,,1840,Binford_2001_Tables_5.01_and_8.04, +1416,B13,B013,10,,,"rai1982[105, 107]",,1979,Binford_2001_Tables_5.01_and_8.04, +1417,B130,B013,,,,,,,, +1418,B131,B013,,,,,,,, +1419,B132,B013,,,,,,,, +1420,B133,B013,,,,,,,, +1421,B134,B013,10,,,gaughwinandsullivan1984[90],,1850,Binford_2001_Tables_5.01_and_8.04, +1422,B135,B013,,,,,,,, +1423,B136,B013,12,,,jones1972[4],,1830,Binford_2001_Tables_5.01_and_8.04, +1424,B137,B013,7,,,jones1972[4],,1830,Binford_2001_Tables_5.01_and_8.04, +1425,B14,B013,29,,,"vanoverbergh1925[195, 196-98, 432]",,1924,Binford_2001_Tables_5.01_and_8.04, +1426,B143,B013,7,,,mcgee1898[152],,1900,Binford_2001_Tables_5.01_and_8.04, +1427,B144,B013,4,,Binford estimate,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Tables_5.01_and_8.04, +1428,B145,B013,0,,Binford estimate,gifford1926b;strong1929a,,1870,Binford_2001_Tables_5.01_and_8.04, +1429,B146,B013,7,,Binford estimate,meigs1939,,1880,Binford_2001_Tables_5.01_and_8.04, +1430,B147,B013,7,,Binford estimate,kroeber1925a;luomala1978,,1850,Binford_2001_Tables_5.01_and_8.04, +1431,B148,B013,1,,,gayton1948a[7-14];kroeber1925a[484],,1860,Binford_2001_Tables_5.01_and_8.04, +1432,B149,B013,7,,Binford estimate,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Tables_5.01_and_8.04, +1433,B15,B013,4,,,furerhaimendorf1943b[366],,1940,Binford_2001_Tables_5.01_and_8.04, +1434,B150,B013,2,,,sparkman1908[212],,1860,Binford_2001_Tables_5.01_and_8.04, +1435,B151,B013,5,,Binford estimate,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Tables_5.01_and_8.04, +1436,B152,B013,9,,,voegelin1938[2-4],,1850,Binford_2001_Tables_5.01_and_8.04, +1437,B153,B013,3,,,goldschmidt1948[445],,1850,Binford_2001_Tables_5.01_and_8.04, +1438,B154,B013,6,,,"gayton1948a[56-64, 70-76]",,1850,Binford_2001_Tables_5.01_and_8.04, +1439,B155,B013,2,,,kroeber1932[259-62],,1850,Binford_2001_Tables_5.01_and_8.04, +1440,B156,B013,0,,Binford estimate,,,1770,Binford_2001_Tables_5.01_and_8.04, +1441,B157,B013,9,,,gayton1948a[254-63];gifford1932b,,1870,Binford_2001_Tables_5.01_and_8.04, +1442,B158,B013,3,,,barrett1908[182-204],,1860,Binford_2001_Tables_5.01_and_8.04, +1443,B159,B013,,,,,,,, +1444,B16,B013,12,,,bernatzik1951[140];pookajorn1988[figures 75-77],,1963,Binford_2001_Tables_5.01_and_8.04, +1445,B160,B013,6,,,dubois1935[28-29],,1860,Binford_2001_Tables_5.01_and_8.04, +1446,B161,B013,0,,Binford estimate,cookandheizer1965,,1860,Binford_2001_Tables_5.01_and_8.04, +1447,B162,B013,2,,,dixon1910[295-302],,1860,Binford_2001_Tables_5.01_and_8.04, +1448,B163,B013,1,,,kroeber1929[407-8],,1850,Binford_2001_Tables_5.01_and_8.04, +1449,B164,B013,,,,,,,, +1450,B165,B013,0,,,barrett1908[210-26],,1860,Binford_2001_Tables_5.01_and_8.04, +1451,B166,B013,4,,,nomland1935[149-78],,1860,Binford_2001_Tables_5.01_and_8.04, +1452,B167,B013,,,,,,,, +1453,B168,B013,,,,,,,, +1454,B169,B013,,,,,,,, +1455,B17,B013,5,,,"gardner1965[27-28, 33]",,1963,Binford_2001_Tables_5.01_and_8.04, +1456,B170,B013,,,,,,,, +1457,B171,B013,,,,,,,, +1458,B172,B013,2,,,driver1936[179-220],,1860,Binford_2001_Tables_5.01_and_8.04, +1459,B173,B013,0,,,barrett1908[124-35];loeb1926b[172],,1860,Binford_2001_Tables_5.01_and_8.04, +1460,B174,B013,4,,,waterman1918[37-60],,1860,Binford_2001_Tables_5.01_and_8.04, +1461,B175,B013,4,,,barrettandgifford1933[198-206],,1850,Binford_2001_Tables_5.01_and_8.04, +1462,B176,B013,6,,,gray1987[37-40],,1860,Binford_2001_Tables_5.01_and_8.04, +1463,B177,B013,8,,,"gifford1939[294, 329-30]",,1860,Binford_2001_Tables_5.01_and_8.04, +1464,B178,B013,5,,,drucker1940[226-35],,1870,Binford_2001_Tables_5.01_and_8.04, +1465,B179,B013,3,,,dixon1907[421722],,1860,Binford_2001_Tables_5.01_and_8.04, +1466,B18,B013,8,,,williams1974[76-77],,1963,Binford_2001_Tables_5.01_and_8.04, +1467,B180,B013,0,,,"goddard1904[12-16, 21-29]",,1860,Binford_2001_Tables_5.01_and_8.04, +1468,B181,B013,5,,,gray1987[48-51],,1870,Binford_2001_Tables_5.01_and_8.04, +1469,B182,B013,0,,,schenckandgifford1952[387-92],,1860,Binford_2001_Tables_5.01_and_8.04, +1470,B183,B013,,,,,,,, +1471,B184,B013,1,,,schalk1978[125],,1860,Binford_2001_Tables_5.01_and_8.04, +1472,B185,B013,4,,,"dixon1905[201, 225]",,1850,Binford_2001_Tables_5.01_and_8.04, +1473,B186,B013,2,,,schalk1978[125],,1850,Binford_2001_Tables_5.01_and_8.04, +1474,B187,B013,3,,,kniffen1926[303],,1860,Binford_2001_Tables_5.01_and_8.04, +1475,B188,B013,9,,,ray1963[180-211],,1860,Binford_2001_Tables_5.01_and_8.04, +1476,B189,B013,6,,,spier1930[11],,1860,Binford_2001_Tables_5.01_and_8.04, +1477,B19,B013,1.5,,,ehrenfels1952[8],,1946,Binford_2001_Tables_5.01_and_8.04, +1478,B190,B013,8,,,baegert1863[361-65];baegert1865[391],,1760,Binford_2001_Tables_5.01_and_8.04, +1479,B191,B013,,,,,,,, +1480,B192,B013,13,,,steward1938[91-93],,1860,Binford_2001_Tables_5.01_and_8.04, +1481,B193,B013,,,,,,,, +1482,B194,B013,,,,,,,, +1483,B195,B013,11,,,steward1938[84-85],,1850,Binford_2001_Tables_5.01_and_8.04, +1484,B196,B013,9,,,corbusier1886[283];gifford1932a[206-13],,1870,Binford_2001_Tables_5.01_and_8.04, +1485,B197,B013,14,,,steward1936[81-83],,1860,Binford_2001_Tables_5.01_and_8.04, +1486,B198,B013,4,,,kniffen1935[38-45],,1870,Binford_2001_Tables_5.01_and_8.04, +1487,B199,B013,9,,Binford estimate,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Tables_5.01_and_8.04, +1488,B2,B013,6,,,eder1984[843],,1968,Binford_2001_Tables_5.01_and_8.04, +1489,B20,B013,4,,,bhanu1982[225];bhanu1992[31],,1974,Binford_2001_Tables_5.01_and_8.04, +1490,B200,B013,14,,,steward1936[76-80],,1860,Binford_2001_Tables_5.01_and_8.04, +1491,B201,B013,10,,Binford estimate,kelly1964;kellyandfowler1986,,1860,Binford_2001_Tables_5.01_and_8.04, +1492,B202,B013,2,,,"steward1933[238-39, 263-66]",,1870,Binford_2001_Tables_5.01_and_8.04, +1493,B203,B013,12,,,thomas1983[29-30],,1860,Binford_2001_Tables_5.01_and_8.04, +1494,B204,B013,8,,,"kelly1964[12, 14]",,1860,Binford_2001_Tables_5.01_and_8.04, +1495,B205,B013,11,,,davis1965[29-31],,1870,Binford_2001_Tables_5.01_and_8.04, +1496,B206,B013,8,,,steward1938[58-60],,1860,Binford_2001_Tables_5.01_and_8.04, +1497,B207,B013,12,,,gouldandplew1996[64-66];steward1938[165-72],,1860,Binford_2001_Tables_5.01_and_8.04, +1498,B208,B013,3,,Binford estimate,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Tables_5.01_and_8.04, +1499,B209,B013,,,,,,,, +1500,B21,B013,0,,,bird1983[57-59];birddavid1987[153-56],,1978,Binford_2001_Tables_5.01_and_8.04, +1501,B210,B013,5,,,fowler1992[25-42],,1870,Binford_2001_Tables_5.01_and_8.04, +1502,B211,B013,9,,,steward1938[64-68],,1860,Binford_2001_Tables_5.01_and_8.04, +1503,B212,B013,9,,,riddell1960[21-44],,1870,Binford_2001_Tables_5.01_and_8.04, +1504,B213,B013,12,,,steward1938[178-79],,1870,Binford_2001_Tables_5.01_and_8.04, +1505,B214,B013,13,,,steward1938[132-39],,1860,Binford_2001_Tables_5.01_and_8.04, +1506,B215,B013,,,,,,,, +1507,B216,B013,,,,,,,, +1508,B217,B013,5,,,steward1938[118-21],,1860,Binford_2001_Tables_5.01_and_8.04, +1509,B218,B013,8,,,steward1938[100-5],,1860,Binford_2001_Tables_5.01_and_8.04, +1510,B219,B013,,,,,,,, +1511,B22,B013,1.5,,,watanabe1964a[8-9],,1900,Binford_2001_Tables_5.01_and_8.04, +1512,B221,B013,14,,,steward1938[173-77],,1860,Binford_2001_Tables_5.01_and_8.04, +1513,B222,B013,,,,,,,, +1514,B223,B013,,,,,,,, +1515,B224,B013,,,,,,,, +1516,B225,B013,7,,,downs1966[12-37],,1850,Binford_2001_Tables_5.01_and_8.04, +1517,B226,B013,9,,,"kelly1932[78, 105-6]",,1870,Binford_2001_Tables_5.01_and_8.04, +1518,B227,B013,,,,,,,, +1519,B228,B013,7,,,"steward1938[figure 11, 147-49]",,1860,Binford_2001_Tables_5.01_and_8.04, +1520,B229,B013,,,,,,,, +1521,B23,B013,15,,Binford estimate,qiu1983,,1900,Binford_2001_Tables_5.01_and_8.04, +1522,B230,B013,,,,,,,, +1523,B231,B013,11,,,whiting1950[17-19],,1870,Binford_2001_Tables_5.01_and_8.04, +1524,B232,B013,13,,,steward1938[187-92],,1860,Binford_2001_Tables_5.01_and_8.04, +1525,B233,B013,11,,,"steward1938[114-15, figure 8]",,1860,Binford_2001_Tables_5.01_and_8.04, +1526,B234,B013,,,,,,,, +1527,B24,B013,13,,,lee1967[23-44],,1900,Binford_2001_Tables_5.01_and_8.04, +1528,B240,B013,18,,,basehartperscomm1972,,1880,Binford_2001_Tables_5.01_and_8.04, +1529,B241,B013,,,,,,,, +1530,B242,B013,,,,,,,, +1531,B243,B013,,,,,,,, +1532,B244,B013,,,,,,,, +1533,B245,B013,18,,,gussow1954;moore1987[163-75],,1860,Binford_2001_Tables_5.01_and_8.04, +1534,B246,B013,,,,,,,, +1535,B248,B013,31,,,denig1961[159];kelly1995[table 4.1],,1870,Binford_2001_Tables_5.01_and_8.04, +1536,B249,B013,,,,,,,, +1537,B25,B013,0,,,shternberg1933[67],,1920,Binford_2001_Tables_5.01_and_8.04, +1538,B250,B013,13,,,turneyhigh1941[53-55],,1880,Binford_2001_Tables_5.01_and_8.04, +1539,B252,B013,,,,,,,, +1540,B253,B013,24,,,flannery1953[23-24],,1870,Binford_2001_Tables_5.01_and_8.04, +1541,B254,B013,,,,,,,, +1542,B255,B013,28,,"Note, table 8.04 gives two estimates from different sources (28, 21)",ewers1955[125-27],,1850,Binford_2001_Table_8.04,"Note, table 8.04 gives two estimates from different sources (28, 21)" +1543,B255,B013,21,,"Note, table 8.04 gives two estimates from different sources (28, 21)",kehoe1993[89],,1850,Binford_2001_Table_8.04,"Note, table 8.04 gives two estimates from different sources (28, 21)" +1544,B256,B013,30,,,ewers1955[123-29],,1850,Binford_2001_Tables_5.01_and_8.04, +1545,B257,B013,,,,,,,, +1546,B258,B013,,,,,,,, +1547,B259,B013,,,,,,,, +1548,B26,B013,17,,,kreynovich1979[194-209],,1900,Binford_2001_Tables_5.01_and_8.04, +1549,B260,B013,18,,,jenness1938[12],,1880,Binford_2001_Tables_5.01_and_8.04, +1550,B268,B013,2,,,drucker1990[464];kelly1995[table 4.1],,1880,Binford_2001_Tables_5.01_and_8.04, +1551,B269,B013,3,,,drucker1939,,1860,Binford_2001_Tables_5.01_and_8.04, +1552,B27,B013,12,,,chard1963[106-8],,1933,Binford_2001_Tables_5.01_and_8.04, +1553,B270,B013,2,,,smith1940a[7-32];smith1940b[138-42],,1870,Binford_2001_Tables_5.01_and_8.04, +1554,B271,B013,4,,,elmendorf1960[253-65];kelly1995[table 4.1],,1850,Binford_2001_Tables_5.01_and_8.04, +1555,B272,B013,,,,,,,, +1556,B273,B013,3,,,schalk1978[126],,1880,Binford_2001_Tables_5.01_and_8.04, +1557,B274,B013,2,,,"ray1937[366];ray1938[38-42, 55]",,1850,Binford_2001_Tables_5.01_and_8.04, +1558,B275,B013,0,,,zenk1990[572-74],,1860,Binford_2001_Tables_5.01_and_8.04, +1559,B276,B013,8,,,hayden1997[18-22],,1860,Binford_2001_Tables_5.01_and_8.04, +1560,B277,B013,2,,,stern1934[43-53],,1880,Binford_2001_Tables_5.01_and_8.04, +1561,B278,B013,2,,,olson1936a[93-94],,1860,Binford_2001_Tables_5.01_and_8.04, +1562,B279,B013,4,,,schalk1978[126],,1880,Binford_2001_Tables_5.01_and_8.04, +1563,B28,B013,3,,,krupnik1983a[96],,1860,Binford_2001_Tables_5.01_and_8.04, +1564,B280,B013,6,,,wilson1866[286],,1880,Binford_2001_Tables_5.01_and_8.04, +1565,B281,B013,2,,,taylor1974a[33-41],,,Binford_2001_Tables_5.01_and_8.04, +1566,B282,B013,,,,,,,, +1567,B283,B013,,,,,,,, +1568,B284,B013,0,,,pettitt1950[5-7],,1880,Binford_2001_Tables_5.01_and_8.04, +1569,B285,B013,4,,,schalk1978[126],,1860,Binford_2001_Tables_5.01_and_8.04, +1570,B286,B013,2,,,"schalk1978[125, 165]",,1860,Binford_2001_Tables_5.01_and_8.04, +1571,B287,B013,0,,,olson1940[170],,1880,Binford_2001_Tables_5.01_and_8.04, +1572,B288,B013,3.5,,"Note Binford Table 5.01 gives value of 3, but without specific references, therefore value from table 8.04 is given here.",schalk1978[165],,1890,Binford_2001_Table_8.04,"Note Binford Table 5.01 gives value of 3, but without specific references, therefore value from table 8.04 is given here." +1573,B289,B013,3.5,,,"halpinandseguin1990[269-71];schalk1978[126, 165]",,1880,Binford_2001_Tables_5.01_and_8.04, +1574,B290,B013,,,,,,,, +1575,B291,B013,,,,,,,, +1576,B292,B013,3,,"Note, table 8.04 gives two estimates, the first refers specifically to Southern Tlingit (3) and the second to Chilkat Tlingit (2)","schalk1978[127, 165]",Special reference to Southern Tlingit,1880,Binford_2001_Table_8.04,"Note, table 8.04 gives two estimates, the first refers specifically to Southern Tlingit (3) and the second to Chilkat Tlingit (2)" +1577,B292,B013,2,,"Note, table 8.04 gives two estimates, the first refers specifically to Southern Tlingit (3) and the second to Chilkat Tlingit (2)",mitchellanddonald1988[310],Special reference to Chilkat Tlingit,1880,Binford_2001_Table_8.04,"Note, table 8.04 gives two estimates, the first refers specifically to Southern Tlingit (3) and the second to Chilkat Tlingit (2)" +1578,B293,B013,4,,,halpinandseguin1990[269-71],,1880,Binford_2001_Tables_5.01_and_8.04, +1579,B294,B013,0,,Binford estimate,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Tables_5.01_and_8.04, +1580,B295,B013,2,,,delaguna1990[190-91],,1890,Binford_2001_Tables_5.01_and_8.04, +1581,B296,B013,0,,,oswaltperscomm1966,,1850,Binford_2001_Tables_5.01_and_8.04, +1582,B297,B013,2,,,birketsmith1953[123-28],,1930,Binford_2001_Tables_5.01_and_8.04, +1583,B298,B013,0,,,lantis1970a[174-82],,1830,Binford_2001_Tables_5.01_and_8.04, +1584,B299,B013,0,,,lantis1946[163],,1930,Binford_2001_Tables_5.01_and_8.04, +1585,B3,B013,7,,,persoon1989[512];volz1909[96-101],,1900,Binford_2001_Tables_5.01_and_8.04, +1586,B315,B013,6,,,murdock1980[131],,1850,Binford_2001_Tables_5.01_and_8.04, +1587,B316,B013,,,,,,,, +1588,B317,B013,2,,,"teit1928[104, 114-15]",,1870,Binford_2001_Tables_5.01_and_8.04, +1589,B318,B013,,,,,,,, +1590,B319,B013,0,,,"spierandsapir1930[164-67, 202-5]",,1860,Binford_2001_Tables_5.01_and_8.04, +1591,B320,B013,11,,,"teit1930[95-97, 150-52]",,1860,Binford_2001_Tables_5.01_and_8.04, +1592,B321,B013,7,,,clineetal1938[11],,1880,Binford_2001_Tables_5.01_and_8.04, +1593,B322,B013,3,,,grabert1974[8],,1860,Binford_2001_Tables_5.01_and_8.04, +1594,B323,B013,5,,,"kelly1995[table 4.1];ray1932[15-24, 27-28]",,1870,Binford_2001_Tables_5.01_and_8.04, +1595,B324,B013,,,,,,,, +1596,B325,B013,,,,,,,, +1597,B326,B013,,,,,,,, +1598,B327,B013,14,,,jenness1935[13-14],,1870,Binford_2001_Tables_5.01_and_8.04, +1599,B328,B013,14,,,kinietz1947[43-55],,1800,Binford_2001_Tables_5.01_and_8.04, +1600,B329,B013,12,,,"speckanddexter1951[251-55];wallisandwallis1955[64-66, 172]",,1700,Binford_2001_Tables_5.01_and_8.04, +1601,B330,B013,,,,,,,, +1602,B331,B013,13,,,hickerson1967[48-52];landes1937a[88-95],,1880,Binford_2001_Tables_5.01_and_8.04, +1603,B332,B013,15,,Binford estimate,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Tables_5.01_and_8.04, +1604,B333,B013,4,,,dawson1891[7-10],,1850,Binford_2001_Tables_5.01_and_8.04, +1605,B334,B013,,,,,,,, +1606,B335,B013,,,,,,,, +1607,B336,B013,5.5,,,goldman1940[351-52],,1865,Binford_2001_Tables_5.01_and_8.04, +1608,B337,B013,14,,,cameron1890[256],,1800,Binford_2001_Tables_5.01_and_8.04, +1609,B338,B013,16,,,rogers1972[107-11],,1880,Binford_2001_Tables_5.01_and_8.04, +1610,B339,B013,14,,Binford estimate,dunning1959,,1850,Binford_2001_Tables_5.01_and_8.04, +1611,B340,B013,,,,,,,, +1612,B341,B013,,,,,,,, +1613,B342,B013,19,,,lane1952[13],,1880,Binford_2001_Tables_5.01_and_8.04, +1614,B343,B013,15,,,"jenness1937[32-37, 58]",,1880,Binford_2001_Tables_5.01_and_8.04, +1615,B344,B013,20,,,goddard1916[212];ridington1982[472],,1850,Binford_2001_Tables_5.01_and_8.04, +1616,B345,B013,13,,,helm1961[16-27],,1860,Binford_2001_Tables_5.01_and_8.04, +1617,B346,B013,9,,,"honigmann1954[12, 31-68]",,1920,Binford_2001_Tables_5.01_and_8.04, +1618,B347,B013,,,,,,,, +1619,B348,B013,,,,,,,, +1620,B349,B013,12,,,jenness1943[531-39],,1880,Binford_2001_Tables_5.01_and_8.04, +1621,B35,B013,,,,,,,, +1622,B350,B013,,,,,,,, +1623,B351,B013,,,,,,,, +1624,B352,B013,16,,,savishinsky1974[86-138],,1860,Binford_2001_Tables_5.01_and_8.04, +1625,B353,B013,8,,,honigmann1956b[32],,1900,Binford_2001_Tables_5.01_and_8.04, +1626,B354,B013,14,,,"mcfaydenclark1981[593, 588-89]",,1880,Binford_2001_Tables_5.01_and_8.04, +1627,B355,B013,18,,,fidler1934,,1880,Binford_2001_Tables_5.01_and_8.04, +1628,B356,B013,16,,,"slobodin1969[58-64, 78-83]",,1880,Binford_2001_Tables_5.01_and_8.04, +1629,B357,B013,4,,,michael1967[307],,1880,Binford_2001_Tables_5.01_and_8.04, +1630,B358,B013,14,,,hooper1853,,1860,Binford_2001_Tables_5.01_and_8.04, +1631,B359,B013,14,,,mckennan1959,,1930,Binford_2001_Tables_5.01_and_8.04, +1632,B36,B013,33,,Binford estimate,metraux1948,,1960,Binford_2001_Tables_5.01_and_8.04, +1633,B360,B013,16,,,morantz1983[33-37],,1900,Binford_2001_Tables_5.01_and_8.04, +1634,B361,B013,13,,,helm1972[63-72],,1860,Binford_2001_Tables_5.01_and_8.04, +1635,B362,B013,2,,,michael1967[306],,1870,Binford_2001_Tables_5.01_and_8.04, +1636,B363,B013,19,,,legros1982[67-69],,1890,Binford_2001_Tables_5.01_and_8.04, +1637,B364,B013,0,,,snow1981[615-16],,1860,Binford_2001_Tables_5.01_and_8.04, +1638,B365,B013,16,,,"henriksen1973[2, 4]",,1890,Binford_2001_Tables_5.01_and_8.04, +1639,B369,B013,0,,Binford estimate,ray1992;seltzer1933,,1870,Binford_2001_Tables_5.01_and_8.04, +1640,B37,B013,49,,,kloos1977[119];kloos1982,,1968,Binford_2001_Tables_5.01_and_8.04, +1641,B370,B013,9,,,giddings1956[5-55],,1890,Binford_2001_Tables_5.01_and_8.04, +1642,B371,B013,0,,Binford estimate,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Tables_5.01_and_8.04, +1643,B372,B013,4,,,taylor1974[51-58],,1890,Binford_2001_Tables_5.01_and_8.04, +1644,B373,B013,3,,,saladindanglure1984[497-99],,1890,Binford_2001_Tables_5.01_and_8.04, +1645,B374,B013,16,,Binford estimate,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Tables_5.01_and_8.04, +1646,B375,B013,12,,,binfordfieldnotes1972,,1900,Binford_2001_Tables_5.01_and_8.04, +1647,B377,B013,11,,,"amsden1977[159, 163]",,1950,Binford_2001_Tables_5.01_and_8.04, +1648,B378,B013,6,,,mcghee1988[7-24],,1910,Binford_2001_Tables_5.01_and_8.04, +1649,B379,B013,1,,"Note Binford Table 5.01 gives value of 2, but without specific references, therefore value from table 8.04 is given here.",moore1923[349],,1920,Binford_2001_Table_8.04,"Note Binford Table 5.01 gives value of 2, but without specific references, therefore value from table 8.04 is given here." +1650,B38,B013,7,,,gragson1989[285-88],,1989,Binford_2001_Tables_5.01_and_8.04, +1651,B380,B013,2,,,"burch1975[260-69];rainey1947[240, 244-67]",,1880,Binford_2001_Tables_5.01_and_8.04, +1652,B381,B013,14,,,"jenness1932[32, 55, 56]",,1920,Binford_2001_Tables_5.01_and_8.04, +1653,B382,B013,15,,,"briggs1970[30, 32-40]",,1920,Binford_2001_Tables_5.01_and_8.04, +1654,B383,B013,14,,,"mathiassen1928[15-17, 24]",,1880,Binford_2001_Tables_5.01_and_8.04, +1655,B384,B013,12,,,mathiassen1928[29-36],,1920,Binford_2001_Tables_5.01_and_8.04, +1656,B385,B013,3,,,grnnowetal1983[13-37],,1880,Binford_2001_Tables_5.01_and_8.04, +1657,B386,B013,4,,,"boas1888[422-24];hantzsch1977[39, 99]",,1880,Binford_2001_Tables_5.01_and_8.04, +1658,B387,B013,11,,,balikci1970[23-90],,1880,Binford_2001_Tables_5.01_and_8.04, +1659,B388,B013,2,,,holm1914[97];thalbitzer1914[618-26],,1880,Binford_2001_Tables_5.01_and_8.04, +1660,B389,B013,3,,,simpson1875[237];spencer1959[139-46],,1880,Binford_2001_Tables_5.01_and_8.04, +1661,B39,B013,40,,,kirchhoff1945[449],,1960,Binford_2001_Tables_5.01_and_8.04, +1662,B390,B013,11,,,"steensby1910[279, 289-305]",,1880,Binford_2001_Tables_5.01_and_8.04, +1663,B4,B013,,,,,,,, +1664,B40,B013,55,,,politisperscomm1992,,1990,Binford_2001_Tables_5.01_and_8.04, +1665,B41,B013,0,,,baldus1937[123-24];levistrauss1936[269];levistrauss1970[140],,1920,Binford_2001_Tables_5.01_and_8.04, +1666,B42,B013,,,,,,,, +1667,B43,B013,17,,,holmberg1950[51],,1940,Binford_2001_Tables_5.01_and_8.04, +1668,B44,B013,53,,"Binford noted this was an ""estimate""",stearman1989,,1968,Binford_2001_Tables_5.01_and_8.04, +1669,B45,B013,13,,"Note, first of two estimates from different sources provided by Binford for this society","levistrauss1948a[266, 288]",,1938,Binford_2001_Tables_5.01_and_8.04, +1670,B45,B013,13,,"Note, second of two estimates from different sources provided by Binford for this society",aspelin1976[9-16],,1938,Binford_2001_Tables_5.01_and_8.04, +1671,B46,B013,0,,,widmer1983[15-18],,1600,Binford_2001_Tables_5.01_and_8.04, +1672,B47,B013,58,,,"clastres1972[163];oberg1953[18, 38]",,1975,Binford_2001_Tables_5.01_and_8.04, +1673,B48,B013,7,,Binford estimate,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Tables_5.01_and_8.04, +1674,B49,B013,,,,,,,, +1675,B5,B013,8,,,cooper1991,,1952,Binford_2001_Tables_5.01_and_8.04, +1676,B50,B013,30,,,henry1964[159],,1910,Binford_2001_Tables_5.01_and_8.04, +1677,B51,B013,17,,Binford estimate,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Tables_5.01_and_8.04, +1678,B52,B013,,,,,,,, +1679,B53,B013,,,,,,,, +1680,B54,B013,24,,,chapman1982[19],,1880,Binford_2001_Tables_5.01_and_8.04, +1681,B55,B013,7,,,"gusinde1937a[366, 511]",,1870,Binford_2001_Tables_5.01_and_8.04, +1682,B6,B013,9,,,temple1903[69-90],,1906,Binford_2001_Tables_5.01_and_8.04, +1683,B60,B013,6,,,hudson1990[57-80],,1980,Binford_2001_Tables_5.01_and_8.04, +1684,B61,B013,10,,,heymer1980[189],,1976,Binford_2001_Tables_5.01_and_8.04, +1685,B62,B013,7,,,"terashima1980[241, 261]",,1977,Binford_2001_Tables_5.01_and_8.04, +1686,B63,B013,16,,,valloisandmarquer1976[112-19],,1980,Binford_2001_Tables_5.01_and_8.04, +1687,B64,B013,12,,,bailey1985[48-58];peacock1985[47-48],,1980,Binford_2001_Tables_5.01_and_8.04, +1688,B65,B013,13,,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area.","harako1976[44, 114-17]",,1930,Binford_2001_Table_8.04,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area." +1689,B65,B013,11,,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area.",tanno1976[123],Special reference to Mawambo Mbuti,1930,Binford_2001_Table_8.04,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area." +1690,B65,B013,18,,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area.",ichikawa1978[173-75],Special reference to Mbuti of Tetri Area,1930,Binford_2001_Table_8.04,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area." +1691,B66,B013,,,,,,,, +1692,B67,B013,8,,Binford estimate,clark1951,,1950,Binford_2001_Tables_5.01_and_8.04, +1693,B68,B013,,,,,,,, +1694,B69,B013,7,,,leeanddevore1968a[194],,1910,Binford_2001_Tables_5.01_and_8.04, +1695,B7,B013,0,,,reed1904[39-43],,1903,Binford_2001_Tables_5.01_and_8.04, +1696,B70,B013,0,,,huntingford1929[340];huntingford1955a[623-34],,1920,Binford_2001_Tables_5.01_and_8.04, +1697,B71,B013,,,,,,,, +1698,B72,B013,11,,"Note, two estimates are provided by Binford in Table 8.04 (11, 5.5). The first refers to Nyae Nyae !Kung, the second to Dobe !Kung; this entry is one of those estimates",hitchcockandebert1989[55],Special reference to Nyae Nyae !Kung,1950,Binford_2001_Table_8.04,"Note, two estimates are provided by Binford in Table 8.04 (11, 5.5). The first refers to Nyae Nyae !Kung, the second to Dobe !Kung." +1699,B72,B013,5.5,,"Note, two estimates are provided by Binford in Table 8.04 (11, 5.5). The first refers to Nyae Nyae !Kung, the second to Dobe !Kung; this entry is one of those estimates","lee1972a[330];lee1979[168, 182-204]",Special reference to Dobe !Kung,1950,Binford_2001_Table_8.04,"Note, two estimates are provided by Binford in Table 8.04 (11, 5.5). The first refers to Nyae Nyae !Kung, the second to Dobe !Kung." +1700,B73,B013,2,,,hitchcockandebert1989[55],,1910,Binford_2001_Tables_5.01_and_8.04, +1701,B74,B013,11.5,,,"silberbauer1972[295-97];silberbauer1981a[193, 196, 246];silberbauer1981b[460]",,1962,Binford_2001_Tables_5.01_and_8.04, +1702,B75,B013,9,,,hitchcockandebert1989[55],,1976,Binford_2001_Tables_5.01_and_8.04, +1703,B76,B013,12,,,hitchcockandebert1989[55],,1968,Binford_2001_Tables_5.01_and_8.04, +1704,B77,B013,13,,,informantfrommoloporivernd,,1920,Binford_2001_Tables_5.01_and_8.04, +1705,B78,B013,,,,,,,, +1706,B79,B013,,,,,,,, +1707,B8,B013,12,,,radcliffebrown1948[28],,1870,Binford_2001_Tables_5.01_and_8.04, +1708,B82,B013,4,,,moore1979[238],,1848,Binford_2001_Tables_5.01_and_8.04, +1709,B83,B013,7,,,parkhouse1895[639-41],,1900,Binford_2001_Tables_5.01_and_8.04, +1710,B84,B013,14,,,altman1987[22-27],,1978,Binford_2001_Tables_5.01_and_8.04, +1711,B85,B013,6,,,peterson1970[11];peterson1973[185],,1970,Binford_2001_Tables_5.01_and_8.04, +1712,B86,B013,3,,,meehan1982[26-41],,1973,Binford_2001_Tables_5.01_and_8.04, +1713,B87,B013,0,,,hiatt1965[31-32],,1950,Binford_2001_Tables_5.01_and_8.04, +1714,B88,B013,15,,,tindaleperscomm1967,,1930,Binford_2001_Tables_5.01_and_8.04, +1715,B89,B013,14,,Binford estimate,kaberry1935;kaberry1939,,1920,Binford_2001_Tables_5.01_and_8.04, +1716,B9,B013,36,,,schebesta1962a[143-44],,1920,Binford_2001_Tables_5.01_and_8.04, +1717,B90,B013,14,,,thomson1939[211-20],,1920,Binford_2001_Tables_5.01_and_8.04, +1718,B91,B013,12,,,chaloupka1981[163-71],,1920,Binford_2001_Tables_5.01_and_8.04, +1719,B92,B013,10,,,biernoff1979[156],,1960,Binford_2001_Tables_5.01_and_8.04, +1720,B93,B013,6,,,thomson1934[241],,1930,Binford_2001_Tables_5.01_and_8.04, +1721,B94,B013,13,,Binford estimate,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Tables_5.01_and_8.04, +1722,B95,B013,10,,,"hartandpilling1960[35, 36, 66]",,1920,Binford_2001_Tables_5.01_and_8.04, +1723,B96,B013,6,,,andersonandrobins1988[184-87],,1880,Binford_2001_Tables_5.01_and_8.04, +1724,B97,B013,8,,,tindaleperscomm1967,,1930,Binford_2001_Tables_5.01_and_8.04, +1725,B98,B013,4,,,"haleandtindale1933[64, 77]",,1926,Binford_2001_Tables_5.01_and_8.04, +1726,B99,B013,7,,Binford estimate,stanner1933,,1900,Binford_2001_Tables_5.01_and_8.04, +1727,B1,B014,386.2416,,,"harrison1949[135, 139];urquhart1951[505, 515]",,1970,Binford_2001_Tables_5.01_and_8.04, +1728,B10,B014,57.93624,,,seligmannandseligmann1911[43-44],,1900,Binford_2001_Tables_5.01_and_8.04, +1729,B100,B014,241.401,,,blundell1975[127-29.],,,Binford_2001_Tables_5.01_and_8.04, +1730,B101,B014,,,,,,,, +1731,B102,B014,56.3269,,,memmott1983a[121-26],,1909,Binford_2001_Tables_5.01_and_8.04, +1732,B103,B014,56.3269,,Binford estimate,tindale1962a;tindale1962b,,1928,Binford_2001_Tables_5.01_and_8.04, +1733,B104,B014,,,,,,,, +1734,B105,B014,112.6538,,,harris1982[378-82],,1900,Binford_2001_Tables_5.01_and_8.04, +1735,B106,B014,209.2142,,,radcliffebrown1912[144-47],,1910,Binford_2001_Tables_5.01_and_8.04, +1736,B107,B014,,,,,,,, +1737,B108,B014,563.269,,"Note, value provided in Table 5.01 but not Table 8.04",kaberry1939;nind1831,,1934,Binford_2001_Table_5.01,"Note, value provided in Table 5.01 but not Table 8.04" +1738,B109,B014,611.5492,,,meggittperscomm1973,,1965,Binford_2001_Tables_5.01_and_8.04, +1739,B11,B014,241.401,,,"morris1982a[136, 174-80]",,1972,Binford_2001_Tables_5.01_and_8.04, +1740,B110,B014,669.48544,,Binford estimate,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Tables_5.01_and_8.04, +1741,B111,B014,669.48544,,"Note, value provided in Table 5.01 but not Table 8.04",harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01,"Note, value provided in Table 5.01 but not Table 8.04" +1742,B112,B014,611.5492,,Binford estimate,petersonandlong1986,,1968,Binford_2001_Tables_5.01_and_8.04, +1743,B113,B014,523.0355,,,myers1986[77-89],,1936,Binford_2001_Tables_5.01_and_8.04, +1744,B114,B014,,,,,,,, +1745,B115,B014,51.49888,,,winterbotham1980[41],,1840,Binford_2001_Tables_5.01_and_8.04, +1746,B116,B014,442.5685,,,duncankemp1964[129],,1900,Binford_2001_Tables_5.01_and_8.04, +1747,B117,B014,523.0355,,,binfordfieldnotes1974,,1965,Binford_2001_Tables_5.01_and_8.04, +1748,B118,B014,600.28382,,,gould1968[104-12],,1968,Binford_2001_Tables_5.01_and_8.04, +1749,B119,B014,144.8406,,,belshaw1978[74-78],,1850,Binford_2001_Tables_5.01_and_8.04, +1750,B12,B014,217.2609,,,headlandperscomm1992,,1965,Binford_2001_Tables_5.01_and_8.04, +1751,B120,B014,465.09926,,,tindale1972[233-38],,1968,Binford_2001_Tables_5.01_and_8.04, +1752,B121,B014,,,,,,,, +1753,B122,B014,,,,,,,, +1754,B123,B014,479.58332,,,tindaleperscomm196668,,1922,Binford_2001_Tables_5.01_and_8.04, +1755,B124,B014,458.6619,,,binfordfieldnotes1993;spencerandgillen1927,,1900,Binford_2001_Tables_5.01_and_8.04, +1756,B125,B014,,,,,,,, +1757,B126,B014,579.3624,,,tindaleperscomm1966,,1912,Binford_2001_Tables_5.01_and_8.04, +1758,B127,B014,,,,,,,, +1759,B128,B014,,,,,,,, +1760,B129,B014,160.934,,,draperperscomm1993,,1840,Binford_2001_Tables_5.01_and_8.04, +1761,B13,B014,273.5878,,,"rai1982[105, 107]",,1979,Binford_2001_Tables_5.01_and_8.04, +1762,B130,B014,,,,,,,, +1763,B131,B014,,,,,,,, +1764,B132,B014,,,,,,,, +1765,B133,B014,,,,,,,, +1766,B134,B014,144.8406,,,gaughwinandsullivan1984[90],,1850,Binford_2001_Tables_5.01_and_8.04, +1767,B135,B014,,,,,,,, +1768,B136,B014,265.5411,,,jones1972[4],,1830,Binford_2001_Tables_5.01_and_8.04, +1769,B137,B014,104.6071,,,jones1972[4],,1830,Binford_2001_Tables_5.01_and_8.04, +1770,B14,B014,193.1208,,,"vanoverbergh1925[195, 196-98, 432]",,1924,Binford_2001_Tables_5.01_and_8.04, +1771,B143,B014,152.8873,,,mcgee1898[152],,1900,Binford_2001_Tables_5.01_and_8.04, +1772,B144,B014,64.3736,,Binford estimate,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Tables_5.01_and_8.04, +1773,B145,B014,0,,Binford estimate,gifford1926b;strong1929a,,1870,Binford_2001_Tables_5.01_and_8.04, +1774,B146,B014,144.8406,,Binford estimate,meigs1939,,1880,Binford_2001_Tables_5.01_and_8.04, +1775,B147,B014,128.7472,,Binford estimate,kroeber1925a;luomala1978,,1850,Binford_2001_Tables_5.01_and_8.04, +1776,B148,B014,6.43736,,,gayton1948a[7-14];kroeber1925a[484],,1860,Binford_2001_Tables_5.01_and_8.04, +1777,B149,B014,144.8406,,Binford estimate,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Tables_5.01_and_8.04, +1778,B15,B014,22.53076,,,furerhaimendorf1943b[366],,1940,Binford_2001_Tables_5.01_and_8.04, +1779,B150,B014,28.96812,,,sparkman1908[212],,1860,Binford_2001_Tables_5.01_and_8.04, +1780,B151,B014,80.467,,Binford estimate,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Tables_5.01_and_8.04, +1781,B152,B014,177.0274,,,voegelin1938[2-4],,1850,Binford_2001_Tables_5.01_and_8.04, +1782,B153,B014,53.10822,,,goldschmidt1948[445],,1850,Binford_2001_Tables_5.01_and_8.04, +1783,B154,B014,112.6538,,,"gayton1948a[56-64, 70-76]",,1850,Binford_2001_Tables_5.01_and_8.04, +1784,B155,B014,22.53076,,,kroeber1932[259-62],,1850,Binford_2001_Tables_5.01_and_8.04, +1785,B156,B014,0,,Binford estimate,,,1770,Binford_2001_Tables_5.01_and_8.04, +1786,B157,B014,136.7939,,,gayton1948a[254-63];gifford1932b,,1870,Binford_2001_Tables_5.01_and_8.04, +1787,B158,B014,57.93624,,,barrett1908[182-204],,1860,Binford_2001_Tables_5.01_and_8.04, +1788,B159,B014,,,,,,,, +1789,B16,B014,152.8873,,,bernatzik1951[140];pookajorn1988[figures 75-77],,1963,Binford_2001_Tables_5.01_and_8.04, +1790,B160,B014,223.69826,,,dubois1935[28-29],,1860,Binford_2001_Tables_5.01_and_8.04, +1791,B161,B014,0,,Binford estimate,cookandheizer1965,,1860,Binford_2001_Tables_5.01_and_8.04, +1792,B162,B014,54.71756,,,dixon1910[295-302],,1860,Binford_2001_Tables_5.01_and_8.04, +1793,B163,B014,8.0467,,,kroeber1929[407-8],,1850,Binford_2001_Tables_5.01_and_8.04, +1794,B164,B014,,,,,,,, +1795,B165,B014,0,,,barrett1908[210-26],,1860,Binford_2001_Tables_5.01_and_8.04, +1796,B166,B014,96.5604,,,nomland1935[149-78],,1860,Binford_2001_Tables_5.01_and_8.04, +1797,B167,B014,,,,,,,, +1798,B168,B014,,,,,,,, +1799,B169,B014,,,,,,,, +1800,B17,B014,88.5137,,,"gardner1965[27-28, 33]",,1963,Binford_2001_Tables_5.01_and_8.04, +1801,B170,B014,,,,,,,, +1802,B171,B014,,,,,,,, +1803,B172,B014,12.87472,,,driver1936[179-220],,1860,Binford_2001_Tables_5.01_and_8.04, +1804,B173,B014,0,,,barrett1908[124-35];loeb1926b[172],,1860,Binford_2001_Tables_5.01_and_8.04, +1805,B174,B014,136.7939,,,waterman1918[37-60],,1860,Binford_2001_Tables_5.01_and_8.04, +1806,B175,B014,51.49888,,,barrettandgifford1933[198-206],,1850,Binford_2001_Tables_5.01_and_8.04, +1807,B176,B014,112.6538,,,gray1987[37-40],,1860,Binford_2001_Tables_5.01_and_8.04, +1808,B177,B014,160.934,,,"gifford1939[294, 329-30]",,1860,Binford_2001_Tables_5.01_and_8.04, +1809,B178,B014,96.5604,,,drucker1940[226-35],,1870,Binford_2001_Tables_5.01_and_8.04, +1810,B179,B014,88.5137,,,dixon1907[421722],,1860,Binford_2001_Tables_5.01_and_8.04, +1811,B18,B014,144.8406,,,williams1974[76-77],,1963,Binford_2001_Tables_5.01_and_8.04, +1812,B180,B014,0,,,"goddard1904[12-16, 21-29]",,1860,Binford_2001_Tables_5.01_and_8.04, +1813,B181,B014,120.7005,,,gray1987[48-51],,1870,Binford_2001_Tables_5.01_and_8.04, +1814,B182,B014,0,,,schenckandgifford1952[387-92],,1860,Binford_2001_Tables_5.01_and_8.04, +1815,B183,B014,,,,,,,, +1816,B184,B014,19.31208,,,schalk1978[125],,1860,Binford_2001_Tables_5.01_and_8.04, +1817,B185,B014,45.06152,,,"dixon1905[201, 225]",,1850,Binford_2001_Tables_5.01_and_8.04, +1818,B186,B014,38.62416,,,schalk1978[125],,1850,Binford_2001_Tables_5.01_and_8.04, +1819,B187,B014,102.99776,,,kniffen1926[303],,1860,Binford_2001_Tables_5.01_and_8.04, +1820,B188,B014,72.4203,,,ray1963[180-211],,1860,Binford_2001_Tables_5.01_and_8.04, +1821,B189,B014,135.18456,,,spier1930[11],,1860,Binford_2001_Tables_5.01_and_8.04, +1822,B19,B014,30.57746,,,ehrenfels1952[8],,1946,Binford_2001_Tables_5.01_and_8.04, +1823,B190,B014,217.2609,,,baegert1863[361-65];baegert1865[391],,1760,Binford_2001_Tables_5.01_and_8.04, +1824,B191,B014,,,,,,,, +1825,B192,B014,362.1015,,,steward1938[91-93],,1860,Binford_2001_Tables_5.01_and_8.04, +1826,B193,B014,,,,,,,, +1827,B194,B014,,,,,,,, +1828,B195,B014,354.0548,,,steward1938[84-85],,1850,Binford_2001_Tables_5.01_and_8.04, +1829,B196,B014,28.96812,,,corbusier1886[283];gifford1932a[206-13],,1870,Binford_2001_Tables_5.01_and_8.04, +1830,B197,B014,354.0548,,,steward1936[81-83],,1860,Binford_2001_Tables_5.01_and_8.04, +1831,B198,B014,168.9807,,,kniffen1935[38-45],,1870,Binford_2001_Tables_5.01_and_8.04, +1832,B199,B014,241.401,,Binford estimate,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Tables_5.01_and_8.04, +1833,B2,B014,80.467,,,eder1984[843],,1968,Binford_2001_Tables_5.01_and_8.04, +1834,B20,B014,120.7005,,,bhanu1982[225];bhanu1992[31],,1974,Binford_2001_Tables_5.01_and_8.04, +1835,B200,B014,289.6812,,,steward1936[76-80],,1860,Binford_2001_Tables_5.01_and_8.04, +1836,B201,B014,321.868,,Binford estimate,kelly1964;kellyandfowler1986,,1860,Binford_2001_Tables_5.01_and_8.04, +1837,B202,B014,27.35878,,,"steward1933[238-39, 263-66]",,1870,Binford_2001_Tables_5.01_and_8.04, +1838,B203,B014,434.5218,,,thomas1983[29-30],,1860,Binford_2001_Tables_5.01_and_8.04, +1839,B204,B014,321.868,,,"kelly1964[12, 14]",,1860,Binford_2001_Tables_5.01_and_8.04, +1840,B205,B014,346.0081,,,davis1965[29-31],,1870,Binford_2001_Tables_5.01_and_8.04, +1841,B206,B014,313.8213,,,steward1938[58-60],,1860,Binford_2001_Tables_5.01_and_8.04, +1842,B207,B014,337.9614,,,gouldandplew1996[64-66];steward1938[165-72],,1860,Binford_2001_Tables_5.01_and_8.04, +1843,B208,B014,53.10822,,Binford estimate,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Tables_5.01_and_8.04, +1844,B209,B014,,,,,,,, +1845,B21,B014,0,,,bird1983[57-59];birddavid1987[153-56],,1978,Binford_2001_Tables_5.01_and_8.04, +1846,B210,B014,144.8406,,,fowler1992[25-42],,1870,Binford_2001_Tables_5.01_and_8.04, +1847,B211,B014,241.401,,,steward1938[64-68],,1860,Binford_2001_Tables_5.01_and_8.04, +1848,B212,B014,265.5411,,,riddell1960[21-44],,1870,Binford_2001_Tables_5.01_and_8.04, +1849,B213,B014,402.335,,,steward1938[178-79],,1870,Binford_2001_Tables_5.01_and_8.04, +1850,B214,B014,366.92952,,,steward1938[132-39],,1860,Binford_2001_Tables_5.01_and_8.04, +1851,B215,B014,,,,,,,, +1852,B216,B014,,,,,,,, +1853,B217,B014,144.8406,,,steward1938[118-21],,1860,Binford_2001_Tables_5.01_and_8.04, +1854,B218,B014,209.2142,,,steward1938[100-5],,1860,Binford_2001_Tables_5.01_and_8.04, +1855,B219,B014,,,,,,,, +1856,B22,B014,12.87472,,,watanabe1964a[8-9],,1900,Binford_2001_Tables_5.01_and_8.04, +1857,B221,B014,506.9421,,,steward1938[173-77],,1860,Binford_2001_Tables_5.01_and_8.04, +1858,B222,B014,,,,,,,, +1859,B223,B014,,,,,,,, +1860,B224,B014,,,,,,,, +1861,B225,B014,318.64932,,,downs1966[12-37],,1850,Binford_2001_Tables_5.01_and_8.04, +1862,B226,B014,337.9614,,,"kelly1932[78, 105-6]",,1870,Binford_2001_Tables_5.01_and_8.04, +1863,B227,B014,,,,,,,, +1864,B228,B014,193.1208,,,"steward1938[figure 11, 147-49]",,1860,Binford_2001_Tables_5.01_and_8.04, +1865,B229,B014,,,,,,,, +1866,B23,B014,563.269,,Binford estimate,qiu1983,,1900,Binford_2001_Tables_5.01_and_8.04, +1867,B230,B014,,,,,,,, +1868,B231,B014,402.335,,,whiting1950[17-19],,1870,Binford_2001_Tables_5.01_and_8.04, +1869,B232,B014,434.5218,,,steward1938[187-92],,1860,Binford_2001_Tables_5.01_and_8.04, +1870,B233,B014,418.4284,,,"steward1938[114-15, figure 8]",,1860,Binford_2001_Tables_5.01_and_8.04, +1871,B234,B014,,,,,,,, +1872,B24,B014,675.9228,,,lee1967[23-44],,1900,Binford_2001_Tables_5.01_and_8.04, +1873,B240,B014,772.4832,,,basehartperscomm1972,,1880,Binford_2001_Tables_5.01_and_8.04, +1874,B241,B014,,,,,,,, +1875,B242,B014,,,,,,,, +1876,B243,B014,,,,,,,, +1877,B244,B014,,,,,,,, +1878,B245,B014,627.6426,,,gussow1954;moore1987[163-75],,1860,Binford_2001_Tables_5.01_and_8.04, +1879,B246,B014,,,,,,,, +1880,B248,B014,917.3238,,,denig1961[159];kelly1995[table 4.1],,1870,Binford_2001_Tables_5.01_and_8.04, +1881,B249,B014,,,,,,,, +1882,B25,B014,0,,,shternberg1933[67],,1920,Binford_2001_Tables_5.01_and_8.04, +1883,B250,B014,458.6619,,,turneyhigh1941[53-55],,1880,Binford_2001_Tables_5.01_and_8.04, +1884,B252,B014,,,,,,,, +1885,B253,B014,675.9228,,,flannery1953[23-24],,1870,Binford_2001_Tables_5.01_and_8.04, +1886,B254,B014,,,,,,,, +1887,B255,B014,1351.8456,,"Note, two estimates provided by Binford (1351.8 km, 901.2 km); this entry is one of those estimates",ewers1955[125-27],,1850,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford (1351.8 km, 901.2 km)" +1888,B255,B014,901.2304,,"Note, two estimates provided by Binford (1351.8 km, 901.2 km); this entry is one of those estimates",kehoe1993[89],,1850,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford (1351.8 km, 901.2 km)" +1889,B256,B014,869.0436,,,ewers1955[123-29],,1850,Binford_2001_Tables_5.01_and_8.04, +1890,B257,B014,,,,,,,, +1891,B258,B014,,,,,,,, +1892,B259,B014,,,,,,,, +1893,B26,B014,659.8294,,,kreynovich1979[194-209],,1900,Binford_2001_Tables_5.01_and_8.04, +1894,B260,B014,708.1096,,,jenness1938[12],,1880,Binford_2001_Tables_5.01_and_8.04, +1895,B268,B014,54.71756,,,drucker1990[464];kelly1995[table 4.1],,1880,Binford_2001_Tables_5.01_and_8.04, +1896,B269,B014,35.40548,,,drucker1939,,1860,Binford_2001_Tables_5.01_and_8.04, +1897,B27,B014,603.5025,,,chard1963[106-8],,1933,Binford_2001_Tables_5.01_and_8.04, +1898,B270,B014,80.467,,,smith1940a[7-32];smith1940b[138-42],,1870,Binford_2001_Tables_5.01_and_8.04, +1899,B271,B014,104.6071,,,elmendorf1960[253-65];kelly1995[table 4.1],,1850,Binford_2001_Tables_5.01_and_8.04, +1900,B272,B014,,,,,,,, +1901,B273,B014,40.2335,,,schalk1978[126],,1880,Binford_2001_Tables_5.01_and_8.04, +1902,B274,B014,45.06152,,,"ray1937[366];ray1938[38-42, 55]",,1850,Binford_2001_Tables_5.01_and_8.04, +1903,B275,B014,0,,,zenk1990[572-74],,1860,Binford_2001_Tables_5.01_and_8.04, +1904,B276,B014,144.8406,,,hayden1997[18-22],,1860,Binford_2001_Tables_5.01_and_8.04, +1905,B277,B014,32.1868,,,stern1934[43-53],,1880,Binford_2001_Tables_5.01_and_8.04, +1906,B278,B014,19.31208,,,olson1936a[93-94],,1860,Binford_2001_Tables_5.01_and_8.04, +1907,B279,B014,64.3736,,,schalk1978[126],,1880,Binford_2001_Tables_5.01_and_8.04, +1908,B28,B014,144.8406,,,krupnik1983a[96],,1860,Binford_2001_Tables_5.01_and_8.04, +1909,B280,B014,96.5604,,,wilson1866[286],,1880,Binford_2001_Tables_5.01_and_8.04, +1910,B281,B014,25.74944,,,taylor1974a[33-41],,,Binford_2001_Tables_5.01_and_8.04, +1911,B282,B014,,,,,,,, +1912,B283,B014,,,,,,,, +1913,B284,B014,0,,,pettitt1950[5-7],,1880,Binford_2001_Tables_5.01_and_8.04, +1914,B285,B014,72.4203,,,schalk1978[126],,1860,Binford_2001_Tables_5.01_and_8.04, +1915,B286,B014,24.1401,,,"schalk1978[125, 165]",,1860,Binford_2001_Tables_5.01_and_8.04, +1916,B287,B014,0,,,olson1940[170],,1880,Binford_2001_Tables_5.01_and_8.04, +1917,B288,B014,49.88954,,,schalk1978[165],,1890,Binford_2001_Tables_5.01_and_8.04, +1918,B289,B014,220.147895,,"Note, Binford Table 5.01 lists '64.3736 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here.","halpinandseguin1990[269-71];schalk1978[126, 165]",,1880,Binford_2001_Table_8.04,"Note, Binford Table 5.01 lists '64.3736 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here." +1919,B290,B014,,,,,,,, +1920,B291,B014,,,,,,,, +1921,B292,B014,48.2802,,"Note, two estimates provided by Binford, the first refers specifically to Southern Tlingit (48.3 km) and the second to Chilkat Tlingit (88.5 km); this entry is one of those estimates","schalk1978[127, 165]",Special reference to Southern Tlingit,1880,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Southern Tlingit (48.3 km) and the second to Chilkat Tlingit (88.5 km)" +1922,B292,B014,88.5137,,"Note, two estimates provided by Binford, the first refers specifically to Southern Tlingit (48.3 km) and the second to Chilkat Tlingit (88.5 km); this entry is one of those estimates",mitchellanddonald1988[310],Special reference to Chilkat Tlingit,1880,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Southern Tlingit (48.3 km) and the second to Chilkat Tlingit (88.5 km)" +1923,B293,B014,72.4203,,,halpinandseguin1990[269-71],,1880,Binford_2001_Tables_5.01_and_8.04, +1924,B294,B014,0,,Binford estimate,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Tables_5.01_and_8.04, +1925,B295,B014,40.2335,,,delaguna1990[190-91],,1890,Binford_2001_Tables_5.01_and_8.04, +1926,B296,B014,0,,,oswaltperscomm1966,,1850,Binford_2001_Tables_5.01_and_8.04, +1927,B297,B014,38.84962853,,"Note, Binford Table 5.01 lists '64.3736 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here.",birketsmith1953[123-28],,1930,Binford_2001_Table_8.04,"Note, Binford Table 5.01 lists '64.3736 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here." +1928,B298,B014,0,,,lantis1970a[174-82],,1830,Binford_2001_Tables_5.01_and_8.04, +1929,B299,B014,0,,,lantis1946[163],,1930,Binford_2001_Tables_5.01_and_8.04, +1930,B3,B014,225.3076,,,persoon1989[512];volz1909[96-101],,1900,Binford_2001_Tables_5.01_and_8.04, +1931,B315,B014,112.6538,,,murdock1980[131],,1850,Binford_2001_Tables_5.01_and_8.04, +1932,B316,B014,,,,,,,, +1933,B317,B014,30.57746,,,"teit1928[104, 114-15]",,1870,Binford_2001_Tables_5.01_and_8.04, +1934,B318,B014,,,,,,,, +1935,B319,B014,0,,,"spierandsapir1930[164-67, 202-5]",,1860,Binford_2001_Tables_5.01_and_8.04, +1936,B320,B014,482.802,,,"teit1930[95-97, 150-52]",,1860,Binford_2001_Tables_5.01_and_8.04, +1937,B321,B014,144.8406,,,clineetal1938[11],,1880,Binford_2001_Tables_5.01_and_8.04, +1938,B322,B014,64.3736,,,grabert1974[8],,1860,Binford_2001_Tables_5.01_and_8.04, +1939,B323,B014,120.7005,,,"kelly1995[table 4.1];ray1932[15-24, 27-28]",,1870,Binford_2001_Tables_5.01_and_8.04, +1940,B324,B014,,,,,,,, +1941,B325,B014,,,,,,,, +1942,B326,B014,,,,,,,, +1943,B327,B014,362.1015,,,jenness1935[13-14],,1870,Binford_2001_Tables_5.01_and_8.04, +1944,B328,B014,450.6152,,,kinietz1947[43-55],,1800,Binford_2001_Tables_5.01_and_8.04, +1945,B329,B014,405.55368,,,"speckanddexter1951[251-55];wallisandwallis1955[64-66, 172]",,1700,Binford_2001_Tables_5.01_and_8.04, +1946,B330,B014,,,,,,,, +1947,B331,B014,563.269,,,hickerson1967[48-52];landes1937a[88-95],,1880,Binford_2001_Tables_5.01_and_8.04, +1948,B332,B014,603.5025,,Binford estimate,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Tables_5.01_and_8.04, +1949,B333,B014,96.5604,,,dawson1891[7-10],,1850,Binford_2001_Tables_5.01_and_8.04, +1950,B334,B014,,,,,,,, +1951,B335,B014,,,,,,,, +1952,B336,B014,144.8406,,,goldman1940[351-52],,1865,Binford_2001_Tables_5.01_and_8.04, +1953,B337,B014,563.269,,,cameron1890[256],,1800,Binford_2001_Tables_5.01_and_8.04, +1954,B338,B014,724.203,,,rogers1972[107-11],,1880,Binford_2001_Tables_5.01_and_8.04, +1955,B339,B014,442.5685,,Binford estimate,dunning1959,,1850,Binford_2001_Tables_5.01_and_8.04, +1956,B340,B014,,,,,,,, +1957,B341,B014,,,,,,,, +1958,B342,B014,511.77012,,,lane1952[13],,1880,Binford_2001_Tables_5.01_and_8.04, +1959,B343,B014,643.736,,,"jenness1937[32-37, 58]",,1880,Binford_2001_Tables_5.01_and_8.04, +1960,B344,B014,643.736,,,goddard1916[212];ridington1982[472],,1850,Binford_2001_Tables_5.01_and_8.04, +1961,B345,B014,716.1563,,,helm1961[16-27],,1860,Binford_2001_Tables_5.01_and_8.04, +1962,B346,B014,450.6152,,,"honigmann1954[12, 31-68]",,1920,Binford_2001_Tables_5.01_and_8.04, +1963,B347,B014,,,,,,,, +1964,B348,B014,,,,,,,, +1965,B349,B014,442.5685,,,jenness1943[531-39],,1880,Binford_2001_Tables_5.01_and_8.04, +1966,B35,B014,,,,,,,, +1967,B350,B014,,,,,,,, +1968,B351,B014,,,,,,,, +1969,B352,B014,724.203,,,savishinsky1974[86-138],,1860,Binford_2001_Tables_5.01_and_8.04, +1970,B353,B014,346.0081,,,honigmann1956b[32],,1900,Binford_2001_Tables_5.01_and_8.04, +1971,B354,B014,563.269,,,"mcfaydenclark1981[593, 588-89]",,1880,Binford_2001_Tables_5.01_and_8.04, +1972,B355,B014,798.23264,,,fidler1934,,1880,Binford_2001_Tables_5.01_and_8.04, +1973,B356,B014,724.203,,,"slobodin1969[58-64, 78-83]",,1880,Binford_2001_Tables_5.01_and_8.04, +1974,B357,B014,102.99776,,,michael1967[307],,1880,Binford_2001_Tables_5.01_and_8.04, +1975,B358,B014,603.5025,,,hooper1853,,1860,Binford_2001_Tables_5.01_and_8.04, +1976,B359,B014,514.9888,,,mckennan1959,,1930,Binford_2001_Tables_5.01_and_8.04, +1977,B36,B014,275.19714,,Binford estimate,metraux1948,,1960,Binford_2001_Tables_5.01_and_8.04, +1978,B360,B014,547.1756,,,morantz1983[33-37],,1900,Binford_2001_Tables_5.01_and_8.04, +1979,B361,B014,724.203,,,helm1972[63-72],,1860,Binford_2001_Tables_5.01_and_8.04, +1980,B362,B014,57.93624,,"Note, focal year differs from that for some other data for society",michael1967[306],,1843,Binford_2001_Tables_5.01_and_8.04, +1981,B363,B014,724.203,,,legros1982[67-69],,1890,Binford_2001_Tables_5.01_and_8.04, +1982,B364,B014,0,,,snow1981[615-16],,1860,Binford_2001_Tables_5.01_and_8.04, +1983,B365,B014,675.9228,,,"henriksen1973[2, 4]",,1890,Binford_2001_Tables_5.01_and_8.04, +1984,B369,B014,0,,Binford estimate,ray1992;seltzer1933,,1870,Binford_2001_Tables_5.01_and_8.04, +1985,B37,B014,458.6619,,,kloos1977[119];kloos1982,,1968,Binford_2001_Tables_5.01_and_8.04, +1986,B370,B014,362.1015,,,giddings1956[5-55],,1890,Binford_2001_Tables_5.01_and_8.04, +1987,B371,B014,0,,Binford estimate,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Tables_5.01_and_8.04, +1988,B372,B014,217.2609,,,taylor1974[51-58],,1890,Binford_2001_Tables_5.01_and_8.04, +1989,B373,B014,136.7939,,,saladindanglure1984[497-99],,1890,Binford_2001_Tables_5.01_and_8.04, +1990,B374,B014,708.1096,,Binford estimate,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Tables_5.01_and_8.04, +1991,B375,B014,579.3624,,,binfordfieldnotes1972,,1900,Binford_2001_Tables_5.01_and_8.04, +1992,B377,B014,806.27934,,,"amsden1977[159, 163]",,1950,Binford_2001_Tables_5.01_and_8.04, +1993,B378,B014,233.3543,,,mcghee1988[7-24],,1910,Binford_2001_Tables_5.01_and_8.04, +1994,B379,B014,25.74944,,,moore1923[349],,1920,Binford_2001_Tables_5.01_and_8.04, +1995,B38,B014,53.10822,,,gragson1989[285-88],,1989,Binford_2001_Tables_5.01_and_8.04, +1996,B380,B014,120.7005,,,"burch1975[260-69];rainey1947[240, 244-67]",,1880,Binford_2001_Tables_5.01_and_8.04, +1997,B381,B014,714.54696,,,"jenness1932[32, 55, 56]",,1920,Binford_2001_Tables_5.01_and_8.04, +1998,B382,B014,611.5492,,,"briggs1970[30, 32-40]",,1920,Binford_2001_Tables_5.01_and_8.04, +1999,B383,B014,643.736,,,"mathiassen1928[15-17, 24]",,1880,Binford_2001_Tables_5.01_and_8.04, +2000,B384,B014,619.5959,,,mathiassen1928[29-36],,1920,Binford_2001_Tables_5.01_and_8.04, +2001,B385,B014,112.6538,,,grnnowetal1983[13-37],,1880,Binford_2001_Tables_5.01_and_8.04, +2002,B386,B014,281.6345,,,"boas1888[422-24];hantzsch1977[39, 99]",,1880,Binford_2001_Tables_5.01_and_8.04, +2003,B387,B014,494.06738,,,balikci1970[23-90],,1880,Binford_2001_Tables_5.01_and_8.04, +2004,B388,B014,20.92142,,,holm1914[97];thalbitzer1914[618-26],,1880,Binford_2001_Tables_5.01_and_8.04, +2005,B389,B014,96.5604,,,simpson1875[237];spencer1959[139-46],,1880,Binford_2001_Tables_5.01_and_8.04, +2006,B39,B014,281.6345,,,kirchhoff1945[449],,1960,Binford_2001_Tables_5.01_and_8.04, +2007,B390,B014,563.269,,,"steensby1910[279, 289-305]",,1880,Binford_2001_Tables_5.01_and_8.04, +2008,B4,B014,,,,,,,, +2009,B40,B014,362.1015,,,politisperscomm1992,,1990,Binford_2001_Tables_5.01_and_8.04, +2010,B41,B014,0,,,baldus1937[123-24];levistrauss1936[269];levistrauss1970[140],,1920,Binford_2001_Tables_5.01_and_8.04, +2011,B42,B014,,,,,,,, +2012,B43,B014,284.8972759,,"Note, Binford Table 5.01 lists '337.9614 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here.",holmberg1950[51],,1940,Binford_2001_Table_8.04,"Note, Binford Table 5.01 lists '337.9614 km', but without attributing the value to a specific reference, so the value from table 8.04is displayed here." +2013,B44,B014,502.11408,,"Binford noted this was an ""estimate""",stearman1989,,1968,Binford_2001_Tables_5.01_and_8.04, +2014,B45,B014,20.9215,,"Note, two estimates provided by Binford (20.92 km, 112.6 km); this entry is one of those estimates","levistrauss1948a[266, 288]",,1938,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford (20.92 km, 112.6 km)" +2015,B45,B014,112.6538,,"Note, two estimates provided by Binford (20.92 km, 112.6 km); this entry is one of those estimates",aspelin1976[9-16],,1938,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford (20.92 km, 112.6 km)" +2016,B46,B014,0,,,widmer1983[15-18],,1600,Binford_2001_Tables_5.01_and_8.04, +2017,B47,B014,466.7086,,,"clastres1972[163];oberg1953[18, 38]",,1975,Binford_2001_Tables_5.01_and_8.04, +2018,B48,B014,217.2609,,Binford estimate,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Tables_5.01_and_8.04, +2019,B49,B014,,,,,,,, +2020,B5,B014,64.3736,,,cooper1991,,1952,Binford_2001_Tables_5.01_and_8.04, +2021,B50,B014,273.5878,,,henry1964[159],,1910,Binford_2001_Tables_5.01_and_8.04, +2022,B51,B014,579.3624,,Binford estimate,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Tables_5.01_and_8.04, +2023,B52,B014,,,,,,,, +2024,B53,B014,,,,,,,, +2025,B54,B014,514.9888,,,chapman1982[19],,1880,Binford_2001_Tables_5.01_and_8.04, +2026,B55,B014,144.8406,,,"gusinde1937a[366, 511]",,1870,Binford_2001_Tables_5.01_and_8.04, +2027,B6,B014,94.95106,,,temple1903[69-90],,1906,Binford_2001_Tables_5.01_and_8.04, +2028,B60,B014,120.7005,,,hudson1990[57-80],,1980,Binford_2001_Tables_5.01_and_8.04, +2029,B61,B014,59.54558,,,heymer1980[189],,1976,Binford_2001_Tables_5.01_and_8.04, +2030,B62,B014,96.5604,,,"terashima1980[241, 261]",,1977,Binford_2001_Tables_5.01_and_8.04, +2031,B63,B014,136.7939,,,valloisandmarquer1976[112-19],,1980,Binford_2001_Tables_5.01_and_8.04, +2032,B64,B014,104.6071,,,bailey1985[48-58];peacock1985[47-48],,1980,Binford_2001_Tables_5.01_and_8.04, +2033,B65,B014,102.99776,,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km); this entry is one of those estimates","harako1976[44, 114-17]",,1930,Binford_2001_Tables_5.01_and_8.04,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km)" +2034,B65,B014,104.6071,,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km); this entry is one of those estimates",tanno1976[123],Special reference to Mawambo Mbuti,1930,Binford_2001_Tables_5.01_and_8.04,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km)" +2035,B65,B014,233.3543,,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km); this entry is one of those estimates",ichikawa1978[173-75],Special reference to Mbuti of Tetri Area,1930,Binford_2001_Tables_5.01_and_8.04,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km)" +2036,B66,B014,,,,,,,, +2037,B67,B014,201.1675,,Binford estimate,clark1951,,1950,Binford_2001_Tables_5.01_and_8.04, +2038,B68,B014,,,,,,,, +2039,B69,B014,128.7472,,,leeanddevore1968a[194],,1910,Binford_2001_Tables_5.01_and_8.04, +2040,B7,B014,0,,,reed1904[39-43],,1903,Binford_2001_Tables_5.01_and_8.04, +2041,B70,B014,0,,,huntingford1929[340];huntingford1955a[623-34],,1920,Binford_2001_Tables_5.01_and_8.04, +2042,B71,B014,,,,,,,, +2043,B72,B014,482.802,,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (300) and the second to Dobe !Kung (75); this entry is one of those estimates",hitchcockandebert1989[55],Special reference to Nyae Nyae !Kung,1950,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (300) and the second to Dobe !Kung (75)" +2044,B72,B014,120.7005,,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (120.7) and the second to Dobe !Kung (466.2); this entry is one of those estimates","lee1972a[330];lee1979[168, 182-204]",Special reference to Dobe !Kung,1950,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (120.7) and the second to Dobe !Kung (466.2)" +2045,B73,B014,49.88954,,,hitchcockandebert1989[55],,1910,Binford_2001_Tables_5.01_and_8.04, +2046,B74,B014,434.5218,,,"silberbauer1972[295-97];silberbauer1981a[193, 196, 246];silberbauer1981b[460]",,1962,Binford_2001_Tables_5.01_and_8.04, +2047,B75,B014,346.0081,,,hitchcockandebert1989[55],,1976,Binford_2001_Tables_5.01_and_8.04, +2048,B76,B014,498.8954,,,hitchcockandebert1989[55],,1968,Binford_2001_Tables_5.01_and_8.04, +2049,B77,B014,566.48768,,,informantfrommoloporivernd,,1920,Binford_2001_Tables_5.01_and_8.04, +2050,B78,B014,,,,,,,, +2051,B79,B014,,,,,,,, +2052,B8,B014,122.30984,,"Note, value provided in Table 5.01 but not Table 8.04",radcliffebrown1948[28],,1870,Binford_2001_Table_5.01,"Note, value provided in Table 5.01 but not Table 8.04" +2053,B82,B014,51.49888,,,moore1979[238],,1848,Binford_2001_Tables_5.01_and_8.04, +2054,B83,B014,96.5604,,,parkhouse1895[639-41],,1900,Binford_2001_Tables_5.01_and_8.04, +2055,B84,B014,225.3076,,,altman1987[22-27],,1978,Binford_2001_Tables_5.01_and_8.04, +2056,B85,B014,22.53076,,,peterson1970[11];peterson1973[185],,1970,Binford_2001_Tables_5.01_and_8.04, +2057,B86,B014,27.35878,,,meehan1982[26-41],,1973,Binford_2001_Tables_5.01_and_8.04, +2058,B87,B014,0,,,hiatt1965[31-32],,1950,Binford_2001_Tables_5.01_and_8.04, +2059,B88,B014,466.1955424,,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (120.7) and the second to Dobe !Kung (466.2); this entry is one of those estimates",tindaleperscomm1967,,1930,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (120.7) and the second to Dobe !Kung (466.2)" +2060,B89,B014,350.83612,,Binford estimate,kaberry1935;kaberry1939,,1920,Binford_2001_Tables_5.01_and_8.04, +2061,B9,B014,236.57298,,,schebesta1962a[143-44],,1920,Binford_2001_Tables_5.01_and_8.04, +2062,B90,B014,383.02292,,,thomson1939[211-20],,1920,Binford_2001_Tables_5.01_and_8.04, +2063,B91,B014,241.401,,,chaloupka1981[163-71],,1920,Binford_2001_Tables_5.01_and_8.04, +2064,B92,B014,136.7939,,,biernoff1979[156],,1960,Binford_2001_Tables_5.01_and_8.04, +2065,B93,B014,40.2335,,,thomson1934[241],,1930,Binford_2001_Tables_5.01_and_8.04, +2066,B94,B014,233.3543,,Binford estimate,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Tables_5.01_and_8.04, +2067,B95,B014,120.7005,,,"hartandpilling1960[35, 36, 66]",,1920,Binford_2001_Tables_5.01_and_8.04, +2068,B96,B014,28.96812,,,andersonandrobins1988[184-87],,1880,Binford_2001_Tables_5.01_and_8.04, +2069,B97,B014,96.5604,,,tindaleperscomm1967,,1930,Binford_2001_Tables_5.01_and_8.04, +2070,B98,B014,48.2802,,,"haleandtindale1933[64, 77]",,1926,Binford_2001_Tables_5.01_and_8.04, +2071,B99,B014,64.3736,,Binford estimate,stanner1933,,1900,Binford_2001_Tables_5.01_and_8.04, +2072,B1,B015,6.59,,,kedit1982[261-71],Settled Punan,1970,Binford_2001_Table_8.08, +2073,B1,B015,2.91,,,harrison1949[139],Mobile Punan,1970,Binford_2001_Table_8.08, +2074,B1,B015,5.76,,,avadhani1975[131],Settled Punan,1970,Binford_2001_Table_8.08, +2075,B1,B015,5.91,,,harrison1949[139],,1970,Binford_2001_Table_8.08, +2076,B10,B015,4.23,,,bailey1863[292];seligmannandseligmann1911[63];spittel1945[8],,1900,Binford_2001_Table_8.08, +2077,B100,B015,,,,,,,, +2078,B101,B015,,,,,,,, +2079,B102,B015,3.47,,,memmott1983a[123],,1909,Binford_2001_Table_8.08, +2080,B103,B015,,,,,,,, +2081,B104,B015,,,,,,,, +2082,B105,B015,,,,,,,, +2083,B106,B015,,,,,,,, +2084,B107,B015,,,,,,,, +2085,B108,B015,,,,,,,, +2086,B109,B015,3.86,,,meggitt1962[81],,1965,Binford_2001_Table_8.08, +2087,B11,B015,4.64,,,"morris1982a[97-98, 174]",,1972,Binford_2001_Table_8.08, +2088,B110,B015,,,,,,,, +2089,B111,B015,4.12,,,petersonandlong1986[116-17],,1960,Binford_2001_Table_8.08, +2090,B112,B015,,,,,,,, +2091,B113,B015,4.33,,,myers1986[45];petersonandlong1986[104-11],,1936,Binford_2001_Table_8.08, +2092,B113,B015,4.42,,,gargettandhayden1991[13-22];haydenperscomm1992,"Papunya, Settled",1936,Binford_2001_Table_8.08, +2093,B114,B015,,,,,,,, +2094,B115,B015,,,,,,,, +2095,B116,B015,,,,,,,, +2096,B117,B015,4.93,,,oconnell1987[77],,1965,Binford_2001_Table_8.08, +2097,B117,B015,5.2,,,denham1975[142],,1965,Binford_2001_Table_8.08, +2098,B118,B015,3.55,,,gould1971[168];gould1977[43],,1968,Binford_2001_Table_8.08, +2099,B118,B015,4.46,,,gould1977[85],"Large, Settled Groups - Wanampi Well",1968,Binford_2001_Table_8.08, +2100,B118,B015,4.5,,,gould1977[43],"Large, Settled Groups - Warburton",1968,Binford_2001_Table_8.08, +2101,B118,B015,4.62,,,gould1977[43],"Large, Settled Groups - Leverton",1968,Binford_2001_Table_8.08, +2102,B118,B015,2.76,,,gould1977[43],"Summer, Mulyangiri",1968,Binford_2001_Table_8.08, +2103,B118,B015,3.5,,,gould1977[43],"Summer (December), Partjar",1966,Binford_2001_Table_8.08, +2104,B118,B015,3.33,,,gould1977[43],"Winter, Tika-Tika",1966,Binford_2001_Table_8.08, +2105,B118,B015,3.33,,,gould1977[43],"Winter, Partjar",1966,Binford_2001_Table_8.08, +2106,B118,B015,3,,,gould1977[43],"Winter (April), Pulykara",1970,Binford_2001_Table_8.08, +2107,B119,B015,,,,,,,, +2108,B12,B015,4.33,,,headland1986[141];headlandperscomm1992,,1965,Binford_2001_Table_8.08, +2109,B120,B015,5.75,,,tindale1972[243],,1968,Binford_2001_Table_8.08, +2110,B121,B015,,,,,,,, +2111,B122,B015,,,,,,,, +2112,B123,B015,,,,,,,, +2113,B124,B015,,,,,,,, +2114,B125,B015,,,,,,,, +2115,B126,B015,,,,,,,, +2116,B127,B015,,,,,,,, +2117,B128,B015,,,,,,,, +2118,B129,B015,,,,,,,, +2119,B13,B015,4.11,,,rai1982[228],,1979,Binford_2001_Table_8.08, +2120,B130,B015,,,,,,,, +2121,B131,B015,,,,,,,, +2122,B132,B015,3.5,,,nind1831[22],,1850,Binford_2001_Table_8.08, +2123,B133,B015,5,,,williams1985[74-75],,1850,Binford_2001_Table_8.08, +2124,B134,B015,5,,,gaughwinandsullivan1984[94],,1850,Binford_2001_Table_8.08, +2125,B135,B015,,,,,,,, +2126,B136,B015,6.86,,,plomley1983[166],East Coast,1830,Binford_2001_Table_8.08, +2127,B136,B015,8.5,,,jones1972[6],West Coast,1830,Binford_2001_Table_8.08, +2128,B137,B015,,,,,,,, +2129,B14,B015,5.96,,,vanoverbergh1925[196],,1924,Binford_2001_Table_8.08, +2130,B143,B015,6.48,,Note: household made up of two nuclear families,"griffen1959[vii, 50, 188]",,1938,Binford_2001_Table_8.08, +2131,B144,B015,9.3,,Note: presence of communal structure in household,strong1929a[45],,1870,Binford_2001_Table_8.08, +2132,B145,B015,6.45,,Note: household made up of two nuclear families,strong1929a[189-214],,1865,Binford_2001_Table_8.08, +2133,B146,B015,7.2,,Note: household made up of two nuclear families,meigs1939[1],,1880,Binford_2001_Table_8.08, +2134,B147,B015,,,,,,,, +2135,B148,B015,,,,,,,, +2136,B149,B015,,,,,,,, +2137,B15,B015,3.98,,,furerhaimendorf1943b[366],,1940,Binford_2001_Table_8.08, +2138,B150,B015,,,,,,,, +2139,B151,B015,3.81,,,gayton1948a[57],,1860,Binford_2001_Table_8.08, +2140,B152,B015,7,,Note: household made up of two nuclear families,voegelin1938[43-44],,1850,Binford_2001_Table_8.08, +2141,B153,B015,3.88,,,goldschmidtperscomm1966,,1850,Binford_2001_Table_8.08, +2142,B154,B015,6.43,,Note: household made up of two nuclear families,cook1955[54],,1850,Binford_2001_Table_8.08, +2143,B155,B015,3.47,,Focal time given as '1850s',barrett1908[290-92],,1855,Binford_2001_Table_8.08, +2144,B156,B015,,,,,,,, +2145,B157,B015,,,,,,,, +2146,B158,B015,11.7,,Note: presence of communal structure in household,"barrett1908[186, 191]",,1860,Binford_2001_Table_8.08, +2147,B159,B015,13.06,,Note: presence of communal structure in household,gifford1926a[292-97],,1860,Binford_2001_Table_8.08, +2148,B16,B015,6.05,,,nimmanahaemindaandhartlandswam1962[173];pookajorn1988[187];velder1963[186-88],,1963,Binford_2001_Table_8.08, +2149,B160,B015,6,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates",cookandheizer1965[71],,1860,Binford_2001_Table_8.08, +2150,B160,B015,4,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates. For this entry, focal time was given as '1850s'",barrett1908[289],,1855,Binford_2001_Table_8.08, +2151,B161,B015,9.5,,Note: presence of communal structure in household,cookandheizer1965[51],,1860,Binford_2001_Table_8.08, +2152,B162,B015,,,,,,,, +2153,B163,B015,3.61,,,cookandheizer1965[71],,1850,Binford_2001_Table_8.08, +2154,B164,B015,,,,,,,, +2155,B165,B015,3.81,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates","barrett1908[205, 214]",,1860,Binford_2001_Table_8.08, +2156,B165,B015,2.91,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates","barrett1908[235-36, 244]",Southwest Dialect,1860,Binford_2001_Table_8.08, +2157,B166,B015,4.4,,,goddard1923[97-101],,1860,Binford_2001_Table_8.08, +2158,B167,B015,,,,,,,, +2159,B168,B015,6.25,,,collierandthalman1991[331-33],,1850,Binford_2001_Table_8.08, +2160,B169,B015,,,,,,,, +2161,B17,B015,3.31,,,gardner1972[420],,1962,Binford_2001_Table_8.08, +2162,B170,B015,,,,,,,, +2163,B171,B015,5.62,,,cook1956[107],,1850,Binford_2001_Table_8.08, +2164,B172,B015,3.75,,"Note, for this society, Binford provided 3 estimates, including separate estimates for ""Hill,"" and ""Valley,"" and ""Valley, traditional""; this entry is one of those estimates",barrett1908[268],Hill,1860,Binford_2001_Table_8.08, +2165,B172,B015,8.36,,"Note, for this society, Binford provided 3 estimates, including separate estimates for ""Hill,"" and ""Valley,"" and ""Valley, traditional""; this entry is one of those estimates. For this entry, note presence of communal structure in household",driver1936[201],Valley,1860,Binford_2001_Table_8.08, +2166,B172,B015,12,,"Note, for this society, Binford provided 3 estimates, including separate estimates for ""Hill,"" and ""Valley,"" and ""Valley, traditional""; this entry is one of those estimates. For this entry, note presence of communal structure in household; estimate is for ""Traditional"" Wappo households",cookandheizer1965[71],Valley (Estimate Of Traditional Households),1860,Binford_2001_Table_8.08, +2167,B173,B015,3.76,,,barrett1908[131-32],,1860,Binford_2001_Table_8.08, +2168,B174,B015,,,,,,,, +2169,B175,B015,6,,,cookandheizer1965[71],Mountain (Estimate),1850,Binford_2001_Table_8.08, +2170,B175,B015,4.16,,Focal time given as '1850s',barrett1908[316],,1855,Binford_2001_Table_8.08, +2171,B176,B015,8.34,,,gray1987[37-38],,1860,Binford_2001_Table_8.08, +2172,B177,B015,,,,,,,, +2173,B178,B015,8,,Note: household made up of two nuclear families,cook1956[101],,1870,Binford_2001_Table_8.08, +2174,B179,B015,8,,Note: household made up of two nuclear families,cookandheizer1965[70],,1860,Binford_2001_Table_8.08, +2175,B18,B015,2.6,,,"senandsen1955[170, 174-75]",Ranchi,1963,Binford_2001_Table_8.08, +2176,B18,B015,2.91,,,williams1974[79],,1963,Binford_2001_Table_8.08, +2177,B180,B015,6.4,,,"kroeber1925a[131, 138]",,1860,Binford_2001_Table_8.08, +2178,B181,B015,,,,,,,, +2179,B182,B015,7.5,,Note: household made up of two nuclear families,cookandheizer1965[70],,1860,Binford_2001_Table_8.08, +2180,B183,B015,,,,,,,, +2181,B184,B015,9.2,,Note: presence of communal structure in household,"loud1918[266, 339]",,1860,Binford_2001_Table_8.08, +2182,B185,B015,6,,,cookandheizer1965[71],,1850,Binford_2001_Table_8.08, +2183,B186,B015,7.46,,Note: household made up of two nuclear families,kroeber1925a[16],,1850,Binford_2001_Table_8.08, +2184,B187,B015,,,,,,,, +2185,B188,B015,5.5,,"Note, for this society, Binford provided 2 estimates, one for focal year 1934, and one for ""traditional"" case; this entry is one of those estimates",ray1963[159],,1934,Binford_2001_Table_8.08, +2186,B188,B015,13.08,,"Note, for this society, Binford provided 2 estimates, one for focal year 1934, and one for ""traditional"" case; this entry is one of those estimates. For this entry, note presence of communal structure in household; estimate is for ""Traditional"" Modoc",ray1963[149],(Traditional),1860,Binford_2001_Table_8.08, +2187,B189,B015,9.9,,Note: presence of communal structure in household,spier1930[54],,1890,Binford_2001_Table_8.08, +2188,B19,B015,9.1,,Note: presence of communal structure in household; Focal time given as '1946-47',ehrenfels1952[65-67],Base Camp,1946,Binford_2001_Table_8.08, +2189,B19,B015,2.89,,,ehrenfels1952[50],Dry Season,1946,Binford_2001_Table_8.08, +2190,B190,B015,,,,,,,, +2191,B191,B015,,,,,,,, +2192,B192,B015,3.94,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)","steward1938[87-88, 941]",,1860,Binford_2001_Table_8.08, +2193,B193,B015,7.5,,Note: household made up of two nuclear families,bolton1916[199];schaedel1949[124],,1800,Binford_2001_Table_8.08, +2194,B194,B015,,,,,,,, +2195,B195,B015,4.01,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)","steward1938[84, 87-88]",,1850,Binford_2001_Table_8.08, +2196,B196,B015,3.3,,,corbusier1886[283];gifford1932a[180-81],,1870,Binford_2001_Table_8.08, +2197,B197,B015,,,,,,,, +2198,B198,B015,5.61,,,"hayden1936[70, 165-68]",,1870,Binford_2001_Table_8.08, +2199,B199,B015,4.27,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[79],,1860,Binford_2001_Table_8.08, +2200,B2,B015,5.06,,,eder1987[105],Palawan,1968,Binford_2001_Table_8.08, +2201,B20,B015,3.59,,,bhanu1992[33],,1974,Binford_2001_Table_8.08, +2202,B200,B015,,,,,,,, +2203,B201,B015,,,,,,,, +2204,B202,B015,4.9,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1933[290];steward1938[127],,1870,Binford_2001_Table_8.08,"Note: original references were to Steward 1933:290, 1977:127; assume this is an error and that the second should be 1938:127." +2205,B203,B015,,,,,,,, +2206,B204,B015,5.66,,"Note, for this society, Binford provided 3 estimates, including estimates referring specifically to the Kaibab in the 1860s and one to ""Reservation"" households in 1973; this entry is one of those estimates. For this entry, focal time was given as '1860s'",kelly1964[13],Kaibab,1865,Binford_2001_Table_8.08, +2207,B204,B015,7.6,,"Note, for this society, Binford provided 3 estimates, including estimates referring specifically to the Kaibab in the 1860s and one to ""Reservation"" households in 1973; this entry is one of those estimates",euler1972[100],,1860,Binford_2001_Table_8.08, +2208,B204,B015,5.4,,"Note, for this society, Binford provided 3 estimates, including estimates referring specifically to the Kaibab in the 1860s and one to ""Reservation"" households in 1973; this entry is one of those estimates",knack1975[115],Reservation,1973,Binford_2001_Table_8.08, +2209,B205,B015,3.82,,Binford estimate,davis1965[36],,1870,Binford_2001_Table_8.08, +2210,B206,B015,4.6,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[58],,1860,Binford_2001_Table_8.08, +2211,B207,B015,9,,,murphyandmurphy1960[325],,1860,Binford_2001_Table_8.08, +2212,B208,B015,4.4,,,fowler1966[61-62],,1860,Binford_2001_Table_8.08, +2213,B209,B015,,,,,,,, +2214,B21,B015,3.6,,,birddavid1987[153],,1978,Binford_2001_Table_8.08, +2215,B210,B015,4.4,,,fowler1992[36-38],,1870,Binford_2001_Table_8.08, +2216,B211,B015,4.38,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[62-64],,1860,Binford_2001_Table_8.08, +2217,B212,B015,,,,,,,, +2218,B213,B015,4.33,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[178],,1870,Binford_2001_Table_8.08, +2219,B214,B015,,,,,,,, +2220,B215,B015,4.53,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[124],,1870,Binford_2001_Table_8.08, +2221,B216,B015,4.12,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates",ewers1955[26],,1827,Binford_2001_Table_8.08, +2222,B216,B015,5.7,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates. For this entry, ""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[163],Battle Mountain,1860,Binford_2001_Table_8.08, +2223,B217,B015,4.19,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[118],,1860,Binford_2001_Table_8.08, +2224,B218,B015,,,,,,,, +2225,B219,B015,4.27,,,cook1955[37];gayton1948a[145],,1860,Binford_2001_Table_8.08, +2226,B219,B015,5.15,,"Focal time given as ""post-1850""",gifford1932b[57-61],,1860,Binford_2001_Table_8.08, +2227,B22,B015,4.55,,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates",watanabe1972[449],Hokkaido,1822,Binford_2001_Table_8.08, +2228,B22,B015,4.73,,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates",watanabe1972[449],Hokkaido,1854,Binford_2001_Table_8.08, +2229,B22,B015,4.52,,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates",watanabe1972[449],Hokkaido,1873,Binford_2001_Table_8.08, +2230,B22,B015,7.2,,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates. For this entry, note household made up of two nuclear families",watanabe1972[449],Sakhalin,1822,Binford_2001_Table_8.08, +2231,B22,B015,7.16,,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates. For this entry, note household made up of two nuclear families",watanabe1972[449],Sakhalin,1854,Binford_2001_Table_8.08, +2232,B221,B015,4.17,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[174-75],,1860,Binford_2001_Table_8.08, +2233,B222,B015,5,,,smith1974[123],,1860,Binford_2001_Table_8.08, +2234,B223,B015,,,,,,,, +2235,B224,B015,4.27,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)","steward1938[126, 129]",,1860,Binford_2001_Table_8.08, +2236,B225,B015,4,,,price1962[8-10],,1895,Binford_2001_Table_8.08, +2237,B226,B015,,,,,,,, +2238,B227,B015,,,,,,,, +2239,B228,B015,,,,,,,, +2240,B229,B015,,,,,,,, +2241,B23,B015,6.31,,Binford estimate from photo; Note: household made up of two nuclear families,qiu1983,,1900,Binford_2001_Table_8.08, +2242,B230,B015,7.77,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",smith1974[123];steward1974b[117],,1860,Binford_2001_Table_8.08, +2243,B231,B015,4.19,,,whiting1950[19-20],,1870,Binford_2001_Table_8.08, +2244,B232,B015,,,,,,,, +2245,B233,B015,6.85,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938[114],,1860,Binford_2001_Table_8.08, +2246,B234,B015,5.96,,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)","steward1974b[140, 147]",,1860,Binford_2001_Table_8.08, +2247,B24,B015,5,,Focal time given as '1800s',shimkin1939[155],,1850,Binford_2001_Table_8.08, +2248,B240,B015,,,,,,,, +2249,B241,B015,6.28,,,wallaceandhoebel1952[27],,1870,Binford_2001_Table_8.08, +2250,B242,B015,,,,,,,, +2251,B243,B015,,,,,,,, +2252,B244,B015,7.81,,,ewers1955[25],,1860,Binford_2001_Table_8.08, +2253,B245,B015,7.93,,"Note, for this society, Binford provided 2 estimates, for different focal years (1806, 1880); this entry is one of those estimates",bushnell1922[24],,1806,Binford_2001_Table_8.08, +2254,B245,B015,5.6,,"Note, for this society, Binford provided 2 estimates, for different focal years (1806, 1880); this entry is one of those estimates","moore1991[179, 298, 320]",,1880,Binford_2001_Table_8.08, +2255,B246,B015,7.36,,,gussowetal1974[23],,1860,Binford_2001_Table_8.08, +2256,B248,B015,8.8,,Note: presence of communal structure in household,ewers1955[25],,1833,Binford_2001_Table_8.08, +2257,B249,B015,7.5,,,bushnell1922[50],,1849,Binford_2001_Table_8.08, +2258,B249,B015,10,,Note: presence of communal structure in household,culbertson1952[135],,1850,Binford_2001_Table_8.08, +2259,B25,B015,5.28,,,"shternberg1933[288, 387]",Summer,1920,Binford_2001_Table_8.08, +2260,B25,B015,10.4,,Note: presence of communal structure in household,"shternberg1933[288, 387]",Winter,1920,Binford_2001_Table_8.08, +2261,B250,B015,,,,,,,, +2262,B252,B015,6,,,murphyandmurphy1960[325],,1834,Binford_2001_Table_8.08, +2263,B253,B015,8.24,,"Note, for this society, Binford provided 2 estimates, for different focal years (1850, 1860); this entry is one of those estimates",culbertson1952[137],,1850,Binford_2001_Table_8.08, +2264,B253,B015,7.92,,"Note, for this society, Binford provided 2 estimates, for different focal years (1850, 1860); this entry is one of those estimates",ewers1955[25],,1860,Binford_2001_Table_8.08, +2265,B254,B015,,,,,,,, +2266,B255,B015,8.04,,,ewers1955[21],,1850,Binford_2001_Table_8.08, +2267,B256,B015,4.91,,"Note, for this society, Binford provided 3 estimates, some referring to different focal years (1860, 1921); this entry is one of those estimates",robbins1971[42],,1921,Binford_2001_Table_8.08, +2268,B256,B015,8,,"Note, for this society, Binford provided 3 estimates, some referring to different focal years (1860, 1921); this entry is one of those estimates",ewers1955[21],,1860,Binford_2001_Table_8.08, +2269,B256,B015,8,,"Note, for this society, Binford provided 3 estimates, some referring to different focal years (1860, 1921); this entry is one of those estimates",ewers1971[94],,1850,Binford_2001_Table_8.08, +2270,B257,B015,7.95,,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1800, 1854); this entry is one of those estimates",lowrieandclarke1832[716],,1800,Binford_2001_Table_8.08, +2271,B257,B015,4.5,,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1800, 1854); this entry is one of those estimates",denig1930[431],,1854,Binford_2001_Table_8.08, +2272,B258,B015,4.28,,,bushnell1922[20],Spring,1850,Binford_2001_Table_8.08, +2273,B259,B015,8,,,ewers1955[21],,1860,Binford_2001_Table_8.08, +2274,B26,B015,7.85,,"Note, for this society, Binford provided 2 estimates, including separate estimates for summer and winter; this entry is one of those estimates. For this entry, note household made up of two nuclear families",kreynovich1979[191-92],Summer,1900,Binford_2001_Table_8.08, +2275,B26,B015,24,,"Note, for this society, Binford provided 2 estimates, including separate estimates for summer and winter; this entry is one of those estimates. For this entry, note presence of communal structure in household",kreynovich1979[196],Winter,1900,Binford_2001_Table_8.08, +2276,B260,B015,7.55,,Focal time given as '1800s',jenness1938[2],,1865,Binford_2001_Table_8.08, +2277,B268,B015,,,,,,,, +2278,B269,B015,12,,Note: presence of communal structure in household,drucker1939[85],,1860,Binford_2001_Table_8.08, +2279,B27,B015,9.4,,Note: presence of communal structure in household; Focal time given as '1930s',chard1963[112],,1935,Binford_2001_Table_8.08, +2280,B270,B015,30,,Note: presence of communal structure in household,smith1940a[6-7],,1870,Binford_2001_Table_8.08, +2281,B271,B015,,,,,,,, +2282,B272,B015,26,,Note: presence of communal structure in household,schalk1978[187];taylor1974b[431],,1824,Binford_2001_Table_8.08, +2283,B273,B015,40,,Note: presence of communal structure in household,"drucker1951[71, 280-81]",,1880,Binford_2001_Table_8.08, +2284,B274,B015,20,,Note: presence of communal structure in household,ray1938[124-27],,1850,Binford_2001_Table_8.08, +2285,B274,B015,15.8,,Note: presence of communal structure in household,silverstein1990[538],Winter,1850,Binford_2001_Table_8.08, +2286,B274,B015,7,,,silverstein1990[538],Summer,1850,Binford_2001_Table_8.08, +2287,B275,B015,,,,,,,, +2288,B276,B015,9.5,,Note: presence of communal structure in household,teit1906b[199],,1860,Binford_2001_Table_8.08, +2289,B277,B015,16,,Note: presence of communal structure in household,stern1934[7],,1880,Binford_2001_Table_8.08, +2290,B278,B015,18.44,,Note: presence of communal structure in household,"olson1936a[22, 96]",,1860,Binford_2001_Table_8.08, +2291,B279,B015,,,,,,,, +2292,B28,B015,10,,Note: presence of communal structure in household,haydenetal1996[154],,1860,Binford_2001_Table_8.08, +2293,B280,B015,,,,,,,, +2294,B281,B015,,,,,,,, +2295,B282,B015,,,,,,,, +2296,B283,B015,,,,,,,, +2297,B284,B015,24,,Note: presence of communal structure in household,pettitt1950[5],,1880,Binford_2001_Table_8.08, +2298,B285,B015,14.97,,Note: presence of communal structure in household,eells1884[35],,1860,Binford_2001_Table_8.08, +2299,B286,B015,14.56,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates. For this entry, note presence of communal structure in household",gunther1962[544];swan1870[5-6],,1860,Binford_2001_Table_8.08, +2300,B286,B015,4.23,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates",gunther1962[544],,1942,Binford_2001_Table_8.08, +2301,B287,B015,,,,,,,, +2302,B288,B015,26.4,,Note: presence of communal structure in household,kane1859[appendix],"""Communal"" Kwakiutl",1890,Binford_2001_Table_8.08, +2303,B289,B015,9.63,,Note: presence of communal structure in household,kane1859[appendix],"""Communal"" Tsimshim",1880,Binford_2001_Table_8.08, +2304,B290,B015,15.5,,Note: presence of communal structure in household,kane1859[appendix],"""Communal"" Haida",1890,Binford_2001_Table_8.08, +2305,B291,B015,,,,,,,, +2306,B292,B015,19,,Note: presence of communal structure in household,kane1859[appendix],"""Communal"" Tlingit",1880,Binford_2001_Table_8.08, +2307,B293,B015,8.53,,Note: presence of communal structure in household,kane1859[appendix],,1880,Binford_2001_Table_8.08, +2308,B293,B015,16,,Note: presence of communal structure in household,adams1973[28],,1920,Binford_2001_Table_8.08, +2309,B294,B015,17,,Note: presence of communal structure in household,knechtandjordan1985[21],,1840,Binford_2001_Table_8.08, +2310,B295,B015,16.4,,Note: presence of communal structure in household,"birketsmithanddelaguna1938[19-20, 123]",,1884,Binford_2001_Table_8.08, +2311,B296,B015,13.65,,Note: presence of communal structure in household,porter1893[Table 6],,1890,Binford_2001_Table_8.08, +2312,B296,B015,19.9,,Note: presence of communal structure in household,michael1967[306],,1843,Binford_2001_Table_8.08, +2313,B296,B015,18,,Note: presence of communal structure in household,oswaltandvanstone1967[4],,1850,Binford_2001_Table_8.08, +2314,B297,B015,11.79,,Note: presence of communal structure in household,michael1967[306],,1843,Binford_2001_Table_8.08, +2315,B298,B015,17.55,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note presence of communal structure in household",lantis1970a[173],,1790,Binford_2001_Table_8.08, +2316,B298,B015,7.32,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a[173],Unalaska,1830,Binford_2001_Table_8.08, +2317,B298,B015,5.71,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a[173],Akun,1830,Binford_2001_Table_8.08, +2318,B298,B015,7.33,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a[173],Borka,1830,Binford_2001_Table_8.08, +2319,B298,B015,7.67,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a[173],Unalga,1830,Binford_2001_Table_8.08, +2320,B298,B015,9.8,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a[173],Avatanak,1830,Binford_2001_Table_8.08, +2321,B298,B015,6.5,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a[173],Akutan,1830,Binford_2001_Table_8.08, +2322,B298,B015,8.45,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a[173],Alaska Main,1830,Binford_2001_Table_8.08, +2323,B298,B015,8.92,,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a[173],Unga,1830,Binford_2001_Table_8.08, +2324,B299,B015,10.7,,Note: presence of communal structure in household,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_8.08, +2325,B299,B015,11.3,,Note: presence of communal structure in household,lantis1946[164],Summer,1930,Binford_2001_Table_8.08, +2326,B299,B015,10.1,,"Note: presence of communal structure in household; estimate is for ""Traditional"" Nunivak",lantis1946[164],(Traditional),1930,Binford_2001_Table_8.08, +2327,B299,B015,7.2,,Note: household made up of two nuclear families; Focal time given as '1940s',lantis1946[164],Spring Camp,1945,Binford_2001_Table_8.08, +2328,B299,B015,5.13,,Focal time given as '1940s',"lantis1946[164, 317]",Large Village,1945,Binford_2001_Table_8.08, +2329,B3,B015,,,,,,,, +2330,B315,B015,,,,,,,, +2331,B316,B015,,,,,,,, +2332,B317,B015,,,,,,,, +2333,B318,B015,,,,,,,, +2334,B319,B015,10.5,,Note: presence of communal structure in household,"spierandsapir1930[164-67, 221]",,1860,Binford_2001_Table_8.08, +2335,B320,B015,7.16,,Note: household made up of two nuclear families,teit1930[331],,1860,Binford_2001_Table_8.08, +2336,B321,B015,20.9,,Note: presence of communal structure in household,clineetal1938[87],,1880,Binford_2001_Table_8.08, +2337,B322,B015,,,,,,,, +2338,B323,B015,11.1,,Note: presence of communal structure in household,ray1932[16],,1870,Binford_2001_Table_8.08, +2339,B324,B015,,,,,,,, +2340,B325,B015,22.5,,Note: presence of communal structure in household,"haydenetal1996[154, table 1]",,1860,Binford_2001_Table_8.08, +2341,B326,B015,7.24,,Note: household made up of two nuclear families,teit1930[331],,1870,Binford_2001_Table_8.08, +2342,B327,B015,7,,Note: household made up of two nuclear families,quimby1962[219],,1763,Binford_2001_Table_8.08, +2343,B328,B015,5.43,,,kinietz1947[246-47],,1939,Binford_2001_Table_8.08, +2344,B329,B015,7.2,,Note: household made up of two nuclear families,speck1922[143];wallisandwallis1955,,1700,Binford_2001_Table_8.08, +2345,B330,B015,12.12,,Note: presence of communal structure in household,ewers1955[25],,1805,Binford_2001_Table_8.08, +2346,B331,B015,8.2,,Note: household made up of two nuclear families,hickerson1967[57],,1880,Binford_2001_Table_8.08, +2347,B332,B015,6.82,,"Note, for this society, Binford provided 3 estimates, with separate estimates for what he referred to as ""native houses"" vs. ""welfare houses"", as well as one ""mean"" value (this one). Binford noted households were made up of two nuclear families",bishop1969[52],,1965,Binford_2001_Table_8.08, +2348,B332,B015,6.82,,"Note, for this society, Binford provided 3 estimates, with separate estimates for what he referred to as ""native houses"" vs. ""welfare houses"", as well as one ""mean"" value; this entry is one of those estimates. For this entry, note household made up of two nuclear families",bishop1969[52],"""Welfare House""",1870,Binford_2001_Table_8.08, +2349,B332,B015,4.4,,"Note, for this society, Binford provided 3 estimates, with separate estimates for what he referred to as ""native houses"" vs. ""welfare houses"", as well as one ""mean"" value; this entry is one of those estimates",bishop1969[52],"""Native House""",1870,Binford_2001_Table_8.08, +2350,B333,B015,,,,,,,, +2351,B334,B015,8.2,,Note: household made up of two nuclear families,dunning1959[63-64],,1940,Binford_2001_Table_8.08, +2352,B335,B015,5.1,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates",rogers1963b[75-77],,1900,Binford_2001_Table_8.08, +2353,B335,B015,4.63,,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates","rogers1963a[B8, 67]",,1952,Binford_2001_Table_8.08, +2354,B336,B015,18,,Note: presence of communal structure in household,"jenness1943[486];smithnd[Field notes on file, National Museum of Canada]",,1865,Binford_2001_Table_8.08, +2355,B337,B015,,,,,,,, +2356,B338,B015,5.3,,"Note, for this society, Binford provided 3 estimates, referring to different focal years (1828, 1910, 1953-54 (Autumn)); this entry is one of those estimates","lips1947a[397-98, 453-54]",,1828,Binford_2001_Table_8.08, +2357,B338,B015,6.03,,"Note, for this society, Binford provided 3 estimates, referring to different focal years (1828, 1910, 1953-54 (Autumn)); this entry is one of those estimates",rogers1963a[23],,1910,Binford_2001_Table_8.08, +2358,B338,B015,3.25,,"Note, for this society, Binford provided 3 estimates, referring to different focal years (1828, 1910, 1953-54 (Autumn)); this entry is one of those estimates. For this entry, focal time was given as '1953-54'",rogers1973[3-4];speck1923[454],Autumn,1953,Binford_2001_Table_8.08, +2359,B339,B015,,,,,,,, +2360,B340,B015,,,,,,,, +2361,B341,B015,,,,,,,, +2362,B342,B015,15,,Note: presence of communal structure in household,lane1952[12-13],Winter,1633,Binford_2001_Table_8.08, +2363,B343,B015,,,,,,,, +2364,B344,B015,3.87,,,keith1960[68];nicks1980[34-43],,1807,Binford_2001_Table_8.08, +2365,B345,B015,6.22,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1789, 1951-54, 1974) or cases (Willow Lake); this entry is one of those estimates. For this entry, focal time was given as '1951-54'",helm1961[48],,1952,Binford_2001_Table_8.08, +2366,B345,B015,5,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1789, 1951-54, 1974) or cases (Willow Lake); this entry is one of those estimates",janes1983[102],Willow Lake,1974,Binford_2001_Table_8.08, +2367,B345,B015,4.5,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1789, 1951-54, 1974) or cases (Willow Lake); this entry is one of those estimates",mackenzie1966[56],,1789,Binford_2001_Table_8.08, +2368,B345,B015,5.83,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1789, 1951-54, 1974) or cases (Willow Lake); this entry is one of those estimates",mackenzie1966[57],,1860,Binford_2001_Table_8.08, +2369,B346,B015,,,,,,,, +2370,B347,B015,,,,,,,, +2371,B348,B015,,,,,,,, +2372,B349,B015,13,,Note: presence of communal structure in household,jenness1943[486-87],,1870,Binford_2001_Table_8.08, +2373,B35,B015,,,,,,,, +2374,B350,B015,5.87,,Note: household made up of two nuclear families,gillespie1981,,1800,Binford_2001_Table_8.08, +2375,B351,B015,9,,Note: household made up of two nuclear families,adney1900[500],,1880,Binford_2001_Table_8.08, +2376,B352,B015,5.06,,,"savishinsky1974[60, 230]",,1967,Binford_2001_Table_8.08, +2377,B352,B015,4.99,,,mackenzie1966[58-59],Summer Camp,1789,Binford_2001_Table_8.08, +2378,B352,B015,4.5,,,mackenzie1966[59],,1860,Binford_2001_Table_8.08, +2379,B353,B015,6,,,honigmann1956b[35],,1900,Binford_2001_Table_8.08, +2380,B354,B015,15.27,,Note: presence of communal structure in household,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_8.08, +2381,B354,B015,14.45,,Note: presence of communal structure in household,michael1967[306],,1843,Binford_2001_Table_8.08, +2382,B354,B015,40,,Note: presence of communal structure in household,sullivan1942[10],Tents,1880,Binford_2001_Table_8.08, +2383,B354,B015,11.2,,Note: presence of communal structure in household,sullivan1942[10],Winter,1880,Binford_2001_Table_8.08, +2384,B354,B015,11.56,,Note: presence of communal structure in household,clark1974[124],Winter,1880,Binford_2001_Table_8.08, +2385,B355,B015,9,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, note household made up of two nuclear families; Focal time given as '1800s'",smith1981[276],,1850,Binford_2001_Table_8.08, +2386,B355,B015,5.23,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1920-46'",brumbachandjarvenpa1989[250-58],,1933,Binford_2001_Table_8.08, +2387,B355,B015,4.25,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1930s'",irimoto1981[73],Fall Camp,1935,Binford_2001_Table_8.08, +2388,B355,B015,4.17,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1930s'",irimoto1981[73],Early Winter,1935,Binford_2001_Table_8.08, +2389,B355,B015,3.79,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1930s'",irimoto1981[73],Late Winter,1935,Binford_2001_Table_8.08, +2390,B355,B015,6.81,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1972-73'",mullerwille1974[7],Base Camp,1972,Binford_2001_Table_8.08, +2391,B355,B015,5.57,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates",irimoto1981[59],Upper Al Nu-1,1975,Binford_2001_Table_8.08, +2392,B355,B015,4.75,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates",irimoto1981[60],Lower Al Nu-1,1975,Binford_2001_Table_8.08, +2393,B355,B015,5,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates",irimoto1981[61],Be Nue-2,1975,Binford_2001_Table_8.08, +2394,B355,B015,4.66,,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates",irimoto1981[61],Nu-2,1975,Binford_2001_Table_8.08, +2395,B356,B015,7.8,,Note: household made up of two nuclear families,"mckennan1965[20, 43]",,1880,Binford_2001_Table_8.08, +2396,B357,B015,6.08,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1843 and 1890), or cases (""Crow Village"", ""Proper"", ""Yukon""); this entry is one of those estimates. For this entry, note household made up of two nuclear families",porter1893[164],,1890,Binford_2001_Table_8.08, +2397,B357,B015,11,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1843 and 1890), or cases (""Crow Village"", ""Proper"", ""Yukon""); this entry is one of those estimates. For this entry, note presence of communal structure in household",michael1967[306],Proper,1843,Binford_2001_Table_8.08, +2398,B357,B015,17.9,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1843 and 1890), or cases (""Crow Village"", ""Proper"", ""Yukon""); this entry is one of those estimates. For this entry, note presence of communal structure in household",michael1967[306],Yukon,1843,Binford_2001_Table_8.08, +2399,B357,B015,18,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1843 and 1890), or cases (""Crow Village"", ""Proper"", ""Yukon""); this entry is one of those estimates. For this entry, note presence of communal structure in household",oswaltandvanstone1967[4],Crow Village,1843,Binford_2001_Table_8.08, +2400,B358,B015,,,,,,,, +2401,B359,B015,8,,Note: household made up of two nuclear families,mckennan1959[106];pitts1972[118],,1929,Binford_2001_Table_8.08, +2402,B36,B015,5.5,,,metraux1948[863],,1960,Binford_2001_Table_8.08, +2403,B360,B015,5.13,,Note: household made up of two nuclear families,morantz1983[89],,1823,Binford_2001_Table_8.08, +2404,B361,B015,5.76,,Note: household made up of two nuclear families,mackenzie1966[49-56],Summer Camp,1789,Binford_2001_Table_8.08, +2405,B362,B015,17.92,,Note: presence of communal structure in household,michael1967[306],,1843,Binford_2001_Table_8.08, +2406,B363,B015,,,,,,,, +2407,B364,B015,15,,Note: presence of communal structure in household,michael1967[307],,1860,Binford_2001_Table_8.08, +2408,B365,B015,8.3,,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1937-38, 1966-68); this entry is one of those estimates. For this entry, note household made up of two nuclear families; Focal time given as '1937-38'","tanner1944[593, 627-28]",,1937,Binford_2001_Table_8.08, +2409,B365,B015,5.1,,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1937-38, 1966-68); this entry is one of those estimates. For this entry, focal time was given as '1966-68'",henriksen1973[58],,1967,Binford_2001_Table_8.08, +2410,B369,B015,,,,,,,, +2411,B37,B015,,,,,,,, +2412,B370,B015,7.25,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_8.08, +2413,B370,B015,6,,,burch1975[257-58],,1890,Binford_2001_Table_8.08, +2414,B370,B015,4.73,,Focal time given as '1910-40',foote1966[43],Shungnak,1925,Binford_2001_Table_8.08, +2415,B370,B015,5.42,,Focal time given as '1950-65',foote1966[43],Shungnak,1957,Binford_2001_Table_8.08, +2416,B370,B015,5.8,,Focal time given as '1950-65',foote1966[43],Kobuk,1957,Binford_2001_Table_8.08, +2417,B370,B015,6.3,,Focal time given as '1959-65',foote1966[43],Ambler,1962,Binford_2001_Table_8.08, +2418,B371,B015,9.8,,,burch1975[269-72],,1900,Binford_2001_Table_8.08, +2419,B372,B015,22.8,,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates. For this entry, note presence of communal structure in household",taylor1974[71],Winter,1890,Binford_2001_Table_8.08, +2420,B372,B015,7.36,,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates",taylor1974[71],Spring,1890,Binford_2001_Table_8.08, +2421,B372,B015,7.14,,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates",taylor1974[71],Early Summer,1890,Binford_2001_Table_8.08, +2422,B372,B015,7.5,,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates",taylor1974[71],Late Summer,1890,Binford_2001_Table_8.08, +2423,B372,B015,7.49,,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates","graburn1969[148, 169]",Sugluk,1964,Binford_2001_Table_8.08, +2424,B373,B015,5.76,,,willmott1960[53],,1958,Binford_2001_Table_8.08, +2425,B373,B015,5.82,,,barger1981[675],,1970,Binford_2001_Table_8.08, +2426,B374,B015,7.1,,"Note, for this society, Binford provided 4 estimates, referring to different focal years, seasons and cases, including: 1893 (Summer, Tents), 1960 (Summer, Tents), 1960, with special reference to Baker Lake, and, year unspecified, Winter, Igloo; this entry is one of those estimates","haydenetal1996[154, table 1]","Summer, Tents",1893,Binford_2001_Table_8.08, +2427,B374,B015,4.3,,"Note, for this society, Binford provided 4 estimates, referring to different focal years, seasons and cases, including: 1893 (Summer, Tents), 1960 (Summer, Tents), 1960, with special reference to Baker Lake, and, year unspecified, Winter, Igloo; this entry is one of those estimates",tyrrell1897[167],"Winter, Igloo",1900,Binford_2001_Table_8.08, +2428,B374,B015,4.19,,"Note, for this society, Binford provided 4 estimates, referring to different focal years, seasons and cases, including: 1893 (Summer, Tents), 1960 (Summer, Tents), 1960, with special reference to Baker Lake, and, year unspecified, Winter, Igloo; this entry is one of those estimates",vallee1967[17],Baker Lake,1960,Binford_2001_Table_8.08, +2429,B374,B015,4.35,,"Note, for this society, Binford provided 4 estimates, referring to different focal years, seasons and cases, including: 1893 (Summer, Tents), 1960 (Summer, Tents), 1960, with special reference to Baker Lake, and, year unspecified, Winter, Igloo; this entry is one of those estimates",vallee1967[60-63],"Summer, Tents",1960,Binford_2001_Table_8.08, +2430,B375,B015,7.5,,,burch1975[255],,1885,Binford_2001_Table_8.08, +2431,B377,B015,7.5,,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1880, 1947-48, with separate estimates for Summer and Winter; this entry is one of those estimates",binford1971,,1880,Binford_2001_Table_8.08, +2432,B377,B015,3.81,,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1880, 1947-48, with separate estimates for Summer and Winter; this entry is one of those estimates. For this entry, focal time was given as '1947-48'",binford1991a[89],Summer,1947,Binford_2001_Table_8.08, +2433,B377,B015,5.75,,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1880, 1947-48, with separate estimates for Summer and Winter; this entry is one of those estimates. For this entry, focal time was given as '1947-48'",binford1991a[89],Winter ,1947,Binford_2001_Table_8.08, +2434,B378,B015,20,,Note: presence of communal structure in household,"haydenetal1996[154, table 1]",Land,1910,Binford_2001_Table_8.08, +2435,B378,B015,5,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,"Winter, Igloo",1910,Binford_2001_Table_8.08, +2436,B379,B015,6.75,,,hughes1960[14-48],,1920,Binford_2001_Table_8.08, +2437,B38,B015,7.4,,Note: presence of communal structure in household,"gragson1989[127, 288-89]","Wet Season, Base Camp",1989,Binford_2001_Table_8.08, +2438,B38,B015,4.25,,,gragson1989[288-89],"Dry Season, Base Camp",1989,Binford_2001_Table_8.08, +2439,B38,B015,2.71,,,gragson1989[288-89],"Dry Season, Mobile Yaruro-Pume",1989,Binford_2001_Table_8.08, +2440,B380,B015,8.15,,,burch1975[260-69],,1909,Binford_2001_Table_8.08, +2441,B381,B015,5,,,"haydenetal1996[154, table 1]","Winter, Igloo",1920,Binford_2001_Table_8.08, +2442,B381,B015,6.06,,,jenness1932[30],Winter Camp,1920,Binford_2001_Table_8.08, +2443,B381,B015,3.6,,,"jenness1932[66, 71]","Summer, Tents",1920,Binford_2001_Table_8.08, +2444,B381,B015,3.48,,,rasmussen1932[78-85],Summer,1920,Binford_2001_Table_8.08, +2445,B382,B015,3.66,,,"briggs1970[30, 170-71]","August, Tents",1963,Binford_2001_Table_8.08, +2446,B382,B015,5.5,,,"briggs1970[24, 370-71]","August, Tents",1963,Binford_2001_Table_8.08, +2447,B382,B015,8.33,,,briggs1970[372],"Winter, Snow",1963,Binford_2001_Table_8.08, +2448,B383,B015,6.5,,,rae1850[40],July,1846,Binford_2001_Table_8.08, +2449,B383,B015,5.5,,,rae1850[49],"August, Tents",1846,Binford_2001_Table_8.08, +2450,B383,B015,7.07,,,vanstone1960[82],Southampton Island - Coral Harbour,1959,Binford_2001_Table_8.08, +2451,B383,B015,12.66,,Note: presence of communal structure in household,vanstone1960[82],,1880,Binford_2001_Table_8.08, +2452,B384,B015,7.05,,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1822 (July), 1921, 1960s (Winter); this entry is one of those estimates",lyon1924[230],July,1822,Binford_2001_Table_8.08, +2453,B384,B015,7.5,,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1822 (July), 1921, 1960s (Winter); this entry is one of those estimates","mathiassen1928[17, 19, 32]",,1921,Binford_2001_Table_8.08, +2454,B384,B015,8.14,,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1822 (July), 1921, 1960s (Winter); this entry is one of those estimates. For this entry, focal time was given as '1960s'",damas1992[letter 7/6/92],Winter,1965,Binford_2001_Table_8.08, +2455,B385,B015,9.73,,,"rink1877[166, 182, 191]",Winter,1870,Binford_2001_Table_8.08, +2456,B385,B015,8.75,,,"perry1898[131, 171-72]",Summer,1896,Binford_2001_Table_8.08, +2457,B385,B015,6.25,,,"perry1898[336, 386]",Winter,1897,Binford_2001_Table_8.08, +2458,B385,B015,7.5,,,birketsmith1928a[78],Tents,1880,Binford_2001_Table_8.08, +2459,B386,B015,7,,"Note, for this society, Binford provided 2 estimates, referring to different focal years and/or seasons (1615 (Summer, Tents), 1909); this entry is one of those estimates",christy1894[208],"Summer, Tents",1615,Binford_2001_Table_8.08, +2460,B386,B015,4.38,,"Note, for this society, Binford provided 2 estimates, referring to different focal years and/or seasons (1615 (Summer, Tents), 1909); this entry is one of those estimates","hantzsch1977[39, 99]",,1909,Binford_2001_Table_8.08, +2461,B387,B015,5.5,,,savelle1987[229],Snow,1830,Binford_2001_Table_8.08, +2462,B387,B015,5.75,,,ross1835[589];savelle1987[429-31],"August, Tents",1831,Binford_2001_Table_8.08, +2463,B387,B015,5.5,,,rae1850[49],"August, Tents",1846,Binford_2001_Table_8.08, +2464,B387,B015,3.57,,,mclintock1860[141-43],"August, Tents",1858,Binford_2001_Table_8.08, +2465,B387,B015,3.18,,,mclintock1860[235],Winter,1859,Binford_2001_Table_8.08, +2466,B388,B015,22,,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates. For this entry, note presence of communal structure in household; Focal time given as '1890s'",birketsmith1928a[79],,1895,Binford_2001_Table_8.08, +2467,B388,B015,25.8,,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates. For this entry, note presence of communal structure in household; Focal time given as '1890s'","haydenetal1996[154, table 1]",,1895,Binford_2001_Table_8.08, +2468,B388,B015,9.5,,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates",mirsky1937a[53],Summer,1880,Binford_2001_Table_8.08, +2469,B389,B015,5.72,,Focal time given as '1850s',simpson1875[237],Nuvuk,1855,Binford_2001_Table_8.08, +2470,B389,B015,6.2,,Focal time given as '1880s',ray1885[41],Point Belcher,1885,Binford_2001_Table_8.08, +2471,B39,B015,10.28,,"Note, for this society, Binford provided 2 estimates, one referring specifically to ""Base Camp""; this entry is one of those estimates. For this entry, note presence of communal structure in household",hurtadoandhill1986[18],"Hiwi Base Camp, Hiwi",1960,Binford_2001_Table_8.08, +2472,B39,B015,6.94,,"Note, for this society, Binford provided 2 estimates, one referring specifically to ""Base Camp""; this entry is one of those estimates",metzger1968[268-71],,1960,Binford_2001_Table_8.08, +2473,B390,B015,5.8,,Focal time given as '1890s',steensby1910[324],,1895,Binford_2001_Table_8.08, +2474,B4,B015,3.05,,,rizvi1990[16-18],,1989,Binford_2001_Table_8.08, +2475,B40,B015,5.2,,,politis1992[3],Dry Season,1990,Binford_2001_Table_8.08, +2476,B40,B015,20.6,,Note: presence of communal structure in household,politis1992[3],"""Communal"" Nukak",1990,Binford_2001_Table_8.08, +2477,B41,B015,16.66,,Note: presence of communal structure in household,"baldus1937[115, 123-24];levistrauss1936[269]",,1920,Binford_2001_Table_8.08, +2478,B41,B015,9.8,,,levistrauss1936[269],,1920,Binford_2001_Table_8.08, +2479,B42,B015,4,,,schmidt1942[47],,1901,Binford_2001_Table_8.08, +2480,B43,B015,16.88,,Note: presence of communal structure in household,"holmberg1950[51, 82-83]",,1940,Binford_2001_Table_8.08, +2481,B44,B015,4.62,,,stearman1989[113-15],Settled Yuqui,1968,Binford_2001_Table_8.08, +2482,B45,B015,5.15,,"Note, for this society, Binford provided 3 estimates, including separate estimates for Wet and Dry Seasons ; this entry is one of those estimates","levistrauss1970[268-69, 288]",Dry Season,1938,Binford_2001_Table_8.08, +2483,B45,B015,15,,"Note, for this society, Binford provided 3 estimates, including separate estimates for Wet and Dry Seasons ; this entry is one of those estimates. For this entry, note presence of communal structure in household",levistrauss1970[288],Wet Season,1938,Binford_2001_Table_8.08, +2484,B45,B015,15.8,,"Note, for this society, Binford provided 3 estimates, including separate estimates for Wet and Dry Seasons ; this entry is one of those estimates. For this entry, note presence of communal structure in household",oberg1953[88],,1938,Binford_2001_Table_8.08, +2485,B46,B015,,,,,,,, +2486,B47,B015,4.16,,,jones1983[176],,1975,Binford_2001_Table_8.08, +2487,B48,B015,6.25,,,metraux1946botocudo[534-36],,1880,Binford_2001_Table_8.08, +2488,B48,B015,19,,Note: presence of communal structure in household,ehrenreich1887[22],Wet Season,1880,Binford_2001_Table_8.08, +2489,B49,B015,4.75,,,kozaketal1979[369],,1954,Binford_2001_Table_8.08, +2490,B5,B015,2.08,,,"cooper1991[17, figures 3 and 4]",Dry Season,1952,Binford_2001_Table_8.08, +2491,B5,B015,26,,Note: presence of communal structure in household,"cooper1991[17, figures 3 and 4]",Wet Season,1952,Binford_2001_Table_8.08, +2492,B50,B015,27,,Note: presence of communal structure in household,"henry1964[10-11, 159]",,1910,Binford_2001_Table_8.08, +2493,B51,B015,9.8,,Note: household made up of two nuclear families,boschinandmacuzzi1979[33];cooper1946c[150],,1870,Binford_2001_Table_8.08, +2494,B52,B015,,,,,,,, +2495,B53,B015,7.25,,Note: household made up of two nuclear families,bird1988[16-19],,1900,Binford_2001_Table_8.08, +2496,B54,B015,8.2,,Note: household made up of two nuclear families,chapman1982[19];gusinde1931[205],,1880,Binford_2001_Table_8.08, +2497,B55,B015,7,,Note: household made up of two nuclear families,gusinde1937a[32],,1870,Binford_2001_Table_8.08, +2498,B6,B015,4.1,,"Note, for this society, Binford provided 4 estimates, including separate estimates for Wet and Dry Seasons and for ""Open Camp""; this entry is one of those estimates",temple1903[62],Dry Season,1906,Binford_2001_Table_8.08, +2499,B6,B015,3.57,,"Note, for this society, Binford provided 4 estimates, including separate estimates for Wet and Dry Seasons and for ""Open Camp""; this entry is one of those estimates",temple1903[61],Open Camp,1906,Binford_2001_Table_8.08, +2500,B6,B015,3.5,,"Note, for this society, Binford provided 4 estimates, including separate estimates for Wet and Dry Seasons and for ""Open Camp""; this entry is one of those estimates",temple1903[61],Dry Season,1906,Binford_2001_Table_8.08, +2501,B6,B015,32,,"Note, for this society, Binford provided 4 estimates, including separate estimates for Wet and Dry Seasons and for ""Open Camp""; this entry is one of those estimates. For this entry, note presence of communal structure in household",temple1903[61],Wet Season,1906,Binford_2001_Table_8.08, +2502,B60,B015,2.98,,,hudson1990[88],,1980,Binford_2001_Table_8.08, +2503,B61,B015,2.82,,,heymer1980[193-97],,1976,Binford_2001_Table_8.08, +2504,B62,B015,3.16,,,"terashima1980[233, 235]",,1977,Binford_2001_Table_8.08, +2505,B63,B015,3.4,,,cavallisforza1986c[33],,1980,Binford_2001_Table_8.08, +2506,B63,B015,3.47,,,"valloisandmarquer1976[113, 123]",,1980,Binford_2001_Table_8.08, +2507,B64,B015,3.26,,,"fisher1987[104, 111]",,1980,Binford_2001_Table_8.08, +2508,B65,B015,4.48,,"Note, for this society, Binford provided 2 estimates, including separate estimates with special reference to Mawambo and to Net Hunters; this entry is one of those estimates",harako1976[46-47],Net Hunters,1930,Binford_2001_Table_8.08, +2509,B65,B015,4.63,,"Note, for this society, Binford provided 2 estimates, including separate estimates with special reference to Mawambo and to Net Hunters; this entry is one of those estimates",tanno1976[108],Mawambo,1930,Binford_2001_Table_8.08, +2510,B66,B015,,,,,,,, +2511,B67,B015,2.86,,,"clark1951[58, 65]",Dry Season,1950,Binford_2001_Table_8.08, +2512,B68,B015,,,,,,,, +2513,B69,B015,3.63,,,"oconnelletal1991[63, table 1];oconnellperscomm1977",,1910,Binford_2001_Table_8.08, +2514,B7,B015,,,,,,,, +2515,B70,B015,5.07,,,huntingford1942[183];huntingford1955a[631-34],,1920,Binford_2001_Table_8.08, +2516,B71,B015,2.5,,,bleek1929[109-12],Dry Season,1928,Binford_2001_Table_8.08, +2517,B72,B015,2.51,,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates","howell1979[43, 45]",General,1950,Binford_2001_Table_8.08, +2518,B72,B015,4.46,,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",yellen1977a[237-53],"Rainy Season, Mobile !Kung, Camps 1, 3, 5, 6, 9",1950,Binford_2001_Table_8.08, +2519,B72,B015,3.38,,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",yellen1977a[237-53],"Dry Season, Mobile !Kung, Camps 2, 4, 7, 10-16",1950,Binford_2001_Table_8.08, +2520,B72,B015,2.53,,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",brooksetal1984[300-5];lee1979[254],"Dry Season, Dobe !Kung",1950,Binford_2001_Table_8.08, +2521,B72,B015,2.6,,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",lee1979[254],"Dry Season, Dobe !Kung",1950,Binford_2001_Table_8.08, +2522,B73,B015,3.46,,,guenther1986[186],,1910,Binford_2001_Table_8.08, +2523,B74,B015,4.55,,"Note, for this society, Binford provided 2 estimates; Wet Season, Hunting Camp; this entry is one of those estimates",hitchcockperscomm1990,"Wet Season, Hunting Camp",1962,Binford_2001_Table_8.08, +2524,B74,B015,4.6,,"Note, for this society, Binford provided 2 estimates; Wet Season, Hunting Camp; this entry is one of those estimates",weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_8.08, +2525,B75,B015,4.54,,,hitchcockperscomm1990,General,1976,Binford_2001_Table_8.08, +2526,B75,B015,4.28,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,"Rainy Season, Mobile Kua",1976,Binford_2001_Table_8.08, +2527,B75,B015,6.65,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,"Dry Season, Mobile Kua",1976,Binford_2001_Table_8.08, +2528,B76,B015,3.99,,,hitchcockperscomm1990,,1968,Binford_2001_Table_8.08, +2529,B76,B015,3.53,,,eibleibesfeldt1972[32-34],Base Camp,1968,Binford_2001_Table_8.08, +2530,B77,B015,,,,,,,, +2531,B78,B015,,,,,,,, +2532,B79,B015,,,,,,,, +2533,B8,B015,4.1,,,radcliffebrown1948[28-35],,1870,Binford_2001_Table_8.08, +2534,B82,B015,,,,,,,, +2535,B83,B015,,,,,,,, +2536,B84,B015,3.94,,,altman1987[100],,1978,Binford_2001_Table_8.08, +2537,B84,B015,4.5,,,altman1987[100],Wet Season,1978,Binford_2001_Table_8.08, +2538,B84,B015,3.83,,,altman1987[106],April-May,1978,Binford_2001_Table_8.08, +2539,B85,B015,5.54,,,peterson1976[268];petersonperscomm1992,General,1970,Binford_2001_Table_8.08, +2540,B85,B015,6.66,,,petersonandlong1986[135];petersonperscomm1994,Rainy Season,1970,Binford_2001_Table_8.08, +2541,B85,B015,5,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,Dry Season,1970,Binford_2001_Table_8.08, +2542,B86,B015,,,,,,,, +2543,B87,B015,5.94,,,hiatt1965[33-37],,1950,Binford_2001_Table_8.08, +2544,B88,B015,,,,,,,, +2545,B89,B015,,,,,,,, +2546,B9,B015,3.01,,"Note, for this society, Binford provided 4 estimates, including some referring to the Dry Season vs. Wet Season; this entry is one of those estimates","schebesta1954[10, 17, 220]",Dry Season,1920,Binford_2001_Table_8.08, +2547,B9,B015,2.81,,"Note, for this society, Binford provided 4 estimates, including some referring to the Dry Season vs. Wet Season; this entry is one of those estimates",skeatandblagden1906[176],,1920,Binford_2001_Table_8.08, +2548,B9,B015,19,,"Note, for this society, Binford provided 4 estimates, including some referring to the Dry Season vs. Wet Season; this entry is one of those estimates. For this entry, note presence of communal structure in household",skeatandblagden1906[176],Wet Season,1920,Binford_2001_Table_8.08, +2549,B9,B015,28,,"Note, for this society, Binford provided 4 estimates, including some referring to the Dry Season vs. Wet Season; this entry is one of those estimates. For this entry, note presence of communal structure in household","schebesta1954[11, 222]",,1920,Binford_2001_Table_8.08, +2550,B90,B015,,,,,,,, +2551,B91,B015,,,,,,,, +2552,B92,B015,,,,,,,, +2553,B93,B015,,,,,,,, +2554,B94,B015,3.69,,,petersonandlong1986[87-89],,1937,Binford_2001_Table_8.08, +2555,B95,B015,,,,,,,, +2556,B96,B015,7,,,andersonandrobins1988[191-92],,1880,Binford_2001_Table_8.08, +2557,B97,B015,4.65,,,"petersonandlong1986[80-83, 135]",,1930,Binford_2001_Table_8.08, +2558,B98,B015,3.71,,,haleandtindale1933[77],,1926,Binford_2001_Table_8.08, +2559,B99,B015,,,,,,,, +2560,B1,B016,3.47,,,kedit1982[261-71],Settled Punan,1970,Binford_2001_Table_8.08, +2561,B1,B016,3.75,,,avadhani1975[131],Settled Punan,1970,Binford_2001_Table_8.08, +2562,B10,B016,3.85,,,bailey1863[292];seligmannandseligmann1911[63];spittel1945[8],,1900,Binford_2001_Table_8.08, +2563,B100,B016,,,,,,,, +2564,B101,B016,,,,,,,, +2565,B102,B016,6.33,,,memmott1983a[123],,1909,Binford_2001_Table_8.08, +2566,B103,B016,6.68,,,tindale1962b[319-21],,1928,Binford_2001_Table_8.08, +2567,B104,B016,,,,,,,, +2568,B105,B016,,,,,,,, +2569,B106,B016,,,,,,,, +2570,B107,B016,,,,,,,, +2571,B108,B016,,,,,,,, +2572,B109,B016,4.51,,,meggitt1962[81],,1965,Binford_2001_Table_8.08, +2573,B11,B016,3.33,,,"morris1982a[97-98, 174]",,1972,Binford_2001_Table_8.08, +2574,B110,B016,,,,,,,, +2575,B111,B016,5.2,,,petersonandlong1986[116-17],,1960,Binford_2001_Table_8.08, +2576,B112,B016,6.94,,,"petersonandlong1986[112-15, 124]",,1968,Binford_2001_Table_8.08, +2577,B113,B016,5.8,,,myers1986[45];petersonandlong1986[104-11],,1936,Binford_2001_Table_8.08, +2578,B113,B016,6.68,,,gargettandhayden1991[13-22];haydenperscomm1992,"Papunya, Settled",1936,Binford_2001_Table_8.08, +2579,B114,B016,,,,,,,, +2580,B115,B016,,,,,,,, +2581,B116,B016,,,,,,,, +2582,B117,B016,6.75,,,oconnell1987[77],,1965,Binford_2001_Table_8.08, +2583,B118,B016,6.18,,,gould1971[168];gould1977[43],,1968,Binford_2001_Table_8.08, +2584,B118,B016,6.29,,,gould1977[85],"Large, Settled Groups - Wanampi Well",1968,Binford_2001_Table_8.08, +2585,B118,B016,9,,,gould1977[43],"Large, Settled Groups - Warburton",1968,Binford_2001_Table_8.08, +2586,B118,B016,8.28,,,gould1977[43],"Summer, Mulyangiri",1968,Binford_2001_Table_8.08, +2587,B118,B016,4.66,,,gould1977[43],"Summer (December), Partjar",1966,Binford_2001_Table_8.08, +2588,B118,B016,5,,,gould1977[43],"Winter, Tika-Tika",1966,Binford_2001_Table_8.08, +2589,B118,B016,5,,,gould1977[43],"Winter, Partjar",1966,Binford_2001_Table_8.08, +2590,B118,B016,5,,,gould1977[43],"Winter (April), Pulykara",1970,Binford_2001_Table_8.08, +2591,B119,B016,,,,,,,, +2592,B12,B016,3.57,,,headland1986[141];headlandperscomm1992,,1965,Binford_2001_Table_8.08, +2593,B120,B016,6.96,,,tindale1972[243],,1968,Binford_2001_Table_8.08, +2594,B121,B016,,,,,,,, +2595,B122,B016,,,,,,,, +2596,B123,B016,6.26,,,tindaleperscomm1966,,1922,Binford_2001_Table_8.08, +2597,B124,B016,6.4,,,spencerandgillen1927[70-71],,1900,Binford_2001_Table_8.08, +2598,B125,B016,,,,,,,, +2599,B126,B016,8,,,petersonandlong1986[129-34],,1912,Binford_2001_Table_8.08, +2600,B127,B016,,,,,,,, +2601,B128,B016,,,,,,,, +2602,B129,B016,,,,,,,, +2603,B13,B016,,,,,,,, +2604,B130,B016,,,,,,,, +2605,B131,B016,,,,,,,, +2606,B132,B016,6.66,,,nind1831[22],,1850,Binford_2001_Table_8.08, +2607,B133,B016,5.61,,,williams1985[74-75],,1850,Binford_2001_Table_8.08, +2608,B134,B016,,,,,,,, +2609,B135,B016,,,,,,,, +2610,B136,B016,,,,,,,, +2611,B137,B016,,,,,,,, +2612,B14,B016,4.81,,,vanoverbergh1925[196],,1924,Binford_2001_Table_8.08, +2613,B143,B016,5.53,,,"griffen1959[vii, 50, 188]",,1938,Binford_2001_Table_8.08, +2614,B144,B016,,,,,,,, +2615,B145,B016,,,,,,,, +2616,B146,B016,,,,,,,, +2617,B147,B016,,,,,,,, +2618,B148,B016,,,,,,,, +2619,B149,B016,,,,,,,, +2620,B15,B016,3.98,,,furerhaimendorf1943b[366],,1940,Binford_2001_Table_8.08, +2621,B150,B016,,,,,,,, +2622,B151,B016,,,,,,,, +2623,B152,B016,3.81,,,voegelin1938[43-44],,1850,Binford_2001_Table_8.08, +2624,B153,B016,,,,,,,, +2625,B154,B016,,,,,,,, +2626,B155,B016,,,,,,,, +2627,B156,B016,,,,,,,, +2628,B157,B016,,,,,,,, +2629,B158,B016,4.33,,,"barrett1908[186, 191]",,1860,Binford_2001_Table_8.08, +2630,B159,B016,4.75,,,gifford1926a[292-97],,1860,Binford_2001_Table_8.08, +2631,B16,B016,4,,,nimmanahaemindaandhartlandswam1962[173];pookajorn1988[187];velder1963[186-88],,1963,Binford_2001_Table_8.08, +2632,B160,B016,,,,,,,, +2633,B161,B016,,,,,,,, +2634,B162,B016,,,,,,,, +2635,B163,B016,,,,,,,, +2636,B164,B016,,,,,,,, +2637,B165,B016,,,,,,,, +2638,B166,B016,,,,,,,, +2639,B167,B016,,,,,,,, +2640,B168,B016,,,,,,,, +2641,B169,B016,,,,,,,, +2642,B17,B016,4.08,,,gardner1972[420],,1962,Binford_2001_Table_8.08, +2643,B170,B016,,,,,,,, +2644,B171,B016,,,,,,,, +2645,B172,B016,4.5,,,driver1936[201],Valley,1860,Binford_2001_Table_8.08, +2646,B173,B016,,,,,,,, +2647,B174,B016,,,,,,,, +2648,B175,B016,,,,,,,, +2649,B176,B016,,,,,,,, +2650,B177,B016,,,,,,,, +2651,B178,B016,,,,,,,, +2652,B179,B016,,,,,,,, +2653,B18,B016,4.88,,,"senandsen1955[170, 174-75]",Ranchi,1963,Binford_2001_Table_8.08, +2654,B18,B016,4.49,,,williams1974[79],,1963,Binford_2001_Table_8.08, +2655,B180,B016,,,,,,,, +2656,B181,B016,,,,,,,, +2657,B182,B016,,,,,,,, +2658,B183,B016,,,,,,,, +2659,B184,B016,,,,,,,, +2660,B185,B016,,,,,,,, +2661,B186,B016,,,,,,,, +2662,B187,B016,,,,,,,, +2663,B188,B016,,,,,,,, +2664,B189,B016,,,,,,,, +2665,B19,B016,4.43,,Focal time given as '1946-47',ehrenfels1952[65-67],Base Camp,1946,Binford_2001_Table_8.08, +2666,B190,B016,,,,,,,, +2667,B191,B016,,,,,,,, +2668,B192,B016,,,,,,,, +2669,B193,B016,3.7,,,bolton1916[199];schaedel1949[124],,1800,Binford_2001_Table_8.08, +2670,B194,B016,,,,,,,, +2671,B195,B016,,,,,,,, +2672,B196,B016,,,,,,,, +2673,B197,B016,,,,,,,, +2674,B198,B016,3.53,,,"hayden1936[70, 165-68]",,1870,Binford_2001_Table_8.08, +2675,B199,B016,,,,,,,, +2676,B2,B016,3.89,,,eder1987[105],Palawan,1968,Binford_2001_Table_8.08, +2677,B2,B016,4,,,cadelina1982[68],Negros,1968,Binford_2001_Table_8.08, +2678,B20,B016,3.59,,,bhanu1992[33],,1974,Binford_2001_Table_8.08, +2679,B200,B016,,,,,,,, +2680,B201,B016,,,,,,,, +2681,B202,B016,305,,,steward1933[290];steward1938[127],,1870,Binford_2001_Table_8.08,"Note: original references were to Steward 1933:290, 1977:127; assume this is an error and that the second should be 1938:127." +2682,B203,B016,,,,,,,, +2683,B204,B016,,,,,,,, +2684,B205,B016,,,,,,,, +2685,B206,B016,,,,,,,, +2686,B207,B016,,,,,,,, +2687,B208,B016,,,,,,,, +2688,B209,B016,,,,,,,, +2689,B21,B016,,,,,,,, +2690,B210,B016,,,,,,,, +2691,B211,B016,3.67,,,steward1938[62-64],,1860,Binford_2001_Table_8.08, +2692,B212,B016,,,,,,,, +2693,B213,B016,,,,,,,, +2694,B214,B016,,,,,,,, +2695,B215,B016,,,,,,,, +2696,B216,B016,5,,,ewers1955[26],,1827,Binford_2001_Table_8.08, +2697,B217,B016,,,,,,,, +2698,B218,B016,,,,,,,, +2699,B219,B016,4.93,,,cook1955[37];gayton1948a[145],,1860,Binford_2001_Table_8.08, +2700,B22,B016,,,,,,,, +2701,B221,B016,4.38,,,steward1938[174-75],,1860,Binford_2001_Table_8.08, +2702,B222,B016,,,,,,,, +2703,B223,B016,,,,,,,, +2704,B224,B016,4.37,,,"steward1938[126, 129]",,1860,Binford_2001_Table_8.08, +2705,B225,B016,,,,,,,, +2706,B226,B016,,,,,,,, +2707,B227,B016,,,,,,,, +2708,B228,B016,,,,,,,, +2709,B229,B016,,,,,,,, +2710,B23,B016,,,,,,,, +2711,B230,B016,3.06,,,smith1974[123];steward1974b[117],,1860,Binford_2001_Table_8.08, +2712,B231,B016,5.28,,,whiting1950[19-20],,1870,Binford_2001_Table_8.08, +2713,B232,B016,,,,,,,, +2714,B233,B016,,,,,,,, +2715,B234,B016,,,,,,,, +2716,B24,B016,,,,,,,, +2717,B240,B016,,,,,,,, +2718,B241,B016,,,,,,,, +2719,B242,B016,,,,,,,, +2720,B243,B016,,,,,,,, +2721,B244,B016,,,,,,,, +2722,B245,B016,7.72,,,"moore1991[179, 298, 320]",,1880,Binford_2001_Table_8.08, +2723,B246,B016,,,,,,,, +2724,B248,B016,,,,,,,, +2725,B249,B016,,,,,,,, +2726,B25,B016,4.15,,,"shternberg1933[288, 387]",Summer,1920,Binford_2001_Table_8.08, +2727,B25,B016,4.15,,,"shternberg1933[288, 387]",Winter,1920,Binford_2001_Table_8.08, +2728,B250,B016,,,,,,,, +2729,B252,B016,,,,,,,, +2730,B253,B016,,,,,,,, +2731,B254,B016,,,,,,,, +2732,B255,B016,,,,,,,, +2733,B256,B016,,,,,,,, +2734,B257,B016,,,,,,,, +2735,B258,B016,,,,,,,, +2736,B259,B016,,,,,,,, +2737,B26,B016,4.08,,,kreynovich1979[191-92],Summer,1900,Binford_2001_Table_8.08, +2738,B260,B016,,,,,,,, +2739,B268,B016,,,,,,,, +2740,B269,B016,,,,,,,, +2741,B27,B016,,,,,,,, +2742,B270,B016,5,,,smith1940a[6-7],,1870,Binford_2001_Table_8.08, +2743,B271,B016,3.61,,,eells1884[37],,1850,Binford_2001_Table_8.08, +2744,B272,B016,,,,,,,, +2745,B273,B016,4.44,,,"drucker1951[71, 280-81]",,1880,Binford_2001_Table_8.08, +2746,B274,B016,,,,,,,, +2747,B275,B016,,,,,,,, +2748,B276,B016,,,,,,,, +2749,B277,B016,,,,,,,, +2750,B278,B016,4.61,,,"olson1936a[22, 96]",,1860,Binford_2001_Table_8.08, +2751,B279,B016,4.75,,,duff1952[130],,1880,Binford_2001_Table_8.08, +2752,B28,B016,4.72,,,haydenetal1996[154],,1860,Binford_2001_Table_8.08, +2753,B280,B016,,,,,,,, +2754,B281,B016,,,,,,,, +2755,B282,B016,,,,,,,, +2756,B283,B016,,,,,,,, +2757,B284,B016,,,,,,,, +2758,B285,B016,,,,,,,, +2759,B286,B016,3.13,,,gunther1962[544];swan1870[5-6],,1860,Binford_2001_Table_8.08, +2760,B287,B016,,,,,,,, +2761,B288,B016,,,,,,,, +2762,B289,B016,,,,,,,, +2763,B290,B016,,,,,,,, +2764,B291,B016,,,,,,,, +2765,B292,B016,,,,,,,, +2766,B293,B016,,,,,,,, +2767,B294,B016,,,,,,,, +2768,B295,B016,5.2,,,"birketsmithanddelaguna1938[19-20, 123]",,1884,Binford_2001_Table_8.08, +2769,B296,B016,,,,,,,, +2770,B297,B016,,,,,,,, +2771,B298,B016,,,,,,,, +2772,B299,B016,4.17,,Focal time given as '1940s',"lantis1946[164, 317]",Large Village,1945,Binford_2001_Table_8.08, +2773,B3,B016,,,,,,,, +2774,B315,B016,,,,,,,, +2775,B316,B016,,,,,,,, +2776,B317,B016,,,,,,,, +2777,B318,B016,,,,,,,, +2778,B319,B016,,,,,,,, +2779,B320,B016,3.58,,,teit1930[331],,1860,Binford_2001_Table_8.08, +2780,B321,B016,3.66,,,clineetal1938[87],,1880,Binford_2001_Table_8.08, +2781,B322,B016,,,,,,,, +2782,B323,B016,,,,,,,, +2783,B324,B016,,,,,,,, +2784,B325,B016,,,,,,,, +2785,B326,B016,3.62,,,teit1930[331],,1870,Binford_2001_Table_8.08, +2786,B327,B016,3.5,,,quimby1962[219],,1763,Binford_2001_Table_8.08, +2787,B328,B016,,,,,,,, +2788,B329,B016,5.45,,,speck1922[143];wallisandwallis1955,,1700,Binford_2001_Table_8.08, +2789,B330,B016,,,,,,,, +2790,B331,B016,4.2,,,hickerson1967[57],,1880,Binford_2001_Table_8.08, +2791,B332,B016,,,,,,,, +2792,B333,B016,,,,,,,, +2793,B334,B016,,,,,,,, +2794,B335,B016,5.59,,,"rogers1963a[B8, 67]",,1952,Binford_2001_Table_8.08, +2795,B336,B016,,,,,,,, +2796,B337,B016,,,,,,,, +2797,B338,B016,4.55,,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1823, 1910); this entry is one of those estimates",morantz1983[89],,1823,Binford_2001_Table_8.08, +2798,B338,B016,3.11,,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1823, 1910); this entry is one of those estimates",rogers1963a[23],,1910,Binford_2001_Table_8.08, +2799,B339,B016,,,,,,,, +2800,B340,B016,5.65,,,morantz1983[89],,1823,Binford_2001_Table_8.08, +2801,B341,B016,,,,,,,, +2802,B342,B016,6.6,,,lane1952[12-13],Winter,1633,Binford_2001_Table_8.08, +2803,B343,B016,,,,,,,, +2804,B344,B016,4.12,,,keith1960[68];nicks1980[34-43],,1807,Binford_2001_Table_8.08, +2805,B345,B016,,,,,,,, +2806,B346,B016,3.43,,,honigmann1949[37],,1945,Binford_2001_Table_8.08, +2807,B347,B016,,,,,,,, +2808,B348,B016,,,,,,,, +2809,B349,B016,,,,,,,, +2810,B35,B016,,,,,,,, +2811,B350,B016,4.72,,,gillespie1981,,1800,Binford_2001_Table_8.08, +2812,B351,B016,4.5,,,adney1900[500],,1880,Binford_2001_Table_8.08, +2813,B352,B016,,,,,,,, +2814,B353,B016,4.18,,,honigmann1949[20],,1947,Binford_2001_Table_8.08, +2815,B354,B016,,,,,,,, +2816,B355,B016,4.52,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1838, 1881, 1920-46, 1975) or cases (Lower Al Nu-1); this entry is one of those estimates",brumbachandjarvenpa1989[54],,1838,Binford_2001_Table_8.08, +2817,B355,B016,3.71,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1838, 1881, 1920-46, 1975) or cases (Lower Al Nu-1); this entry is one of those estimates",brumbachandjarvenpa1989[64],,1881,Binford_2001_Table_8.08, +2818,B355,B016,4.34,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1838, 1881, 1920-46, 1975) or cases (Lower Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1920-46'",brumbachandjarvenpa1989[250-58],,1933,Binford_2001_Table_8.08, +2819,B355,B016,6.57,,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1838, 1881, 1920-46, 1975) or cases (Lower Al Nu-1); this entry is one of those estimates",irimoto1981[60],Lower Al Nu-1,1975,Binford_2001_Table_8.08, +2820,B356,B016,,,,,,,, +2821,B357,B016,,,,,,,, +2822,B358,B016,,,,,,,, +2823,B359,B016,4,,,mckennan1959[106];pitts1972[118],,1929,Binford_2001_Table_8.08, +2824,B359,B016,4.5,,,pitts1972[229],Scotty Creek,1938,Binford_2001_Table_8.08, +2825,B359,B016,4.38,,,pitts1972[229-31],Nabesna,1938,Binford_2001_Table_8.08, +2826,B359,B016,5.78,,,pitts1972[232-34],Tetlin,1938,Binford_2001_Table_8.08, +2827,B359,B016,3.66,,,pitts1972[235-38],Tanacross,1938,Binford_2001_Table_8.08, +2828,B359,B016,3.93,,,pitts1972[239-40],Healy Lake,1938,Binford_2001_Table_8.08, +2829,B36,B016,,,,,,,, +2830,B360,B016,,,,,,,, +2831,B361,B016,,,,,,,, +2832,B362,B016,,,,,,,, +2833,B363,B016,3.33,,,oleary1985[88],,1890,Binford_2001_Table_8.08, +2834,B364,B016,4.07,,,snow1981[615],,1890,Binford_2001_Table_8.08, +2835,B365,B016,4.81,,Focal time given as '1937-38',"tanner1944[593, 627-28]",,1937,Binford_2001_Table_8.08, +2836,B369,B016,,,,,,,, +2837,B37,B016,,,,,,,, +2838,B370,B016,4.5,,,burch1975[257-58],,1890,Binford_2001_Table_8.08, +2839,B371,B016,4.9,,,burch1975[269-72],,1900,Binford_2001_Table_8.08, +2840,B372,B016,5.7,,,turner1894[176],,1882,Binford_2001_Table_8.08, +2841,B373,B016,4.72,,,barger1981[675],,1970,Binford_2001_Table_8.08, +2842,B374,B016,3.54,,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",rasmussen1930[11-13],"May, General",1922,Binford_2001_Table_8.08, +2843,B374,B016,3.6,,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",birketsmith1929[67-68],"May, Aaernermuit",1922,Binford_2001_Table_8.08, +2844,B374,B016,4.5,,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",birketsmith1929[67-68],"May, Haune Tormiut",1922,Binford_2001_Table_8.08, +2845,B374,B016,4.86,,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",birketsmith1929[67-68],"May, Padlimiut Coast",1922,Binford_2001_Table_8.08, +2846,B374,B016,4.47,,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",birketsmith1929[67-68],"May, Harva Tormiut",1922,Binford_2001_Table_8.08, +2847,B374,B016,2.71,,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",harper1964[10],"Summer, Tents",1947,Binford_2001_Table_8.08, +2848,B375,B016,3,,,burch1975[255],,1885,Binford_2001_Table_8.08, +2849,B377,B016,4.69,,Focal time given as '1947-48',binford1991a[90],,1947,Binford_2001_Table_8.08, +2850,B378,B016,,,,,,,, +2851,B379,B016,,,,,,,, +2852,B38,B016,3.92,,,"gragson1989[127, 288-89]","Wet Season, Base Camp",1989,Binford_2001_Table_8.08, +2853,B380,B016,3.39,,,burch1975[260-69],,1909,Binford_2001_Table_8.08, +2854,B381,B016,3.42,,,rasmussen1932[78-85],Summer,1920,Binford_2001_Table_8.08, +2855,B382,B016,3.33,,,amundsen1908[281],,1920,Binford_2001_Table_8.08, +2856,B382,B016,4.37,,,briggs1970[15],,1963,Binford_2001_Table_8.08, +2857,B383,B016,3.03,,,mathiassen1928[15-16],,1921,Binford_2001_Table_8.08, +2858,B383,B016,3.03,,,mathiassen1928[16],Southampton Island,1921,Binford_2001_Table_8.08, +2859,B383,B016,6,,,vanstone1960[82],Southampton Island - Snafu,1959,Binford_2001_Table_8.08, +2860,B384,B016,3.05,,,"mathiassen1928[17, 19, 32]",,1921,Binford_2001_Table_8.08, +2861,B385,B016,5.1,,,"rink1877[166, 182, 191]",Winter,1870,Binford_2001_Table_8.08, +2862,B385,B016,4.57,,,"perry1898[131, 171-72]",Summer,1896,Binford_2001_Table_8.08, +2863,B386,B016,4.11,,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates",low1906[57-58],,1880,Binford_2001_Table_8.08, +2864,B386,B016,3.41,,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates",boas1964[18],,1888,Binford_2001_Table_8.08, +2865,B386,B016,3.96,,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates","hantzsch1977[39, 99]",,1909,Binford_2001_Table_8.08, +2866,B387,B016,3.74,,,boas1907[377-78],,1898,Binford_2001_Table_8.08, +2867,B387,B016,3.93,,,vandersteenhoven1959[2],Winter,1956,Binford_2001_Table_8.08, +2868,B388,B016,,,,,,,, +2869,B389,B016,,,,,,,, +2870,B39,B016,5.84,,,metzger1968[268-71],,1960,Binford_2001_Table_8.08, +2871,B390,B016,3.74,,,ekblaw1928[41],,1880,Binford_2001_Table_8.08, +2872,B390,B016,4.83,,Focal time given as '1890s',steensby1910[324],,1895,Binford_2001_Table_8.08, +2873,B4,B016,3.62,,,rizvi1990[16-18],,1989,Binford_2001_Table_8.08, +2874,B40,B016,4,,,politis1992[3],Dry Season,1990,Binford_2001_Table_8.08, +2875,B40,B016,3.97,,,politis1992[3],"""Communal"" Nukak",1990,Binford_2001_Table_8.08, +2876,B41,B016,4.9,,,"baldus1937[115, 123-24];levistrauss1936[269]",,1920,Binford_2001_Table_8.08, +2877,B42,B016,,,,,,,, +2878,B43,B016,3.97,,,"holmberg1950[51, 82-83]",,1940,Binford_2001_Table_8.08, +2879,B44,B016,4.43,,,stearman1989[113-15],Settled Yuqui,1968,Binford_2001_Table_8.08, +2880,B45,B016,3.6,,,"levistrauss1970[268-69, 288]",Dry Season,1938,Binford_2001_Table_8.08, +2881,B46,B016,,,,,,,, +2882,B47,B016,3.5,,,jones1983[176],,1975,Binford_2001_Table_8.08, +2883,B48,B016,,,,,,,, +2884,B49,B016,,,,,,,, +2885,B5,B016,3.15,,,heinegeldernandhoehngerlachstein1958[25],,1952,Binford_2001_Table_8.08, +2886,B5,B016,3.06,,,sen1962[72],,1952,Binford_2001_Table_8.08, +2887,B50,B016,6.8,,,"henry1964[10-11, 159]",,1910,Binford_2001_Table_8.08, +2888,B51,B016,5,,,boschinandmacuzzi1979[33];cooper1946c[150],,1870,Binford_2001_Table_8.08, +2889,B52,B016,,,,,,,, +2890,B53,B016,4.8,,,bird1988[16-19],,1900,Binford_2001_Table_8.08, +2891,B54,B016,,,,,,,, +2892,B55,B016,3.5,,,gusinde1937a[32],,1870,Binford_2001_Table_8.08, +2893,B6,B016,,,,,,,, +2894,B60,B016,,,,,,,, +2895,B61,B016,3.88,,,heymer1980[193-97],,1976,Binford_2001_Table_8.08, +2896,B62,B016,4.87,,,"terashima1980[233, 235]",,1977,Binford_2001_Table_8.08, +2897,B63,B016,4.39,,,"valloisandmarquer1976[113, 123]",,1980,Binford_2001_Table_8.08, +2898,B64,B016,,,,,,,, +2899,B65,B016,4.28,,,tanno1976[108],Mawambo,1930,Binford_2001_Table_8.08, +2900,B66,B016,,,,,,,, +2901,B67,B016,,,,,,,, +2902,B68,B016,,,,,,,, +2903,B69,B016,4.5,,,"oconnelletal1991[63, table 1];oconnellperscomm1977",,1910,Binford_2001_Table_8.08, +2904,B7,B016,,,,,,,, +2905,B70,B016,5.14,,,huntingford1942[183];huntingford1955a[631-34],,1920,Binford_2001_Table_8.08, +2906,B71,B016,,,,,,,, +2907,B72,B016,3.37,,"Note, for this society, Binford provided 3 estimates; Estimates for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy season with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates","howell1979[43, 45]",General,1950,Binford_2001_Table_8.08, +2908,B72,B016,5.58,,"Note, for this society, Binford provided 3 estimates; Estimates for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy season with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",yellen1977a[237-53],"Rainy Season, Mobile !Kung, Camps 1, 3, 5, 6, 9",1950,Binford_2001_Table_8.08, +2909,B72,B016,4.57,,"Note, for this society, Binford provided 3 estimates; Estimates for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy season with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",yellen1977a[237-53],"Dry Season, Mobile !Kung, Camps 2, 4, 7, 10-16",1950,Binford_2001_Table_8.08, +2910,B73,B016,,,,,,,, +2911,B74,B016,2.92,,,hitchcockperscomm1990,"Wet Season, Hunting Camp",1962,Binford_2001_Table_8.08, +2912,B75,B016,,,,,,,, +2913,B76,B016,,,,,,,, +2914,B77,B016,,,,,,,, +2915,B78,B016,,,,,,,, +2916,B79,B016,,,,,,,, +2917,B8,B016,3.77,,,radcliffebrown1948[28-35],,1870,Binford_2001_Table_8.08, +2918,B82,B016,,,,,,,, +2919,B83,B016,,,,,,,, +2920,B84,B016,6.42,,,altman1987[100],,1978,Binford_2001_Table_8.08, +2921,B85,B016,6.1,,,peterson1976[268];petersonperscomm1992,General,1970,Binford_2001_Table_8.08, +2922,B86,B016,,,,,,,, +2923,B87,B016,6.9,,,hiatt1965[33-37],,1950,Binford_2001_Table_8.08, +2924,B88,B016,,,,,,,, +2925,B89,B016,,,,,,,, +2926,B9,B016,3.2,,"Note, for this society, Binford provided 3 estimates, referring to different focal years, seasons and cases, including: Dry Season, Focal year: 1980s, with special reference to Semaq Seri; this entry is one of those estimates","schebesta1954[10, 17, 220]",Dry Season,1920,Binford_2001_Table_8.08, +2927,B9,B016,3.33,,"Note, for this society, Binford provided 3 estimates, referring to different focal years, seasons and cases, including: Dry Season, Focal year: 1980s, with special reference to Semaq Seri; this entry is one of those estimates","schebesta1954[11, 222]",,1920,Binford_2001_Table_8.08, +2928,B9,B016,3.81,,"Note, for this society, Binford provided 3 estimates, referring to different focal years, seasons and cases, including: Dry Season, Focal year: 1980s, with special reference to Semaq Seri; this entry is one of those estimates. For this entry, focal time was given as '1980s'",kuchikura1988[277],Semaq Seri,1985,Binford_2001_Table_8.08, +2929,B90,B016,,,,,,,, +2930,B91,B016,,,,,,,, +2931,B92,B016,,,,,,,, +2932,B93,B016,,,,,,,, +2933,B94,B016,4.2,,,petersonandlong1986[87-89],,1937,Binford_2001_Table_8.08, +2934,B95,B016,7.4,,,hart1970[299];hartandpilling1960[66];petersonandlong1986[135],,1920,Binford_2001_Table_8.08, +2935,B96,B016,,,,,,,, +2936,B97,B016,6,,,"petersonandlong1986[80-83, 135]",,1930,Binford_2001_Table_8.08, +2937,B98,B016,6.2,,,haleandtindale1933[77],,1926,Binford_2001_Table_8.08, +2938,B99,B016,,,,,,,, +2939,B1,B017,Small extended,B017-7,"Note, first of two estimates provided for “Settled Punan.” Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",kedit1982[261-71],Settled Punan,1970,Binford_2001_Table_8.08, +2940,B1,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",harrison1949[139],Mobile Punan,1970,Binford_2001_Table_8.08, +2941,B1,B017,Small extended,B017-7,"Note, second of two estimates provided for “Settled Punan.” Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",avadhani1975[131],Settled Punan,1970,Binford_2001_Table_8.08, +2942,B10,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bailey1863[292];seligmannandseligmann1911[63];spittel1945[8],,1900,Binford_2001_Table_8.08, +2943,B100,B017,,B017-NA,,,,,, +2944,B101,B017,,B017-NA,,,,,, +2945,B102,B017,,B017-NA,,,,,, +2946,B103,B017,,B017-NA,,,,,, +2947,B104,B017,,B017-NA,,,,,, +2948,B105,B017,,B017-NA,,,,,, +2949,B106,B017,,B017-NA,,,,,, +2950,B107,B017,,B017-NA,,,,,, +2951,B108,B017,,B017-NA,,,,,, +2952,B109,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",meggitt1962[81],,1965,Binford_2001_Table_8.08, +2953,B11,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","morris1982a[97-98, 174]",,1972,Binford_2001_Table_8.08, +2954,B110,B017,,B017-NA,,,,,, +2955,B111,B017,,B017-NA,,,,,, +2956,B112,B017,,B017-NA,,,,,, +2957,B113,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",myers1986[45];petersonandlong1986[104-11],,1936,Binford_2001_Table_8.08, +2958,B113,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gargettandhayden1991[13-22];haydenperscomm1992,"Papunya, Settled",1936,Binford_2001_Table_8.08, +2959,B114,B017,,B017-NA,,,,,, +2960,B115,B017,,B017-NA,,,,,, +2961,B116,B017,,B017-NA,,,,,, +2962,B117,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",oconnell1987[77],,1965,Binford_2001_Table_8.08, +2963,B118,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gould1971[168];gould1977[43],,1968,Binford_2001_Table_8.08, +2964,B119,B017,,B017-NA,,,,,, +2965,B12,B017,"Nuclear, monogamous",B017-1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",headland1986[141];headlandperscomm1992,,1965,Binford_2001_Table_8.08, +2966,B120,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",tindale1972[243],,1968,Binford_2001_Table_8.08, +2967,B121,B017,,B017-NA,,,,,, +2968,B122,B017,,B017-NA,,,,,, +2969,B123,B017,,B017-NA,,,,,, +2970,B124,B017,,B017-NA,,,,,, +2971,B125,B017,,B017-NA,,,,,, +2972,B126,B017,,B017-NA,,,,,, +2973,B127,B017,,B017-NA,,,,,, +2974,B128,B017,,B017-NA,,,,,, +2975,B129,B017,,B017-NA,,,,,, +2976,B13,B017,,B017-NA,,,,,, +2977,B130,B017,,B017-NA,,,,,, +2978,B131,B017,,B017-NA,,,,,, +2979,B132,B017,,B017-NA,,,,,, +2980,B133,B017,,B017-NA,,,,,, +2981,B134,B017,,B017-NA,,,,,, +2982,B135,B017,,B017-NA,,,,,, +2983,B136,B017,,B017-NA,,,,,, +2984,B137,B017,,B017-NA,,,,,, +2985,B14,B017,,B017-NA,,,,,, +2986,B143,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","griffen1959[vii, 50, 188]",,1938,Binford_2001_Table_8.08, +2987,B144,B017,,B017-NA,,,,,, +2988,B145,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",strong1929a[189-214],,1865,Binford_2001_Table_8.08, +2989,B146,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",meigs1939[1],,1880,Binford_2001_Table_8.08, +2990,B147,B017,,B017-NA,,,,,, +2991,B148,B017,,B017-NA,,,,,, +2992,B149,B017,,B017-NA,,,,,, +2993,B15,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",furerhaimendorf1943b[366],,1940,Binford_2001_Table_8.08, +2994,B150,B017,,B017-NA,,,,,, +2995,B151,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gayton1948a[57],,1860,Binford_2001_Table_8.08, +2996,B152,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",voegelin1938[43-44],,1850,Binford_2001_Table_8.08, +2997,B153,B017,,B017-NA,,,,,, +2998,B154,B017,,B017-NA,,,,,, +2999,B155,B017,"Nuclear, monogamous",B017-1,"Focal time given as '1850s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908[290-92],,1855,Binford_2001_Table_8.08, +3000,B156,B017,,B017-NA,,,,,, +3001,B157,B017,,B017-NA,,,,,, +3002,B158,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","barrett1908[186, 191]",,1860,Binford_2001_Table_8.08, +3003,B159,B017,,B017-NA,,,,,, +3004,B16,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",nimmanahaemindaandhartlandswam1962[173];pookajorn1988[187];velder1963[186-88],,1963,Binford_2001_Table_8.08, +3005,B160,B017,"Nuclear, monogamous",B017-1,"Focal time given as '1850s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908[289],,1855,Binford_2001_Table_8.08, +3006,B161,B017,Large extended,B017-8,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cookandheizer1965[51],,1860,Binford_2001_Table_8.08, +3007,B162,B017,,B017-NA,,,,,, +3008,B163,B017,,B017-NA,,,,,, +3009,B164,B017,,B017-NA,,,,,, +3010,B165,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","barrett1908[235-36, 244]",Southwest Dialect,1860,Binford_2001_Table_8.08, +3011,B166,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",goddard1923[97-101],,1860,Binford_2001_Table_8.08, +3012,B167,B017,,B017-NA,,,,,, +3013,B168,B017,,B017-NA,,,,,, +3014,B169,B017,,B017-NA,,,,,, +3015,B17,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gardner1972[420],,1962,Binford_2001_Table_8.08, +3016,B170,B017,,B017-NA,,,,,, +3017,B171,B017,,B017-NA,,,,,, +3018,B172,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908[268],Hill,1860,Binford_2001_Table_8.08, +3019,B173,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908[131-32],,1860,Binford_2001_Table_8.08, +3020,B174,B017,,B017-NA,,,,,, +3021,B175,B017,,B017-NA,,,,,, +3022,B176,B017,,B017-NA,,,,,, +3023,B177,B017,,B017-NA,,,,,, +3024,B178,B017,,B017-NA,,,,,, +3025,B179,B017,,B017-NA,,,,,, +3026,B18,B017,Minimal extended,B017-6,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","senandsen1955[170, 174-75]",Ranchi,1963,Binford_2001_Table_8.08, +3027,B18,B017,Minimal extended,B017-6,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",williams1974[79],,1963,Binford_2001_Table_8.08, +3028,B180,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","kroeber1925a[131, 138]",,1860,Binford_2001_Table_8.08, +3029,B181,B017,,B017-NA,,,,,, +3030,B182,B017,,B017-NA,,,,,, +3031,B183,B017,,B017-NA,,,,,, +3032,B184,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","loud1918[266, 339]",,1860,Binford_2001_Table_8.08, +3033,B185,B017,,B017-NA,,,,,, +3034,B186,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kroeber1925a[16],,1850,Binford_2001_Table_8.08, +3035,B187,B017,,B017-NA,,,,,, +3036,B188,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ray1963[159],,1934,Binford_2001_Table_8.08, +3037,B189,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",spier1930[54],,1890,Binford_2001_Table_8.08, +3038,B19,B017,Small extended,B017-7,"Focal time given as '1946-47'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",ehrenfels1952[65-67],Base Camp,1946,Binford_2001_Table_8.08, +3039,B190,B017,,B017-NA,,,,,, +3040,B191,B017,,B017-NA,,,,,, +3041,B192,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","steward1938[87-88, 941]",,1860,Binford_2001_Table_8.08, +3042,B193,B017,,B017-NA,,,,,, +3043,B194,B017,,B017-NA,,,,,, +3044,B195,B017,,B017-NA,,,,,, +3045,B196,B017,,B017-NA,,,,,, +3046,B197,B017,,B017-NA,,,,,, +3047,B198,B017,,B017-NA,,,,,, +3048,B199,B017,,B017-NA,,,,,, +3049,B2,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",eder1987[105],Palawan,1968,Binford_2001_Table_8.08, +3050,B20,B017,,B017-NA,,,,,, +3051,B200,B017,,B017-NA,,,,,, +3052,B201,B017,,B017-NA,,,,,, +3053,B202,B017,,B017-NA,,,,,, +3054,B203,B017,,B017-NA,,,,,, +3055,B204,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",euler1972[100],,1860,Binford_2001_Table_8.08, +3056,B205,B017,,B017-NA,,,,,, +3057,B206,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938[58],,1860,Binford_2001_Table_8.08, +3058,B207,B017,,B017-NA,,,,,, +3059,B208,B017,,B017-NA,,,,,, +3060,B209,B017,,B017-NA,,,,,, +3061,B21,B017,,B017-NA,,,,,, +3062,B210,B017,,B017-NA,,,,,, +3063,B211,B017,,B017-NA,,,,,, +3064,B212,B017,,B017-NA,,,,,, +3065,B213,B017,,B017-NA,,,,,, +3066,B214,B017,,B017-NA,,,,,, +3067,B215,B017,,B017-NA,,,,,, +3068,B216,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938[163],Battle Mountain,1860,Binford_2001_Table_8.08, +3069,B217,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938[118],,1860,Binford_2001_Table_8.08, +3070,B218,B017,,B017-NA,,,,,, +3071,B219,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cook1955[37];gayton1948a[145],,1860,Binford_2001_Table_8.08, +3072,B219,B017,"Nuclear, limited polygyny",B017-2,"Focal time given as ""post-1850""; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gifford1932b[57-61],,1860,Binford_2001_Table_8.08, +3073,B22,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972[449],Hokkaido,1822,Binford_2001_Table_8.08, +3074,B22,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972[449],Hokkaido,1854,Binford_2001_Table_8.08, +3075,B22,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972[449],Hokkaido,1873,Binford_2001_Table_8.08, +3076,B221,B017,,B017-NA,,,,,, +3077,B222,B017,,B017-NA,,,,,, +3078,B223,B017,,B017-NA,,,,,, +3079,B224,B017,,B017-NA,,,,,, +3080,B225,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",price1962[8-10],,1895,Binford_2001_Table_8.08, +3081,B226,B017,,B017-NA,,,,,, +3082,B227,B017,,B017-NA,,,,,, +3083,B228,B017,,B017-NA,,,,,, +3084,B229,B017,,B017-NA,,,,,, +3085,B23,B017,,B017-NA,,,,,, +3086,B230,B017,,B017-NA,,,,,, +3087,B231,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",whiting1950[19-20],,1870,Binford_2001_Table_8.08, +3088,B232,B017,,B017-NA,,,,,, +3089,B233,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938[114],,1860,Binford_2001_Table_8.08, +3090,B234,B017,,B017-NA,,,,,, +3091,B24,B017,"Nuclear, monogamous",B017-1,"Focal time given as '1800s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",shimkin1939[155],,1850,Binford_2001_Table_8.08, +3092,B240,B017,,B017-NA,,,,,, +3093,B241,B017,,B017-NA,,,,,, +3094,B242,B017,,B017-NA,,,,,, +3095,B243,B017,,B017-NA,,,,,, +3096,B244,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[25],,1860,Binford_2001_Table_8.08, +3097,B245,B017,"Polygyny, atypical cowives pattern",B017-4,"Coded by Murdock (1967), according to note by Binford (2001: 297)","moore1991[179, 298, 320]",,1880,Binford_2001_Table_8.08, +3098,B246,B017,,B017-NA,,,,,, +3099,B248,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[25],,1833,Binford_2001_Table_8.08, +3100,B249,B017,,B017-NA,,,,,, +3101,B25,B017,,B017-NA,,,,,, +3102,B250,B017,,B017-NA,,,,,, +3103,B252,B017,,B017-NA,,,,,, +3104,B253,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[25],,1860,Binford_2001_Table_8.08, +3105,B254,B017,,B017-NA,,,,,, +3106,B255,B017,,B017-NA,,,,,, +3107,B256,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",robbins1971[42],,1921,Binford_2001_Table_8.08, +3108,B256,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[21],,1860,Binford_2001_Table_8.08, +3109,B257,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lowrieandclarke1832[716],,1800,Binford_2001_Table_8.08, +3110,B257,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",denig1930[431],,1854,Binford_2001_Table_8.08, +3111,B258,B017,,B017-NA,,,,,, +3112,B259,B017,,B017-NA,,,,,, +3113,B26,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kreynovich1979[191-92],Summer,1900,Binford_2001_Table_8.08, +3114,B260,B017,"Polygyny, typical cowives pattern",B017-5,"Focal time given as '1800s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",jenness1938[2],,1865,Binford_2001_Table_8.08, +3115,B268,B017,,B017-NA,,,,,, +3116,B269,B017,,B017-NA,,,,,, +3117,B27,B017,,B017-NA,,,,,, +3118,B270,B017,,B017-NA,,,,,, +3119,B271,B017,,B017-NA,,,,,, +3120,B272,B017,,B017-NA,,,,,, +3121,B273,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","drucker1951[71, 280-81]",,1880,Binford_2001_Table_8.08, +3122,B274,B017,,B017-NA,,,,,, +3123,B275,B017,,B017-NA,,,,,, +3124,B276,B017,,B017-NA,,,,,, +3125,B277,B017,,B017-NA,,,,,, +3126,B278,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","olson1936a[22, 96]",,1860,Binford_2001_Table_8.08, +3127,B279,B017,,B017-NA,,,,,, +3128,B28,B017,,B017-NA,,,,,, +3129,B280,B017,,B017-NA,,,,,, +3130,B281,B017,,B017-NA,,,,,, +3131,B282,B017,,B017-NA,,,,,, +3132,B283,B017,,B017-NA,,,,,, +3133,B284,B017,,B017-NA,,,,,, +3134,B285,B017,,B017-NA,,,,,, +3135,B286,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gunther1962[544];swan1870[5-6],,1860,Binford_2001_Table_8.08, +3136,B287,B017,,B017-NA,,,,,, +3137,B288,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859[appendix],"""Communal"" Kwakiutl",1890,Binford_2001_Table_8.08, +3138,B289,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859[appendix],"""Communal"" Tsimshim",1880,Binford_2001_Table_8.08, +3139,B290,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859[appendix],"""Communal"" Haida",1890,Binford_2001_Table_8.08, +3140,B291,B017,,B017-NA,,,,,, +3141,B292,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859[appendix],"""Communal"" Tlingit",1880,Binford_2001_Table_8.08, +3142,B293,B017,,B017-NA,,,,,, +3143,B294,B017,,B017-NA,,,,,, +3144,B295,B017,,B017-NA,,,,,, +3145,B296,B017,,B017-NA,,,,,, +3146,B297,B017,,B017-NA,,,,,, +3147,B298,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lantis1970a[173],,1790,Binford_2001_Table_8.08, +3148,B299,B017,,B017-NA,,,,,, +3149,B3,B017,,B017-NA,,,,,, +3150,B315,B017,,B017-NA,,,,,, +3151,B316,B017,,B017-NA,,,,,, +3152,B317,B017,,B017-NA,,,,,, +3153,B318,B017,,B017-NA,,,,,, +3154,B319,B017,,B017-NA,,,,,, +3155,B320,B017,,B017-NA,,,,,, +3156,B321,B017,,B017-NA,,,,,, +3157,B322,B017,,B017-NA,,,,,, +3158,B323,B017,,B017-NA,,,,,, +3159,B324,B017,,B017-NA,,,,,, +3160,B325,B017,,B017-NA,,,,,, +3161,B326,B017,,B017-NA,,,,,, +3162,B327,B017,,B017-NA,,,,,, +3163,B328,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kinietz1947[246-47],,1939,Binford_2001_Table_8.08, +3164,B329,B017,,B017-NA,,,,,, +3165,B330,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[25],,1805,Binford_2001_Table_8.08, +3166,B331,B017,,B017-NA,,,,,, +3167,B332,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969[52],,1965,Binford_2001_Table_8.08, +3168,B332,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969[52],"""Welfare House""",1870,Binford_2001_Table_8.08, +3169,B332,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969[52],"""Native House""",1870,Binford_2001_Table_8.08, +3170,B333,B017,,B017-NA,,,,,, +3171,B334,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",dunning1959[63-64],,1940,Binford_2001_Table_8.08, +3172,B335,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)","rogers1963a[B8, 67]",,1952,Binford_2001_Table_8.08, +3173,B336,B017,,B017-NA,,,,,, +3174,B337,B017,,B017-NA,,,,,, +3175,B338,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983[89],,1823,Binford_2001_Table_8.08, +3176,B338,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",rogers1963a[23],,1910,Binford_2001_Table_8.08, +3177,B338,B017,Small extended,B017-7,"Focal time given as '1953-54'; Coded by Murdock (1967), according to note by Binford (2001: 297)",rogers1973[3-4];speck1923[454],Autumn,1953,Binford_2001_Table_8.08, +3178,B339,B017,,B017-NA,,,,,, +3179,B340,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983[89],,1823,Binford_2001_Table_8.08, +3180,B341,B017,,B017-NA,,,,,, +3181,B342,B017,,B017-NA,,,,,, +3182,B343,B017,,B017-NA,,,,,, +3183,B344,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",keith1960[68];nicks1980[34-43],,1807,Binford_2001_Table_8.08, +3184,B345,B017,"Polygyny, typical cowives pattern",B017-5,"Focal time given as '1951-54'; Coded by Murdock (1967), according to note by Binford (2001: 297)",helm1961[48],,1952,Binford_2001_Table_8.08, +3185,B345,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966[56],,1789,Binford_2001_Table_8.08, +3186,B345,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966[57],,1860,Binford_2001_Table_8.08, +3187,B346,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1949[37],,1945,Binford_2001_Table_8.08, +3188,B347,B017,,B017-NA,,,,,, +3189,B348,B017,,B017-NA,,,,,, +3190,B349,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",jenness1943[486-87],,1870,Binford_2001_Table_8.08, +3191,B35,B017,,B017-NA,,,,,, +3192,B350,B017,,B017-NA,,,,,, +3193,B351,B017,,B017-NA,,,,,, +3194,B352,B017,,B017-NA,,,,,, +3195,B353,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1956b[35],,1900,Binford_2001_Table_8.08, +3196,B353,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1949[20],,1947,Binford_2001_Table_8.08, +3197,B354,B017,,B017-NA,,,,,, +3198,B355,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989[54],,1838,Binford_2001_Table_8.08, +3199,B355,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989[64],,1881,Binford_2001_Table_8.08, +3200,B355,B017,"Nuclear, limited polygyny",B017-2,"Focal time given as '1920-46'; Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989[250-58],,1933,Binford_2001_Table_8.08, +3201,B356,B017,,B017-NA,,,,,, +3202,B357,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",porter1893[164],,1890,Binford_2001_Table_8.08, +3203,B357,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967[306],Proper,1843,Binford_2001_Table_8.08, +3204,B357,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967[306],Yukon,1843,Binford_2001_Table_8.08, +3205,B357,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",oswaltandvanstone1967[4],Crow Village,1843,Binford_2001_Table_8.08, +3206,B358,B017,,B017-NA,,,,,, +3207,B359,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mckennan1959[106];pitts1972[118],,1929,Binford_2001_Table_8.08, +3208,B359,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[229],Scotty Creek,1938,Binford_2001_Table_8.08, +3209,B359,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[229-31],Nabesna,1938,Binford_2001_Table_8.08, +3210,B359,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[232-34],Tetlin,1938,Binford_2001_Table_8.08, +3211,B359,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[235-38],Tanacross,1938,Binford_2001_Table_8.08, +3212,B359,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[239-40],Healy Lake,1938,Binford_2001_Table_8.08, +3213,B36,B017,,B017-NA,,,,,, +3214,B360,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983[89],,1823,Binford_2001_Table_8.08, +3215,B361,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966[49-56],Summer Camp,1789,Binford_2001_Table_8.08, +3216,B362,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967[306],,1843,Binford_2001_Table_8.08, +3217,B363,B017,,B017-NA,,,,,, +3218,B364,B017,,B017-NA,,,,,, +3219,B365,B017,Small extended,B017-7,"Focal time given as '1966-68'; Coded by Murdock (1967), according to note by Binford (2001: 297)",henriksen1973[58],,1967,Binford_2001_Table_8.08, +3220,B369,B017,,B017-NA,,,,,, +3221,B37,B017,,B017-NA,,,,,, +3222,B370,B017,Minimal extended,B017-6,"Focal time given as '1910-40'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966[43],Shungnak,1925,Binford_2001_Table_8.08, +3223,B370,B017,Minimal extended,B017-6,"Focal time given as '1950-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966[43],Shungnak,1957,Binford_2001_Table_8.08, +3224,B370,B017,Minimal extended,B017-6,"Focal time given as '1950-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966[43],Kobuk,1957,Binford_2001_Table_8.08, +3225,B370,B017,Minimal extended,B017-6,"Focal time given as '1959-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966[43],Ambler,1962,Binford_2001_Table_8.08, +3226,B371,B017,,B017-NA,,,,,, +3227,B372,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974[71],Winter,1890,Binford_2001_Table_8.08, +3228,B372,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974[71],Spring,1890,Binford_2001_Table_8.08, +3229,B372,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974[71],Early Summer,1890,Binford_2001_Table_8.08, +3230,B372,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974[71],Late Summer,1890,Binford_2001_Table_8.08, +3231,B372,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","graburn1969[148, 169]",Sugluk,1964,Binford_2001_Table_8.08, +3232,B373,B017,,B017-NA,,,,,, +3233,B374,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","haydenetal1996[154, table 1]","Summer, Tents",1893,Binford_2001_Table_8.08, +3234,B374,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",rasmussen1930[11-13],"May, General",1922,Binford_2001_Table_8.08, +3235,B374,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929[67-68],"May, Aaernermuit",1922,Binford_2001_Table_8.08, +3236,B374,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929[67-68],"May, Haune Tormiut",1922,Binford_2001_Table_8.08, +3237,B374,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929[67-68],"May, Padlimiut Coast",1922,Binford_2001_Table_8.08, +3238,B374,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929[67-68],"May, Harva Tormiut",1922,Binford_2001_Table_8.08, +3239,B374,B017,Minimal extended,B017-6,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vallee1967[17],Baker Lake,1960,Binford_2001_Table_8.08, +3240,B374,B017,Minimal extended,B017-6,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vallee1967[60-63],"Summer, Tents",1960,Binford_2001_Table_8.08, +3241,B375,B017,,B017-NA,,,,,, +3242,B377,B017,Minimal extended,B017-6,"Focal time given as '1947-48'; Coded by Murdock (1967), according to note by Binford (2001: 297)",binford1991a[89],Summer,1947,Binford_2001_Table_8.08, +3243,B377,B017,Minimal extended,B017-6,"Focal time given as '1947-48'; Coded by Murdock (1967), according to note by Binford (2001: 297)",binford1991a[89],Winter ,1947,Binford_2001_Table_8.08, +3244,B378,B017,,B017-NA,,,,,, +3245,B379,B017,,B017-NA,,,,,, +3246,B38,B017,,B017-NA,,,,,, +3247,B380,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",burch1975[260-69],,1909,Binford_2001_Table_8.08, +3248,B381,B017,,B017-NA,,,,,, +3249,B382,B017,Minimal extended,B017-6,"Note, first of two identical estimates for this subcase/society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","briggs1970[30, 170-71]","August, Tents",1963,Binford_2001_Table_8.08, +3250,B382,B017,Minimal extended,B017-6,"Note, second of two identical estimates for this subcase/society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","briggs1970[24, 370-71]","August, Tents",1963,Binford_2001_Table_8.08, +3251,B382,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",briggs1970[372],"Winter, Snow",1963,Binford_2001_Table_8.08, +3252,B383,B017,,B017-NA,,,,,, +3253,B384,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lyon1924[230],July,1822,Binford_2001_Table_8.08, +3254,B385,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",birketsmith1928a[78],Tents,1880,Binford_2001_Table_8.08, +3255,B386,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",low1906[57-58],,1880,Binford_2001_Table_8.08, +3256,B386,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",boas1964[18],,1888,Binford_2001_Table_8.08, +3257,B387,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",savelle1987[229],Snow,1830,Binford_2001_Table_8.08, +3258,B387,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",ross1835[589];savelle1987[429-31],"August, Tents",1831,Binford_2001_Table_8.08, +3259,B387,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",mclintock1860[141-43],"August, Tents",1858,Binford_2001_Table_8.08, +3260,B387,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",mclintock1860[235],Winter,1859,Binford_2001_Table_8.08, +3261,B387,B017,Small extended,B017-7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vandersteenhoven1959[2],Winter,1956,Binford_2001_Table_8.08, +3262,B388,B017,Large extended,B017-8,"Focal time given as '1890s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1928a[79],,1895,Binford_2001_Table_8.08, +3263,B389,B017,,B017-NA,,,,,, +3264,B39,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hurtadoandhill1986[18],"Hiwi Base Camp, Hiwi",1960,Binford_2001_Table_8.08, +3265,B39,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",metzger1968[268-71],,1960,Binford_2001_Table_8.08, +3266,B390,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ekblaw1928[41],,1880,Binford_2001_Table_8.08, +3267,B390,B017,"Nuclear, limited polygyny",B017-2,"Focal time given as '1890s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",steensby1910[324],,1895,Binford_2001_Table_8.08, +3268,B4,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",rizvi1990[16-18],,1989,Binford_2001_Table_8.08, +3269,B40,B017,,B017-NA,,,,,, +3270,B41,B017,,B017-NA,,,,,, +3271,B42,B017,,B017-NA,,,,,, +3272,B43,B017,Large extended,B017-8,"Coded by Murdock (1967), according to note by Binford (2001: 297)","holmberg1950[51, 82-83]",,1940,Binford_2001_Table_8.08, +3273,B44,B017,,B017-NA,,,,,, +3274,B45,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","levistrauss1970[268-69, 288]",Dry Season,1938,Binford_2001_Table_8.08, +3275,B46,B017,,B017-NA,,,,,, +3276,B47,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",jones1983[176],,1975,Binford_2001_Table_8.08, +3277,B48,B017,,B017-NA,,,,,, +3278,B49,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",kozaketal1979[369],,1954,Binford_2001_Table_8.08, +3279,B5,B017,"Nuclear, monogamous",B017-1,"Note, first of two identical estimates for this society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",heinegeldernandhoehngerlachstein1958[25],,1952,Binford_2001_Table_8.08, +3280,B5,B017,"Nuclear, monogamous",B017-1,"Note, second of two identical estimates for this society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",sen1962[72],,1952,Binford_2001_Table_8.08, +3281,B50,B017,"Polygyny, atypical cowives pattern",B017-4,"Coded by Murdock (1967), according to note by Binford (2001: 297)","henry1964[10-11, 159]",,1910,Binford_2001_Table_8.08, +3282,B51,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",boschinandmacuzzi1979[33];cooper1946c[150],,1870,Binford_2001_Table_8.08, +3283,B52,B017,,B017-NA,,,,,, +3284,B53,B017,,B017-NA,,,,,, +3285,B54,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",chapman1982[19];gusinde1931[205],,1880,Binford_2001_Table_8.08, +3286,B55,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gusinde1937a[32],,1870,Binford_2001_Table_8.08, +3287,B6,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",temple1903[61],Dry Season,1906,Binford_2001_Table_8.08, +3288,B6,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",temple1903[61],Wet Season,1906,Binford_2001_Table_8.08, +3289,B60,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hudson1990[88],,1980,Binford_2001_Table_8.08, +3290,B61,B017,,B017-NA,,,,,, +3291,B62,B017,,B017-NA,,,,,, +3292,B63,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cavallisforza1986c[33],,1980,Binford_2001_Table_8.08, +3293,B64,B017,"Nuclear, limited polygyny",B017-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","fisher1987[104, 111]",,1980,Binford_2001_Table_8.08, +3294,B65,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",harako1976[46-47],Net Hunters,1930,Binford_2001_Table_8.08, +3295,B66,B017,,B017-NA,,,,,, +3296,B67,B017,,B017-NA,,,,,, +3297,B68,B017,,B017-NA,,,,,, +3298,B69,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","oconnelletal1991[63, table 1];oconnellperscomm1977",,1910,Binford_2001_Table_8.08, +3299,B7,B017,,B017-NA,,,,,, +3300,B70,B017,,B017-NA,,,,,, +3301,B71,B017,,B017-NA,,,,,, +3302,B72,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","howell1979[43, 45]",General,1950,Binford_2001_Table_8.08, +3303,B72,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",yellen1977a[237-53],"Rainy Season, Mobile !Kung, Camps 1, 3, 5, 6, 9",1950,Binford_2001_Table_8.08, +3304,B72,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",yellen1977a[237-53],"Dry Season, Mobile !Kung, Camps 2, 4, 7, 10-16",1950,Binford_2001_Table_8.08, +3305,B73,B017,,B017-NA,,,,,, +3306,B74,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hitchcockperscomm1990,"Wet Season, Hunting Camp",1962,Binford_2001_Table_8.08, +3307,B74,B017,Minimal extended,B017-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_8.08, +3308,B75,B017,,B017-NA,,,,,, +3309,B76,B017,,B017-NA,,,,,, +3310,B77,B017,,B017-NA,,,,,, +3311,B78,B017,,B017-NA,,,,,, +3312,B79,B017,,B017-NA,,,,,, +3313,B8,B017,"Nuclear, monogamous",B017-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",radcliffebrown1948[28-35],,1870,Binford_2001_Table_8.08, +3314,B82,B017,,B017-NA,,,,,, +3315,B83,B017,,B017-NA,,,,,, +3316,B84,B017,,B017-NA,,,,,, +3317,B85,B017,,B017-NA,,,,,, +3318,B86,B017,,B017-NA,,,,,, +3319,B87,B017,"Polygyny, typical cowives pattern",B017-5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",hiatt1965[33-37],,1950,Binford_2001_Table_8.08, +3320,B88,B017,,B017-NA,,,,,, +3321,B89,B017,,B017-NA,,,,,, +3322,B9,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",skeatandblagden1906[176],,1920,Binford_2001_Table_8.08, +3323,B9,B017,"Nuclear, limited polygyny",B017-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",skeatandblagden1906[176],Wet Season,1920,Binford_2001_Table_8.08, +3324,B90,B017,,B017-NA,,,,,, +3325,B91,B017,,B017-NA,,,,,, +3326,B92,B017,,B017-NA,,,,,, +3327,B93,B017,,B017-NA,,,,,, +3328,B94,B017,,B017-NA,,,,,, +3329,B95,B017,Small extended,B017-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hart1970[299];hartandpilling1960[66];petersonandlong1986[135],,1920,Binford_2001_Table_8.08, +3330,B96,B017,,B017-NA,,,,,, +3331,B97,B017,,B017-NA,,,,,, +3332,B98,B017,,B017-NA,,,,,, +3333,B99,B017,,B017-NA,,,,,, +3334,B1,B018,Limited polygyny,B018-2,"Note, first of two identical estimates for “Settled Punan”. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",kedit1982[261-71],Settled Punan,1970,Binford_2001_Table_8.08, +3335,B1,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",harrison1949[139],Mobile Punan,1970,Binford_2001_Table_8.08, +3336,B1,B018,Limited polygyny,B018-2,"Note, second of two identical estimates for “Settled Punan”. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",avadhani1975[131],Settled Punan,1970,Binford_2001_Table_8.08, +3337,B10,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bailey1863[292];seligmannandseligmann1911[63];spittel1945[8],,1900,Binford_2001_Table_8.08, +3338,B100,B018,,B018-NA,,,,,, +3339,B101,B018,,B018-NA,,,,,, +3340,B102,B018,,B018-NA,,,,,, +3341,B103,B018,,B018-NA,,,,,, +3342,B104,B018,,B018-NA,,,,,, +3343,B105,B018,,B018-NA,,,,,, +3344,B106,B018,,B018-NA,,,,,, +3345,B107,B018,,B018-NA,,,,,, +3346,B108,B018,,B018-NA,,,,,, +3347,B109,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",meggitt1962[81],,1965,Binford_2001_Table_8.08, +3348,B11,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","morris1982a[97-98, 174]",,1972,Binford_2001_Table_8.08, +3349,B110,B018,,B018-NA,,,,,, +3350,B111,B018,,B018-NA,,,,,, +3351,B112,B018,,B018-NA,,,,,, +3352,B113,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",myers1986[45];petersonandlong1986[104-11],,1936,Binford_2001_Table_8.08, +3353,B113,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gargettandhayden1991[13-22];haydenperscomm1992,"Papunya, Settled",1936,Binford_2001_Table_8.08, +3354,B114,B018,,B018-NA,,,,,, +3355,B115,B018,,B018-NA,,,,,, +3356,B116,B018,,B018-NA,,,,,, +3357,B117,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",oconnell1987[77],,1965,Binford_2001_Table_8.08, +3358,B118,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gould1971[168];gould1977[43],,1968,Binford_2001_Table_8.08, +3359,B119,B018,,B018-NA,,,,,, +3360,B12,B018,Monogamous,B018-1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",headland1986[141];headlandperscomm1992,,1965,Binford_2001_Table_8.08, +3361,B120,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",tindale1972[243],,1968,Binford_2001_Table_8.08, +3362,B121,B018,,B018-NA,,,,,, +3363,B122,B018,,B018-NA,,,,,, +3364,B123,B018,,B018-NA,,,,,, +3365,B124,B018,,B018-NA,,,,,, +3366,B125,B018,,B018-NA,,,,,, +3367,B126,B018,,B018-NA,,,,,, +3368,B127,B018,,B018-NA,,,,,, +3369,B128,B018,,B018-NA,,,,,, +3370,B129,B018,,B018-NA,,,,,, +3371,B13,B018,,B018-NA,,,,,, +3372,B130,B018,,B018-NA,,,,,, +3373,B131,B018,,B018-NA,,,,,, +3374,B132,B018,,B018-NA,,,,,, +3375,B133,B018,,B018-NA,,,,,, +3376,B134,B018,,B018-NA,,,,,, +3377,B135,B018,,B018-NA,,,,,, +3378,B136,B018,,B018-NA,,,,,, +3379,B137,B018,,B018-NA,,,,,, +3380,B14,B018,,B018-NA,,,,,, +3381,B143,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)","griffen1959[vii, 50, 188]",,1938,Binford_2001_Table_8.08, +3382,B144,B018,,B018-NA,,,,,, +3383,B145,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",strong1929a[189-214],,1865,Binford_2001_Table_8.08, +3384,B146,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",meigs1939[1],,1880,Binford_2001_Table_8.08, +3385,B147,B018,,B018-NA,,,,,, +3386,B148,B018,,B018-NA,,,,,, +3387,B149,B018,,B018-NA,,,,,, +3388,B15,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",furerhaimendorf1943b[366],,1940,Binford_2001_Table_8.08, +3389,B150,B018,,B018-NA,,,,,, +3390,B151,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gayton1948a[57],,1860,Binford_2001_Table_8.08, +3391,B152,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",voegelin1938[43-44],,1850,Binford_2001_Table_8.08, +3392,B153,B018,,B018-NA,,,,,, +3393,B154,B018,,B018-NA,,,,,, +3394,B155,B018,Monogamous,B018-1,"Focal time given as '1850s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908[290-92],,1855,Binford_2001_Table_8.08, +3395,B156,B018,,B018-NA,,,,,, +3396,B157,B018,,B018-NA,,,,,, +3397,B158,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","barrett1908[186, 191]",,1860,Binford_2001_Table_8.08, +3398,B159,B018,,B018-NA,,,,,, +3399,B16,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",nimmanahaemindaandhartlandswam1962[173];pookajorn1988[187];velder1963[186-88],,1963,Binford_2001_Table_8.08, +3400,B160,B018,Monogamous,B018-1,"Focal time given as '1850s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908[289],,1855,Binford_2001_Table_8.08, +3401,B161,B018,,B018-NA,,,,,, +3402,B162,B018,,B018-NA,,,,,, +3403,B163,B018,,B018-NA,,,,,, +3404,B164,B018,,B018-NA,,,,,, +3405,B165,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)","barrett1908[235-36, 244]",Southwest Dialect,1860,Binford_2001_Table_8.08, +3406,B166,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",goddard1923[97-101],,1860,Binford_2001_Table_8.08, +3407,B167,B018,,B018-NA,,,,,, +3408,B168,B018,,B018-NA,,,,,, +3409,B169,B018,,B018-NA,,,,,, +3410,B17,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gardner1972[420],,1962,Binford_2001_Table_8.08, +3411,B170,B018,,B018-NA,,,,,, +3412,B171,B018,,B018-NA,,,,,, +3413,B172,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908[268],Hill,1860,Binford_2001_Table_8.08, +3414,B173,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908[131-32],,1860,Binford_2001_Table_8.08, +3415,B174,B018,,B018-NA,,,,,, +3416,B175,B018,,B018-NA,,,,,, +3417,B176,B018,,B018-NA,,,,,, +3418,B177,B018,,B018-NA,,,,,, +3419,B178,B018,,B018-NA,,,,,, +3420,B179,B018,,B018-NA,,,,,, +3421,B18,B018,,B018-NA,,,,,, +3422,B180,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","kroeber1925a[131, 138]",,1860,Binford_2001_Table_8.08, +3423,B181,B018,,B018-NA,,,,,, +3424,B182,B018,,B018-NA,,,,,, +3425,B183,B018,,B018-NA,,,,,, +3426,B184,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","loud1918[266, 339]",,1860,Binford_2001_Table_8.08, +3427,B185,B018,,B018-NA,,,,,, +3428,B186,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kroeber1925a[16],,1850,Binford_2001_Table_8.08, +3429,B187,B018,,B018-NA,,,,,, +3430,B188,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ray1963[159],,1934,Binford_2001_Table_8.08, +3431,B189,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",spier1930[54],,1890,Binford_2001_Table_8.08, +3432,B19,B018,Limited polygyny,B018-2,"Focal time given as '1946-47'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",ehrenfels1952[65-67],Base Camp,1946,Binford_2001_Table_8.08, +3433,B190,B018,,B018-NA,,,,,, +3434,B191,B018,,B018-NA,,,,,, +3435,B192,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","steward1938[87-88, 941]",,1860,Binford_2001_Table_8.08, +3436,B193,B018,,B018-NA,,,,,, +3437,B194,B018,,B018-NA,,,,,, +3438,B195,B018,,B018-NA,,,,,, +3439,B196,B018,,B018-NA,,,,,, +3440,B197,B018,,B018-NA,,,,,, +3441,B198,B018,,B018-NA,,,,,, +3442,B199,B018,,B018-NA,,,,,, +3443,B2,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",eder1987[105],Palawan,1968,Binford_2001_Table_8.08, +3444,B20,B018,,B018-NA,,,,,, +3445,B200,B018,,B018-NA,,,,,, +3446,B201,B018,,B018-NA,,,,,, +3447,B202,B018,,B018-NA,,,,,, +3448,B203,B018,,B018-NA,,,,,, +3449,B204,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",euler1972[100],,1860,Binford_2001_Table_8.08, +3450,B205,B018,,B018-NA,,,,,, +3451,B206,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938[58],,1860,Binford_2001_Table_8.08, +3452,B207,B018,,B018-NA,,,,,, +3453,B208,B018,,B018-NA,,,,,, +3454,B209,B018,,B018-NA,,,,,, +3455,B21,B018,,B018-NA,,,,,, +3456,B210,B018,,B018-NA,,,,,, +3457,B211,B018,,B018-NA,,,,,, +3458,B212,B018,,B018-NA,,,,,, +3459,B213,B018,,B018-NA,,,,,, +3460,B214,B018,,B018-NA,,,,,, +3461,B215,B018,,B018-NA,,,,,, +3462,B216,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938[163],Battle Mountain,1860,Binford_2001_Table_8.08, +3463,B217,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938[118],,1860,Binford_2001_Table_8.08, +3464,B218,B018,,B018-NA,,,,,, +3465,B219,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cook1955[37];gayton1948a[145],,1860,Binford_2001_Table_8.08, +3466,B219,B018,Limited polygyny,B018-2,"Focal time given as ""post-1850""; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gifford1932b[57-61],,1860,Binford_2001_Table_8.08, +3467,B22,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972[449],Hokkaido,1822,Binford_2001_Table_8.08, +3468,B22,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972[449],Hokkaido,1854,Binford_2001_Table_8.08, +3469,B22,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972[449],Hokkaido,1873,Binford_2001_Table_8.08, +3470,B221,B018,,B018-NA,,,,,, +3471,B222,B018,,B018-NA,,,,,, +3472,B223,B018,,B018-NA,,,,,, +3473,B224,B018,,B018-NA,,,,,, +3474,B225,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",price1962[8-10],,1895,Binford_2001_Table_8.08, +3475,B226,B018,,B018-NA,,,,,, +3476,B227,B018,,B018-NA,,,,,, +3477,B228,B018,,B018-NA,,,,,, +3478,B229,B018,,B018-NA,,,,,, +3479,B23,B018,,B018-NA,,,,,, +3480,B230,B018,,B018-NA,,,,,, +3481,B231,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",whiting1950[19-20],,1870,Binford_2001_Table_8.08, +3482,B232,B018,,B018-NA,,,,,, +3483,B233,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938[114],,1860,Binford_2001_Table_8.08, +3484,B234,B018,,B018-NA,,,,,, +3485,B24,B018,Monogamous,B018-1,"Focal time given as '1800s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",shimkin1939[155],,1850,Binford_2001_Table_8.08, +3486,B240,B018,,B018-NA,,,,,, +3487,B241,B018,,B018-NA,,,,,, +3488,B242,B018,,B018-NA,,,,,, +3489,B243,B018,,B018-NA,,,,,, +3490,B244,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[25],,1860,Binford_2001_Table_8.08, +3491,B245,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","moore1991[179, 298, 320]",,1880,Binford_2001_Table_8.08, +3492,B246,B018,,B018-NA,,,,,, +3493,B248,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[25],,1833,Binford_2001_Table_8.08, +3494,B249,B018,,B018-NA,,,,,, +3495,B25,B018,,B018-NA,,,,,, +3496,B250,B018,,B018-NA,,,,,, +3497,B252,B018,,B018-NA,,,,,, +3498,B253,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[25],,1860,Binford_2001_Table_8.08, +3499,B254,B018,,B018-NA,,,,,, +3500,B255,B018,,B018-NA,,,,,, +3501,B256,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",robbins1971[42],,1921,Binford_2001_Table_8.08, +3502,B256,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[21],,1860,Binford_2001_Table_8.08, +3503,B257,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lowrieandclarke1832[716],,1800,Binford_2001_Table_8.08, +3504,B257,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",denig1930[431],,1854,Binford_2001_Table_8.08, +3505,B258,B018,,B018-NA,,,,,, +3506,B259,B018,,B018-NA,,,,,, +3507,B26,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kreynovich1979[191-92],Summer,1900,Binford_2001_Table_8.08, +3508,B260,B018,"Polygyny, sororal cohabit",B018-3,"Focal time given as '1800s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",jenness1938[2],,1865,Binford_2001_Table_8.08, +3509,B268,B018,,B018-NA,,,,,, +3510,B269,B018,,B018-NA,,,,,, +3511,B27,B018,,B018-NA,,,,,, +3512,B270,B018,,B018-NA,,,,,, +3513,B271,B018,,B018-NA,,,,,, +3514,B272,B018,,B018-NA,,,,,, +3515,B273,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","drucker1951[71, 280-81]",,1880,Binford_2001_Table_8.08, +3516,B274,B018,,B018-NA,,,,,, +3517,B275,B018,,B018-NA,,,,,, +3518,B276,B018,,B018-NA,,,,,, +3519,B277,B018,,B018-NA,,,,,, +3520,B278,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","olson1936a[22, 96]",,1860,Binford_2001_Table_8.08, +3521,B279,B018,,B018-NA,,,,,, +3522,B28,B018,,B018-NA,,,,,, +3523,B280,B018,,B018-NA,,,,,, +3524,B281,B018,,B018-NA,,,,,, +3525,B282,B018,,B018-NA,,,,,, +3526,B283,B018,,B018-NA,,,,,, +3527,B284,B018,,B018-NA,,,,,, +3528,B285,B018,,B018-NA,,,,,, +3529,B286,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gunther1962[544];swan1870[5-6],,1860,Binford_2001_Table_8.08, +3530,B287,B018,,B018-NA,,,,,, +3531,B288,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859[appendix],"""Communal"" Kwakiutl",1890,Binford_2001_Table_8.08, +3532,B289,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859[appendix],"""Communal"" Tsimshim",1880,Binford_2001_Table_8.08, +3533,B290,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859[appendix],"""Communal"" Haida",1890,Binford_2001_Table_8.08, +3534,B291,B018,,B018-NA,,,,,, +3535,B292,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859[appendix],"""Communal"" Tlingit",1880,Binford_2001_Table_8.08, +3536,B293,B018,,B018-NA,,,,,, +3537,B294,B018,,B018-NA,,,,,, +3538,B295,B018,,B018-NA,,,,,, +3539,B296,B018,,B018-NA,,,,,, +3540,B297,B018,,B018-NA,,,,,, +3541,B298,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lantis1970a[173],,1790,Binford_2001_Table_8.08, +3542,B299,B018,,B018-NA,,,,,, +3543,B3,B018,,B018-NA,,,,,, +3544,B315,B018,,B018-NA,,,,,, +3545,B316,B018,,B018-NA,,,,,, +3546,B317,B018,,B018-NA,,,,,, +3547,B318,B018,,B018-NA,,,,,, +3548,B319,B018,,B018-NA,,,,,, +3549,B320,B018,,B018-NA,,,,,, +3550,B321,B018,,B018-NA,,,,,, +3551,B322,B018,,B018-NA,,,,,, +3552,B323,B018,,B018-NA,,,,,, +3553,B324,B018,,B018-NA,,,,,, +3554,B325,B018,,B018-NA,,,,,, +3555,B326,B018,,B018-NA,,,,,, +3556,B327,B018,,B018-NA,,,,,, +3557,B328,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kinietz1947[246-47],,1939,Binford_2001_Table_8.08, +3558,B329,B018,,B018-NA,,,,,, +3559,B330,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955[25],,1805,Binford_2001_Table_8.08, +3560,B331,B018,,B018-NA,,,,,, +3561,B332,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969[52],,1965,Binford_2001_Table_8.08, +3562,B332,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969[52],"""Welfare House""",1870,Binford_2001_Table_8.08, +3563,B332,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969[52],"""Native House""",1870,Binford_2001_Table_8.08, +3564,B333,B018,,B018-NA,,,,,, +3565,B334,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",dunning1959[63-64],,1940,Binford_2001_Table_8.08, +3566,B335,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","rogers1963a[B8, 67]",,1952,Binford_2001_Table_8.08, +3567,B336,B018,,B018-NA,,,,,, +3568,B337,B018,,B018-NA,,,,,, +3569,B338,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983[89],,1823,Binford_2001_Table_8.08, +3570,B338,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",rogers1963a[23],,1910,Binford_2001_Table_8.08, +3571,B338,B018,Limited polygyny,B018-2,"Focal time given as '1953-54'; Coded by Murdock (1967), according to note by Binford (2001: 297)",rogers1973[3-4];speck1923[454],Autumn,1953,Binford_2001_Table_8.08, +3572,B339,B018,,B018-NA,,,,,, +3573,B340,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983[89],,1823,Binford_2001_Table_8.08, +3574,B341,B018,,B018-NA,,,,,, +3575,B342,B018,,B018-NA,,,,,, +3576,B343,B018,,B018-NA,,,,,, +3577,B344,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",keith1960[68];nicks1980[34-43],,1807,Binford_2001_Table_8.08, +3578,B345,B018,"Polygyny, sororal cohabit",B018-3,"Focal time given as '1951-54'; Coded by Murdock (1967), according to note by Binford (2001: 297)",helm1961[48],,1952,Binford_2001_Table_8.08, +3579,B345,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966[56],,1789,Binford_2001_Table_8.08, +3580,B345,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966[57],,1860,Binford_2001_Table_8.08, +3581,B346,B018,,B018-NA,,,,,, +3582,B347,B018,,B018-NA,,,,,, +3583,B348,B018,,B018-NA,,,,,, +3584,B349,B018,Polyandrous,B018-7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",jenness1943[486-87],,1870,Binford_2001_Table_8.08, +3585,B35,B018,,B018-NA,,,,,, +3586,B350,B018,,B018-NA,,,,,, +3587,B351,B018,,B018-NA,,,,,, +3588,B352,B018,,B018-NA,,,,,, +3589,B353,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1956b[35],,1900,Binford_2001_Table_8.08, +3590,B353,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1949[20],,1947,Binford_2001_Table_8.08, +3591,B354,B018,,B018-NA,,,,,, +3592,B355,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989[54],,1838,Binford_2001_Table_8.08, +3593,B355,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989[64],,1881,Binford_2001_Table_8.08, +3594,B355,B018,Limited polygyny,B018-2,"Focal time given as '1920-46'; Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989[250-58],,1933,Binford_2001_Table_8.08, +3595,B356,B018,,B018-NA,,,,,, +3596,B357,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",porter1893[164],,1890,Binford_2001_Table_8.08, +3597,B357,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967[306],Proper,1843,Binford_2001_Table_8.08, +3598,B357,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967[306],Yukon,1843,Binford_2001_Table_8.08, +3599,B357,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",oswaltandvanstone1967[4],Crow Village,1843,Binford_2001_Table_8.08, +3600,B358,B018,,B018-NA,,,,,, +3601,B359,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mckennan1959[106];pitts1972[118],,1929,Binford_2001_Table_8.08, +3602,B359,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[229],Scotty Creek,1938,Binford_2001_Table_8.08, +3603,B359,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[229-31],Nabesna,1938,Binford_2001_Table_8.08, +3604,B359,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[232-34],Tetlin,1938,Binford_2001_Table_8.08, +3605,B359,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[235-38],Tanacross,1938,Binford_2001_Table_8.08, +3606,B359,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972[239-40],Healy Lake,1938,Binford_2001_Table_8.08, +3607,B36,B018,,B018-NA,,,,,, +3608,B360,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983[89],,1823,Binford_2001_Table_8.08, +3609,B361,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966[49-56],Summer Camp,1789,Binford_2001_Table_8.08, +3610,B362,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967[306],,1843,Binford_2001_Table_8.08, +3611,B363,B018,,B018-NA,,,,,, +3612,B364,B018,,B018-NA,,,,,, +3613,B365,B018,Limited polygyny,B018-2,"Focal time given as '1966-68'; Coded by Murdock (1967), according to note by Binford (2001: 297)",henriksen1973[58],,1967,Binford_2001_Table_8.08, +3614,B369,B018,,B018-NA,,,,,, +3615,B37,B018,,B018-NA,,,,,, +3616,B370,B018,Limited polygyny,B018-2,"Focal time given as '1910-40'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966[43],Shungnak,1925,Binford_2001_Table_8.08, +3617,B370,B018,Limited polygyny,B018-2,"Focal time given as '1950-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966[43],Shungnak,1957,Binford_2001_Table_8.08, +3618,B370,B018,Limited polygyny,B018-2,"Focal time given as '1950-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966[43],Kobuk,1957,Binford_2001_Table_8.08, +3619,B370,B018,Limited polygyny,B018-2,"Focal time given as '1959-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966[43],Ambler,1962,Binford_2001_Table_8.08, +3620,B371,B018,,B018-NA,,,,,, +3621,B372,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974[71],Winter,1890,Binford_2001_Table_8.08, +3622,B372,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974[71],Spring,1890,Binford_2001_Table_8.08, +3623,B372,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974[71],Early Summer,1890,Binford_2001_Table_8.08, +3624,B372,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974[71],Late Summer,1890,Binford_2001_Table_8.08, +3625,B372,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","graburn1969[148, 169]",Sugluk,1964,Binford_2001_Table_8.08, +3626,B373,B018,,B018-NA,,,,,, +3627,B374,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","haydenetal1996[154, table 1]","Summer, Tents",1893,Binford_2001_Table_8.08, +3628,B374,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",rasmussen1930[11-13],"May, General",1922,Binford_2001_Table_8.08, +3629,B374,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929[67-68],"May, Aaernermuit",1922,Binford_2001_Table_8.08, +3630,B374,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929[67-68],"May, Haune Tormiut",1922,Binford_2001_Table_8.08, +3631,B374,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929[67-68],"May, Padlimiut Coast",1922,Binford_2001_Table_8.08, +3632,B374,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929[67-68],"May, Harva Tormiut",1922,Binford_2001_Table_8.08, +3633,B374,B018,Monogamous,B018-1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vallee1967[17],Baker Lake,1960,Binford_2001_Table_8.08, +3634,B374,B018,Monogamous,B018-1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vallee1967[60-63],"Summer, Tents",1960,Binford_2001_Table_8.08, +3635,B375,B018,,B018-NA,,,,,, +3636,B377,B018,Limited polygyny,B018-2,"Focal time given as '1947-48'; Coded by Murdock (1967), according to note by Binford (2001: 297)",binford1991a[89],Summer,1947,Binford_2001_Table_8.08, +3637,B377,B018,Limited polygyny,B018-2,"Focal time given as '1947-48'; Coded by Murdock (1967), according to note by Binford (2001: 297)",binford1991a[89],Winter ,1947,Binford_2001_Table_8.08, +3638,B378,B018,,B018-NA,,,,,, +3639,B379,B018,,B018-NA,,,,,, +3640,B38,B018,,B018-NA,,,,,, +3641,B380,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",burch1975[260-69],,1909,Binford_2001_Table_8.08, +3642,B381,B018,,B018-NA,,,,,, +3643,B382,B018,Monogamous,B018-1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",briggs1970[372],"Winter, Snow",1963,Binford_2001_Table_8.08, +3644,B383,B018,,B018-NA,,,,,, +3645,B384,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lyon1924[230],July,1822,Binford_2001_Table_8.08, +3646,B385,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",birketsmith1928a[78],Tents,1880,Binford_2001_Table_8.08, +3647,B386,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",low1906[57-58],,1880,Binford_2001_Table_8.08, +3648,B386,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",boas1964[18],,1888,Binford_2001_Table_8.08, +3649,B387,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",savelle1987[229],Snow,1830,Binford_2001_Table_8.08, +3650,B387,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",ross1835[589];savelle1987[429-31],"August, Tents",1831,Binford_2001_Table_8.08, +3651,B387,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",mclintock1860[141-43],"August, Tents",1858,Binford_2001_Table_8.08, +3652,B387,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",mclintock1860[235],Winter,1859,Binford_2001_Table_8.08, +3653,B387,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vandersteenhoven1959[2],Winter,1956,Binford_2001_Table_8.08, +3654,B388,B018,Limited polygyny,B018-2,"Focal time given as '1890s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1928a[79],,1895,Binford_2001_Table_8.08, +3655,B389,B018,,B018-NA,,,,,, +3656,B39,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hurtadoandhill1986[18],"Hiwi Base Camp, Hiwi",1960,Binford_2001_Table_8.08, +3657,B39,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",metzger1968[268-71],,1960,Binford_2001_Table_8.08, +3658,B390,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ekblaw1928[41],,1880,Binford_2001_Table_8.08, +3659,B390,B018,Limited polygyny,B018-2,"Focal time given as '1890s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",steensby1910[324],,1895,Binford_2001_Table_8.08, +3660,B4,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",rizvi1990[16-18],,1989,Binford_2001_Table_8.08, +3661,B40,B018,,B018-NA,,,,,, +3662,B41,B018,,B018-NA,,,,,, +3663,B42,B018,,B018-NA,,,,,, +3664,B43,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Murdock (1967), according to note by Binford (2001: 297)","holmberg1950[51, 82-83]",,1940,Binford_2001_Table_8.08, +3665,B44,B018,,B018-NA,,,,,, +3666,B45,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","levistrauss1970[268-69, 288]",Dry Season,1938,Binford_2001_Table_8.08, +3667,B46,B018,,B018-NA,,,,,, +3668,B47,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",jones1983[176],,1975,Binford_2001_Table_8.08, +3669,B48,B018,,B018-NA,,,,,, +3670,B49,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",kozaketal1979[369],,1954,Binford_2001_Table_8.08, +3671,B5,B018,Monogamous,B018-1,"Note, first of two identical estimates for this society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",heinegeldernandhoehngerlachstein1958[25],,1952,Binford_2001_Table_8.08, +3672,B5,B018,Monogamous,B018-1,"Note, second of two identical estimates for this society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",sen1962[72],,1952,Binford_2001_Table_8.08, +3673,B50,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","henry1964[10-11, 159]",,1910,Binford_2001_Table_8.08, +3674,B51,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",boschinandmacuzzi1979[33];cooper1946c[150],,1870,Binford_2001_Table_8.08, +3675,B52,B018,,B018-NA,,,,,, +3676,B53,B018,,B018-NA,,,,,, +3677,B54,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",chapman1982[19];gusinde1931[205],,1880,Binford_2001_Table_8.08, +3678,B55,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gusinde1937a[32],,1870,Binford_2001_Table_8.08, +3679,B6,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",temple1903[61],Dry Season,1906,Binford_2001_Table_8.08, +3680,B6,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",temple1903[61],Wet Season,1906,Binford_2001_Table_8.08, +3681,B60,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hudson1990[88],,1980,Binford_2001_Table_8.08, +3682,B61,B018,,B018-NA,,,,,, +3683,B62,B018,,B018-NA,,,,,, +3684,B63,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cavallisforza1986c[33],,1980,Binford_2001_Table_8.08, +3685,B64,B018,Limited polygyny,B018-2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","fisher1987[104, 111]",,1980,Binford_2001_Table_8.08, +3686,B65,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",harako1976[46-47],Net Hunters,1930,Binford_2001_Table_8.08, +3687,B66,B018,,B018-NA,,,,,, +3688,B67,B018,,B018-NA,,,,,, +3689,B68,B018,,B018-NA,,,,,, +3690,B69,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","oconnelletal1991[63, table 1];oconnellperscomm1977",,1910,Binford_2001_Table_8.08, +3691,B7,B018,,B018-NA,,,,,, +3692,B70,B018,,B018-NA,,,,,, +3693,B71,B018,,B018-NA,,,,,, +3694,B72,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","howell1979[43, 45]",General,1950,Binford_2001_Table_8.08, +3695,B72,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",yellen1977a[237-53],"Rainy Season, Mobile !Kung, Camps 1, 3, 5, 6, 9",1950,Binford_2001_Table_8.08, +3696,B72,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",yellen1977a[237-53],"Dry Season, Mobile !Kung, Camps 2, 4, 7, 10-16",1950,Binford_2001_Table_8.08, +3697,B73,B018,,B018-NA,,,,,, +3698,B74,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hitchcockperscomm1990,"Wet Season, Hunting Camp",1962,Binford_2001_Table_8.08, +3699,B74,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_8.08, +3700,B75,B018,,B018-NA,,,,,, +3701,B76,B018,,B018-NA,,,,,, +3702,B77,B018,,B018-NA,,,,,, +3703,B78,B018,,B018-NA,,,,,, +3704,B79,B018,,B018-NA,,,,,, +3705,B8,B018,Monogamous,B018-1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",radcliffebrown1948[28-35],,1870,Binford_2001_Table_8.08, +3706,B82,B018,,B018-NA,,,,,, +3707,B83,B018,,B018-NA,,,,,, +3708,B84,B018,,B018-NA,,,,,, +3709,B85,B018,,B018-NA,,,,,, +3710,B86,B018,,B018-NA,,,,,, +3711,B87,B018,"Polygyny, sororal cohabit",B018-3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",hiatt1965[33-37],,1950,Binford_2001_Table_8.08, +3712,B88,B018,,B018-NA,,,,,, +3713,B89,B018,,B018-NA,,,,,, +3714,B9,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",skeatandblagden1906[176],,1920,Binford_2001_Table_8.08, +3715,B9,B018,Limited polygyny,B018-2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",skeatandblagden1906[176],Wet Season,1920,Binford_2001_Table_8.08, +3716,B90,B018,,B018-NA,,,,,, +3717,B91,B018,,B018-NA,,,,,, +3718,B92,B018,,B018-NA,,,,,, +3719,B93,B018,,B018-NA,,,,,, +3720,B94,B018,,B018-NA,,,,,, +3721,B95,B018,"Polygyny, non-sororal separate",B018-6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hart1970[299];hartandpilling1960[66];petersonandlong1986[135],,1920,Binford_2001_Table_8.08, +3722,B96,B018,,B018-NA,,,,,, +3723,B97,B018,,B018-NA,,,,,, +3724,B98,B018,,B018-NA,,,,,, +3725,B99,B018,,B018-NA,,,,,, +3726,B1,B019,4,,,kedit1982[261-64],,1970,Binford_2001_Table_8.07, +3727,B10,B019,5,,"Note, original entry was: <5","spittel1945[8, 65]",,1900,Binford_2001_Table_8.07, +3728,B100,B019,35,,,love1917[21];love1936[36],,,Binford_2001_Table_8.07, +3729,B101,B019,12.6,,,kaberry1939[113-15],,1934,Binford_2001_Table_8.07, +3730,B102,B019,33,,,memmott1983b[53-54],,1909,Binford_2001_Table_8.07, +3731,B103,B019,52,,,tindale1962b[319-21],,1928,Binford_2001_Table_8.07, +3732,B104,B019,,,,,,,, +3733,B105,B019,,,,,,,, +3734,B106,B019,36,,,clement1903[13];radcliffebrown1912[158],,1910,Binford_2001_Table_8.07, +3735,B107,B019,45,,,"lumholtz1889[179, 201]",,1870,Binford_2001_Table_8.07, +3736,B108,B019,7.4,,,kaberry1939[114],,1934,Binford_2001_Table_8.07, +3737,B109,B019,38,,,meggitt1962[77-79],,1965,Binford_2001_Table_8.07, +3738,B11,B019,9,,,"morris1982a[150, 250]",,1972,Binford_2001_Table_8.07, +3739,B110,B019,30,,,tonkinson1978[67],,1880,Binford_2001_Table_8.07, +3740,B111,B019,,,,,,,, +3741,B112,B019,41,,,petersonandlong1986[112-15],,1968,Binford_2001_Table_8.07, +3742,B113,B019,31,,,haydenperscomm1990;haydenperscomm1992;long1970[296-97],,1936,Binford_2001_Table_8.07, +3743,B114,B019,,,,,,,, +3744,B115,B019,,,,,,,, +3745,B116,B019,,,,,,,, +3746,B117,B019,30,,,denham1975[137-38],,1965,Binford_2001_Table_8.07, +3747,B118,B019,13,,,gould1969[184],,1968,Binford_2001_Table_8.07, +3748,B119,B019,,,,,,,, +3749,B12,B019,5,,"Note, original entry was: <5","headland1986[146, 366-67]",,1965,Binford_2001_Table_8.07, +3750,B120,B019,25,,,"long1970[299];tindale1972[259, 260];yengoyan1970[89]",,1968,Binford_2001_Table_8.07, +3751,B121,B019,,,,,,,, +3752,B122,B019,,,,,,,, +3753,B123,B019,27,,,tindaleperscomm1965;white1915[726-28],,1922,Binford_2001_Table_8.07, +3754,B124,B019,26,,,"long1970[293];spencerandgillen1927[70-71, 472]",,1900,Binford_2001_Table_8.07, +3755,B125,B019,,,,,,,, +3756,B126,B019,,,,,,,, +3757,B127,B019,21,,,berndtandberndt1944[232];long1970[298],,1941,Binford_2001_Table_8.07, +3758,B128,B019,,,,,,,, +3759,B129,B019,,,,,,,, +3760,B13,B019,2,,,rai1982[67],,1979,Binford_2001_Table_8.07, +3761,B130,B019,,,,,,,, +3762,B131,B019,,,,,,,, +3763,B132,B019,,,,,,,, +3764,B133,B019,,,,,,,, +3765,B134,B019,18,,,cannon1983[606-7],,1850,Binford_2001_Table_8.07, +3766,B135,B019,,,,,,,, +3767,B136,B019,29,,,plomley1983[166],,1830,Binford_2001_Table_8.07, +3768,B137,B019,,,,,,,, +3769,B14,B019,0,,,vanoverbergh1925[425-26],,1924,Binford_2001_Table_8.07, +3770,B143,B019,20,,"Note, for this society, Binford provided two estimates (20, 0); this entry is one of those estimates",mcgee1898[279],,1900,Binford_2001_Table_8.07, +3771,B143,B019,0,,"Note, for this society, Binford provided two estimates (20, 0); this entry is one of those estimates",gilg1965[51];kroeber1931[8],,1900,Binford_2001_Table_8.07, +3772,B144,B019,,,,,,,, +3773,B145,B019,,,,,,,, +3774,B146,B019,3,,,meigs1939[47-50],,1880,Binford_2001_Table_8.07, +3775,B147,B019,,,,,,,, +3776,B148,B019,,,,,,,, +3777,B149,B019,2,,,benedict1924[371-74],,1870,Binford_2001_Table_8.07, +3778,B15,B019,3,,,"furerhaimendorf1943b[134, 142]",,1940,Binford_2001_Table_8.07, +3779,B150,B019,5,,,"sparkman1908[214, 225]",,1860,Binford_2001_Table_8.07, +3780,B151,B019,4,,"Note, original entry was: <4",gayton1948b[105],,1860,Binford_2001_Table_8.07, +3781,B152,B019,0,,,voegelin1938[43-44],,1850,Binford_2001_Table_8.07, +3782,B153,B019,,,,,,,, +3783,B154,B019,,,,,,,, +3784,B155,B019,,,,,,,, +3785,B156,B019,,,,,,,, +3786,B157,B019,7,,,gayton1948b[235],,1870,Binford_2001_Table_8.07, +3787,B158,B019,,,,,,,, +3788,B159,B019,9,,,gifford1926a[299],,1860,Binford_2001_Table_8.07, +3789,B16,B019,0,,,bernatzik1951[145-46],,1963,Binford_2001_Table_8.07, +3790,B160,B019,5,,"Note, original entry was: <5",dubois1935[55],,1860,Binford_2001_Table_8.07, +3791,B161,B019,,,,,,,, +3792,B162,B019,,,,,,,, +3793,B163,B019,,,,,,,, +3794,B164,B019,,,,,,,, +3795,B165,B019,,,,,,,, +3796,B166,B019,7,,"Note, original entry was: <7",nomland1935[159],,1860,Binford_2001_Table_8.07, +3797,B167,B019,,,,,,,, +3798,B168,B019,,,,,,,, +3799,B169,B019,3,,"Note, original entry was: <3",nomland1938[100],,,Binford_2001_Table_8.07, +3800,B17,B019,4,,,"gardner1965[18, 100];gardner1972[421]",,1963,Binford_2001_Table_8.07, +3801,B170,B019,,,,,,,, +3802,B171,B019,3,,"Note, original entry was: <3","foster1944[184, 185]",,1850,Binford_2001_Table_8.07, +3803,B172,B019,0,,,driver1936[208],,1860,Binford_2001_Table_8.07, +3804,B173,B019,,,,,,,, +3805,B174,B019,,,,,,,, +3806,B175,B019,7,,"Note, original entry was: <7",gifford1916[162],,1850,Binford_2001_Table_8.07, +3807,B176,B019,,,,,,,, +3808,B177,B019,3,,"Note, original entry was: <3",miller1978[250],,1860,Binford_2001_Table_8.07, +3809,B178,B019,,,,,,,, +3810,B179,B019,,,,,,,, +3811,B18,B019,2,,,williams1974[73],,1963,Binford_2001_Table_8.07, +3812,B180,B019,4,,"Note, original entry was: <4",wallace1978a[173],,1860,Binford_2001_Table_8.07, +3813,B181,B019,,,,,,,, +3814,B182,B019,,,,,,,, +3815,B183,B019,,,,,,,, +3816,B184,B019,,,,,,,, +3817,B185,B019,,,,,,,, +3818,B186,B019,4,,,heizerandmills1952[145],,1850,Binford_2001_Table_8.07, +3819,B187,B019,,,,,,,, +3820,B188,B019,5,,,"ray1963[83, 90]",,1860,Binford_2001_Table_8.07, +3821,B189,B019,20,,,"spier1930[45, 52-54]",,1860,Binford_2001_Table_8.07, +3822,B19,B019,6,,,"ehrenfels1952[66-68, 139-40]",,1946,Binford_2001_Table_8.07, +3823,B190,B019,18,,,baegert1863[367-68],,1760,Binford_2001_Table_8.07, +3824,B191,B019,,,,,,,, +3825,B192,B019,13,,,"smith1978a[439];steward1938[87-88, 91]",,1860,Binford_2001_Table_8.07, +3826,B193,B019,2,,"Note, original entry was: <2",schaedel1949[124],,1800,Binford_2001_Table_8.07, +3827,B194,B019,,,,,,,, +3828,B195,B019,5,,,steward1938[85],,1850,Binford_2001_Table_8.07, +3829,B196,B019,4.5,,,"corbusier1886[330];gifford1932a[191, 195]",,1870,Binford_2001_Table_8.07, +3830,B197,B019,,,,,,,, +3831,B198,B019,4.5,,,"kroeber1935[141, 143]",,1870,Binford_2001_Table_8.07, +3832,B199,B019,3,,,zigmond1986[404],,1860,Binford_2001_Table_8.07, +3833,B2,B019,5,,,"cadelina1982[72-74];warren1964[28, 76]",,1968,Binford_2001_Table_8.07, +3834,B20,B019,,,,,,,, +3835,B200,B019,,,,,,,, +3836,B201,B019,3.5,,,kelly1964[100];kellyandfowler1986[377-80],,1860,Binford_2001_Table_8.07, +3837,B202,B019,4,,,lowie1909[210],,1870,Binford_2001_Table_8.07, +3838,B203,B019,,,,,,,, +3839,B204,B019,3,,,kelly1964[99-100];kellyandfowler1986[377],,1860,Binford_2001_Table_8.07, +3840,B205,B019,10,,"Note, original entry was: <10",davis1965[17],,1870,Binford_2001_Table_8.07, +3841,B206,B019,11,,,fowlerandliljeblad1986[449];steward1938[58-59],,1860,Binford_2001_Table_8.07, +3842,B207,B019,,,,,,,, +3843,B208,B019,,,,,,,, +3844,B209,B019,10,,,callawayetal1986[352],,1860,Binford_2001_Table_8.07, +3845,B21,B019,,,,,,,, +3846,B210,B019,17,,,"fowler1992[152, 155]",,1870,Binford_2001_Table_8.07, +3847,B211,B019,5,,,steward1938[62-64],,1860,Binford_2001_Table_8.07, +3848,B212,B019,,,,,,,, +3849,B213,B019,,,,,,,, +3850,B214,B019,,,,,,,, +3851,B215,B019,,,,,,,, +3852,B216,B019,10,,"Note, original entry was: <10",harris1940[49],,1860,Binford_2001_Table_8.07, +3853,B217,B019,20,,,steward1938[118],,1860,Binford_2001_Table_8.07, +3854,B218,B019,,,,,,,, +3855,B219,B019,18,,,whiting1964[531],,1860,Binford_2001_Table_8.07, +3856,B22,B019,6,,,hitchcock1891[465],,1900,Binford_2001_Table_8.07, +3857,B221,B019,15,,,steward1938[174-75],,1860,Binford_2001_Table_8.07, +3858,B222,B019,,,,,,,, +3859,B223,B019,,,,,,,, +3860,B224,B019,,,,,,,, +3861,B225,B019,6.6,,,dazevedo1963[109];price1962[8-9],,1850,Binford_2001_Table_8.07, +3862,B226,B019,14.5,,,"kelly1932[163, 164]",,1870,Binford_2001_Table_8.07, +3863,B227,B019,,,,,,,, +3864,B228,B019,,,,,,,, +3865,B229,B019,,,,,,,, +3866,B23,B019,5,,,qiu1983[37],,1900,Binford_2001_Table_8.07, +3867,B230,B019,,,,,,,, +3868,B231,B019,12,,,whiting1950[100],,1870,Binford_2001_Table_8.07, +3869,B232,B019,,,,,,,, +3870,B233,B019,10,,,steward1938[113-14],,1860,Binford_2001_Table_8.07, +3871,B234,B019,,,,,,,, +3872,B24,B019,0,,,lee1967[52];shimkin1939[155],,1900,Binford_2001_Table_8.07, +3873,B240,B019,,,,,,,, +3874,B241,B019,25,,,"wallaceandhoebel1952[126, 133, 142]",,1870,Binford_2001_Table_8.07, +3875,B242,B019,17.5,,,"opler1937[201, 204]",,1880,Binford_2001_Table_8.07, +3876,B243,B019,57,,"Note: estimate is said to be for ""1800s""",mishkin1940[55];newcomb1961[201],,1850,Binford_2001_Table_8.07, +3877,B244,B019,,,,,,,, +3878,B245,B019,26,,,"moore1987[178, 179, 320]",,1860,Binford_2001_Table_8.07, +3879,B246,B019,22,,,"eggan1937[61-62];hilger1952[193, 197, 198]",,1860,Binford_2001_Table_8.07, +3880,B248,B019,48,,,denig1953[34],,1870,Binford_2001_Table_8.07, +3881,B249,B019,,,,,,,, +3882,B25,B019,5.3,,,"shternberg1933[165, 167]",,1920,Binford_2001_Table_8.07, +3883,B250,B019,,,,,,,, +3884,B252,B019,,,,,,,, +3885,B253,B019,,,,,,,, +3886,B254,B019,,,,,,,, +3887,B255,B019,20,,,dejong1912[192-97],,1850,Binford_2001_Table_8.07, +3888,B256,B019,21,,"Note, for this society, Binford provided two estimates, the focal year for the first estimate is not specified (21), but focal year of the second is 1787 (23); this entry is one of those estimates",wissler1911[11],,1850,Binford_2001_Table_8.07, +3889,B256,B019,23,,"Note, for this society, Binford provided two estimates, the focal year for the first estimate is not specified (21), but focal year of the second is 1787 (23); this entry is one of those estimates. For this entry, Focal year is 1787",lewis1973[40],,1787,Binford_2001_Table_8.07, +3890,B257,B019,25,,,"denig1930[504, 511]",,1870,Binford_2001_Table_8.07, +3891,B258,B019,,,,,,,, +3892,B259,B019,,,,,,,, +3893,B26,B019,3,,,"jochelson191926[79-85, 110-11]",,1900,Binford_2001_Table_8.07, +3894,B260,B019,,,,,,,, +3895,B268,B019,,,,,,,, +3896,B269,B019,,,,,,,, +3897,B27,B019,,,,,,,, +3898,B270,B019,10,,,"smith1940b[38-39, 166]",,1870,Binford_2001_Table_8.07, +3899,B271,B019,6,,,eells1887a[612-15],,1850,Binford_2001_Table_8.07, +3900,B272,B019,,,,,,,, +3901,B273,B019,9,,,"drucker1951[281, 284, 287, 297]",,1880,Binford_2001_Table_8.07, +3902,B274,B019,8,,,"ray1938[63-67, 73]",,1850,Binford_2001_Table_8.07, +3903,B275,B019,,,,,,,, +3904,B276,B019,,,,,,,, +3905,B277,B019,,,,,,,, +3906,B278,B019,,,,,,,, +3907,B279,B019,,,,,,,, +3908,B28,B019,3,,,bogoras1904[30];moore1923[367],,1860,Binford_2001_Table_8.07, +3909,B280,B019,,,,,,,, +3910,B281,B019,,,,,,,, +3911,B282,B019,,,,,,,, +3912,B283,B019,,,,,,,, +3913,B284,B019,,,,,,,, +3914,B285,B019,8,,,eells1884[35-36],,1860,Binford_2001_Table_8.07, +3915,B286,B019,6,,,"swan1870[12, 13]",,1860,Binford_2001_Table_8.07, +3916,B287,B019,,,,,,,, +3917,B288,B019,,,,,,,, +3918,B289,B019,,,,,,,, +3919,B290,B019,,,,,,,, +3920,B291,B019,9,,,"mcilwraith1948[371-72, 379]",,1880,Binford_2001_Table_8.07, +3921,B292,B019,,,,,,,, +3922,B293,B019,,,,,,,, +3923,B294,B019,,,,,,,, +3924,B295,B019,,,,,,,, +3925,B296,B019,,,,,,,, +3926,B297,B019,,,,,,,, +3927,B298,B019,20,,,lantis1984[179];mickey1955[15],,1830,Binford_2001_Table_8.07, +3928,B299,B019,19,,,"lantis1960[204-14, 233]",,1930,Binford_2001_Table_8.07, +3929,B3,B019,,,,,,,, +3930,B315,B019,12,,,"murdock1980[130, 141]",,1850,Binford_2001_Table_8.07, +3931,B316,B019,,,,,,,, +3932,B317,B019,,,,,,,, +3933,B318,B019,,,,,,,, +3934,B319,B019,10,,,"spierandsapir1930[22, 171, 218]",,1860,Binford_2001_Table_8.07, +3935,B320,B019,,,,,,,, +3936,B321,B019,,,,,,,, +3937,B322,B019,,,,,,,, +3938,B323,B019,,,,,,,, +3939,B324,B019,40,,,spinden1908[250],,1850,Binford_2001_Table_8.07, +3940,B325,B019,25,,,"teit1900[321, 326]",,1860,Binford_2001_Table_8.07, +3941,B326,B019,,,,,,,, +3942,B327,B019,,,,,,,, +3943,B328,B019,12,,,"kinietz1947[31-33, 128, 137]",,1800,Binford_2001_Table_8.07, +3944,B329,B019,13,,,"speck1922[144];wallisandwallis1955[233, 237, 240]",,1700,Binford_2001_Table_8.07, +3945,B330,B019,20,,,"teit1930[382];turneyhigh1937[86, 94]",,1860,Binford_2001_Table_8.07, +3946,B331,B019,17,,,hickerson1967[56];landes1937a[69-71],Emo,1880,Binford_2001_Table_8.07, +3947,B332,B019,15,,"Note, for this society, Binford provided two estimates, the focal year for the first estimate is not specified (15), but focal year of the second is 871-1878 (8); this entry is one of those estimates. For this entry, Focal year not specified, assume same as other data",hallowell1938[240];hallowell1955[300];skinner1911[151],,1870,Binford_2001_Table_8.07, +3948,B332,B019,8,,"Note, for this society, Binford provided two estimates, the focal year for the first estimate is not specified (15), but focal year of the second is 871-1878 (8); this entry is one of those estimates. For this entry, focal time was given as ""1871-1878""",hallowell1938[240];hallowell1955[300];skinner1911[151],,1875,Binford_2001_Table_8.07, +3949,B333,B019,23,,,teit1900[324],,1850,Binford_2001_Table_8.07, +3950,B334,B019,13,,,dunning1959[138],,1940,Binford_2001_Table_8.07, +3951,B335,B019,,,,,,,, +3952,B336,B019,,,,,,,, +3953,B337,B019,13,,,cameron1890[265];grant1890[320],,1800,Binford_2001_Table_8.07, +3954,B338,B019,16.3,,Note: estimate is for the year 1828,lips1947a[419-54];rogers1963a,,1828,Binford_2001_Table_8.07, +3955,B339,B019,,,,,,,, +3956,B340,B019,16,,,"morantz1983[87, 89]",,1900,Binford_2001_Table_8.07, +3957,B341,B019,17,,,rogersandblack1976[19],,1890,Binford_2001_Table_8.07, +3958,B342,B019,7,,,lane1952[29],,1880,Binford_2001_Table_8.07, +3959,B343,B019,10,,,jenness1937[52],,1880,Binford_2001_Table_8.07, +3960,B344,B019,24,,Note: estimate is for the year 1880,goddard1916[221];ives1985[156],,1880,Binford_2001_Table_8.07, +3961,B345,B019,9,,,"helm1961[48, 53, 72]",,1860,Binford_2001_Table_8.07, +3962,B346,B019,6,,"Note, original entry was: >6",honigmann1954[131],,1920,Binford_2001_Table_8.07, +3963,B347,B019,5,,"Note, original entry was: <5",emmons1911[98];maclachlan1981[464],,1870,Binford_2001_Table_8.07, +3964,B348,B019,3,,,lane1981[405],,1880,Binford_2001_Table_8.07, +3965,B349,B019,,,,,,,, +3966,B35,B019,,,,,,,, +3967,B350,B019,,,,,,,, +3968,B351,B019,3,,,crowandobley1981[509],,1880,Binford_2001_Table_8.07, +3969,B352,B019,5,,"Note, original entry was: <5",savishinskyandhara1981[319];whiting1964[530],,1860,Binford_2001_Table_8.07, +3970,B353,B019,5,,"Note, original entry was: <5","honigmann1956b[61, 62]",,1900,Binford_2001_Table_8.07, +3971,B354,B019,,,,,,,, +3972,B355,B019,11,,,smith1981[277-79],,1880,Binford_2001_Table_8.07, +3973,B356,B019,4,,,osgood1936[142];slobodin1981[524],,1880,Binford_2001_Table_8.07, +3974,B357,B019,3,,,"osgood1958[160];snow1981[609, 610]",,1880,Binford_2001_Table_8.07, +3975,B358,B019,,,,,,,, +3976,B359,B019,,,,,,,, +3977,B36,B019,,,,,,,, +3978,B360,B019,18,,,morantz1983[87];skinner1911[151],,1900,Binford_2001_Table_8.07, +3979,B361,B019,4,,Note: estimate is for the year 1807,helm1972[74];keith1960[114],,1807,Binford_2001_Table_8.07, +3980,B362,B019,8,,,"osgood1937[161, 164];townsend1963[214];townsend1981[633]",,1870,Binford_2001_Table_8.07, +3981,B363,B019,,,,,,,, +3982,B364,B019,,,,,,,, +3983,B365,B019,,,,,,,, +3984,B369,B019,4,,,ray1992[286],,1870,Binford_2001_Table_8.07, +3985,B37,B019,,,,,,,, +3986,B370,B019,2,,,giddings1956[26];giddingsperscomm1963,,1890,Binford_2001_Table_8.07, +3987,B371,B019,9,,,burch1975[269-72],,1880,Binford_2001_Table_8.07, +3988,B372,B019,36,,,taylor1974[68-69],,1890,Binford_2001_Table_8.07, +3989,B373,B019,25,,,saladindanglure1984[493],,1890,Binford_2001_Table_8.07, +3990,B374,B019,22,,Note: estimate is for the year 1922,"arima1984[455];rasmussen1930[11-13, 22-23, 37-38]",,1922,Binford_2001_Table_8.07, +3991,B375,B019,10,,,binford1969,,1900,Binford_2001_Table_8.07, +3992,B377,B019,12,,,binfordandchasko1976[73-77],,1950,Binford_2001_Table_8.07, +3993,B378,B019,5,,,smith1984[353],,1910,Binford_2001_Table_8.07, +3994,B379,B019,12,,,moore1923[367],,1920,Binford_2001_Table_8.07, +3995,B38,B019,23,,,gragson1989[123];petrullo1939[232],,1989,Binford_2001_Table_8.07, +3996,B380,B019,2,,,burch1975[260-69],,1880,Binford_2001_Table_8.07, +3997,B381,B019,5.6,,,damas1972[42];damas1984[401];rasmussen1932[78-85],,1920,Binford_2001_Table_8.07, +3998,B382,B019,3.1,,,rasmussen1931[85-90],,1920,Binford_2001_Table_8.07, +3999,B383,B019,3,,,mathiassen1928[15-17];vandeveldeetal1992[3],,1880,Binford_2001_Table_8.07, +4000,B384,B019,13,,,mathiassen1928[29-36],,1920,Binford_2001_Table_8.07, +4001,B385,B019,5,,,rink1875[23],,1880,Binford_2001_Table_8.07, +4002,B386,B019,3,,,"boas1964[18, 69, 115]",,1880,Binford_2001_Table_8.07, +4003,B387,B019,6.3,,,"balikci1970[102, 156];rasmussen1931[85-90]",,1880,Binford_2001_Table_8.07, +4004,B388,B019,,,,,,,, +4005,B389,B019,12,,"Note, one of two original entries was <12 (the other was 7.4); this entry is one of those estimates. For this entry, Note, original entry was ""<12."" Focal year is 1852.",burch1975[102];simpson1875[254];spencer1959[250],,1852,Binford_2001_Table_8.07, +4006,B389,B019,7.4,,"Note, one of two original entries was <12 (the other was 7.4); this entry is one of those estimates",burch1975[102];simpson1875[254];spencer1959[250],,1852,Binford_2001_Table_8.07, +4007,B39,B019,3,,,"metzger1968[83, 85];wilbert1957[89]",,1960,Binford_2001_Table_8.07, +4008,B390,B019,0.5,,,"gilberg1984[587];steensby1910[325, 369]",,1880,Binford_2001_Table_8.07, +4009,B4,B019,7,,,"rizvi1990[20, 41]",,1989,Binford_2001_Table_8.07, +4010,B40,B019,16,,,politisperscomm1993,,1990,Binford_2001_Table_8.07, +4011,B41,B019,5,,,cook1908[387];levistrauss1936[276],,1920,Binford_2001_Table_8.07, +4012,B42,B019,25,,,metraux1946guato[417],,1901,Binford_2001_Table_8.07, +4013,B43,B019,28,,,"holmberg1950[51, 82-83, 216]",,1940,Binford_2001_Table_8.07, +4014,B44,B019,4,,,stearman1989[94],,1968,Binford_2001_Table_8.07, +4015,B45,B019,17,,,levistrauss1948b[366];levistrauss1970[269];oberg1953[103-04],,1938,Binford_2001_Table_8.07, +4016,B46,B019,12,,,gogginandsturtevant1964[189],,1600,Binford_2001_Table_8.07, +4017,B47,B019,6,,,clastres1968[19-23];metrauxandbaldus1946[442],,1975,Binford_2001_Table_8.07, +4018,B48,B019,8,,,metraux1946botocudo[537],,1880,Binford_2001_Table_8.07, +4019,B49,B019,30,,,kozaketal1979[360],,1954,Binford_2001_Table_8.07, +4020,B5,B019,0,,,temple1903[65],,1952,Binford_2001_Table_8.07, +4021,B50,B019,32,,,henry1964[45],,1910,Binford_2001_Table_8.07, +4022,B51,B019,4,,"Note, original entry was: <4",cooper1946c[149],,1870,Binford_2001_Table_8.07, +4023,B52,B019,2,,,cooper1946d[52],,1880,Binford_2001_Table_8.07, +4024,B53,B019,4,,,bird1946[77],,1900,Binford_2001_Table_8.07, +4025,B54,B019,8,,"Note, for this society, Binford provided two estimates (8, 28); this entry is one of those estimates",chapman1982[58];cooper1946b[115],,1880,Binford_2001_Table_8.07, +4026,B54,B019,28,,"Note, for this society, Binford provided two estimates (8, 28); this entry is one of those estimates","gusinde1931[444, 479]",,1880,Binford_2001_Table_8.07, +4027,B55,B019,3,,,cooper1946a[92],,1870,Binford_2001_Table_8.07, +4028,B6,B019,,,,,,,, +4029,B60,B019,5,,,bahuchet1979[1001],,1980,Binford_2001_Table_8.07, +4030,B61,B019,0,,,heymer1980[200];lalouel1950[179],,1976,Binford_2001_Table_8.07, +4031,B62,B019,4,,,terashima1980[233],,1977,Binford_2001_Table_8.07, +4032,B63,B019,16,,,cavallisforza1986a[37],,1980,Binford_2001_Table_8.07, +4033,B64,B019,36,,,baileyandpeacock1988[59];schebesta1962a[244],,1980,Binford_2001_Table_8.07, +4034,B65,B019,11,,,harako1976[46-47];putnam1948[336],,1930,Binford_2001_Table_8.07, +4035,B66,B019,,,,,,,, +4036,B67,B019,,,,,,,, +4037,B68,B019,,,,,,,, +4038,B69,B019,3,,,bleek1931a[427];oconnellperscomm1982,,1910,Binford_2001_Table_8.07, +4039,B7,B019,8,,,"reed1904[57, 60]",,1903,Binford_2001_Table_8.07, +4040,B70,B019,0.5,,,blackburn1971[266],,1920,Binford_2001_Table_8.07, +4041,B71,B019,,,,,,,, +4042,B72,B019,10,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (10), the second to Dobe !Kung in the 1960s (5), and the third to the Southern Auen !Kung (3); this entry is one of those estimates. For this entry, focal time was given as ""1950s""","marshall1959[336, 350]",Nyae Nyae !Kung,1955,Binford_2001_Table_8.07, +4043,B72,B019,5,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (10), the second to Dobe !Kung in the 1960s (5), and the third to the Southern Auen !Kung (3); this entry is one of those estimates. For this entry, focal time was given as ""1960s""",howell1979[243-44];lee1972a[358],Dobe !Kung,1965,Binford_2001_Table_8.07, +4044,B72,B019,3,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (10), the second to Dobe !Kung in the 1960s (5), and the third to the Southern Auen !Kung (3); this entry is one of those estimates. For this entry, Focal time not specified, assumed to be 1950, as for data in other tables",kaufmann1910[156];schapera1930[104],Southern Auen !Kung,1950,Binford_2001_Table_8.07, +4045,B73,B019,4,,"Note, original entry was: <4",bleek1928[33-34];schapera1930[104],,1910,Binford_2001_Table_8.07, +4046,B74,B019,12,,,"silberbauer1981a[149, 155]",,1962,Binford_2001_Table_8.07, +4047,B75,B019,12,,,vierich1981[146],,1976,Binford_2001_Table_8.07, +4048,B76,B019,2,,,eibleibesfeldt1948[29-34],,1968,Binford_2001_Table_8.07, +4049,B77,B019,3,,,dart1937b,,1920,Binford_2001_Table_8.07, +4050,B78,B019,,,,,,,, +4051,B79,B019,,,,,,,, +4052,B8,B019,0,,,man1883[81];whiting1964[529],,1870,Binford_2001_Table_8.07, +4053,B82,B019,,,,,,,, +4054,B83,B019,,,,,,,, +4055,B84,B019,45,,,berndtandberndt1970[95];petersonandlong1986[137],,1978,Binford_2001_Table_8.07, +4056,B85,B019,45,,,long1970[303],,1970,Binford_2001_Table_8.07, +4057,B86,B019,42,,,petersonandlong1986[137],,1973,Binford_2001_Table_8.07, +4058,B87,B019,38,,"Note, for this society, Binford provided two estimates (38, 36.2); this entry is one of those estimates","hiatt1965[36, 77]",,1950,Binford_2001_Table_8.07, +4059,B87,B019,36.2,,"Note, for this society, Binford provided two estimates (38, 36.2); this entry is one of those estimates",long1970[302],,1950,Binford_2001_Table_8.07, +4060,B88,B019,43,,,long1970[303];petersonandlong1986[154],,1930,Binford_2001_Table_8.07, +4061,B89,B019,,,,,,,, +4062,B9,B019,3,,,"evans1937[250];schebesta1962a[220, 239];whiting1964[529]",,1920,Binford_2001_Table_8.07, +4063,B90,B019,18,,,petersonandlong1986[137],,1920,Binford_2001_Table_8.07, +4064,B91,B019,40,,,spencer1966[49],,1920,Binford_2001_Table_8.07, +4065,B92,B019,,,,,,,, +4066,B93,B019,,,,,,,, +4067,B94,B019,43,,,petersonandlong1986[95-99];sharp1934[427];sharp1940[490],,1937,Binford_2001_Table_8.07, +4068,B95,B019,53.8,,,"goodale1962[455];hart1970[296];hartandpilling1960[16, 36, 66];petersonandlong1986[137]",,1920,Binford_2001_Table_8.07, +4069,B96,B019,,,,,,,, +4070,B97,B019,48,,,"rose1960[12, 69, 248]",,1930,Binford_2001_Table_8.07, +4071,B98,B019,,,,,,,, +4072,B99,B019,40,,,stanner1933[391],,1900,Binford_2001_Table_8.07, +4073,B1,B002,30,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_5.01, +4074,B10,B002,30,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_5.01, +4075,B100,B002,30,,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_5.01, +4076,B101,B002,35,,,kaberry1939,,1934,Binford_2001_Table_5.01, +4077,B102,B002,5,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_5.01, +4078,B103,B002,7,,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_5.01, +4079,B104,B002,40,,,,,,Binford_2001_Table_5.01, +4080,B105,B002,7,,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_5.01, +4081,B106,B002,10,,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_5.01, +4082,B107,B002,42,,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_5.01, +4083,B108,B002,30,,,kaberry1939;nind1831,,1934,Binford_2001_Table_5.01, +4084,B109,B002,30,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_5.01, +4085,B11,B002,16,,,morris1982a,,1972,Binford_2001_Table_5.01, +4086,B110,B002,15,,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_5.01, +4087,B111,B002,30,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01, +4088,B112,B002,20,,,petersonandlong1986,,1968,Binford_2001_Table_5.01, +4089,B113,B002,35,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_5.01, +4090,B114,B002,5,,,colliverandwoolston1975,,1848,Binford_2001_Table_5.01, +4091,B115,B002,30,,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_5.01, +4092,B116,B002,35,,,duncankemp1964,,1900,Binford_2001_Table_5.01, +4093,B117,B002,35,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_5.01, +4094,B118,B002,25,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_5.01, +4095,B119,B002,25,,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_5.01, +4096,B12,B002,15,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_5.01, +4097,B120,B002,35,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_5.01, +4098,B121,B002,25,,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_5.01, +4099,B122,B002,30,,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +4100,B123,B002,35,,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_5.01, +4101,B124,B002,45,,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_5.01, +4102,B125,B002,35,,,parker1905,,1880,Binford_2001_Table_5.01, +4103,B126,B002,45,,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_5.01, +4104,B127,B002,45,,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +4105,B128,B002,25,,,,,1890,Binford_2001_Table_5.01, +4106,B129,B002,20,,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +4107,B13,B002,20,,,rai1982;wastl1957,,1979,Binford_2001_Table_5.01, +4108,B130,B002,35,,,,,1910,Binford_2001_Table_5.01, +4109,B131,B002,15,,,,,1850,Binford_2001_Table_5.01, +4110,B132,B002,30,,,nind1831,,1850,Binford_2001_Table_5.01, +4111,B133,B002,20,,,williams1985,,1850,Binford_2001_Table_5.01, +4112,B134,B002,25,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_5.01, +4113,B135,B002,30,,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_5.01, +4114,B136,B002,35,,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_5.01, +4115,B137,B002,25,,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_5.01, +4116,B14,B002,35,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_5.01, +4117,B143,B002,10,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_5.01, +4118,B144,B002,25,,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_5.01, +4119,B145,B002,25,,,gifford1926b;strong1929a,,1870,Binford_2001_Table_5.01, +4120,B146,B002,15,,,meigs1939,,1880,Binford_2001_Table_5.01, +4121,B147,B002,25,,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_5.01, +4122,B148,B002,20,,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_5.01, +4123,B149,B002,40,,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_5.01, +4124,B15,B002,10,,,furerhaimendorf1943b,,1940,Binford_2001_Table_5.01, +4125,B150,B002,15,,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_5.01, +4126,B151,B002,40,,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_5.01, +4127,B152,B002,35,,,voegelin1938,,1850,Binford_2001_Table_5.01, +4128,B153,B002,30,,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_5.01, +4129,B154,B002,25,,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_5.01, +4130,B155,B002,30,,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_5.01, +4131,B156,B002,10,,,,,1770,Binford_2001_Table_5.01, +4132,B157,B002,30,,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_5.01, +4133,B158,B002,15,,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +4134,B159,B002,10,,,cook1956;gifford1926a,,1860,Binford_2001_Table_5.01, +4135,B16,B002,20,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_5.01, +4136,B160,B002,25,,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_5.01, +4137,B161,B002,5,,,cookandheizer1965,,1860,Binford_2001_Table_5.01, +4138,B162,B002,30,,,dixon1910,,1860,Binford_2001_Table_5.01, +4139,B163,B002,30,,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_5.01, +4140,B164,B002,20,,,gifford1926b,,1805,Binford_2001_Table_5.01, +4141,B165,B002,15,,,barrett1908;cook1956,,1860,Binford_2001_Table_5.01, +4142,B166,B002,15,,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_5.01, +4143,B167,B002,20,,,,,,Binford_2001_Table_5.01, +4144,B168,B002,10,,,collierandthalman1991,,1850,Binford_2001_Table_5.01, +4145,B169,B002,10,,,cook1956;nomland1938,,,Binford_2001_Table_5.01, +4146,B17,B002,14,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_5.01, +4147,B170,B002,10,,,cook1955,,,Binford_2001_Table_5.01, +4148,B171,B002,15,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_5.01, +4149,B172,B002,15,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_5.01, +4150,B173,B002,20,,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +4151,B174,B002,25,,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +4152,B175,B002,35,,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_5.01, +4153,B176,B002,20,,,gray1987,,1860,Binford_2001_Table_5.01, +4154,B177,B002,15,,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +4155,B178,B002,10,,,cook1956;drucker1940,,1870,Binford_2001_Table_5.01, +4156,B179,B002,25,,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_5.01, +4157,B18,B002,35,,,senandsen1955;williams1974,,1963,Binford_2001_Table_5.01, +4158,B180,B002,10,,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_5.01, +4159,B181,B002,30,,,gray1987,,1870,Binford_2001_Table_5.01, +4160,B182,B002,10,,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_5.01, +4161,B183,B002,40,,,gifford1926b,,1860,Binford_2001_Table_5.01, +4162,B184,B002,5,,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_5.01, +4163,B185,B002,30,,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_5.01, +4164,B186,B002,10,,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_5.01, +4165,B187,B002,40,,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_5.01, +4166,B188,B002,30,,,gifford1926b;ray1963,,1860,Binford_2001_Table_5.01, +4167,B189,B002,20,,,gifford1926b;spier1930,,1860,Binford_2001_Table_5.01, +4168,B19,B002,5,,,ehrenfels1952,,1946,Binford_2001_Table_5.01, +4169,B190,B002,15,,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_5.01, +4170,B191,B002,20,,,,,1570,Binford_2001_Table_5.01, +4171,B192,B002,25,,,smith1978a;steward1938,,1860,Binford_2001_Table_5.01, +4172,B193,B002,15,,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_5.01, +4173,B194,B002,30,,,,,1715,Binford_2001_Table_5.01, +4174,B195,B002,35,,,steward1938,,1850,Binford_2001_Table_5.01, +4175,B196,B002,35,,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_5.01, +4176,B197,B002,40,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +4177,B198,B002,35,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_5.01, +4178,B199,B002,40,,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_5.01, +4179,B2,B002,30,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_5.01, +4180,B20,B002,15,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_5.01, +4181,B200,B002,40,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +4182,B201,B002,35,,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +4183,B202,B002,30,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_5.01, +4184,B203,B002,45,,,steward1938;thomas1983,,1860,Binford_2001_Table_5.01, +4185,B204,B002,40,,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_5.01, +4186,B205,B002,45,,,davis1965,,1870,Binford_2001_Table_5.01, +4187,B206,B002,45,,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_5.01, +4188,B207,B002,50,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +4189,B208,B002,20,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_5.01, +4190,B209,B002,30,,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_5.01, +4191,B21,B002,10,,,bird1983;birddavid1987,,1978,Binford_2001_Table_5.01, +4192,B210,B002,30,,,fowler1992,,1870,Binford_2001_Table_5.01, +4193,B211,B002,30,,,steward1938,,1860,Binford_2001_Table_5.01, +4194,B212,B002,50,,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +4195,B213,B002,35,,,steward1938,,1870,Binford_2001_Table_5.01, +4196,B214,B002,40,,,steward1938,,1860,Binford_2001_Table_5.01, +4197,B215,B002,55,,,steward1938,,1870,Binford_2001_Table_5.01, +4198,B216,B002,45,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_5.01, +4199,B217,B002,45,,,steward1938,,1860,Binford_2001_Table_5.01, +4200,B218,B002,40,,,steward1938,,1860,Binford_2001_Table_5.01, +4201,B219,B002,45,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_5.01, +4202,B22,B002,15,,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_5.01, +4203,B221,B002,45,,,steward1938,,1860,Binford_2001_Table_5.01, +4204,B222,B002,55,,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_5.01, +4205,B223,B002,50,,,lowie1924,,1870,Binford_2001_Table_5.01, +4206,B224,B002,40,,,steward1938,,1860,Binford_2001_Table_5.01, +4207,B225,B002,37,,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_5.01, +4208,B226,B002,30,,,brink1969;kelly1932,,1870,Binford_2001_Table_5.01, +4209,B227,B002,65,,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_5.01, +4210,B228,B002,37,,,steward1938,,1860,Binford_2001_Table_5.01, +4211,B229,B002,55,,,steward1938,,1860,Binford_2001_Table_5.01, +4212,B23,B002,65,,,qiu1983,,1900,Binford_2001_Table_5.01, +4213,B230,B002,35,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_5.01, +4214,B231,B002,35,,,whiting1950,,1870,Binford_2001_Table_5.01, +4215,B232,B002,55,,,boas1899;steward1938,,1860,Binford_2001_Table_5.01, +4216,B233,B002,55,,,steward1938,,1860,Binford_2001_Table_5.01, +4217,B234,B002,50,,,boas1899;steward1974b,,1860,Binford_2001_Table_5.01, +4218,B24,B002,45,,,lee1967;shimkin1939,,1900,Binford_2001_Table_5.01, +4219,B240,B002,35,,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_5.01, +4220,B241,B002,80,,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_5.01, +4221,B242,B002,40,,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_5.01, +4222,B243,B002,80,,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_5.01, +4223,B244,B002,90,,,bamforth1988;ewers1955,,1860,Binford_2001_Table_5.01, +4224,B245,B002,80,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_5.01, +4225,B246,B002,80,,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_5.01, +4226,B248,B002,80,,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_5.01, +4227,B249,B002,90,,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_5.01, +4228,B25,B002,12,,,shternberg1933,,1920,Binford_2001_Table_5.01, +4229,B250,B002,45,,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_5.01, +4230,B252,B002,50,,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +4231,B253,B002,80,,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_5.01, +4232,B254,B002,75,,,skinner1914,,1850,Binford_2001_Table_5.01, +4233,B255,B002,80,,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_5.01, +4234,B256,B002,75,,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_5.01, +4235,B257,B002,70,,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +4236,B258,B002,75,,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_5.01, +4237,B259,B002,85,,,bamforth1988;ewers1955,,1850,Binford_2001_Table_5.01, +4238,B26,B002,55,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_5.01, +4239,B260,B002,82,,,bamforth1988;jenness1938,,1880,Binford_2001_Table_5.01, +4240,B268,B002,25,,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_5.01, +4241,B269,B002,15,,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +4242,B27,B002,55,,,chard1963;popov1966,,1933,Binford_2001_Table_5.01, +4243,B270,B002,15,,,smith1940a;smith1940b,,1870,Binford_2001_Table_5.01, +4244,B271,B002,20,,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_5.01, +4245,B272,B002,20,,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_5.01, +4246,B273,B002,5,,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_5.01, +4247,B274,B002,10,,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_5.01, +4248,B275,B002,10,,,boyd1990;zenk1990,,1860,Binford_2001_Table_5.01, +4249,B276,B002,40,,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_5.01, +4250,B277,B002,15,,,stern1934,,1880,Binford_2001_Table_5.01, +4251,B278,B002,15,,,olson1936a;schalk1978,,1860,Binford_2001_Table_5.01, +4252,B279,B002,15,,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_5.01, +4253,B28,B002,30,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_5.01, +4254,B280,B002,30,,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_5.01, +4255,B281,B002,25,,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_5.01, +4256,B282,B002,15,,,kennedyandbouchard1990,,1860,Binford_2001_Table_5.01, +4257,B283,B002,20,,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_5.01, +4258,B284,B002,15,,,pettitt1950,,1880,Binford_2001_Table_5.01, +4259,B285,B002,20,,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_5.01, +4260,B286,B002,10,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_5.01, +4261,B287,B002,35,,,olson1940;schalk1978,,1880,Binford_2001_Table_5.01, +4262,B288,B002,10,,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +4263,B289,B002,20,,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_5.01, +4264,B290,B002,10,,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +4265,B291,B002,25,,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_5.01, +4266,B292,B002,15,,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_5.01, +4267,B293,B002,30,,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_5.01, +4268,B294,B002,5,,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_5.01, +4269,B295,B002,10,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_5.01, +4270,B296,B002,20,,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_5.01, +4271,B297,B002,10,,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_5.01, +4272,B298,B002,5,,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_5.01, +4273,B299,B002,15,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_5.01, +4274,B3,B002,25,,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_5.01, +4275,B315,B002,20,,,murdock1980,,1850,Binford_2001_Table_5.01, +4276,B316,B002,30,,,,,1860,Binford_2001_Table_5.01, +4277,B317,B002,25,,,teit1928,,1870,Binford_2001_Table_5.01, +4278,B318,B002,25,,,,,1880,Binford_2001_Table_5.01, +4279,B319,B002,15,,,spierandsapir1930,,1860,Binford_2001_Table_5.01, +4280,B320,B002,55,,,teit1930,,1860,Binford_2001_Table_5.01, +4281,B321,B002,25,,,clineetal1938,,1880,Binford_2001_Table_5.01, +4282,B322,B002,30,,,grabert1974;teit1930,,1860,Binford_2001_Table_5.01, +4283,B323,B002,35,,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_5.01, +4284,B324,B002,15,,,spinden1908,,1850,Binford_2001_Table_5.01, +4285,B325,B002,25,,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_5.01, +4286,B326,B002,35,,,teit1930,,1870,Binford_2001_Table_5.01, +4287,B327,B002,40,,,jenness1935;quimby1962,,1870,Binford_2001_Table_5.01, +4288,B328,B002,45,,,kinietz1947,,1800,Binford_2001_Table_5.01, +4289,B329,B002,55,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_5.01, +4290,B330,B002,60,,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_5.01, +4291,B331,B002,60,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_5.01, +4292,B332,B002,65,,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_5.01, +4293,B333,B002,30,,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_5.01, +4294,B334,B002,60,,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_5.01, +4295,B335,B002,65,,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_5.01, +4296,B336,B002,55,,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_5.01, +4297,B337,B002,55,,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_5.01, +4298,B338,B002,74,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_5.01, +4299,B339,B002,60,,,dunning1959;rogers1969,,1850,Binford_2001_Table_5.01, +4300,B340,B002,55,,,morantz1983;rogers1969,,1900,Binford_2001_Table_5.01, +4301,B341,B002,55,,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_5.01, +4302,B342,B002,50,,,lane1952;tanner1944,,1880,Binford_2001_Table_5.01, +4303,B343,B002,60,,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_5.01, +4304,B344,B002,55,,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_5.01, +4305,B345,B002,60,,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_5.01, +4306,B346,B002,65,,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_5.01, +4307,B347,B002,60,,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_5.01, +4308,B348,B002,40,,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +4309,B349,B002,47,,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_5.01, +4310,B35,B002,10,,,,,1950,Binford_2001_Table_5.01, +4311,B350,B002,75,,,gillespie1981,,1800,Binford_2001_Table_5.01, +4312,B351,B002,70,,,adney1900;crowandobley1981,,1880,Binford_2001_Table_5.01, +4313,B352,B002,65,,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_5.01, +4314,B353,B002,40,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_5.01, +4315,B354,B002,60,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_5.01, +4316,B355,B002,70,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_5.01, +4317,B356,B002,65,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_5.01, +4318,B357,B002,43,,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_5.01, +4319,B358,B002,75,,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_5.01, +4320,B359,B002,40,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_5.01, +4321,B36,B002,35,,,metraux1948,,1960,Binford_2001_Table_5.01, +4322,B360,B002,56,,,morantz1983;skinner1911,,1900,Binford_2001_Table_5.01, +4323,B361,B002,66,,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_5.01, +4324,B362,B002,51,,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_5.01, +4325,B363,B002,62,,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_5.01, +4326,B364,B002,36,,,michael1967;snow1981,,1860,Binford_2001_Table_5.01, +4327,B365,B002,73,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_5.01, +4328,B369,B002,15,,,ray1992;seltzer1933,,1870,Binford_2001_Table_5.01, +4329,B37,B002,40,,,kloos1977;kloos1982,,1968,Binford_2001_Table_5.01, +4330,B370,B002,63,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_5.01, +4331,B371,B002,21,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_5.01, +4332,B372,B002,29,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_5.01, +4333,B373,B002,18,,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_5.01, +4334,B374,B002,55,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_5.01, +4335,B375,B002,75,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_5.01, +4336,B377,B002,89,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_5.01, +4337,B378,B002,38,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_5.01, +4338,B379,B002,10,,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_5.01, +4339,B38,B002,6,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_5.01, +4340,B380,B002,35,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_5.01, +4341,B381,B002,25,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_5.01, +4342,B382,B002,30,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_5.01, +4343,B383,B002,35,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_5.01, +4344,B384,B002,15,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_5.01, +4345,B385,B002,15,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_5.01, +4346,B386,B002,5,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_5.01, +4347,B387,B002,25,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_5.01, +4348,B388,B002,10,,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_5.01, +4349,B389,B002,25,,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_5.01, +4350,B39,B002,20,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_5.01, +4351,B390,B002,30,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_5.01, +4352,B4,B002,15,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_5.01, +4353,B40,B002,11,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_5.01, +4354,B41,B002,20,,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_5.01, +4355,B42,B002,10,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_5.01, +4356,B43,B002,50,,,holmberg1950,,1940,Binford_2001_Table_5.01, +4357,B44,B002,60,,,stearman1989,,1968,Binford_2001_Table_5.01, +4358,B45,B002,20,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_5.01, +4359,B46,B002,10,,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_5.01, +4360,B47,B002,62,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01, +4361,B48,B002,30,,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_5.01, +4362,B49,B002,35,,,kozaketal1979,,1954,Binford_2001_Table_5.01, +4363,B5,B002,20,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_5.01, +4364,B50,B002,60,,,henry1964,,1910,Binford_2001_Table_5.01, +4365,B51,B002,65,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_5.01, +4366,B52,B002,20,,,cooper1946d,,1880,Binford_2001_Table_5.01, +4367,B53,B002,20,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_5.01, +4368,B54,B002,75,,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_5.01, +4369,B55,B002,25,,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_5.01, +4370,B6,B002,20,,,temple1903,,1906,Binford_2001_Table_5.01, +4371,B60,B002,20,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_5.01, +4372,B61,B002,9,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_5.01, +4373,B62,B002,14,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_5.01, +4374,B63,B002,14,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_5.01, +4375,B64,B002,11,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_5.01, +4376,B65,B002,9,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_5.01, +4377,B66,B002,15,,,kellyandpoyer1993,,,Binford_2001_Table_5.01, +4378,B67,B002,35,,,clark1951,,1950,Binford_2001_Table_5.01, +4379,B68,B002,45,,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_5.01, +4380,B69,B002,40,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_5.01, +4381,B7,B002,8,,,fox1952;reed1904,,1903,Binford_2001_Table_5.01, +4382,B70,B002,55,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_5.01, +4383,B71,B002,35,,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_5.01, +4384,B72,B002,33,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_5.01, +4385,B73,B002,32.5,,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_5.01, +4386,B74,B002,45,,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_5.01, +4387,B75,B002,45,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_5.01, +4388,B76,B002,45,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_5.01, +4389,B77,B002,48,,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_5.01, +4390,B78,B002,50,,,potgieter1955;toerien1958,,1950,Binford_2001_Table_5.01, +4391,B79,B002,30,,,bleek1924a,,,Binford_2001_Table_5.01, +4392,B8,B002,35,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_5.01, +4393,B82,B002,0,,,moore1979,,1848,Binford_2001_Table_5.01, +4394,B83,B002,15,,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +4395,B84,B002,35,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_5.01, +4396,B85,B002,10,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_5.01, +4397,B86,B002,10,,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_5.01, +4398,B87,B002,10,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_5.01, +4399,B88,B002,35,,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_5.01, +4400,B89,B002,15,,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_5.01, +4401,B9,B002,40,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_5.01, +4402,B90,B002,30,,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_5.01, +4403,B91,B002,20,,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_5.01, +4404,B92,B002,10,,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_5.01, +4405,B93,B002,5,,,thomson1933;thomson1934,,1930,Binford_2001_Table_5.01, +4406,B94,B002,25,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_5.01, +4407,B95,B002,25,,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_5.01, +4408,B96,B002,10,,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_5.01, +4409,B97,B002,10,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_5.01, +4410,B98,B002,5,,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_5.01, +4411,B99,B002,10,,,stanner1933,,1900,Binford_2001_Table_5.01, +4412,B1,B020,,,,,,,, +4413,B10,B020,,,,,,,, +4414,B100,B020,31,,,love1917[21];love1936[36],,,Binford_2001_Table_8.07, +4415,B101,B020,23,,,kaberry1939[113-15],,1934,Binford_2001_Table_8.07, +4416,B102,B020,,,,,,,, +4417,B103,B020,30,,,tindale1962b[319-21],,1928,Binford_2001_Table_8.07, +4418,B104,B020,,,,,,,, +4419,B105,B020,,,,,,,, +4420,B106,B020,,,,,,,, +4421,B107,B020,29,,,"lumholtz1889[179, 201]",,1870,Binford_2001_Table_8.07, +4422,B108,B020,19,,,kaberry1939[114],,1934,Binford_2001_Table_8.07, +4423,B109,B020,24,,,meggitt1962[77-79],,1965,Binford_2001_Table_8.07, +4424,B11,B020,15,,,"morris1982a[150, 250]",,1972,Binford_2001_Table_8.07, +4425,B110,B020,24,,,tonkinson1978[67],,1880,Binford_2001_Table_8.07, +4426,B111,B020,30,,,harris1978[128],,1960,Binford_2001_Table_8.07, +4427,B112,B020,,,,,,,, +4428,B113,B020,25,,,haydenperscomm1990;haydenperscomm1992;long1970[296-97],,1936,Binford_2001_Table_8.07, +4429,B114,B020,,,,,,,, +4430,B115,B020,23,,,winterbotham1980[34],,1840,Binford_2001_Table_8.07, +4431,B116,B020,,,,,,,, +4432,B117,B020,27,,,denham1975[137-38],,1965,Binford_2001_Table_8.07, +4433,B118,B020,23,,,gould1969[184],,1968,Binford_2001_Table_8.07, +4434,B119,B020,20,,,debertrodano1978[283],,1850,Binford_2001_Table_8.07, +4435,B12,B020,21.7,,,"headland1986[146, 366-67]",,1965,Binford_2001_Table_8.07, +4436,B120,B020,27,,,"long1970[299];tindale1972[259, 260];yengoyan1970[89]",,1968,Binford_2001_Table_8.07, +4437,B121,B020,25,,,howitt1891[79-87],,1900,Binford_2001_Table_8.07, +4438,B122,B020,24,,,schulze1891[236],,1870,Binford_2001_Table_8.07, +4439,B123,B020,26,,,tindaleperscomm1965;white1915[726-28],,1922,Binford_2001_Table_8.07, +4440,B124,B020,,,,,,,, +4441,B125,B020,28,,,parker1905[56],,1880,Binford_2001_Table_8.07, +4442,B126,B020,,,,,,,, +4443,B127,B020,,,,,,,, +4444,B128,B020,,,,,,,, +4445,B129,B020,25,,,cawthorne1844[76],,1840,Binford_2001_Table_8.07, +4446,B13,B020,,,,,,,, +4447,B130,B020,,,,,,,, +4448,B131,B020,,,,,,,, +4449,B132,B020,30,,,nind1831[38-39],,1850,Binford_2001_Table_8.07, +4450,B133,B020,,,,,,,, +4451,B134,B020,,,,,,,, +4452,B135,B020,,,,,,,, +4453,B136,B020,,,,,,,, +4454,B137,B020,,,,,,,, +4455,B14,B020,15,,"Note, for this society, Binford provided two estimates (15, 19); this entry is one of those estimates",vanoverbergh1925[425-26],,1924,Binford_2001_Table_8.07, +4456,B14,B020,19,,"Note, for this society, Binford provided two estimates (15, 19); this entry is one of those estimates",goodmanetal1985[171],,1924,Binford_2001_Table_8.07, +4457,B143,B020,17,,,gilg1965[51];kroeber1931[8],,1900,Binford_2001_Table_8.07, +4458,B144,B020,17.5,,,strong1929a[74],,1870,Binford_2001_Table_8.07, +4459,B145,B020,17,,,strong1929a[239],,1870,Binford_2001_Table_8.07, +4460,B146,B020,18,,,meigs1939[47-50],,1880,Binford_2001_Table_8.07, +4461,B147,B020,17,,,luomala1978[602],,1850,Binford_2001_Table_8.07, +4462,B148,B020,13,,,wallace1978b[455],,1860,Binford_2001_Table_8.07, +4463,B149,B020,,,,,,,, +4464,B15,B020,16,,,"furerhaimendorf1943b[134, 142]",,1940,Binford_2001_Table_8.07, +4465,B150,B020,,,,,,,, +4466,B151,B020,12.5,,,gayton1948b[105],,1860,Binford_2001_Table_8.07, +4467,B152,B020,20,,,voegelin1938[43-44],,1850,Binford_2001_Table_8.07, +4468,B153,B020,,,,,,,, +4469,B154,B020,15,,,spier1978[479],,1850,Binford_2001_Table_8.07, +4470,B155,B020,,,,,,,, +4471,B156,B020,,,,,,,, +4472,B157,B020,16,,,gayton1948b[235],,1870,Binford_2001_Table_8.07, +4473,B158,B020,22,,,loeb1926b[277-79],,1860,Binford_2001_Table_8.07, +4474,B159,B020,,,,,,,, +4475,B16,B020,15.5,,,bernatzik1951[145-46],,1963,Binford_2001_Table_8.07, +4476,B160,B020,,,,,,,, +4477,B161,B020,,,,,,,, +4478,B162,B020,,,,,,,, +4479,B163,B020,14.5,,,faye1923[36],,1850,Binford_2001_Table_8.07, +4480,B164,B020,,,,,,,, +4481,B165,B020,,,,,,,, +4482,B166,B020,,,,,,,, +4483,B167,B020,,,,,,,, +4484,B168,B020,,,,,,,, +4485,B169,B020,21,,,nomland1938[100],,,Binford_2001_Table_8.07, +4486,B17,B020,25,,,"gardner1965[18, 100];gardner1972[421]",,1963,Binford_2001_Table_8.07, +4487,B170,B020,,,,,,,, +4488,B171,B020,18,,,"foster1944[184, 185]",,1850,Binford_2001_Table_8.07, +4489,B172,B020,16.5,,,driver1936[208],,1860,Binford_2001_Table_8.07, +4490,B173,B020,32,,,loeb1926b[280],,1860,Binford_2001_Table_8.07, +4491,B174,B020,,,,,,,, +4492,B175,B020,,,,,,,, +4493,B176,B020,,,,,,,, +4494,B177,B020,,,,,,,, +4495,B178,B020,,,,,,,, +4496,B179,B020,,,,,,,, +4497,B18,B020,,,,,,,, +4498,B180,B020,17,,,wallace1978a[173],,1860,Binford_2001_Table_8.07, +4499,B181,B020,,,,,,,, +4500,B182,B020,,,,,,,, +4501,B183,B020,,,,,,,, +4502,B184,B020,,,,,,,, +4503,B185,B020,17.5,,,dixon1905[370],,1850,Binford_2001_Table_8.07, +4504,B186,B020,18,,,heizerandmills1952[145],,1850,Binford_2001_Table_8.07, +4505,B187,B020,,,,,,,, +4506,B188,B020,18,,,"ray1963[83, 90]",,1860,Binford_2001_Table_8.07, +4507,B189,B020,,,,,,,, +4508,B19,B020,27,,,"ehrenfels1952[66-68, 139-40]",,1946,Binford_2001_Table_8.07, +4509,B190,B020,,,,,,,, +4510,B191,B020,,,,,,,, +4511,B192,B020,20,,,"smith1978a[439];steward1938[87-88, 91]",,1860,Binford_2001_Table_8.07, +4512,B193,B020,,,,,,,, +4513,B194,B020,,,,,,,, +4514,B195,B020,,,,,,,, +4515,B196,B020,17,,,"corbusier1886[330];gifford1932a[191, 195]",,1870,Binford_2001_Table_8.07, +4516,B197,B020,,,,,,,, +4517,B198,B020,21,,,"kroeber1935[141, 143]",,1870,Binford_2001_Table_8.07, +4518,B199,B020,,,,,,,, +4519,B2,B020,19.9,,,"cadelina1982[72-74];warren1964[28, 76]",,1968,Binford_2001_Table_8.07, +4520,B20,B020,,,,,,,, +4521,B200,B020,,,,,,,, +4522,B201,B020,15,,,kelly1964[100];kellyandfowler1986[377-80],,1860,Binford_2001_Table_8.07, +4523,B202,B020,15,,,lowie1909[210],,1870,Binford_2001_Table_8.07, +4524,B203,B020,,,,,,,, +4525,B204,B020,19,,,kelly1964[99-100];kellyandfowler1986[377],,1860,Binford_2001_Table_8.07, +4526,B205,B020,,,,,,,, +4527,B206,B020,18,,,fowlerandliljeblad1986[449];steward1938[58-59],,1860,Binford_2001_Table_8.07, +4528,B207,B020,,,,,,,, +4529,B208,B020,,,,,,,, +4530,B209,B020,,,,,,,, +4531,B21,B020,,,,,,,, +4532,B210,B020,18,,,"fowler1992[152, 155]",,1870,Binford_2001_Table_8.07, +4533,B211,B020,,,,,,,, +4534,B212,B020,,,,,,,, +4535,B213,B020,,,,,,,, +4536,B214,B020,,,,,,,, +4537,B215,B020,,,,,,,, +4538,B216,B020,,,,,,,, +4539,B217,B020,,,,,,,, +4540,B218,B020,,,,,,,, +4541,B219,B020,,,,,,,, +4542,B22,B020,18,,"Note, for this society, Binford provided two estimates (18, 19.5); this entry is one of those estimates",hitchcock1891[465],,1900,Binford_2001_Table_8.07, +4543,B22,B020,19.5,,"Note, for this society, Binford provided two estimates (18, 19.5); this entry is one of those estimates",batchelor1927[196],,1900,Binford_2001_Table_8.07, +4544,B221,B020,,,,,,,, +4545,B222,B020,,,,,,,, +4546,B223,B020,,,,,,,, +4547,B224,B020,,,,,,,, +4548,B225,B020,14.5,,,dazevedo1963[109];price1962[8-9],,1850,Binford_2001_Table_8.07, +4549,B226,B020,20,,"Note, for this society, Binford provided two estimates (20, 18); this entry is one of those estimates","kelly1932[163, 164]",,1870,Binford_2001_Table_8.07, +4550,B226,B020,18,,"Note, for this society, Binford provided two estimates (20, 18); this entry is one of those estimates",brink1969[70-72],,1870,Binford_2001_Table_8.07, +4551,B227,B020,,,,,,,, +4552,B228,B020,,,,,,,, +4553,B229,B020,,,,,,,, +4554,B23,B020,16,,,qiu1983[37],,1900,Binford_2001_Table_8.07, +4555,B230,B020,,,,,,,, +4556,B231,B020,19,,,whiting1950[100],,1870,Binford_2001_Table_8.07, +4557,B232,B020,,,,,,,, +4558,B233,B020,,,,,,,, +4559,B234,B020,,,,,,,, +4560,B24,B020,,,,,,,, +4561,B240,B020,,,,,,,, +4562,B241,B020,27,,,"wallaceandhoebel1952[126, 133, 142]",,1870,Binford_2001_Table_8.07, +4563,B242,B020,21,,,"opler1937[201, 204]",,1880,Binford_2001_Table_8.07, +4564,B243,B020,16,,"Note: estimate is said to be for ""1800s""",mishkin1940[55];newcomb1961[201],,1850,Binford_2001_Table_8.07, +4565,B244,B020,,,,,,,, +4566,B245,B020,,,,,,,, +4567,B246,B020,27,,,"eggan1937[61-62];hilger1952[193, 197, 198]",,1860,Binford_2001_Table_8.07, +4568,B248,B020,27,,,denig1953[34],,1870,Binford_2001_Table_8.07, +4569,B249,B020,,,,,,,, +4570,B25,B020,16,,,"shternberg1933[165, 167]",,1920,Binford_2001_Table_8.07, +4571,B250,B020,20,,,"turneyhigh1941[119, 130]",,1880,Binford_2001_Table_8.07, +4572,B252,B020,,,,,,,, +4573,B253,B020,20,,,flannery1953[171],,1870,Binford_2001_Table_8.07, +4574,B254,B020,,,,,,,, +4575,B255,B020,,,,,,,, +4576,B256,B020,23,,"Note, for this society, Binford provided two estimates, the focal year for the first is 1787 (23), and for the second is 1875 (35); this entry is one of those estimates",lewis1973[40],,1787,Binford_2001_Table_8.07, +4577,B256,B020,35,,"Note, for this society, Binford provided two estimates, the focal year for the first is 1787 (23), and for the second is 1875 (35); this entry is one of those estimates",lewis1973[40],,1875,Binford_2001_Table_8.07, +4578,B257,B020,23,,,"denig1930[504, 511]",,1870,Binford_2001_Table_8.07, +4579,B258,B020,25,,,mandelbaum1940[246],,1850,Binford_2001_Table_8.07, +4580,B259,B020,,,,,,,, +4581,B26,B020,22,,,"jochelson191926[79-85, 110-11]",,1900,Binford_2001_Table_8.07, +4582,B260,B020,16.5,,,jenness1938[21-24],,1880,Binford_2001_Table_8.07, +4583,B268,B020,,,,,,,, +4584,B269,B020,,,,,,,, +4585,B27,B020,,,,,,,, +4586,B270,B020,20,,,"smith1940b[38-39, 166]",,1870,Binford_2001_Table_8.07, +4587,B271,B020,,,,,,,, +4588,B272,B020,,,,,,,, +4589,B273,B020,20,,,"drucker1951[281, 284, 287, 297]",,1880,Binford_2001_Table_8.07, +4590,B274,B020,19,,,"ray1938[63-67, 73]",,1850,Binford_2001_Table_8.07, +4591,B275,B020,,,,,,,, +4592,B276,B020,26,,,teit1906b[264-65],,1860,Binford_2001_Table_8.07, +4593,B277,B020,19,,,stern1934[23-26],,1880,Binford_2001_Table_8.07, +4594,B278,B020,,,,,,,, +4595,B279,B020,17,,,"duff1952[52, 92]",,1880,Binford_2001_Table_8.07, +4596,B28,B020,23,,,bogoras1904[30];moore1923[367],,1860,Binford_2001_Table_8.07, +4597,B280,B020,17,,,hilltout1904[319],,1880,Binford_2001_Table_8.07, +4598,B281,B020,,,,,,,, +4599,B282,B020,17,,,kennedyandbouchard1990[448],,1860,Binford_2001_Table_8.07, +4600,B283,B020,,,,,,,, +4601,B284,B020,22,,,pettitt1950[16],,1880,Binford_2001_Table_8.07, +4602,B285,B020,,,,,,,, +4603,B286,B020,,,,,,,, +4604,B287,B020,,,,,,,, +4605,B288,B020,,,,,,,, +4606,B289,B020,,,,,,,, +4607,B290,B020,,,,,,,, +4608,B291,B020,14.5,,,"mcilwraith1948[371-72, 379]",,1880,Binford_2001_Table_8.07, +4609,B292,B020,,,,,,,, +4610,B293,B020,,,,,,,, +4611,B294,B020,,,,,,,, +4612,B295,B020,,,,,,,, +4613,B296,B020,18,,,nelson1899[292];oswalt1966[107],,1850,Binford_2001_Table_8.07, +4614,B297,B020,,,,,,,, +4615,B298,B020,18,,,lantis1984[179];mickey1955[15],,1830,Binford_2001_Table_8.07, +4616,B299,B020,20,,,"lantis1960[204-14, 233]",,1930,Binford_2001_Table_8.07, +4617,B3,B020,,,,,,,, +4618,B315,B020,20,,,"murdock1980[130, 141]",,1850,Binford_2001_Table_8.07, +4619,B316,B020,,,,,,,, +4620,B317,B020,,,,,,,, +4621,B318,B020,,,,,,,, +4622,B319,B020,,,,,,,, +4623,B320,B020,,,,,,,, +4624,B321,B020,14.5,,,clineetal1938[113],,1880,Binford_2001_Table_8.07, +4625,B322,B020,,,,,,,, +4626,B323,B020,18,,,ray1932[137],,1870,Binford_2001_Table_8.07, +4627,B324,B020,14,,,spinden1908[250],,1850,Binford_2001_Table_8.07, +4628,B325,B020,24,,,"teit1900[321, 326]",,1860,Binford_2001_Table_8.07, +4629,B326,B020,,,,,,,, +4630,B327,B020,19,,,jenness1935[98],,1870,Binford_2001_Table_8.07, +4631,B328,B020,15,,,"kinietz1947[31-33, 128, 137]",,1800,Binford_2001_Table_8.07, +4632,B329,B020,25,,,"speck1922[144];wallisandwallis1955[233, 237, 240]",,1700,Binford_2001_Table_8.07, +4633,B330,B020,21,,,"teit1930[382];turneyhigh1937[86, 94]",,1860,Binford_2001_Table_8.07, +4634,B331,B020,27,,,hickerson1967[56];landes1937a[69-71],Emo,1880,Binford_2001_Table_8.07, +4635,B332,B020,21,,,hallowell1938[240];hallowell1955[300];skinner1911[151],,1870,Binford_2001_Table_8.07, +4636,B333,B020,23,,,teit1900[324],,1850,Binford_2001_Table_8.07, +4637,B334,B020,,,,,,,, +4638,B335,B020,21.7,,,rogers1963a[B54],,1900,Binford_2001_Table_8.07, +4639,B336,B020,,,,,,,, +4640,B337,B020,15,,,cameron1890[265];grant1890[320],,1800,Binford_2001_Table_8.07, +4641,B338,B020,21,,,lips1947a[419-54];rogers1963a,Note: estimate is for the year 1828,1828,Binford_2001_Table_8.07, +4642,B339,B020,,,,,,,, +4643,B340,B020,,,,,,,, +4644,B341,B020,,,,,,,, +4645,B342,B020,,,,,,,, +4646,B343,B020,,,,,,,, +4647,B344,B020,14,,,goddard1916[221];ives1985[156],Note: estimate is for the year 1880,1880,Binford_2001_Table_8.07, +4648,B345,B020,25,,,"helm1961[48, 53, 72]",,1860,Binford_2001_Table_8.07, +4649,B346,B020,18,,,honigmann1954[131],,1920,Binford_2001_Table_8.07, +4650,B347,B020,19,,,emmons1911[98];maclachlan1981[464],,1870,Binford_2001_Table_8.07, +4651,B348,B020,17,,,lane1981[405],,1880,Binford_2001_Table_8.07, +4652,B349,B020,21,,,jenness1937[524-25],,1880,Binford_2001_Table_8.07, +4653,B35,B020,,,,,,,, +4654,B350,B020,,,,,,,, +4655,B351,B020,19,,,crowandobley1981[509],,1880,Binford_2001_Table_8.07, +4656,B352,B020,16,,,savishinskyandhara1981[319];whiting1964[530],,1860,Binford_2001_Table_8.07, +4657,B353,B020,19,,,"honigmann1956b[61, 62]",,1900,Binford_2001_Table_8.07, +4658,B354,B020,19.5,,,clark1975[174-75],,1880,Binford_2001_Table_8.07, +4659,B355,B020,26,,,smith1981[277-79],,1880,Binford_2001_Table_8.07, +4660,B356,B020,16,,,osgood1936[142];slobodin1981[524],,1880,Binford_2001_Table_8.07, +4661,B357,B020,24,,,"osgood1958[160];snow1981[609, 610]",,1880,Binford_2001_Table_8.07, +4662,B358,B020,24,,,rushforth1977[119-21],,1860,Binford_2001_Table_8.07, +4663,B359,B020,28,,,mckennan1959[118],,1930,Binford_2001_Table_8.07, +4664,B36,B020,,,,,,,, +4665,B360,B020,21,,,morantz1983[87];skinner1911[151],,1900,Binford_2001_Table_8.07, +4666,B361,B020,18,,,helm1972[74];keith1960[114],Note: estimate is for the year 1807,1807,Binford_2001_Table_8.07, +4667,B362,B020,30,,,"osgood1937[161, 164];townsend1963[214];townsend1981[633]",,1870,Binford_2001_Table_8.07, +4668,B363,B020,25,,,mcclellan1981[500],,1890,Binford_2001_Table_8.07, +4669,B364,B020,24,,,snow1981[615],,1860,Binford_2001_Table_8.07, +4670,B365,B020,22,,,tanner1944[685],,1890,Binford_2001_Table_8.07, +4671,B369,B020,,,,,,,, +4672,B37,B020,12,,,kloos1977[117],,1968,Binford_2001_Table_8.07, +4673,B370,B020,24,,,giddings1956[26];giddingsperscomm1963,,1890,Binford_2001_Table_8.07, +4674,B371,B020,,,,,,,, +4675,B372,B020,24,,,taylor1974[68-69],,1890,Binford_2001_Table_8.07, +4676,B373,B020,,,,,,,, +4677,B374,B020,19,,,"arima1984[455];rasmussen1930[11-13, 22-23, 37-38]",Note: estimate is for the year 1922,1922,Binford_2001_Table_8.07, +4678,B375,B020,25,,,binford1969,,1900,Binford_2001_Table_8.07, +4679,B377,B020,28,,,binfordandchasko1976[73-77],,1950,Binford_2001_Table_8.07, +4680,B378,B020,,,,,,,, +4681,B379,B020,23,,,moore1923[367],,1920,Binford_2001_Table_8.07, +4682,B38,B020,15,,,gragson1989[123];petrullo1939[232],,1989,Binford_2001_Table_8.07, +4683,B380,B020,,,,,,,, +4684,B381,B020,25,,,damas1972[42];damas1984[401];rasmussen1932[78-85],,1920,Binford_2001_Table_8.07, +4685,B382,B020,19,,,rasmussen1931[85-90],,1920,Binford_2001_Table_8.07, +4686,B383,B020,18,,,mathiassen1928[15-17];vandeveldeetal1992[3],,1880,Binford_2001_Table_8.07, +4687,B384,B020,,,,,,,, +4688,B385,B020,,,,,,,, +4689,B386,B020,,,,,,,, +4690,B387,B020,20,,,"balikci1970[102, 156];rasmussen1931[85-90]",,1880,Binford_2001_Table_8.07, +4691,B388,B020,,,,,,,, +4692,B389,B020,17,,,burch1975[102];simpson1875[254];spencer1959[250],,1852,Binford_2001_Table_8.07, +4693,B39,B020,17,,,"metzger1968[83, 85];wilbert1957[89]",,1960,Binford_2001_Table_8.07, +4694,B390,B020,25,,,"gilberg1984[587];steensby1910[325, 369]",,1880,Binford_2001_Table_8.07, +4695,B4,B020,18,,,"rizvi1990[20, 41]",,1989,Binford_2001_Table_8.07, +4696,B40,B020,17.5,,,politisperscomm1993,,1990,Binford_2001_Table_8.07, +4697,B41,B020,,,,,,,, +4698,B42,B020,16,,,metraux1946guato[417],,1901,Binford_2001_Table_8.07, +4699,B43,B020,15,,,"holmberg1950[51, 82-83, 216]",,1940,Binford_2001_Table_8.07, +4700,B44,B020,,,,,,,, +4701,B45,B020,14.5,,,levistrauss1948b[366];levistrauss1970[269];oberg1953[103-04],,1938,Binford_2001_Table_8.07, +4702,B46,B020,,,,,,,, +4703,B47,B020,19,,,clastres1968[19-23];metrauxandbaldus1946[442],,1975,Binford_2001_Table_8.07, +4704,B48,B020,,,,,,,, +4705,B49,B020,,,,,,,, +4706,B5,B020,,,,,,,, +4707,B50,B020,19,,,henry1964[45],,1910,Binford_2001_Table_8.07, +4708,B51,B020,20,,,cooper1946c[149],,1870,Binford_2001_Table_8.07, +4709,B52,B020,,,,,,,, +4710,B53,B020,,,,,,,, +4711,B54,B020,19,,"Note, for this society, Binford provided two estimates (19, 20); this entry is one of those estimates",chapman1982[58];cooper1946b[115],,1880,Binford_2001_Table_8.07, +4712,B54,B020,20,,"Note, for this society, Binford provided two estimates (19, 20); this entry is one of those estimates","gusinde1931[444, 479]",,1880,Binford_2001_Table_8.07, +4713,B55,B020,18,,,cooper1946a[92],,1870,Binford_2001_Table_8.07, +4714,B6,B020,,,,,,,, +4715,B60,B020,,,,,,,, +4716,B61,B020,,,,,,,, +4717,B62,B020,,,,,,,, +4718,B63,B020,18,,,cavallisforza1986a[37],,1980,Binford_2001_Table_8.07, +4719,B64,B020,18,,,baileyandpeacock1988[59];schebesta1962a[244],,1980,Binford_2001_Table_8.07, +4720,B65,B020,17,,,harako1976[46-47];putnam1948[336],,1930,Binford_2001_Table_8.07, +4721,B66,B020,,,,,,,, +4722,B67,B020,,,,,,,, +4723,B68,B020,20,,,fourie1928[92],,1920,Binford_2001_Table_8.07, +4724,B69,B020,20,,,bleek1931a[427];oconnellperscomm1982,,1910,Binford_2001_Table_8.07, +4725,B7,B020,14,,,"reed1904[57, 60]",,1903,Binford_2001_Table_8.07, +4726,B70,B020,23,,,blackburn1971[266],,1920,Binford_2001_Table_8.07, +4727,B71,B020,,,,,,,, +4728,B72,B020,19.5,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (19.5), the second to Dobe !Kung in the 1960s (25), and the third to the Southern Auen !Kung (17); this entry is one of those estimates. For this entry, focal time was given as ""1950s""","marshall1959[336, 350]",Nyae Nyae !Kung,1955,Binford_2001_Table_8.07, +4729,B72,B020,25,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (19.5), the second to Dobe !Kung in the 1960s (25), and the third to the Southern Auen !Kung (17); this entry is one of those estimates. For this entry, focal time was given as ""1960s""",howell1979[243-44];lee1972a[358],Dobe !Kung,1965,Binford_2001_Table_8.07, +4730,B72,B020,17,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (19.5), the second to Dobe !Kung in the 1960s (25), and the third to the Southern Auen !Kung (17); this entry is one of those estimates. For this entry, Focal time not specified, assumed to be 1950, as for data in other tables",kaufmann1910[156];schapera1930[104],Southern Auen !Kung,1950,Binford_2001_Table_8.07, +4731,B73,B020,19,,,bleek1928[33-34];schapera1930[104],,1910,Binford_2001_Table_8.07, +4732,B74,B020,15,,,"silberbauer1981a[149, 155]",,1962,Binford_2001_Table_8.07, +4733,B75,B020,,,,,,,, +4734,B76,B020,,,,,,,, +4735,B77,B020,18,,,dart1937b,,1920,Binford_2001_Table_8.07, +4736,B78,B020,,,,,,,, +4737,B79,B020,,,,,,,, +4738,B8,B020,20,,,man1883[81];whiting1964[529],,1870,Binford_2001_Table_8.07, +4739,B82,B020,23,,,moore1979[146],,1848,Binford_2001_Table_8.07, +4740,B83,B020,,,,,,,, +4741,B84,B020,33,,,berndtandberndt1970[95];petersonandlong1986[137],,1978,Binford_2001_Table_8.07, +4742,B85,B020,,,,,,,, +4743,B86,B020,25,,,petersonandlong1986[137],,1973,Binford_2001_Table_8.07, +4744,B87,B020,25,,,"hiatt1965[36, 77]",,1950,Binford_2001_Table_8.07, +4745,B88,B020,29,,,long1970[303];petersonandlong1986[154],,1930,Binford_2001_Table_8.07, +4746,B89,B020,26,,,kaberry1939[420],,1920,Binford_2001_Table_8.07, +4747,B9,B020,19,,,"evans1937[250];schebesta1962a[220, 239];whiting1964[529]",,1920,Binford_2001_Table_8.07, +4748,B90,B020,,,,,,,, +4749,B91,B020,,,,,,,, +4750,B92,B020,,,,,,,, +4751,B93,B020,22,,,thomson1933[509],,1930,Binford_2001_Table_8.07, +4752,B94,B020,30,,,petersonandlong1986[95-99];sharp1934[427];sharp1940[490],,1937,Binford_2001_Table_8.07, +4753,B95,B020,35,,,"goodale1962[455];hart1970[296];hartandpilling1960[16, 36, 66];petersonandlong1986[137]",,1920,Binford_2001_Table_8.07, +4754,B96,B020,,,,,,,, +4755,B97,B020,33,,,"rose1960[12, 69, 248]",,1930,Binford_2001_Table_8.07, +4756,B98,B020,,,,,,,, +4757,B99,B020,28,,,stanner1933[391],,1900,Binford_2001_Table_8.07, +4758,B1,B021,,,,,,,, +4759,B10,B021,14,,,"spittel1945[8, 65]",,1900,Binford_2001_Table_8.07, +4760,B100,B021,11,,,love1917[21];love1936[36],,,Binford_2001_Table_8.07, +4761,B101,B021,13,,,kaberry1939[113-15],,1934,Binford_2001_Table_8.07, +4762,B102,B021,,,,,,,, +4763,B103,B021,14,,,tindale1962b[319-21],,1928,Binford_2001_Table_8.07, +4764,B104,B021,,,,,,,, +4765,B105,B021,10,,,roth1909[12],,1900,Binford_2001_Table_8.07, +4766,B106,B021,13,,,clement1903[13];radcliffebrown1912[158],,1910,Binford_2001_Table_8.07, +4767,B107,B021,9.5,,,"lumholtz1889[179, 201]",,1870,Binford_2001_Table_8.07, +4768,B108,B021,11,,,kaberry1939[114],,1934,Binford_2001_Table_8.07, +4769,B109,B021,11,,,meggitt1962[77-79],,1965,Binford_2001_Table_8.07, +4770,B11,B021,9,,,"morris1982a[150, 250]",,1972,Binford_2001_Table_8.07, +4771,B110,B021,13.5,,,tonkinson1978[67],,1880,Binford_2001_Table_8.07, +4772,B111,B021,16,,,harris1978[128],,1960,Binford_2001_Table_8.07, +4773,B112,B021,,,,,,,, +4774,B113,B021,12,,,haydenperscomm1990;haydenperscomm1992;long1970[296-97],,1936,Binford_2001_Table_8.07, +4775,B114,B021,,,,,,,, +4776,B115,B021,14,,,winterbotham1980[34],,1840,Binford_2001_Table_8.07, +4777,B116,B021,,,,,,,, +4778,B117,B021,13,,,denham1975[137-38],,1965,Binford_2001_Table_8.07, +4779,B118,B021,15,,,gould1969[184],,1968,Binford_2001_Table_8.07, +4780,B119,B021,12.5,,,debertrodano1978[283],,1850,Binford_2001_Table_8.07, +4781,B12,B021,18.4,,,"headland1986[146, 366-67]",,1965,Binford_2001_Table_8.07, +4782,B120,B021,16,,,"long1970[299];tindale1972[259, 260];yengoyan1970[89]",,1968,Binford_2001_Table_8.07, +4783,B121,B021,13,,,howitt1891[79-87],,1900,Binford_2001_Table_8.07, +4784,B122,B021,8,,,schulze1891[236],,1870,Binford_2001_Table_8.07, +4785,B123,B021,12,,,tindaleperscomm1965;white1915[726-28],,1922,Binford_2001_Table_8.07, +4786,B124,B021,14,,,"long1970[293];spencerandgillen1927[70-71, 472]",,1900,Binford_2001_Table_8.07, +4787,B125,B021,13.5,,,parker1905[56],,1880,Binford_2001_Table_8.07, +4788,B126,B021,,,,,,,, +4789,B127,B021,15,,,berndtandberndt1944[232];long1970[298],,1941,Binford_2001_Table_8.07, +4790,B128,B021,,,,,,,, +4791,B129,B021,12,,,cawthorne1844[76],,1840,Binford_2001_Table_8.07, +4792,B13,B021,,,,,,,, +4793,B130,B021,,,,,,,, +4794,B131,B021,,,,,,,, +4795,B132,B021,11.5,,,nind1831[38-39],,1850,Binford_2001_Table_8.07, +4796,B133,B021,,,,,,,, +4797,B134,B021,,,,,,,, +4798,B135,B021,,,,,,,, +4799,B136,B021,,,,,,,, +4800,B137,B021,,,,,,,, +4801,B14,B021,13,,"Note, for this society, Binford provided two estimates (13, 17); this entry is one of those estimates",vanoverbergh1925[425-26],,1924,Binford_2001_Table_8.07, +4802,B14,B021,17,,"Note, for this society, Binford provided two estimates (13, 17); this entry is one of those estimates",goodmanetal1985[171],,1924,Binford_2001_Table_8.07, +4803,B143,B021,,,,,,,, +4804,B144,B021,12.5,,,strong1929a[74],,1870,Binford_2001_Table_8.07, +4805,B145,B021,13,,,strong1929a[239],,1870,Binford_2001_Table_8.07, +4806,B146,B021,14,,,meigs1939[47-50],,1880,Binford_2001_Table_8.07, +4807,B147,B021,14,,,luomala1978[602],,1850,Binford_2001_Table_8.07, +4808,B148,B021,11,,,wallace1978b[455],,1860,Binford_2001_Table_8.07, +4809,B149,B021,14.5,,,benedict1924[371-74],,1870,Binford_2001_Table_8.07, +4810,B15,B021,14,,,"furerhaimendorf1943b[134, 142]",,1940,Binford_2001_Table_8.07, +4811,B150,B021,14,,,"sparkman1908[214, 225]",,1860,Binford_2001_Table_8.07, +4812,B151,B021,11,,,gayton1948b[105],,1860,Binford_2001_Table_8.07, +4813,B152,B021,16,,,voegelin1938[43-44],,1850,Binford_2001_Table_8.07, +4814,B153,B021,,,,,,,, +4815,B154,B021,13.5,,,spier1978[479],,1850,Binford_2001_Table_8.07, +4816,B155,B021,,,,,,,, +4817,B156,B021,,,,,,,, +4818,B157,B021,14,,,gayton1948b[235],,1870,Binford_2001_Table_8.07, +4819,B158,B021,20,,,loeb1926b[277-79],,1860,Binford_2001_Table_8.07, +4820,B159,B021,,,,,,,, +4821,B16,B021,13,,,bernatzik1951[145-46],,1963,Binford_2001_Table_8.07, +4822,B160,B021,,,,,,,, +4823,B161,B021,,,,,,,, +4824,B162,B021,,,,,,,, +4825,B163,B021,14.5,,,faye1923[36],,1850,Binford_2001_Table_8.07, +4826,B164,B021,,,,,,,, +4827,B165,B021,,,,,,,, +4828,B166,B021,,,,,,,, +4829,B167,B021,,,,,,,, +4830,B168,B021,,,,,,,, +4831,B169,B021,18,,,nomland1938[100],,,Binford_2001_Table_8.07, +4832,B17,B021,11,,,"gardner1965[18, 100];gardner1972[421]",,1963,Binford_2001_Table_8.07, +4833,B170,B021,,,,,,,, +4834,B171,B021,15,,,"foster1944[184, 185]",,1850,Binford_2001_Table_8.07, +4835,B172,B021,13.5,,,driver1936[208],,1860,Binford_2001_Table_8.07, +4836,B173,B021,20,,,loeb1926b[280],,1860,Binford_2001_Table_8.07, +4837,B174,B021,,,,,,,, +4838,B175,B021,,,,,,,, +4839,B176,B021,,,,,,,, +4840,B177,B021,,,,,,,, +4841,B178,B021,,,,,,,, +4842,B179,B021,15,,,dixon1907[462],,1860,Binford_2001_Table_8.07, +4843,B18,B021,,,,,,,, +4844,B180,B021,15.5,,,wallace1978a[173],,1860,Binford_2001_Table_8.07, +4845,B181,B021,,,,,,,, +4846,B182,B021,,,,,,,, +4847,B183,B021,,,,,,,, +4848,B184,B021,,,,,,,, +4849,B185,B021,15.5,,,dixon1905[370],,1850,Binford_2001_Table_8.07, +4850,B186,B021,14.5,,,heizerandmills1952[145],,1850,Binford_2001_Table_8.07, +4851,B187,B021,,,,,,,, +4852,B188,B021,15,,,"ray1963[83, 90]",,1860,Binford_2001_Table_8.07, +4853,B189,B021,14.5,,,"spier1930[45, 52-54]",,1860,Binford_2001_Table_8.07, +4854,B19,B021,16,,,"ehrenfels1952[66-68, 139-40]",,1946,Binford_2001_Table_8.07, +4855,B190,B021,12,,,baegert1863[367-68],,1760,Binford_2001_Table_8.07, +4856,B191,B021,,,,,,,, +4857,B192,B021,18,,,"smith1978a[439];steward1938[87-88, 91]",,1860,Binford_2001_Table_8.07, +4858,B193,B021,,,,,,,, +4859,B194,B021,,,,,,,, +4860,B195,B021,,,,,,,, +4861,B196,B021,14.5,,,"corbusier1886[330];gifford1932a[191, 195]",,1870,Binford_2001_Table_8.07, +4862,B197,B021,,,,,,,, +4863,B198,B021,18.5,,,"kroeber1935[141, 143]",,1870,Binford_2001_Table_8.07, +4864,B199,B021,,,,,,,, +4865,B2,B021,15.1,,,"cadelina1982[72-74];warren1964[28, 76]",,1968,Binford_2001_Table_8.07, +4866,B20,B021,,,,,,,, +4867,B200,B021,,,,,,,, +4868,B201,B021,12,,,kelly1964[100];kellyandfowler1986[377-80],,1860,Binford_2001_Table_8.07, +4869,B202,B021,12,,"Note, for this society, Binford provided two estimates (12, 13); this entry is one of those estimates",lowie1909[210],,1870,Binford_2001_Table_8.07, +4870,B202,B021,13,,"Note, for this society, Binford provided two estimates (12, 13); this entry is one of those estimates",steward1933[295],,1870,Binford_2001_Table_8.07, +4871,B203,B021,,,,,,,, +4872,B204,B021,15.5,,,kelly1964[99-100];kellyandfowler1986[377],,1860,Binford_2001_Table_8.07, +4873,B205,B021,,,,,,,, +4874,B206,B021,15,,,fowlerandliljeblad1986[449];steward1938[58-59],,1860,Binford_2001_Table_8.07, +4875,B207,B021,,,,,,,, +4876,B208,B021,,,,,,,, +4877,B209,B021,,,,,,,, +4878,B21,B021,14,,,birddavid1987[157],,1978,Binford_2001_Table_8.07, +4879,B210,B021,16,,,"fowler1992[152, 155]",,1870,Binford_2001_Table_8.07, +4880,B211,B021,,,,,,,, +4881,B212,B021,,,,,,,, +4882,B213,B021,,,,,,,, +4883,B214,B021,,,,,,,, +4884,B215,B021,,,,,,,, +4885,B216,B021,,,,,,,, +4886,B217,B021,,,,,,,, +4887,B218,B021,,,,,,,, +4888,B219,B021,,,,,,,, +4889,B22,B021,16,,"Note, first of two estimates provided by Binford for this society (16, 16)",hitchcock1891[465],,1900,Binford_2001_Table_8.07, +4890,B22,B021,16,,"Note, second of two estimates provided by Binford for this society (16, 16)",batchelor1927[196],,1900,Binford_2001_Table_8.07, +4891,B221,B021,,,,,,,, +4892,B222,B021,,,,,,,, +4893,B223,B021,,,,,,,, +4894,B224,B021,,,,,,,, +4895,B225,B021,13,,,dazevedo1963[109];price1962[8-9],,1850,Binford_2001_Table_8.07, +4896,B226,B021,13.5,,"Note, for this society, Binford provided two estimates (13.5, 15); this entry is one of those estimates","kelly1932[163, 164]",,1870,Binford_2001_Table_8.07, +4897,B226,B021,15,,"Note, for this society, Binford provided two estimates (13.5, 15); this entry is one of those estimates",brink1969[70-72],,1870,Binford_2001_Table_8.07, +4898,B227,B021,17.5,,,lowie1924[227],,1860,Binford_2001_Table_8.07, +4899,B228,B021,,,,,,,, +4900,B229,B021,,,,,,,, +4901,B23,B021,13,,,qiu1983[37],,1900,Binford_2001_Table_8.07, +4902,B230,B021,15.5,,,stewart1941[296],,1860,Binford_2001_Table_8.07, +4903,B231,B021,16.5,,,whiting1950[100],,1870,Binford_2001_Table_8.07, +4904,B232,B021,14,,,steward1938[195],,1860,Binford_2001_Table_8.07, +4905,B233,B021,,,,,,,, +4906,B234,B021,,,,,,,, +4907,B24,B021,14.5,,,lee1967[52];shimkin1939[155],,1900,Binford_2001_Table_8.07, +4908,B240,B021,,,,,,,, +4909,B241,B021,16,,,"wallaceandhoebel1952[126, 133, 142]",,1870,Binford_2001_Table_8.07, +4910,B242,B021,18.5,,,"opler1937[201, 204]",,1880,Binford_2001_Table_8.07, +4911,B243,B021,14,,"Note: estimate is said to be for ""1800s""",mishkin1940[55];newcomb1961[201],,1850,Binford_2001_Table_8.07, +4912,B244,B021,,,,,,,, +4913,B245,B021,,,,,,,, +4914,B246,B021,15,,,"eggan1937[61-62];hilger1952[193, 197, 198]",,1860,Binford_2001_Table_8.07, +4915,B248,B021,16,,,denig1953[34],,1870,Binford_2001_Table_8.07, +4916,B249,B021,,,,,,,, +4917,B25,B021,5,,,"shternberg1933[165, 167]",,1920,Binford_2001_Table_8.07, +4918,B250,B021,16,,,"turneyhigh1941[119, 130]",,1880,Binford_2001_Table_8.07, +4919,B252,B021,,,,,,,, +4920,B253,B021,10.5,,,flannery1953[171],,1870,Binford_2001_Table_8.07, +4921,B254,B021,,,,,,,, +4922,B255,B021,,,,,,,, +4923,B256,B021,13,,"Note, the focal year for this estimate is 1875",lewis1973[40],,1875,Binford_2001_Table_8.07, +4924,B257,B021,14,,,"denig1930[504, 511]",,1870,Binford_2001_Table_8.07, +4925,B258,B021,17.5,,,mandelbaum1940[246],,1850,Binford_2001_Table_8.07, +4926,B259,B021,,,,,,,, +4927,B26,B021,16,,,"jochelson191926[79-85, 110-11]",,1900,Binford_2001_Table_8.07, +4928,B260,B021,14,,,jenness1938[21-24],,1880,Binford_2001_Table_8.07, +4929,B268,B021,,,,,,,, +4930,B269,B021,,,,,,,, +4931,B27,B021,,,,,,,, +4932,B270,B021,14,,,"smith1940b[38-39, 166]",,1870,Binford_2001_Table_8.07, +4933,B271,B021,,,,,,,, +4934,B272,B021,,,,,,,, +4935,B273,B021,16,,,"drucker1951[281, 284, 287, 297]",,1880,Binford_2001_Table_8.07, +4936,B274,B021,15,,,"ray1938[63-67, 73]",,1850,Binford_2001_Table_8.07, +4937,B275,B021,,,,,,,, +4938,B276,B021,17,,,teit1906b[264-65],,1860,Binford_2001_Table_8.07, +4939,B277,B021,15,,,stern1934[23-26],,1880,Binford_2001_Table_8.07, +4940,B278,B021,,,,,,,, +4941,B279,B021,14,,,"duff1952[52, 92]",,1880,Binford_2001_Table_8.07, +4942,B28,B021,15,,,bogoras1904[30];moore1923[367],,1860,Binford_2001_Table_8.07, +4943,B280,B021,15,,,hilltout1904[319],,1880,Binford_2001_Table_8.07, +4944,B281,B021,,,,,,,, +4945,B282,B021,14,,,kennedyandbouchard1990[448],,1860,Binford_2001_Table_8.07, +4946,B283,B021,,,,,,,, +4947,B284,B021,17,,,pettitt1950[16],,1880,Binford_2001_Table_8.07, +4948,B285,B021,,,,,,,, +4949,B286,B021,15,,,"swan1870[12, 13]",,1860,Binford_2001_Table_8.07, +4950,B287,B021,,,,,,,, +4951,B288,B021,,,,,,,, +4952,B289,B021,,,,,,,, +4953,B290,B021,,,,,,,, +4954,B291,B021,16,,,"mcilwraith1948[371-72, 379]",,1880,Binford_2001_Table_8.07, +4955,B292,B021,,,,,,,, +4956,B293,B021,,,,,,,, +4957,B294,B021,14,,,holmberg1985[53],,1840,Binford_2001_Table_8.07, +4958,B295,B021,13,,,birketsmithanddelaguna1938[133],,1890,Binford_2001_Table_8.07, +4959,B296,B021,,,,,,,, +4960,B297,B021,,,,,,,, +4961,B298,B021,13,,,lantis1984[179];mickey1955[15],,1830,Binford_2001_Table_8.07, +4962,B299,B021,12,,,"lantis1960[204-14, 233]",,1930,Binford_2001_Table_8.07, +4963,B3,B021,,,,,,,, +4964,B315,B021,16.5,,,"murdock1980[130, 141]",,1850,Binford_2001_Table_8.07, +4965,B316,B021,,,,,,,, +4966,B317,B021,,,,,,,, +4967,B318,B021,,,,,,,, +4968,B319,B021,14.5,,,"spierandsapir1930[22, 171, 218]",,1860,Binford_2001_Table_8.07, +4969,B320,B021,14.5,,,teit1930[170],,1860,Binford_2001_Table_8.07, +4970,B321,B021,14.5,,,clineetal1938[113],,1880,Binford_2001_Table_8.07, +4971,B322,B021,,,,,,,, +4972,B323,B021,15,,,ray1932[137],,1870,Binford_2001_Table_8.07, +4973,B324,B021,12,,,spinden1908[250],,1850,Binford_2001_Table_8.07, +4974,B325,B021,20,,,"teit1900[321, 326]",,1860,Binford_2001_Table_8.07, +4975,B326,B021,,,,,,,, +4976,B327,B021,16,,,jenness1935[98],,1870,Binford_2001_Table_8.07, +4977,B328,B021,12.5,,,"kinietz1947[31-33, 128, 137]",,1800,Binford_2001_Table_8.07, +4978,B329,B021,16,,,"speck1922[144];wallisandwallis1955[233, 237, 240]",,1700,Binford_2001_Table_8.07, +4979,B330,B021,17,,,"teit1930[382];turneyhigh1937[86, 94]",,1860,Binford_2001_Table_8.07, +4980,B331,B021,22,,,hickerson1967[56];landes1937a[69-71],Emo,1880,Binford_2001_Table_8.07, +4981,B332,B021,13,,,hallowell1938[240];hallowell1955[300];skinner1911[151],,1870,Binford_2001_Table_8.07, +4982,B333,B021,17.5,,,teit1900[324],,1850,Binford_2001_Table_8.07, +4983,B334,B021,,,,,,,, +4984,B335,B021,16.7,,,rogers1963a[B54],,1900,Binford_2001_Table_8.07, +4985,B336,B021,,,,,,,, +4986,B337,B021,6.5,,,cameron1890[265];grant1890[320],,1800,Binford_2001_Table_8.07, +4987,B338,B021,18,,Note: estimate is for the year 1828,lips1947a[419-54];rogers1963a,,1828,Binford_2001_Table_8.07, +4988,B339,B021,,,,,,,, +4989,B340,B021,,,,,,,, +4990,B341,B021,,,,,,,, +4991,B342,B021,,,,,,,, +4992,B343,B021,,,,,,,, +4993,B344,B021,11,,Note: estimate is for the year 1828,goddard1916[221];ives1985[156],,1880,Binford_2001_Table_8.07, +4994,B345,B021,17.5,,,"helm1961[48, 53, 72]",,1860,Binford_2001_Table_8.07, +4995,B346,B021,16,,,honigmann1954[131],,1920,Binford_2001_Table_8.07, +4996,B347,B021,15,,,emmons1911[98];maclachlan1981[464],,1870,Binford_2001_Table_8.07, +4997,B348,B021,16,,,lane1981[405],,1880,Binford_2001_Table_8.07, +4998,B349,B021,17.5,,,jenness1937[524-25],,1880,Binford_2001_Table_8.07, +4999,B35,B021,,,,,,,, +5000,B350,B021,,,,,,,, +5001,B351,B021,14,,,crowandobley1981[509],,1880,Binford_2001_Table_8.07, +5002,B352,B021,13,,,savishinskyandhara1981[319];whiting1964[530],,1860,Binford_2001_Table_8.07, +5003,B353,B021,16.5,,,"honigmann1956b[61, 62]",,1900,Binford_2001_Table_8.07, +5004,B354,B021,14.5,,,clark1975[174-75],,1880,Binford_2001_Table_8.07, +5005,B355,B021,12,,,smith1981[277-79],,1880,Binford_2001_Table_8.07, +5006,B356,B021,15,,,osgood1936[142];slobodin1981[524],,1880,Binford_2001_Table_8.07, +5007,B357,B021,15,,,"osgood1958[160];snow1981[609, 610]",,1880,Binford_2001_Table_8.07, +5008,B358,B021,10,,,rushforth1977[119-21],,1860,Binford_2001_Table_8.07, +5009,B359,B021,14,,,mckennan1959[118],,1930,Binford_2001_Table_8.07, +5010,B36,B021,,,,,,,, +5011,B360,B021,14,,,morantz1983[87];skinner1911[151],,1900,Binford_2001_Table_8.07, +5012,B361,B021,12,,Note: estimate is for the year 1828,helm1972[74];keith1960[114],,1807,Binford_2001_Table_8.07, +5013,B362,B021,16.5,,,"osgood1937[161, 164];townsend1963[214];townsend1981[633]",,1870,Binford_2001_Table_8.07, +5014,B363,B021,16,,,mcclellan1981[500],,1890,Binford_2001_Table_8.07, +5015,B364,B021,14.5,,,snow1981[615],,1860,Binford_2001_Table_8.07, +5016,B365,B021,15,,,tanner1944[685],,1890,Binford_2001_Table_8.07, +5017,B369,B021,13,,,ray1992[286],,1870,Binford_2001_Table_8.07, +5018,B37,B021,9,,,kloos1977[117],,1968,Binford_2001_Table_8.07, +5019,B370,B021,15,,,giddings1956[26];giddingsperscomm1963,,1890,Binford_2001_Table_8.07, +5020,B371,B021,,,,,,,, +5021,B372,B021,13,,,taylor1974[68-69],,1890,Binford_2001_Table_8.07, +5022,B373,B021,,,,,,,, +5023,B374,B021,14.5,,Note: estimate is for the year 1922,"arima1984[455];rasmussen1930[11-13, 22-23, 37-38]",,1922,Binford_2001_Table_8.07, +5024,B375,B021,16,,,binford1969,,1900,Binford_2001_Table_8.07, +5025,B377,B021,15,,,binfordandchasko1976[73-77],,1950,Binford_2001_Table_8.07, +5026,B378,B021,,,,,,,, +5027,B379,B021,15,,,moore1923[367],,1920,Binford_2001_Table_8.07, +5028,B38,B021,13,,,gragson1989[123];petrullo1939[232],,1989,Binford_2001_Table_8.07, +5029,B380,B021,,,,,,,, +5030,B381,B021,13,,,damas1972[42];damas1984[401];rasmussen1932[78-85],,1920,Binford_2001_Table_8.07, +5031,B382,B021,14,,,rasmussen1931[85-90],,1920,Binford_2001_Table_8.07, +5032,B383,B021,12.5,,,mathiassen1928[15-17];vandeveldeetal1992[3],,1880,Binford_2001_Table_8.07, +5033,B384,B021,,,,,,,, +5034,B385,B021,,,,,,,, +5035,B386,B021,,,,,,,, +5036,B387,B021,14,,,"balikci1970[102, 156];rasmussen1931[85-90]",,1880,Binford_2001_Table_8.07, +5037,B388,B021,,,,,,,, +5038,B389,B021,14.5,,,burch1975[102];simpson1875[254];spencer1959[250],,1852,Binford_2001_Table_8.07, +5039,B389,B021,15.5,,,burch1975[102];simpson1875[254];spencer1959[250],,1852,Binford_2001_Table_8.07, +5040,B39,B021,13,,,"metzger1968[83, 85];wilbert1957[89]",,1960,Binford_2001_Table_8.07, +5041,B390,B021,14,,,"gilberg1984[587];steensby1910[325, 369]",,1880,Binford_2001_Table_8.07, +5042,B4,B021,15,,,"rizvi1990[20, 41]",,1989,Binford_2001_Table_8.07, +5043,B40,B021,12,,,politisperscomm1993,,1990,Binford_2001_Table_8.07, +5044,B41,B021,11,,,cook1908[387];levistrauss1936[276],,1920,Binford_2001_Table_8.07, +5045,B42,B021,14,,,metraux1946guato[417],,1901,Binford_2001_Table_8.07, +5046,B43,B021,12.5,,,"holmberg1950[51, 82-83, 216]",,1940,Binford_2001_Table_8.07, +5047,B44,B021,,,,,,,, +5048,B45,B021,13,,,levistrauss1948b[366];levistrauss1970[269];oberg1953[103-04],,1938,Binford_2001_Table_8.07, +5049,B46,B021,,,,,,,, +5050,B47,B021,10,,,clastres1968[19-23];metrauxandbaldus1946[442],,1975,Binford_2001_Table_8.07, +5051,B48,B021,13,,,metraux1946botocudo[537],,1880,Binford_2001_Table_8.07, +5052,B49,B021,,,,,,,, +5053,B5,B021,,,,,,,, +5054,B50,B021,9,,,henry1964[45],,1910,Binford_2001_Table_8.07, +5055,B51,B021,15,,,cooper1946c[149],,1870,Binford_2001_Table_8.07, +5056,B52,B021,,,,,,,, +5057,B53,B021,,,,,,,, +5058,B54,B021,17,,"Note, first of two estimates provided by Binford for this society (17, 17)",chapman1982[58];cooper1946b[115],,1880,Binford_2001_Table_8.07, +5059,B54,B021,17,,"Note, second of two estimates provided by Binford for this society (17, 17)","gusinde1931[444, 479]",,1880,Binford_2001_Table_8.07, +5060,B55,B021,15.5,,,cooper1946a[92],,1870,Binford_2001_Table_8.07, +5061,B6,B021,,,,,,,, +5062,B60,B021,,,,,,,, +5063,B61,B021,,,,,,,, +5064,B62,B021,,,,,,,, +5065,B63,B021,16,,,cavallisforza1986a[37],,1980,Binford_2001_Table_8.07, +5066,B64,B021,15,,,baileyandpeacock1988[59];schebesta1962a[244],,1980,Binford_2001_Table_8.07, +5067,B65,B021,14.5,,,harako1976[46-47];putnam1948[336],,1930,Binford_2001_Table_8.07, +5068,B66,B021,,,,,,,, +5069,B67,B021,,,,,,,, +5070,B68,B021,15,,,fourie1928[92],,1920,Binford_2001_Table_8.07, +5071,B69,B021,16,,,bleek1931a[427];oconnellperscomm1982,,1910,Binford_2001_Table_8.07, +5072,B7,B021,12,,,"reed1904[57, 60]",,1903,Binford_2001_Table_8.07, +5073,B70,B021,15,,,blackburn1971[266],,1920,Binford_2001_Table_8.07, +5074,B71,B021,,,,,,,, +5075,B72,B021,13.5,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (13.5), the second to Dobe !Kung in the 1960s (17), and the third to the Southern Auen !Kung (14.5); this entry is one of those estimates. For this entry, focal time was given as ""1950s""","marshall1959[336, 350]",Nyae Nyae !Kung,1955,Binford_2001_Table_8.07, +5076,B72,B021,17,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (13.5), the second to Dobe !Kung in the 1960s (17), and the third to the Southern Auen !Kung (14.5); this entry is one of those estimates. For this entry, focal time was given as ""1960s""",howell1979[243-44];lee1972a[358],Dobe !Kung,1965,Binford_2001_Table_8.07, +5077,B72,B021,14.5,,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (13.5), the second to Dobe !Kung in the 1960s (17), and the third to the Southern Auen !Kung (14.5); this entry is one of those estimates. For this entry, Focal time not specified, assumed to be 1950, as for data in other tables",kaufmann1910[156];schapera1930[104],Southern Auen !Kung,1950,Binford_2001_Table_8.07, +5078,B73,B021,17,,,bleek1928[33-34];schapera1930[104],,1910,Binford_2001_Table_8.07, +5079,B74,B021,8,,,"silberbauer1981a[149, 155]",,1962,Binford_2001_Table_8.07, +5080,B75,B021,,,,,,,, +5081,B76,B021,,,,,,,, +5082,B77,B021,14,,,dart1937b,,1920,Binford_2001_Table_8.07, +5083,B78,B021,,,,,,,, +5084,B79,B021,,,,,,,, +5085,B8,B021,18,,,man1883[81];whiting1964[529],,1870,Binford_2001_Table_8.07, +5086,B82,B021,21,,,moore1979[146],,1848,Binford_2001_Table_8.07, +5087,B83,B021,13,,,basedow1907[14],,1900,Binford_2001_Table_8.07, +5088,B84,B021,14,,,berndtandberndt1970[95];petersonandlong1986[137],,1978,Binford_2001_Table_8.07, +5089,B85,B021,,,,,,,, +5090,B86,B021,13.5,,,petersonandlong1986[137],,1973,Binford_2001_Table_8.07, +5091,B87,B021,13,,,"hiatt1965[36, 77]",,1950,Binford_2001_Table_8.07, +5092,B88,B021,11,,,long1970[303];petersonandlong1986[154],,1930,Binford_2001_Table_8.07, +5093,B89,B021,14.5,,,kaberry1939[420],,1920,Binford_2001_Table_8.07, +5094,B9,B021,14.5,,,"evans1937[250];schebesta1962a[220, 239];whiting1964[529]",,1920,Binford_2001_Table_8.07, +5095,B90,B021,,,,,,,, +5096,B91,B021,,,,,,,, +5097,B92,B021,,,,,,,, +5098,B93,B021,9,,,thomson1933[509],,1930,Binford_2001_Table_8.07, +5099,B94,B021,13,,,petersonandlong1986[95-99];sharp1934[427];sharp1940[490],,1937,Binford_2001_Table_8.07, +5100,B95,B021,9,,,"goodale1962[455];hart1970[296];hartandpilling1960[16, 36, 66];petersonandlong1986[137]",,1920,Binford_2001_Table_8.07, +5101,B96,B021,13,,,roth1909[5],refers specifically to Yalandji,1880,Binford_2001_Table_8.07, +5102,B97,B021,9,,,"rose1960[12, 69, 248]",,1930,Binford_2001_Table_8.07, +5103,B98,B021,13,,,roth1909[4],,1926,Binford_2001_Table_8.07, +5104,B99,B021,13,,,stanner1933[391],,1900,Binford_2001_Table_8.07, +5105,B1,B022,,,,,,,, +5106,B10,B022,3.312,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +5107,B100,B022,,,,,,,, +5108,B101,B022,,,,,,,, +5109,B102,B022,,,,,,,, +5110,B103,B022,,,,,,,, +5111,B104,B022,,,,,,,, +5112,B105,B022,,,,,,,, +5113,B106,B022,,,,,,,, +5114,B107,B022,,,,,,,, +5115,B108,B022,,,,,,,, +5116,B109,B022,2.33,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +5117,B11,B022,2.161,,,morris1982a,,1972,Binford_2001_Table_9.01, +5118,B110,B022,,,,,,,, +5119,B111,B022,1.94,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +5120,B112,B022,,,,,,,, +5121,B113,B022,1.96,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +5122,B114,B022,,,,,,,, +5123,B115,B022,,,,,,,, +5124,B116,B022,,,,,,,, +5125,B117,B022,3.16,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +5126,B118,B022,2.46,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +5127,B119,B022,,,,,,,, +5128,B12,B022,3.931,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +5129,B120,B022,1.74,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +5130,B121,B022,,,,,,,, +5131,B122,B022,,,,,,,, +5132,B123,B022,,,,,,,, +5133,B124,B022,,,,,,,, +5134,B125,B022,,,,,,,, +5135,B126,B022,,,,,,,, +5136,B127,B022,,,,,,,, +5137,B128,B022,,,,,,,, +5138,B129,B022,,,,,,,, +5139,B13,B022,2.921,,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +5140,B130,B022,,,,,,,, +5141,B131,B022,,,,,,,, +5142,B132,B022,1.95,,,nind1831,,1850,Binford_2001_Table_9.01, +5143,B133,B022,5,,,williams1985,,1850,Binford_2001_Table_9.01, +5144,B134,B022,1.46,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +5145,B135,B022,,,,,,,, +5146,B136,B022,1.09,,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +5147,B137,B022,0.88,,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +5148,B14,B022,3.171,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +5149,B143,B022,2.62,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +5150,B144,B022,2.15,,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +5151,B145,B022,,,,,,,, +5152,B146,B022,,,,,,,, +5153,B147,B022,,,,,,,, +5154,B148,B022,,,,,,,, +5155,B149,B022,,,,,,,, +5156,B15,B022,4.852,,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +5157,B150,B022,,,,,,,, +5158,B151,B022,,,,,,,, +5159,B152,B022,1.43,,,voegelin1938,,1850,Binford_2001_Table_9.01, +5160,B153,B022,,,,,,,, +5161,B154,B022,2.49,,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +5162,B155,B022,,,,,,,, +5163,B156,B022,,,,,,,, +5164,B157,B022,2.52,,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +5165,B158,B022,,,,,,,, +5166,B159,B022,,,,,,,, +5167,B16,B022,3.222,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +5168,B160,B022,5,,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +5169,B161,B022,,,,,,,, +5170,B162,B022,,,,,,,, +5171,B163,B022,3.05,,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +5172,B164,B022,,,,,,,, +5173,B165,B022,,,,,,,, +5174,B166,B022,,,,,,,, +5175,B167,B022,,,,,,,, +5176,B168,B022,,,,,,,, +5177,B169,B022,,,,,,,, +5178,B17,B022,4.232,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +5179,B170,B022,,,,,,,, +5180,B171,B022,,,,,,,, +5181,B172,B022,,,,,,,, +5182,B173,B022,,,,,,,, +5183,B174,B022,,,,,,,, +5184,B175,B022,3.74,,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +5185,B176,B022,2.16,,,gray1987,,1860,Binford_2001_Table_9.01, +5186,B177,B022,,,,,,,, +5187,B178,B022,2.25,,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +5188,B179,B022,,,,,,,, +5189,B18,B022,9.212,,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +5190,B180,B022,,,,,,,, +5191,B181,B022,,,,,,,, +5192,B182,B022,,,,,,,, +5193,B183,B022,,,,,,,, +5194,B184,B022,,,,,,,, +5195,B185,B022,,,,,,,, +5196,B186,B022,,,,,,,, +5197,B187,B022,,,,,,,, +5198,B188,B022,1.5,,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +5199,B189,B022,1.82,,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +5200,B19,B022,1.921,,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +5201,B190,B022,,,,,,,, +5202,B191,B022,,,,,,,, +5203,B192,B022,1.9,,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +5204,B193,B022,,,,,,,, +5205,B194,B022,3.26,,,,,1715,Binford_2001_Table_9.01, +5206,B195,B022,1.87,,,steward1938,,1850,Binford_2001_Table_9.01, +5207,B196,B022,,,,,,,, +5208,B197,B022,,,,,,,, +5209,B198,B022,1.25,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +5210,B199,B022,1.87,,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +5211,B2,B022,3.752,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +5212,B20,B022,2.84,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +5213,B200,B022,,,,,,,, +5214,B201,B022,,,,,,,, +5215,B202,B022,2.65,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +5216,B203,B022,,,,,,,, +5217,B204,B022,2.47,,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +5218,B205,B022,2.51,,,davis1965,,1870,Binford_2001_Table_9.01, +5219,B206,B022,,,,,,,, +5220,B207,B022,2.33,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +5221,B208,B022,,,,,,,, +5222,B209,B022,,,,,,,, +5223,B21,B022,3.83,,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +5224,B210,B022,4.05,,,fowler1992,,1870,Binford_2001_Table_9.01, +5225,B211,B022,2.4,,,steward1938,,1860,Binford_2001_Table_9.01, +5226,B212,B022,,,,,,,, +5227,B213,B022,,,,,,,, +5228,B214,B022,,,,,,,, +5229,B215,B022,2.43,,,steward1938,,1870,Binford_2001_Table_9.01, +5230,B216,B022,2.77,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +5231,B217,B022,2.63,,,steward1938,,1860,Binford_2001_Table_9.01, +5232,B218,B022,,,,,,,, +5233,B219,B022,,,,,,,, +5234,B22,B022,3.28,,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +5235,B221,B022,3.84,,,steward1938,,1860,Binford_2001_Table_9.01, +5236,B222,B022,,,,,,,, +5237,B223,B022,,,,,,,, +5238,B224,B022,2.93,,,steward1938,,1860,Binford_2001_Table_9.01, +5239,B225,B022,2.25,,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +5240,B226,B022,,,,,,,, +5241,B227,B022,,,,,,,, +5242,B228,B022,,,,,,,, +5243,B229,B022,2.08,,,steward1938,,1860,Binford_2001_Table_9.01, +5244,B23,B022,3.17,,,qiu1983,,1900,Binford_2001_Table_9.01, +5245,B230,B022,2.63,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +5246,B231,B022,2.03,,,whiting1950,,1870,Binford_2001_Table_9.01, +5247,B232,B022,3.38,,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +5248,B233,B022,2.85,,,steward1938,,1860,Binford_2001_Table_9.01, +5249,B234,B022,5,,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +5250,B24,B022,4.8,,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +5251,B240,B022,,,,,,,, +5252,B241,B022,9.55,,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +5253,B242,B022,,,,,,,, +5254,B243,B022,,,,,,,, +5255,B244,B022,4.48,,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +5256,B245,B022,5.67,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +5257,B246,B022,4.89,,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +5258,B248,B022,7.5,,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +5259,B249,B022,4.34,,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +5260,B25,B022,2.21,,,shternberg1933,,1920,Binford_2001_Table_9.01, +5261,B250,B022,,,,,,,, +5262,B252,B022,7.17,,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +5263,B253,B022,4.21,,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +5264,B254,B022,,,,,,,, +5265,B255,B022,5.6,,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +5266,B256,B022,8.85,,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +5267,B257,B022,6.92,,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +5268,B258,B022,9.35,,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +5269,B259,B022,5.25,,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +5270,B26,B022,1.57,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +5271,B260,B022,5.7,,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +5272,B268,B022,,,,,,,, +5273,B269,B022,,,,,,,, +5274,B27,B022,1.49,,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +5275,B270,B022,0.93,,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +5276,B271,B022,,,,,,,, +5277,B272,B022,,,,,,,, +5278,B273,B022,,,,,,,, +5279,B274,B022,,,,,,,, +5280,B275,B022,,,,,,,, +5281,B276,B022,,,,,,,, +5282,B277,B022,,,,,,,, +5283,B278,B022,,,,,,,, +5284,B279,B022,,,,,,,, +5285,B28,B022,1.5,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +5286,B280,B022,,,,,,,, +5287,B281,B022,,,,,,,, +5288,B282,B022,,,,,,,, +5289,B283,B022,,,,,,,, +5290,B284,B022,1.21,,,pettitt1950,,1880,Binford_2001_Table_9.01, +5291,B285,B022,,,,,,,, +5292,B286,B022,,,,,,,, +5293,B287,B022,,,,,,,, +5294,B288,B022,,,,,,,, +5295,B289,B022,,,,,,,, +5296,B290,B022,,,,,,,, +5297,B291,B022,,,,,,,, +5298,B292,B022,,,,,,,, +5299,B293,B022,,,,,,,, +5300,B294,B022,,,,,,,, +5301,B295,B022,,,,,,,, +5302,B296,B022,1.39,,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +5303,B297,B022,,,,,,,, +5304,B298,B022,,,,,,,, +5305,B299,B022,,,,,,,, +5306,B3,B022,,,,,,,, +5307,B315,B022,,,,,,,, +5308,B316,B022,,,,,,,, +5309,B317,B022,,,,,,,, +5310,B318,B022,,,,,,,, +5311,B319,B022,2.5,,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +5312,B320,B022,2.93,,,teit1930,,1860,Binford_2001_Table_9.01, +5313,B321,B022,0.96,,,clineetal1938,,1880,Binford_2001_Table_9.01, +5314,B322,B022,,,,,,,, +5315,B323,B022,,,,,,,, +5316,B324,B022,,,,,,,, +5317,B325,B022,0.8,,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +5318,B326,B022,3.04,,,teit1930,,1870,Binford_2001_Table_9.01, +5319,B327,B022,2.14,,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +5320,B328,B022,,,,,,,, +5321,B329,B022,2.08,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +5322,B330,B022,1.98,,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +5323,B331,B022,2.56,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +5324,B332,B022,1.79,,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +5325,B333,B022,,,,,,,, +5326,B334,B022,2.68,,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +5327,B335,B022,1.37,,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +5328,B336,B022,1.9,,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +5329,B337,B022,,,,,,,, +5330,B338,B022,2.49,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +5331,B339,B022,,,,,,,, +5332,B340,B022,,,,,,,, +5333,B341,B022,,,,,,,, +5334,B342,B022,1.47,,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +5335,B343,B022,,,,,,,, +5336,B344,B022,,,,,,,, +5337,B345,B022,2.52,,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +5338,B346,B022,,,,,,,, +5339,B347,B022,,,,,,,, +5340,B348,B022,,,,,,,, +5341,B349,B022,1.38,,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +5342,B35,B022,,,,,,,, +5343,B350,B022,,,,,,,, +5344,B351,B022,,,,,,,, +5345,B352,B022,2.74,,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +5346,B353,B022,2.83,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +5347,B354,B022,0.92,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +5348,B355,B022,2.56,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +5349,B356,B022,4.1,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +5350,B357,B022,,,,,,,, +5351,B358,B022,2.17,,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +5352,B359,B022,2.13,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +5353,B36,B022,,,,,,,, +5354,B360,B022,,,,,,,, +5355,B361,B022,5.5,,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +5356,B362,B022,,,,,,,, +5357,B363,B022,,,,,,,, +5358,B364,B022,,,,,,,, +5359,B365,B022,2.77,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +5360,B369,B022,,,,,,,, +5361,B37,B022,,,,,,,, +5362,B370,B022,2.48,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +5363,B371,B022,2.5,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +5364,B372,B022,0.48,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +5365,B373,B022,3.45,,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +5366,B374,B022,2.75,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +5367,B375,B022,2.33,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +5368,B377,B022,2.47,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +5369,B378,B022,1.09,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +5370,B379,B022,2.81,,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +5371,B38,B022,2.04,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +5372,B380,B022,1.6,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +5373,B381,B022,3.25,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +5374,B382,B022,2.16,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +5375,B383,B022,2.26,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +5376,B384,B022,2.84,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +5377,B385,B022,1.97,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +5378,B386,B022,1.71,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +5379,B387,B022,3.94,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +5380,B388,B022,0.59,,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +5381,B389,B022,2.45,,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +5382,B39,B022,2.88,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +5383,B390,B022,1.98,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +5384,B4,B022,6.332,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +5385,B40,B022,3.62,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +5386,B41,B022,,,,,,,, +5387,B42,B022,4.15,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +5388,B43,B022,0.95,,,holmberg1950,,1940,Binford_2001_Table_9.01, +5389,B44,B022,4.06,,,stearman1989,,1968,Binford_2001_Table_9.01, +5390,B45,B022,3.04,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +5391,B46,B022,0.97,,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +5392,B47,B022,6.42,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +5393,B48,B022,,,,,,,, +5394,B49,B022,2.11,,,kozaketal1979,,1954,Binford_2001_Table_9.01, +5395,B5,B022,0.882,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +5396,B50,B022,1,,,henry1964,,1910,Binford_2001_Table_9.01, +5397,B51,B022,2.55,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +5398,B52,B022,,,,,,,, +5399,B53,B022,1.85,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +5400,B54,B022,2.44,,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +5401,B55,B022,1.86,,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +5402,B6,B022,0.272,,,temple1903,,1906,Binford_2001_Table_9.01, +5403,B60,B022,6.04,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +5404,B61,B022,6.99,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +5405,B62,B022,6.23,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +5406,B63,B022,3.54,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +5407,B64,B022,5.46,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +5408,B65,B022,6.74,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +5409,B66,B022,,,,,,,, +5410,B67,B022,,,,,,,, +5411,B68,B022,,,,,,,, +5412,B69,B022,4.55,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +5413,B7,B022,2.622,,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +5414,B70,B022,3.35,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +5415,B71,B022,4.8,,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +5416,B72,B022,4.14,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +5417,B73,B022,,,,,,,, +5418,B74,B022,1.23,,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +5419,B75,B022,1.76,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +5420,B76,B022,3.47,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +5421,B77,B022,2,,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +5422,B78,B022,,,,,,,, +5423,B79,B022,,,,,,,, +5424,B8,B022,4.392,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +5425,B82,B022,,,,,,,, +5426,B83,B022,,,,,,,, +5427,B84,B022,4.7,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +5428,B85,B022,2.89,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +5429,B86,B022,,,,,,,, +5430,B87,B022,2.69,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +5431,B88,B022,,,,,,,, +5432,B89,B022,,,,,,,, +5433,B9,B022,0.592,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +5434,B90,B022,,,,,,,, +5435,B91,B022,,,,,,,, +5436,B92,B022,,,,,,,, +5437,B93,B022,,,,,,,, +5438,B94,B022,3.88,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +5439,B95,B022,,,,,,,, +5440,B96,B022,,,,,,,, +5441,B97,B022,2.15,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +5442,B98,B022,,,,,,,, +5443,B99,B022,,,,,,,, +5444,B1,B023,6.09,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +5445,B10,B023,3.64,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +5446,B100,B023,,,,,,,, +5447,B101,B023,,,,,,,, +5448,B102,B023,,,,,,,, +5449,B103,B023,3.34,,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +5450,B104,B023,,,,,,,, +5451,B105,B023,,,,,,,, +5452,B106,B023,,,,,,,, +5453,B107,B023,,,,,,,, +5454,B108,B023,2.4,,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +5455,B109,B023,2,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +5456,B11,B023,,,,,,,, +5457,B110,B023,,,,,,,, +5458,B111,B023,1.54,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +5459,B112,B023,1.66,,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +5460,B113,B023,1.27,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +5461,B114,B023,,,,,,,, +5462,B115,B023,,,,,,,, +5463,B116,B023,,,,,,,, +5464,B117,B023,2.37,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +5465,B118,B023,1.78,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +5466,B119,B023,,,,,,,, +5467,B12,B023,4.76,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +5468,B120,B023,1.44,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +5469,B121,B023,,,,,,,, +5470,B122,B023,,,,,,,, +5471,B123,B023,1.46,,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +5472,B124,B023,1.5,,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +5473,B125,B023,,,,,,,, +5474,B126,B023,1.33,,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +5475,B127,B023,,,,,,,, +5476,B128,B023,,,,,,,, +5477,B129,B023,,,,,,,, +5478,B13,B023,,,,,,,, +5479,B130,B023,,,,,,,, +5480,B131,B023,,,,,,,, +5481,B132,B023,,,,,,,, +5482,B133,B023,4.46,,,williams1985,,1850,Binford_2001_Table_9.01, +5483,B134,B023,1.23,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +5484,B135,B023,,,,,,,, +5485,B136,B023,,,,,,,, +5486,B137,B023,,,,,,,, +5487,B14,B023,3.93,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +5488,B143,B023,3.07,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +5489,B144,B023,,,,,,,, +5490,B145,B023,,,,,,,, +5491,B146,B023,,,,,,,, +5492,B147,B023,,,,,,,, +5493,B148,B023,,,,,,,, +5494,B149,B023,,,,,,,, +5495,B15,B023,4.85,,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +5496,B150,B023,,,,,,,, +5497,B151,B023,,,,,,,, +5498,B152,B023,2.62,,,voegelin1938,,1850,Binford_2001_Table_9.01, +5499,B153,B023,,,,,,,, +5500,B154,B023,,,,,,,, +5501,B155,B023,,,,,,,, +5502,B156,B023,,,,,,,, +5503,B157,B023,,,,,,,, +5504,B158,B023,,,,,,,, +5505,B159,B023,,,,,,,, +5506,B16,B023,4.88,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +5507,B160,B023,,,,,,,, +5508,B161,B023,,,,,,,, +5509,B162,B023,,,,,,,, +5510,B163,B023,,,,,,,, +5511,B164,B023,,,,,,,, +5512,B165,B023,,,,,,,, +5513,B166,B023,,,,,,,, +5514,B167,B023,,,,,,,, +5515,B168,B023,,,,,,,, +5516,B169,B023,,,,,,,, +5517,B17,B023,3.43,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +5518,B170,B023,,,,,,,, +5519,B171,B023,,,,,,,, +5520,B172,B023,,,,,,,, +5521,B173,B023,,,,,,,, +5522,B174,B023,,,,,,,, +5523,B175,B023,,,,,,,, +5524,B176,B023,,,,,,,, +5525,B177,B023,,,,,,,, +5526,B178,B023,,,,,,,, +5527,B179,B023,,,,,,,, +5528,B18,B023,5.97,,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +5529,B180,B023,,,,,,,, +5530,B181,B023,,,,,,,, +5531,B182,B023,,,,,,,, +5532,B183,B023,,,,,,,, +5533,B184,B023,,,,,,,, +5534,B185,B023,,,,,,,, +5535,B186,B023,,,,,,,, +5536,B187,B023,,,,,,,, +5537,B188,B023,,,,,,,, +5538,B189,B023,,,,,,,, +5539,B19,B023,3.95,,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +5540,B190,B023,,,,,,,, +5541,B191,B023,,,,,,,, +5542,B192,B023,,,,,,,, +5543,B193,B023,,,,,,,, +5544,B194,B023,,,,,,,, +5545,B195,B023,1.34,,,steward1938,,1850,Binford_2001_Table_9.01, +5546,B196,B023,,,,,,,, +5547,B197,B023,,,,,,,, +5548,B198,B023,1.98,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +5549,B199,B023,,,,,,,, +5550,B2,B023,4.88,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +5551,B20,B023,2.84,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +5552,B200,B023,,,,,,,, +5553,B201,B023,,,,,,,, +5554,B202,B023,3.54,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +5555,B203,B023,,,,,,,, +5556,B204,B023,,,,,,,, +5557,B205,B023,,,,,,,, +5558,B206,B023,,,,,,,, +5559,B207,B023,3.43,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +5560,B208,B023,,,,,,,, +5561,B209,B023,,,,,,,, +5562,B21,B023,,,,,,,, +5563,B210,B023,,,,,,,, +5564,B211,B023,3,,,steward1938,,1860,Binford_2001_Table_9.01, +5565,B212,B023,,,,,,,, +5566,B213,B023,,,,,,,, +5567,B214,B023,,,,,,,, +5568,B215,B023,,,,,,,, +5569,B216,B023,2.28,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +5570,B217,B023,,,,,,,, +5571,B218,B023,,,,,,,, +5572,B219,B023,,,,,,,, +5573,B22,B023,,,,,,,, +5574,B221,B023,3.65,,,steward1938,,1860,Binford_2001_Table_9.01, +5575,B222,B023,,,,,,,, +5576,B223,B023,,,,,,,, +5577,B224,B023,2.86,,,steward1938,,1860,Binford_2001_Table_9.01, +5578,B225,B023,,,,,,,, +5579,B226,B023,,,,,,,, +5580,B227,B023,,,,,,,, +5581,B228,B023,,,,,,,, +5582,B229,B023,5.23,,,steward1938,,1860,Binford_2001_Table_9.01, +5583,B23,B023,,,,,,,, +5584,B230,B023,2.08,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +5585,B231,B023,,,,,,,, +5586,B232,B023,,,,,,,, +5587,B233,B023,,,,,,,, +5588,B234,B023,,,,,,,, +5589,B24,B023,,,,,,,, +5590,B240,B023,,,,,,,, +5591,B241,B023,,,,,,,, +5592,B242,B023,,,,,,,, +5593,B243,B023,,,,,,,, +5594,B244,B023,,,,,,,, +5595,B245,B023,5.91,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +5596,B246,B023,,,,,,,, +5597,B248,B023,,,,,,,, +5598,B249,B023,,,,,,,, +5599,B25,B023,5.54,,,shternberg1933,,1920,Binford_2001_Table_9.01, +5600,B250,B023,,,,,,,, +5601,B252,B023,,,,,,,, +5602,B253,B023,,,,,,,, +5603,B254,B023,,,,,,,, +5604,B255,B023,,,,,,,, +5605,B256,B023,,,,,,,, +5606,B257,B023,,,,,,,, +5607,B258,B023,,,,,,,, +5608,B259,B023,,,,,,,, +5609,B26,B023,3.01,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +5610,B260,B023,,,,,,,, +5611,B268,B023,,,,,,,, +5612,B269,B023,,,,,,,, +5613,B27,B023,,,,,,,, +5614,B270,B023,5.6,,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +5615,B271,B023,,,,,,,, +5616,B272,B023,,,,,,,, +5617,B273,B023,,,,,,,, +5618,B274,B023,,,,,,,, +5619,B275,B023,,,,,,,, +5620,B276,B023,,,,,,,, +5621,B277,B023,,,,,,,, +5622,B278,B023,,,,,,,, +5623,B279,B023,,,,,,,, +5624,B28,B023,3.18,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +5625,B280,B023,,,,,,,, +5626,B281,B023,,,,,,,, +5627,B282,B023,,,,,,,, +5628,B283,B023,,,,,,,, +5629,B284,B023,,,,,,,, +5630,B285,B023,,,,,,,, +5631,B286,B023,,,,,,,, +5632,B287,B023,,,,,,,, +5633,B288,B023,,,,,,,, +5634,B289,B023,,,,,,,, +5635,B290,B023,,,,,,,, +5636,B291,B023,,,,,,,, +5637,B292,B023,,,,,,,, +5638,B293,B023,,,,,,,, +5639,B294,B023,,,,,,,, +5640,B295,B023,,,,,,,, +5641,B296,B023,,,,,,,, +5642,B297,B023,,,,,,,, +5643,B298,B023,,,,,,,, +5644,B299,B023,,,,,,,, +5645,B3,B023,,,,,,,, +5646,B315,B023,,,,,,,, +5647,B316,B023,,,,,,,, +5648,B317,B023,,,,,,,, +5649,B318,B023,,,,,,,, +5650,B319,B023,,,,,,,, +5651,B320,B023,5.87,,,teit1930,,1860,Binford_2001_Table_9.01, +5652,B321,B023,5.46,,,clineetal1938,,1880,Binford_2001_Table_9.01, +5653,B322,B023,,,,,,,, +5654,B323,B023,,,,,,,, +5655,B324,B023,,,,,,,, +5656,B325,B023,,,,,,,, +5657,B326,B023,6.08,,,teit1930,,1870,Binford_2001_Table_9.01, +5658,B327,B023,4.29,,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +5659,B328,B023,,,,,,,, +5660,B329,B023,2.75,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +5661,B330,B023,,,,,,,, +5662,B331,B023,5,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +5663,B332,B023,,,,,,,, +5664,B333,B023,,,,,,,, +5665,B334,B023,,,,,,,, +5666,B335,B023,,,,,,,, +5667,B336,B023,,,,,,,, +5668,B337,B023,,,,,,,, +5669,B338,B023,4.82,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +5670,B339,B023,,,,,,,, +5671,B340,B023,2.12,,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +5672,B341,B023,,,,,,,, +5673,B342,B023,3.33,,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +5674,B343,B023,,,,,,,, +5675,B344,B023,5.17,,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +5676,B345,B023,,,,,,,, +5677,B346,B023,4.66,,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +5678,B347,B023,,,,,,,, +5679,B348,B023,,,,,,,, +5680,B349,B023,,,,,,,, +5681,B35,B023,,,,,,,, +5682,B350,B023,3.18,,,gillespie1981,,1800,Binford_2001_Table_9.01, +5683,B351,B023,,,,,,,, +5684,B352,B023,,,,,,,, +5685,B353,B023,4.07,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +5686,B354,B023,2.95,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +5687,B355,B023,5.09,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +5688,B356,B023,8.21,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +5689,B357,B023,,,,,,,, +5690,B358,B023,,,,,,,, +5691,B359,B023,3.82,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +5692,B36,B023,,,,,,,, +5693,B360,B023,2.34,,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +5694,B361,B023,,,,,,,, +5695,B362,B023,,,,,,,, +5696,B363,B023,5.11,,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +5697,B364,B023,,,,,,,, +5698,B365,B023,4.78,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +5699,B369,B023,,,,,,,, +5700,B37,B023,,,,,,,, +5701,B370,B023,4,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +5702,B371,B023,5,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +5703,B372,B023,1.93,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +5704,B373,B023,,,,,,,, +5705,B374,B023,4.52,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +5706,B375,B023,5.83,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +5707,B377,B023,3.94,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +5708,B378,B023,,,,,,,, +5709,B379,B023,,,,,,,, +5710,B38,B023,3.85,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +5711,B380,B023,3.83,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +5712,B381,B023,5.26,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +5713,B382,B023,4.68,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +5714,B383,B023,4.26,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +5715,B384,B023,6.56,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +5716,B385,B023,3.35,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +5717,B386,B023,3.14,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +5718,B387,B023,5.88,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +5719,B388,B023,,,,,,,, +5720,B389,B023,,,,,,,, +5721,B39,B023,3.42,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +5722,B390,B023,2.92,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +5723,B4,B023,5.33,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +5724,B40,B023,4.7,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +5725,B41,B023,,,,,,,, +5726,B42,B023,4.37,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +5727,B43,B023,4.03,,,holmberg1950,,1940,Binford_2001_Table_9.01, +5728,B44,B023,4.2,,,stearman1989,,1968,Binford_2001_Table_9.01, +5729,B45,B023,4.86,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +5730,B46,B023,,,,,,,, +5731,B47,B023,7.63,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +5732,B48,B023,,,,,,,, +5733,B49,B023,5,,,kozaketal1979,,1954,Binford_2001_Table_9.01, +5734,B5,B023,3.27,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +5735,B50,B023,3.97,,,henry1964,,1910,Binford_2001_Table_9.01, +5736,B51,B023,5,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +5737,B52,B023,,,,,,,, +5738,B53,B023,2.79,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +5739,B54,B023,,,,,,,, +5740,B55,B023,,,,,,,, +5741,B6,B023,,,,,,,, +5742,B60,B023,5.63,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +5743,B61,B023,5.08,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +5744,B62,B023,4.05,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +5745,B63,B023,3.64,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +5746,B64,B023,,,,,,,, +5747,B65,B023,7.06,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +5748,B66,B023,,,,,,,, +5749,B67,B023,,,,,,,, +5750,B68,B023,,,,,,,, +5751,B69,B023,3.67,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +5752,B7,B023,2.72,,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +5753,B70,B023,3.31,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +5754,B71,B023,,,,,,,, +5755,B72,B023,3.09,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +5756,B73,B023,,,,,,,, +5757,B74,B023,,,,,,,, +5758,B75,B023,,,,,,,, +5759,B76,B023,2.65,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +5760,B77,B023,,,,,,,, +5761,B78,B023,,,,,,,, +5762,B79,B023,,,,,,,, +5763,B8,B023,2.92,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +5764,B82,B023,,,,,,,, +5765,B83,B023,,,,,,,, +5766,B84,B023,2.88,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +5767,B85,B023,2.62,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +5768,B86,B023,,,,,,,, +5769,B87,B023,2.32,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +5770,B88,B023,,,,,,,, +5771,B89,B023,,,,,,,, +5772,B9,B023,5.21,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +5773,B90,B023,,,,,,,, +5774,B91,B023,,,,,,,, +5775,B92,B023,,,,,,,, +5776,B93,B023,,,,,,,, +5777,B94,B023,3.4,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +5778,B95,B023,2.43,,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +5779,B96,B023,2.04,,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +5780,B97,B023,1.67,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +5781,B98,B023,,,,,,,, +5782,B99,B023,,,,,,,, +5783,B1,B024,4.93,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +5784,B10,B024,6.86,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +5785,B100,B024,,,,,,,, +5786,B101,B024,,,,,,,, +5787,B102,B024,12.97,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +5788,B103,B024,,,,,,,, +5789,B104,B024,,,,,,,, +5790,B105,B024,,,,,,,, +5791,B106,B024,,,,,,,, +5792,B107,B024,,,,,,,, +5793,B108,B024,,,,,,,, +5794,B109,B024,10.88,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +5795,B11,B024,7.35,,,morris1982a,,1972,Binford_2001_Table_9.01, +5796,B110,B024,,,,,,,, +5797,B111,B024,6.07,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +5798,B112,B024,,,,,,,, +5799,B113,B024,4.85,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +5800,B114,B024,,,,,,,, +5801,B115,B024,,,,,,,, +5802,B116,B024,,,,,,,, +5803,B117,B024,5.93,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +5804,B118,B024,5.58,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +5805,B119,B024,,,,,,,, +5806,B12,B024,6.93,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +5807,B120,B024,4,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +5808,B121,B024,,,,,,,, +5809,B122,B024,,,,,,,, +5810,B123,B024,,,,,,,, +5811,B124,B024,,,,,,,, +5812,B125,B024,,,,,,,, +5813,B126,B024,,,,,,,, +5814,B127,B024,,,,,,,, +5815,B128,B024,,,,,,,, +5816,B129,B024,,,,,,,, +5817,B13,B024,5.11,,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +5818,B130,B024,,,,,,,, +5819,B131,B024,,,,,,,, +5820,B132,B024,7.51,,,nind1831,,1850,Binford_2001_Table_9.01, +5821,B133,B024,35,,,williams1985,,1850,Binford_2001_Table_9.01, +5822,B134,B024,8.8,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +5823,B135,B024,,,,,,,, +5824,B136,B024,5.1,,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +5825,B137,B024,3.88,,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +5826,B14,B024,7.27,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +5827,B143,B024,6.94,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +5828,B144,B024,8.06,,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +5829,B145,B024,15.04,,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +5830,B146,B024,8.61,,,meigs1939,,1880,Binford_2001_Table_9.01, +5831,B147,B024,,,,,,,, +5832,B148,B024,,,,,,,, +5833,B149,B024,,,,,,,, +5834,B15,B024,12.06,,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +5835,B150,B024,,,,,,,, +5836,B151,B024,13.33,,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +5837,B152,B024,3,,,voegelin1938,,1850,Binford_2001_Table_9.01, +5838,B153,B024,,,,,,,, +5839,B154,B024,6.22,,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +5840,B155,B024,15.27,,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +5841,B156,B024,,,,,,,, +5842,B157,B024,6.21,,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +5843,B158,B024,,,,,,,, +5844,B159,B024,11.49,,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +5845,B16,B024,6.61,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +5846,B160,B024,12.5,,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +5847,B161,B024,58.63,,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +5848,B162,B024,,,,,,,, +5849,B163,B024,12.47,,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +5850,B164,B024,,,,,,,, +5851,B165,B024,,,,,,,, +5852,B166,B024,5.23,,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +5853,B167,B024,,,,,,,, +5854,B168,B024,4.16,,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +5855,B169,B024,,,,,,,, +5856,B17,B024,7.55,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +5857,B170,B024,,,,,,,, +5858,B171,B024,4.45,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +5859,B172,B024,11.36,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +5860,B173,B024,33.78,,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +5861,B174,B024,,,,,,,, +5862,B175,B024,8.86,,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +5863,B176,B024,6,,,gray1987,,1860,Binford_2001_Table_9.01, +5864,B177,B024,,,,,,,, +5865,B178,B024,12,,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +5866,B179,B024,6,,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +5867,B18,B024,15.81,,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +5868,B180,B024,17.66,,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +5869,B181,B024,,,,,,,, +5870,B182,B024,4,,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +5871,B183,B024,,,,,,,, +5872,B184,B024,3.59,,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +5873,B185,B024,6.67,,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +5874,B186,B024,6.03,,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +5875,B187,B024,,,,,,,, +5876,B188,B024,9.2,,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +5877,B189,B024,3.13,,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +5878,B19,B024,3.48,,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +5879,B190,B024,,,,,,,, +5880,B191,B024,,,,,,,, +5881,B192,B024,5.71,,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +5882,B193,B024,,,,,,,, +5883,B194,B024,14.86,,,,,1715,Binford_2001_Table_9.01, +5884,B195,B024,5.61,,,steward1938,,1850,Binford_2001_Table_9.01, +5885,B196,B024,32.42,,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +5886,B197,B024,,,,,,,, +5887,B198,B024,4.96,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +5888,B199,B024,4.68,,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +5889,B2,B024,11.46,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +5890,B20,B024,5.71,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +5891,B200,B024,,,,,,,, +5892,B201,B024,,,,,,,, +5893,B202,B024,13.06,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +5894,B203,B024,,,,,,,, +5895,B204,B024,5.18,,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +5896,B205,B024,6.54,,,davis1965,,1870,Binford_2001_Table_9.01, +5897,B206,B024,5,,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +5898,B207,B024,7.08,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +5899,B208,B024,11.36,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +5900,B209,B024,,,,,,,, +5901,B21,B024,19.17,,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +5902,B210,B024,10.36,,,fowler1992,,1870,Binford_2001_Table_9.01, +5903,B211,B024,6.16,,,steward1938,,1860,Binford_2001_Table_9.01, +5904,B212,B024,,,,,,,, +5905,B213,B024,5.54,,,steward1938,,1870,Binford_2001_Table_9.01, +5906,B214,B024,,,,,,,, +5907,B215,B024,5.3,,,steward1938,,1870,Binford_2001_Table_9.01, +5908,B216,B024,5.58,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +5909,B217,B024,7.64,,,steward1938,,1860,Binford_2001_Table_9.01, +5910,B218,B024,,,,,,,, +5911,B219,B024,6.79,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +5912,B22,B024,6.59,,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +5913,B221,B024,9.11,,,steward1938,,1860,Binford_2001_Table_9.01, +5914,B222,B024,7.4,,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +5915,B223,B024,,,,,,,, +5916,B224,B024,4.68,,,steward1938,,1860,Binford_2001_Table_9.01, +5917,B225,B024,7.25,,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +5918,B226,B024,,,,,,,, +5919,B227,B024,,,,,,,, +5920,B228,B024,,,,,,,, +5921,B229,B024,,,,,,,, +5922,B23,B024,9.51,,,qiu1983,,1900,Binford_2001_Table_9.01, +5923,B230,B024,5.58,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +5924,B231,B024,,,,,,,, +5925,B232,B024,,,,,,,, +5926,B233,B024,,,,,,,, +5927,B234,B024,7.55,,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +5928,B24,B024,6.6,,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +5929,B240,B024,15,,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +5930,B241,B024,42.83,,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +5931,B242,B024,,,,,,,, +5932,B243,B024,,,,,,,, +5933,B244,B024,40.08,,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +5934,B245,B024,34.68,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +5935,B246,B024,44.16,,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +5936,B248,B024,37.5,,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +5937,B249,B024,32.34,,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +5938,B25,B024,8.65,,,shternberg1933,,1920,Binford_2001_Table_9.01, +5939,B250,B024,,,,,,,, +5940,B252,B024,28.33,,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +5941,B253,B024,23.27,,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +5942,B254,B024,,,,,,,, +5943,B255,B024,31.59,,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +5944,B256,B024,43.74,,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +5945,B257,B024,20,,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +5946,B258,B024,17.52,,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +5947,B259,B024,31.25,,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +5948,B26,B024,7.01,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +5949,B260,B024,18.54,,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +5950,B268,B024,,,,,,,, +5951,B269,B024,,,,,,,, +5952,B27,B024,3.09,,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +5953,B270,B024,4.83,,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +5954,B271,B024,,,,,,,, +5955,B272,B024,4.23,,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +5956,B273,B024,4.88,,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +5957,B274,B024,2.6,,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +5958,B275,B024,,,,,,,, +5959,B276,B024,8.95,,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +5960,B277,B024,8.75,,,stern1934,,1880,Binford_2001_Table_9.01, +5961,B278,B024,1.95,,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +5962,B279,B024,,,,,,,, +5963,B28,B024,3.5,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +5964,B280,B024,,,,,,,, +5965,B281,B024,4.64,,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +5966,B282,B024,,,,,,,, +5967,B283,B024,,,,,,,, +5968,B284,B024,4.67,,,pettitt1950,,1880,Binford_2001_Table_9.01, +5969,B285,B024,11.09,,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +5970,B286,B024,11.26,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +5971,B287,B024,,,,,,,, +5972,B288,B024,15.91,,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +5973,B289,B024,40.39,,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +5974,B290,B024,37.23,,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +5975,B291,B024,,,,,,,, +5976,B292,B024,10.37,,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +5977,B293,B024,20.04,,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +5978,B294,B024,9.53,,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +5979,B295,B024,3.48,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +5980,B296,B024,7.91,,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +5981,B297,B024,4.54,,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +5982,B298,B024,3.13,,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +5983,B299,B024,5.1,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +5984,B3,B024,,,,,,,, +5985,B315,B024,,,,,,,, +5986,B316,B024,,,,,,,, +5987,B317,B024,,,,,,,, +5988,B318,B024,,,,,,,, +5989,B319,B024,20.5,,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +5990,B320,B024,8.38,,,teit1930,,1860,Binford_2001_Table_9.01, +5991,B321,B024,3.97,,,clineetal1938,,1880,Binford_2001_Table_9.01, +5992,B322,B024,,,,,,,, +5993,B323,B024,4.5,,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +5994,B324,B024,,,,,,,, +5995,B325,B024,5.02,,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +5996,B326,B024,10.36,,,teit1930,,1870,Binford_2001_Table_9.01, +5997,B327,B024,3.57,,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +5998,B328,B024,14,,,kinietz1947,,1800,Binford_2001_Table_9.01, +5999,B329,B024,3.47,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +6000,B330,B024,6.02,,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +6001,B331,B024,6.95,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +6002,B332,B024,5.36,,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +6003,B333,B024,,,,,,,, +6004,B334,B024,6.71,,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +6005,B335,B024,9.8,,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +6006,B336,B024,8.1,,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +6007,B337,B024,,,,,,,, +6008,B338,B024,6.14,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +6009,B339,B024,,,,,,,, +6010,B340,B024,,,,,,,, +6011,B341,B024,,,,,,,, +6012,B342,B024,6.33,,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +6013,B343,B024,,,,,,,, +6014,B344,B024,,,,,,,, +6015,B345,B024,7.56,,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +6016,B346,B024,,,,,,,, +6017,B347,B024,,,,,,,, +6018,B348,B024,,,,,,,, +6019,B349,B024,4.15,,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +6020,B35,B024,,,,,,,, +6021,B350,B024,,,,,,,, +6022,B351,B024,,,,,,,, +6023,B352,B024,5.49,,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +6024,B353,B024,9.17,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +6025,B354,B024,2.49,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +6026,B355,B024,8.33,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +6027,B356,B024,10,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +6028,B357,B024,4.3,,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +6029,B358,B024,5.03,,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +6030,B359,B024,4.88,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +6031,B36,B024,,,,,,,, +6032,B360,B024,,,,,,,, +6033,B361,B024,15,,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +6034,B362,B024,3.79,,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +6035,B363,B024,,,,,,,, +6036,B364,B024,4.4,,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +6037,B365,B024,4.7,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +6038,B369,B024,,,,,,,, +6039,B37,B024,,,,,,,, +6040,B370,B024,4.14,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +6041,B371,B024,5,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +6042,B372,B024,1.54,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +6043,B373,B024,6.91,,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +6044,B374,B024,5.63,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +6045,B375,B024,4,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +6046,B377,B024,3.35,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +6047,B378,B024,4.09,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +6048,B379,B024,17.93,,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +6049,B38,B024,7.7,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +6050,B380,B024,21.96,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +6051,B381,B024,18.99,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +6052,B382,B024,4.2,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +6053,B383,B024,4.52,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +6054,B384,B024,8.51,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +6055,B385,B024,3.82,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +6056,B386,B024,10,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +6057,B387,B024,15.23,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +6058,B388,B024,1.29,,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +6059,B389,B024,54.02,,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +6060,B39,B024,8.65,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +6061,B390,B024,6.03,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +6062,B4,B024,10.16,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +6063,B40,B024,9.04,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +6064,B41,B024,12.04,,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +6065,B42,B024,9.25,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +6066,B43,B024,4.15,,,holmberg1950,,1940,Binford_2001_Table_9.01, +6067,B44,B024,9.71,,,stearman1989,,1968,Binford_2001_Table_9.01, +6068,B45,B024,8.16,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +6069,B46,B024,1.72,,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +6070,B47,B024,14.42,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +6071,B48,B024,8,,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +6072,B49,B024,6.32,,,kozaketal1979,,1954,Binford_2001_Table_9.01, +6073,B5,B024,0.88,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +6074,B50,B024,,,,,,,, +6075,B51,B024,7.65,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +6076,B52,B024,,,,,,,, +6077,B53,B024,,,,,,,, +6078,B54,B024,5.49,,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +6079,B55,B024,3.43,,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +6080,B6,B024,0.81,,,temple1903,,1906,Binford_2001_Table_9.01, +6081,B60,B024,12.08,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +6082,B61,B024,10.64,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +6083,B62,B024,18.99,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +6084,B63,B024,9.14,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +6085,B64,B024,10.12,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +6086,B65,B024,23.21,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +6087,B66,B024,,,,,,,, +6088,B67,B024,,,,,,,, +6089,B68,B024,,,,,,,, +6090,B69,B024,11.57,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +6091,B7,B024,8.33,,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +6092,B70,B024,9.07,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +6093,B71,B024,19.6,,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +6094,B72,B024,9.68,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +6095,B73,B024,5.84,,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +6096,B74,B024,7.91,,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +6097,B75,B024,4.58,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +6098,B76,B024,14.4,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +6099,B77,B024,4.67,,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +6100,B78,B024,,,,,,,, +6101,B79,B024,,,,,,,, +6102,B8,B024,10.49,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +6103,B82,B024,,,,,,,, +6104,B83,B024,,,,,,,, +6105,B84,B024,11.17,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +6106,B85,B024,6.14,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +6107,B86,B024,,,,,,,, +6108,B87,B024,5.72,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +6109,B88,B024,,,,,,,, +6110,B89,B024,,,,,,,, +6111,B9,B024,1.19,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +6112,B90,B024,,,,,,,, +6113,B91,B024,,,,,,,, +6114,B92,B024,,,,,,,, +6115,B93,B024,,,,,,,, +6116,B94,B024,8.13,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +6117,B95,B024,,,,,,,, +6118,B96,B024,,,,,,,, +6119,B97,B024,6.88,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +6120,B98,B024,9.43,,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +6121,B99,B024,,,,,,,, +6122,B1,B025,8.31,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +6123,B10,B025,7.53,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +6124,B100,B025,,,,,,,, +6125,B101,B025,,,,,,,, +6126,B102,B025,7.11,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +6127,B103,B025,6.29,,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +6128,B104,B025,,,,,,,, +6129,B105,B025,,,,,,,, +6130,B106,B025,,,,,,,, +6131,B107,B025,,,,,,,, +6132,B108,B025,7.51,,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +6133,B109,B025,9.31,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +6134,B11,B025,10.24,,,morris1982a,,1972,Binford_2001_Table_9.01, +6135,B110,B025,,,,,,,, +6136,B111,B025,4.81,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +6137,B112,B025,,,,,,,, +6138,B113,B025,3.14,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +6139,B114,B025,,,,,,,, +6140,B115,B025,,,,,,,, +6141,B116,B025,,,,,,,, +6142,B117,B025,4.44,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +6143,B118,B025,4.05,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +6144,B119,B025,,,,,,,, +6145,B12,B025,8.4,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +6146,B120,B025,3.3,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +6147,B121,B025,,,,,,,, +6148,B122,B025,,,,,,,, +6149,B123,B025,4.31,,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +6150,B124,B025,4.69,,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +6151,B125,B025,,,,,,,, +6152,B126,B025,,,,,,,, +6153,B127,B025,,,,,,,, +6154,B128,B025,,,,,,,, +6155,B129,B025,,,,,,,, +6156,B13,B025,,,,,,,, +6157,B130,B025,,,,,,,, +6158,B131,B025,,,,,,,, +6159,B132,B025,,,,,,,, +6160,B133,B025,31.19,,,williams1985,,1850,Binford_2001_Table_9.01, +6161,B134,B025,7.42,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +6162,B135,B025,,,,,,,, +6163,B136,B025,,,,,,,, +6164,B137,B025,,,,,,,, +6165,B14,B025,9,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +6166,B143,B025,8.14,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +6167,B144,B025,,,,,,,, +6168,B145,B025,,,,,,,, +6169,B146,B025,,,,,,,, +6170,B147,B025,,,,,,,, +6171,B148,B025,,,,,,,, +6172,B149,B025,,,,,,,, +6173,B15,B025,12.06,,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +6174,B150,B025,,,,,,,, +6175,B151,B025,,,,,,,, +6176,B152,B025,5.51,,,voegelin1938,,1850,Binford_2001_Table_9.01, +6177,B153,B025,,,,,,,, +6178,B154,B025,,,,,,,, +6179,B155,B025,,,,,,,, +6180,B156,B025,,,,,,,, +6181,B157,B025,,,,,,,, +6182,B158,B025,,,,,,,, +6183,B159,B025,31.58,,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +6184,B16,B025,10,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +6185,B160,B025,,,,,,,, +6186,B161,B025,,,,,,,, +6187,B162,B025,,,,,,,, +6188,B163,B025,,,,,,,, +6189,B164,B025,,,,,,,, +6190,B165,B025,,,,,,,, +6191,B166,B025,,,,,,,, +6192,B167,B025,,,,,,,, +6193,B168,B025,,,,,,,, +6194,B169,B025,,,,,,,, +6195,B17,B025,6.13,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +6196,B170,B025,,,,,,,, +6197,B171,B025,7.4,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +6198,B172,B025,21.11,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +6199,B173,B025,,,,,,,, +6200,B174,B025,,,,,,,, +6201,B175,B025,,,,,,,, +6202,B176,B025,,,,,,,, +6203,B177,B025,,,,,,,, +6204,B178,B025,,,,,,,, +6205,B179,B025,,,,,,,, +6206,B18,B025,10.24,,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +6207,B180,B025,,,,,,,, +6208,B181,B025,,,,,,,, +6209,B182,B025,,,,,,,, +6210,B183,B025,,,,,,,, +6211,B184,B025,,,,,,,, +6212,B185,B025,,,,,,,, +6213,B186,B025,,,,,,,, +6214,B187,B025,,,,,,,, +6215,B188,B025,,,,,,,, +6216,B189,B025,,,,,,,, +6217,B19,B025,7.16,,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +6218,B190,B025,,,,,,,, +6219,B191,B025,,,,,,,, +6220,B192,B025,,,,,,,, +6221,B193,B025,,,,,,,, +6222,B194,B025,,,,,,,, +6223,B195,B025,4.02,,,steward1938,,1850,Binford_2001_Table_9.01, +6224,B196,B025,,,,,,,, +6225,B197,B025,,,,,,,, +6226,B198,B025,7.88,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +6227,B199,B025,,,,,,,, +6228,B2,B025,14.91,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +6229,B20,B025,5.71,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +6230,B200,B025,,,,,,,, +6231,B201,B025,,,,,,,, +6232,B202,B025,17.44,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +6233,B203,B025,,,,,,,, +6234,B204,B025,,,,,,,, +6235,B205,B025,,,,,,,, +6236,B206,B025,,,,,,,, +6237,B207,B025,10.4,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +6238,B208,B025,14.66,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +6239,B209,B025,,,,,,,, +6240,B21,B025,,,,,,,, +6241,B210,B025,,,,,,,, +6242,B211,B025,7.71,,,steward1938,,1860,Binford_2001_Table_9.01, +6243,B212,B025,,,,,,,, +6244,B213,B025,,,,,,,, +6245,B214,B025,,,,,,,, +6246,B215,B025,,,,,,,, +6247,B216,B025,4.6,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +6248,B217,B025,,,,,,,, +6249,B218,B025,,,,,,,, +6250,B219,B025,5.88,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +6251,B22,B025,,,,,,,, +6252,B221,B025,8.68,,,steward1938,,1860,Binford_2001_Table_9.01, +6253,B222,B025,,,,,,,, +6254,B223,B025,,,,,,,, +6255,B224,B025,4.58,,,steward1938,,1860,Binford_2001_Table_9.01, +6256,B225,B025,,,,,,,, +6257,B226,B025,,,,,,,, +6258,B227,B025,,,,,,,, +6259,B228,B025,,,,,,,, +6260,B229,B025,14.05,,,steward1938,,1860,Binford_2001_Table_9.01, +6261,B23,B025,,,,,,,, +6262,B230,B025,,,,,,,, +6263,B231,B025,,,,,,,, +6264,B232,B025,,,,,,,, +6265,B233,B025,,,,,,,, +6266,B234,B025,,,,,,,, +6267,B24,B025,,,,,,,, +6268,B240,B025,,,,,,,, +6269,B241,B025,,,,,,,, +6270,B242,B025,,,,,,,, +6271,B243,B025,,,,,,,, +6272,B244,B025,,,,,,,, +6273,B245,B025,36.09,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +6274,B246,B025,,,,,,,, +6275,B248,B025,,,,,,,, +6276,B249,B025,,,,,,,, +6277,B25,B025,21.69,,,shternberg1933,,1920,Binford_2001_Table_9.01, +6278,B250,B025,,,,,,,, +6279,B252,B025,,,,,,,, +6280,B253,B025,,,,,,,, +6281,B254,B025,,,,,,,, +6282,B255,B025,,,,,,,, +6283,B256,B025,,,,,,,, +6284,B257,B025,,,,,,,, +6285,B258,B025,,,,,,,, +6286,B259,B025,,,,,,,, +6287,B26,B025,13.48,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +6288,B260,B025,,,,,,,, +6289,B268,B025,,,,,,,, +6290,B269,B025,,,,,,,, +6291,B27,B025,,,,,,,, +6292,B270,B025,29,,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +6293,B271,B025,22.16,,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +6294,B272,B025,,,,,,,, +6295,B273,B025,43.92,,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +6296,B274,B025,,,,,,,, +6297,B275,B025,,,,,,,, +6298,B276,B025,,,,,,,, +6299,B277,B025,,,,,,,, +6300,B278,B025,7.81,,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +6301,B279,B025,7.79,,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +6302,B28,B025,7.42,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +6303,B280,B025,,,,,,,, +6304,B281,B025,,,,,,,, +6305,B282,B025,,,,,,,, +6306,B283,B025,,,,,,,, +6307,B284,B025,,,,,,,, +6308,B285,B025,,,,,,,, +6309,B286,B025,52.4,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +6310,B287,B025,,,,,,,, +6311,B288,B025,,,,,,,, +6312,B289,B025,,,,,,,, +6313,B290,B025,,,,,,,, +6314,B291,B025,,,,,,,, +6315,B292,B025,,,,,,,, +6316,B293,B025,,,,,,,, +6317,B294,B025,,,,,,,, +6318,B295,B025,10.96,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +6319,B296,B025,,,,,,,, +6320,B297,B025,,,,,,,, +6321,B298,B025,,,,,,,, +6322,B299,B025,13.09,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +6323,B3,B025,,,,,,,, +6324,B315,B025,,,,,,,, +6325,B316,B025,,,,,,,, +6326,B317,B025,,,,,,,, +6327,B318,B025,,,,,,,, +6328,B319,B025,,,,,,,, +6329,B320,B025,16.76,,,teit1930,,1860,Binford_2001_Table_9.01, +6330,B321,B025,22.68,,,clineetal1938,,1880,Binford_2001_Table_9.01, +6331,B322,B025,,,,,,,, +6332,B323,B025,,,,,,,, +6333,B324,B025,,,,,,,, +6334,B325,B025,,,,,,,, +6335,B326,B025,20.72,,,teit1930,,1870,Binford_2001_Table_9.01, +6336,B327,B025,7.14,,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +6337,B328,B025,,,,,,,, +6338,B329,B025,4.59,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +6339,B330,B025,,,,,,,, +6340,B331,B025,13.57,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +6341,B332,B025,,,,,,,, +6342,B333,B025,,,,,,,, +6343,B334,B025,,,,,,,, +6344,B335,B025,,,,,,,, +6345,B336,B025,,,,,,,, +6346,B337,B025,,,,,,,, +6347,B338,B025,11.9,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +6348,B339,B025,,,,,,,, +6349,B340,B025,10.27,,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +6350,B341,B025,,,,,,,, +6351,B342,B025,14.39,,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +6352,B343,B025,,,,,,,, +6353,B344,B025,14.99,,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +6354,B345,B025,,,,,,,, +6355,B346,B025,16.91,,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +6356,B347,B025,,,,,,,, +6357,B348,B025,,,,,,,, +6358,B349,B025,,,,,,,, +6359,B35,B025,,,,,,,, +6360,B350,B025,12.71,,,gillespie1981,,1800,Binford_2001_Table_9.01, +6361,B351,B025,,,,,,,, +6362,B352,B025,,,,,,,, +6363,B353,B025,13.16,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +6364,B354,B025,8,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +6365,B355,B025,16.59,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +6366,B356,B025,20,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +6367,B357,B025,,,,,,,, +6368,B358,B025,,,,,,,, +6369,B359,B025,8.76,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +6370,B36,B025,,,,,,,, +6371,B360,B025,10.72,,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +6372,B361,B025,,,,,,,, +6373,B362,B025,,,,,,,, +6374,B363,B025,18.02,,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +6375,B364,B025,16.22,,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +6376,B365,B025,8.11,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +6377,B369,B025,,,,,,,, +6378,B37,B025,,,,,,,, +6379,B370,B025,6.67,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +6380,B371,B025,10,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +6381,B372,B025,6.14,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +6382,B373,B025,,,,,,,, +6383,B374,B025,9.28,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +6384,B375,B025,10,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +6385,B377,B025,5.35,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +6386,B378,B025,,,,,,,, +6387,B379,B025,,,,,,,, +6388,B38,B025,14.54,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +6389,B380,B025,52.8,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +6390,B381,B025,30.7,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +6391,B382,B025,9.09,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +6392,B383,B025,8.52,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +6393,B384,B025,19.67,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +6394,B385,B025,6.52,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +6395,B386,B025,18.32,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +6396,B387,B025,22.73,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +6397,B388,B025,,,,,,,, +6398,B389,B025,,,,,,,, +6399,B39,B025,10.27,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +6400,B390,B025,8.88,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +6401,B4,B025,8.56,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +6402,B40,B025,11.75,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +6403,B41,B025,24.08,,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +6404,B42,B025,9.74,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +6405,B43,B025,17.63,,,holmberg1950,,1940,Binford_2001_Table_9.01, +6406,B44,B025,10.02,,,stearman1989,,1968,Binford_2001_Table_9.01, +6407,B45,B025,13.06,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +6408,B46,B025,,,,,,,, +6409,B47,B025,17.14,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +6410,B48,B025,,,,,,,, +6411,B49,B025,7.5,,,kozaketal1979,,1954,Binford_2001_Table_9.01, +6412,B5,B025,7.52,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +6413,B50,B025,,,,,,,, +6414,B51,B025,15,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +6415,B52,B025,,,,,,,, +6416,B53,B025,,,,,,,, +6417,B54,B025,,,,,,,, +6418,B55,B025,,,,,,,, +6419,B6,B025,,,,,,,, +6420,B60,B025,11.25,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +6421,B61,B025,7.73,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +6422,B62,B025,12.32,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +6423,B63,B025,7.22,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +6424,B64,B025,,,,,,,, +6425,B65,B025,24.3,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +6426,B66,B025,,,,,,,, +6427,B67,B025,,,,,,,, +6428,B68,B025,,,,,,,, +6429,B69,B025,9.33,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +6430,B7,B025,8.66,,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +6431,B70,B025,8.95,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +6432,B71,B025,,,,,,,, +6433,B72,B025,7.21,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +6434,B73,B025,,,,,,,, +6435,B74,B025,,,,,,,, +6436,B75,B025,,,,,,,, +6437,B76,B025,11.02,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +6438,B77,B025,,,,,,,, +6439,B78,B025,,,,,,,, +6440,B79,B025,,,,,,,, +6441,B8,B025,11.41,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +6442,B82,B025,,,,,,,, +6443,B83,B025,,,,,,,, +6444,B84,B025,6.85,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +6445,B85,B025,5.57,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +6446,B86,B025,,,,,,,, +6447,B87,B025,4.93,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +6448,B88,B025,,,,,,,, +6449,B89,B025,,,,,,,, +6450,B9,B025,10.43,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +6451,B90,B025,,,,,,,, +6452,B91,B025,,,,,,,, +6453,B92,B025,,,,,,,, +6454,B93,B025,,,,,,,, +6455,B94,B025,7.14,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +6456,B95,B025,4.32,,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +6457,B96,B025,,,,,,,, +6458,B97,B025,5.33,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +6459,B98,B025,,,,,,,, +6460,B99,B025,,,,,,,, +6461,B1,B027,1.68,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +6462,B10,B027,1.1,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +6463,B100,B027,,,,,,,, +6464,B101,B027,,,,,,,, +6465,B102,B027,0.55,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +6466,B103,B027,,,,,,,, +6467,B104,B027,,,,,,,, +6468,B105,B027,,,,,,,, +6469,B106,B027,,,,,,,, +6470,B107,B027,,,,,,,, +6471,B108,B027,,,,,,,, +6472,B109,B027,0.86,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +6473,B11,B027,1.39,,,morris1982a,,1972,Binford_2001_Table_9.01, +6474,B110,B027,,,,,,,, +6475,B111,B027,0.79,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +6476,B112,B027,,,,,,,, +6477,B113,B027,0.65,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +6478,B114,B027,,,,,,,, +6479,B115,B027,,,,,,,, +6480,B116,B027,,,,,,,, +6481,B117,B027,0.75,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +6482,B118,B027,0.72,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +6483,B119,B027,,,,,,,, +6484,B12,B027,1.21,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +6485,B120,B027,0.83,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +6486,B121,B027,,,,,,,, +6487,B122,B027,,,,,,,, +6488,B123,B027,,,,,,,, +6489,B124,B027,,,,,,,, +6490,B125,B027,,,,,,,, +6491,B126,B027,,,,,,,, +6492,B127,B027,,,,,,,, +6493,B128,B027,,,,,,,, +6494,B129,B027,,,,,,,, +6495,B13,B027,,,,,,,, +6496,B130,B027,,,,,,,, +6497,B131,B027,,,,,,,, +6498,B132,B027,,,,,,,, +6499,B133,B027,0.89,,,williams1985,,1850,Binford_2001_Table_9.01, +6500,B134,B027,0.84,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +6501,B135,B027,,,,,,,, +6502,B136,B027,,,,,,,, +6503,B137,B027,,,,,,,, +6504,B14,B027,1.24,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +6505,B143,B027,1.17,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +6506,B144,B027,,,,,,,, +6507,B145,B027,,,,,,,, +6508,B146,B027,,,,,,,, +6509,B147,B027,,,,,,,, +6510,B148,B027,,,,,,,, +6511,B149,B027,,,,,,,, +6512,B15,B027,1,,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +6513,B150,B027,,,,,,,, +6514,B151,B027,,,,,,,, +6515,B152,B027,1.84,,,voegelin1938,,1850,Binford_2001_Table_9.01, +6516,B153,B027,,,,,,,, +6517,B154,B027,,,,,,,, +6518,B155,B027,,,,,,,, +6519,B156,B027,,,,,,,, +6520,B157,B027,,,,,,,, +6521,B158,B027,,,,,,,, +6522,B159,B027,2.75,,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +6523,B16,B027,1.51,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +6524,B160,B027,,,,,,,, +6525,B161,B027,,,,,,,, +6526,B162,B027,,,,,,,, +6527,B163,B027,,,,,,,, +6528,B164,B027,,,,,,,, +6529,B165,B027,,,,,,,, +6530,B166,B027,,,,,,,, +6531,B167,B027,,,,,,,, +6532,B168,B027,,,,,,,, +6533,B169,B027,,,,,,,, +6534,B17,B027,0.81,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +6535,B170,B027,,,,,,,, +6536,B171,B027,1.66,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +6537,B172,B027,1.86,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +6538,B173,B027,,,,,,,, +6539,B174,B027,,,,,,,, +6540,B175,B027,,,,,,,, +6541,B176,B027,,,,,,,, +6542,B177,B027,,,,,,,, +6543,B178,B027,,,,,,,, +6544,B179,B027,,,,,,,, +6545,B18,B027,0.65,,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +6546,B180,B027,,,,,,,, +6547,B181,B027,,,,,,,, +6548,B182,B027,,,,,,,, +6549,B183,B027,,,,,,,, +6550,B184,B027,,,,,,,, +6551,B185,B027,,,,,,,, +6552,B186,B027,,,,,,,, +6553,B187,B027,,,,,,,, +6554,B188,B027,,,,,,,, +6555,B189,B027,,,,,,,, +6556,B19,B027,2.05,,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +6557,B190,B027,,,,,,,, +6558,B191,B027,,,,,,,, +6559,B192,B027,,,,,,,, +6560,B193,B027,2.03,,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +6561,B194,B027,,,,,,,, +6562,B195,B027,0.72,,,steward1938,,1850,Binford_2001_Table_9.01, +6563,B196,B027,,,,,,,, +6564,B197,B027,,,,,,,, +6565,B198,B027,1.59,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +6566,B199,B027,,,,,,,, +6567,B2,B027,1.3,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +6568,B20,B027,1,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +6569,B200,B027,,,,,,,, +6570,B201,B027,,,,,,,, +6571,B202,B027,1.34,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +6572,B203,B027,,,,,,,, +6573,B204,B027,,,,,,,, +6574,B205,B027,,,,,,,, +6575,B206,B027,,,,,,,, +6576,B207,B027,1.47,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +6577,B208,B027,1.29,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +6578,B209,B027,,,,,,,, +6579,B21,B027,,,,,,,, +6580,B210,B027,,,,,,,, +6581,B211,B027,1.25,,,steward1938,,1860,Binford_2001_Table_9.01, +6582,B212,B027,,,,,,,, +6583,B213,B027,,,,,,,, +6584,B214,B027,,,,,,,, +6585,B215,B027,,,,,,,, +6586,B216,B027,0.82,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +6587,B217,B027,,,,,,,, +6588,B218,B027,,,,,,,, +6589,B219,B027,0.87,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +6590,B22,B027,,,,,,,, +6591,B221,B027,0.95,,,steward1938,,1860,Binford_2001_Table_9.01, +6592,B222,B027,,,,,,,, +6593,B223,B027,,,,,,,, +6594,B224,B027,0.98,,,steward1938,,1860,Binford_2001_Table_9.01, +6595,B225,B027,,,,,,,, +6596,B226,B027,,,,,,,, +6597,B227,B027,,,,,,,, +6598,B228,B027,,,,,,,, +6599,B229,B027,,,,,,,, +6600,B23,B027,,,,,,,, +6601,B230,B027,2.52,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +6602,B231,B027,0.79,,,whiting1950,,1870,Binford_2001_Table_9.01, +6603,B232,B027,,,,,,,, +6604,B233,B027,,,,,,,, +6605,B234,B027,,,,,,,, +6606,B24,B027,,,,,,,, +6607,B240,B027,,,,,,,, +6608,B241,B027,,,,,,,, +6609,B242,B027,,,,,,,, +6610,B243,B027,,,,,,,, +6611,B244,B027,,,,,,,, +6612,B245,B027,1.04,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +6613,B246,B027,,,,,,,, +6614,B248,B027,,,,,,,, +6615,B249,B027,,,,,,,, +6616,B25,B027,2.51,,,shternberg1933,,1920,Binford_2001_Table_9.01, +6617,B250,B027,,,,,,,, +6618,B252,B027,,,,,,,, +6619,B253,B027,,,,,,,, +6620,B254,B027,,,,,,,, +6621,B255,B027,,,,,,,, +6622,B256,B027,,,,,,,, +6623,B257,B027,,,,,,,, +6624,B258,B027,,,,,,,, +6625,B259,B027,,,,,,,, +6626,B26,B027,1.92,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +6627,B260,B027,,,,,,,, +6628,B268,B027,,,,,,,, +6629,B269,B027,,,,,,,, +6630,B27,B027,,,,,,,, +6631,B270,B027,6,,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +6632,B271,B027,,,,,,,, +6633,B272,B027,,,,,,,, +6634,B273,B027,9.01,,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +6635,B274,B027,,,,,,,, +6636,B275,B027,,,,,,,, +6637,B276,B027,,,,,,,, +6638,B277,B027,,,,,,,, +6639,B278,B027,4,,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +6640,B279,B027,,,,,,,, +6641,B28,B027,2.12,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +6642,B280,B027,,,,,,,, +6643,B281,B027,,,,,,,, +6644,B282,B027,,,,,,,, +6645,B283,B027,,,,,,,, +6646,B284,B027,,,,,,,, +6647,B285,B027,,,,,,,, +6648,B286,B027,4.65,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +6649,B287,B027,,,,,,,, +6650,B288,B027,,,,,,,, +6651,B289,B027,,,,,,,, +6652,B290,B027,,,,,,,, +6653,B291,B027,,,,,,,, +6654,B292,B027,,,,,,,, +6655,B293,B027,,,,,,,, +6656,B294,B027,,,,,,,, +6657,B295,B027,3.15,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +6658,B296,B027,,,,,,,, +6659,B297,B027,,,,,,,, +6660,B298,B027,,,,,,,, +6661,B299,B027,2.57,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +6662,B3,B027,,,,,,,, +6663,B315,B027,,,,,,,, +6664,B316,B027,,,,,,,, +6665,B317,B027,,,,,,,, +6666,B318,B027,,,,,,,, +6667,B319,B027,,,,,,,, +6668,B320,B027,2,,,teit1930,,1860,Binford_2001_Table_9.01, +6669,B321,B027,5.71,,,clineetal1938,,1880,Binford_2001_Table_9.01, +6670,B322,B027,,,,,,,, +6671,B323,B027,,,,,,,, +6672,B324,B027,,,,,,,, +6673,B325,B027,,,,,,,, +6674,B326,B027,2,,,teit1930,,1870,Binford_2001_Table_9.01, +6675,B327,B027,2,,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +6676,B328,B027,,,,,,,, +6677,B329,B027,1.32,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +6678,B330,B027,,,,,,,, +6679,B331,B027,1.95,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +6680,B332,B027,,,,,,,, +6681,B333,B027,,,,,,,, +6682,B334,B027,,,,,,,, +6683,B335,B027,,,,,,,, +6684,B336,B027,,,,,,,, +6685,B337,B027,,,,,,,, +6686,B338,B027,1.94,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +6687,B339,B027,,,,,,,, +6688,B340,B027,,,,,,,, +6689,B341,B027,,,,,,,, +6690,B342,B027,2.27,,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +6691,B343,B027,,,,,,,, +6692,B344,B027,,,,,,,, +6693,B345,B027,,,,,,,, +6694,B346,B027,,,,,,,, +6695,B347,B027,,,,,,,, +6696,B348,B027,,,,,,,, +6697,B349,B027,,,,,,,, +6698,B35,B027,,,,,,,, +6699,B350,B027,,,,,,,, +6700,B351,B027,2,,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +6701,B352,B027,,,,,,,, +6702,B353,B027,1.44,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +6703,B354,B027,3.21,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +6704,B355,B027,1.99,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +6705,B356,B027,2,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +6706,B357,B027,,,,,,,, +6707,B358,B027,,,,,,,, +6708,B359,B027,1.8,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +6709,B36,B027,,,,,,,, +6710,B360,B027,,,,,,,, +6711,B361,B027,,,,,,,, +6712,B362,B027,,,,,,,, +6713,B363,B027,,,,,,,, +6714,B364,B027,3.69,,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +6715,B365,B027,1.73,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +6716,B369,B027,,,,,,,, +6717,B37,B027,,,,,,,, +6718,B370,B027,1.61,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +6719,B371,B027,2,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +6720,B372,B027,4,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +6721,B373,B027,,,,,,,, +6722,B374,B027,1.65,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +6723,B375,B027,2.5,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +6724,B377,B027,1.6,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +6725,B378,B027,,,,,,,, +6726,B379,B027,,,,,,,, +6727,B38,B027,1.89,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +6728,B380,B027,2.4,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +6729,B381,B027,1.62,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +6730,B382,B027,2.16,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +6731,B383,B027,1.89,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +6732,B384,B027,2.31,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +6733,B385,B027,1.71,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +6734,B386,B027,1.83,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +6735,B387,B027,1.49,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +6736,B388,B027,,,,,,,, +6737,B389,B027,,,,,,,, +6738,B39,B027,1.19,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +6739,B390,B027,1.47,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +6740,B4,B027,0.84,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +6741,B40,B027,1.3,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +6742,B41,B027,2,,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +6743,B42,B027,1.05,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +6744,B43,B027,4.25,,,holmberg1950,,1940,Binford_2001_Table_9.01, +6745,B44,B027,1.03,,,stearman1989,,1968,Binford_2001_Table_9.01, +6746,B45,B027,1.6,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +6747,B46,B027,,,,,,,, +6748,B47,B027,1.19,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +6749,B48,B027,,,,,,,, +6750,B49,B027,1.19,,,kozaketal1979,,1954,Binford_2001_Table_9.01, +6751,B5,B027,8.5,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +6752,B50,B027,3.97,,,henry1964,,1910,Binford_2001_Table_9.01, +6753,B51,B027,1.96,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +6754,B52,B027,,,,,,,, +6755,B53,B027,1.51,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +6756,B54,B027,,,,,,,, +6757,B55,B027,,,,,,,, +6758,B6,B027,,,,,,,, +6759,B60,B027,0.93,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +6760,B61,B027,0.73,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +6761,B62,B027,0.65,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +6762,B63,B027,0.79,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +6763,B64,B027,0,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +6764,B65,B027,1.05,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +6765,B66,B027,,,,,,,, +6766,B67,B027,,,,,,,, +6767,B68,B027,,,,,,,, +6768,B69,B027,0.81,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +6769,B7,B027,1.04,,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +6770,B70,B027,0.99,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +6771,B71,B027,,,,,,,, +6772,B72,B027,0.74,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +6773,B73,B027,,,,,,,, +6774,B74,B027,,,,,,,, +6775,B75,B027,,,,,,,, +6776,B76,B027,0.77,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +6777,B77,B027,,,,,,,, +6778,B78,B027,,,,,,,, +6779,B79,B027,,,,,,,, +6780,B8,B027,1.09,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +6781,B82,B027,,,,,,,, +6782,B83,B027,,,,,,,, +6783,B84,B027,0.61,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +6784,B85,B027,0.91,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +6785,B86,B027,,,,,,,, +6786,B87,B027,0.86,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +6787,B88,B027,,,,,,,, +6788,B89,B027,,,,,,,, +6789,B9,B027,8.77,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +6790,B90,B027,,,,,,,, +6791,B91,B027,,,,,,,, +6792,B92,B027,,,,,,,, +6793,B93,B027,,,,,,,, +6794,B94,B027,0.88,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +6795,B95,B027,,,,,,,, +6796,B96,B027,,,,,,,, +6797,B97,B027,0.78,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +6798,B98,B027,,,,,,,, +6799,B99,B027,,,,,,,, +6800,B1,B029,Local autonomy with leader,B029-2,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +6801,B10,B029,Local autonomy with leader,B029-2,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +6802,B100,B029,Autonomous,B029-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +6803,B101,B029,Autonomous,B029-1,,kaberry1939,,1934,Binford_2001_Table_9.01, +6804,B102,B029,Local autonomy with leader,B029-2,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +6805,B103,B029,Local autonomy with leader,B029-2,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +6806,B104,B029,Autonomous,B029-1,,,,,Binford_2001_Table_9.01, +6807,B105,B029,Local autonomy with leader and council,B029-3,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +6808,B106,B029,Autonomous,B029-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +6809,B107,B029,Local autonomy with leader,B029-2,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +6810,B108,B029,Autonomous,B029-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +6811,B109,B029,Autonomous,B029-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +6812,B11,B029,Autonomous,B029-1,,morris1982a,,1972,Binford_2001_Table_9.01, +6813,B110,B029,Local autonomy with leader,B029-2,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +6814,B111,B029,Autonomous,B029-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +6815,B112,B029,Autonomous,B029-1,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +6816,B113,B029,Autonomous,B029-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +6817,B114,B029,Local autonomy with leader and council,B029-3,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +6818,B115,B029,Local autonomy with leader and council,B029-3,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +6819,B116,B029,Autonomous,B029-1,,duncankemp1964,,1900,Binford_2001_Table_9.01, +6820,B117,B029,Autonomous,B029-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +6821,B118,B029,Autonomous,B029-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +6822,B119,B029,Local autonomy with leader,B029-2,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +6823,B12,B029,Autonomous,B029-1,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +6824,B120,B029,Autonomous,B029-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +6825,B121,B029,Local autonomy with leader,B029-2,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +6826,B122,B029,Autonomous,B029-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +6827,B123,B029,Autonomous,B029-1,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +6828,B124,B029,Autonomous,B029-1,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +6829,B125,B029,Local autonomy with leader,B029-2,,parker1905,,1880,Binford_2001_Table_9.01, +6830,B126,B029,Autonomous,B029-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +6831,B127,B029,Local autonomy with leader,B029-2,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +6832,B128,B029,Autonomous,B029-1,,,,1890,Binford_2001_Table_9.01, +6833,B129,B029,Autonomous,B029-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +6834,B13,B029,Autonomous,B029-1,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +6835,B130,B029,Local autonomy with leader,B029-2,,,,1910,Binford_2001_Table_9.01, +6836,B131,B029,Local autonomy with leader and council,B029-3,,,,1850,Binford_2001_Table_9.01, +6837,B132,B029,Autonomous,B029-1,,nind1831,,1850,Binford_2001_Table_9.01, +6838,B133,B029,Local autonomy with leader and council,B029-3,,williams1985,,1850,Binford_2001_Table_9.01, +6839,B134,B029,Autonomous,B029-1,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +6840,B135,B029,Local autonomy with leader,B029-2,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +6841,B136,B029,Local autonomy with leader,B029-2,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +6842,B137,B029,Autonomous,B029-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +6843,B14,B029,Autonomous,B029-1,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +6844,B143,B029,Local autonomy with leader,B029-2,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +6845,B144,B029,Local autonomy with leader and council,B029-3,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +6846,B145,B029,Local autonomy with leader and council,B029-3,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +6847,B146,B029,Local autonomy with leader,B029-2,,meigs1939,,1880,Binford_2001_Table_9.01, +6848,B147,B029,Local autonomy with leader and council,B029-3,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +6849,B148,B029,Local autonomy with leader and council,B029-3,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +6850,B149,B029,Local autonomy with leader and council,B029-3,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +6851,B15,B029,Local autonomy with leader,B029-2,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +6852,B150,B029,Local autonomy with leader and council,B029-3,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +6853,B151,B029,Local autonomy with leader and council,B029-3,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +6854,B152,B029,Local autonomy with leader,B029-2,,voegelin1938,,1850,Binford_2001_Table_9.01, +6855,B153,B029,Local autonomy with leader and council,B029-3,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +6856,B154,B029,Local autonomy with leader and council,B029-3,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +6857,B155,B029,Local autonomy with leader and council,B029-3,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +6858,B156,B029,Local autonomy with leader,B029-2,,,,1770,Binford_2001_Table_9.01, +6859,B157,B029,Local autonomy with leader,B029-2,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +6860,B158,B029,Local autonomy with leader and council,B029-3,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +6861,B159,B029,Local autonomy with leader and council,B029-3,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +6862,B16,B029,Local autonomy with leader,B029-2,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +6863,B160,B029,Local autonomy with leader and council,B029-3,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +6864,B161,B029,Regional leaders,B029-4,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +6865,B162,B029,Local autonomy with leader and council,B029-3,,dixon1910,,1860,Binford_2001_Table_9.01, +6866,B163,B029,Local autonomy with leader and council,B029-3,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +6867,B164,B029,Local autonomy with leader and council,B029-3,,gifford1926b,,1805,Binford_2001_Table_9.01, +6868,B165,B029,Local autonomy with leader and council,B029-3,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +6869,B166,B029,Local autonomy with leader and council,B029-3,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +6870,B167,B029,Local autonomy with leader and council,B029-3,,,,,Binford_2001_Table_9.01, +6871,B168,B029,Local autonomy with leader and council,B029-3,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +6872,B169,B029,Local autonomy with leader and council,B029-3,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +6873,B17,B029,Local autonomy with leader,B029-2,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +6874,B170,B029,Local autonomy with leader and council,B029-3,,cook1955,,,Binford_2001_Table_9.01, +6875,B171,B029,Local autonomy with leader and council,B029-3,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +6876,B172,B029,Local autonomy with leader and council,B029-3,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +6877,B173,B029,Local autonomy with leader and council,B029-3,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +6878,B174,B029,Local autonomy with leader and council,B029-3,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +6879,B175,B029,Local autonomy with leader and council,B029-3,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +6880,B176,B029,Local autonomy with leader,B029-2,,gray1987,,1860,Binford_2001_Table_9.01, +6881,B177,B029,Local autonomy with leader,B029-2,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +6882,B178,B029,Local autonomy with leader,B029-2,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +6883,B179,B029,Local autonomy with leader,B029-2,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +6884,B18,B029,Local autonomy with leader,B029-2,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +6885,B180,B029,Local autonomy with leader,B029-2,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +6886,B181,B029,Local autonomy with leader,B029-2,,gray1987,,1870,Binford_2001_Table_9.01, +6887,B182,B029,Local autonomy with leader and council,B029-3,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +6888,B183,B029,Local autonomy with leader,B029-2,,gifford1926b,,1860,Binford_2001_Table_9.01, +6889,B184,B029,Local autonomy with leader and council,B029-3,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +6890,B185,B029,Local autonomy with leader,B029-2,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +6891,B186,B029,Local autonomy with leader,B029-2,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +6892,B187,B029,Local autonomy with leader,B029-2,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +6893,B188,B029,Local autonomy with leader,B029-2,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +6894,B189,B029,Local autonomy with leader,B029-2,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +6895,B19,B029,Autonomous,B029-1,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +6896,B190,B029,Local autonomy with leader,B029-2,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +6897,B191,B029,Local autonomy with leader,B029-2,,,,1570,Binford_2001_Table_9.01, +6898,B192,B029,Autonomous,B029-1,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +6899,B193,B029,Local autonomy with leader and council,B029-3,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +6900,B194,B029,Autonomous,B029-1,,,,1715,Binford_2001_Table_9.01, +6901,B195,B029,Local autonomy with leader,B029-2,,steward1938,,1850,Binford_2001_Table_9.01, +6902,B196,B029,Local autonomy with leader and council,B029-3,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +6903,B197,B029,Local autonomy with leader,B029-2,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +6904,B198,B029,Local autonomy with leader,B029-2,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +6905,B199,B029,Local autonomy with leader and council,B029-3,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +6906,B2,B029,Local autonomy with leader,B029-2,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +6907,B20,B029,Autonomous,B029-1,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +6908,B200,B029,Local autonomy with leader,B029-2,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +6909,B201,B029,Local autonomy with leader,B029-2,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +6910,B202,B029,Local autonomy with leader and council,B029-3,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +6911,B203,B029,Autonomous,B029-1,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +6912,B204,B029,Autonomous,B029-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +6913,B205,B029,Local autonomy with leader,B029-2,,davis1965,,1870,Binford_2001_Table_9.01, +6914,B206,B029,Local autonomy with leader,B029-2,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +6915,B207,B029,Local autonomy with leader,B029-2,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +6916,B208,B029,Local autonomy with leader,B029-2,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +6917,B209,B029,Local autonomy with leader and council,B029-3,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +6918,B21,B029,Autonomous,B029-1,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +6919,B210,B029,Local autonomy with leader,B029-2,,fowler1992,,1870,Binford_2001_Table_9.01, +6920,B211,B029,Local autonomy with leader,B029-2,,steward1938,,1860,Binford_2001_Table_9.01, +6921,B212,B029,Autonomous,B029-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +6922,B213,B029,Local autonomy with leader,B029-2,,steward1938,,1870,Binford_2001_Table_9.01, +6923,B214,B029,Autonomous,B029-1,,steward1938,,1860,Binford_2001_Table_9.01, +6924,B215,B029,Local autonomy with leader,B029-2,,steward1938,,1870,Binford_2001_Table_9.01, +6925,B216,B029,Autonomous,B029-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +6926,B217,B029,Local autonomy with leader,B029-2,,steward1938,,1860,Binford_2001_Table_9.01, +6927,B218,B029,Local autonomy with leader,B029-2,,steward1938,,1860,Binford_2001_Table_9.01, +6928,B219,B029,Local autonomy with leader,B029-2,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +6929,B22,B029,Local autonomy with leader and council,B029-3,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +6930,B221,B029,Local autonomy with leader,B029-2,,steward1938,,1860,Binford_2001_Table_9.01, +6931,B222,B029,Local autonomy with leader and council,B029-3,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +6932,B223,B029,Autonomous,B029-1,,lowie1924,,1870,Binford_2001_Table_9.01, +6933,B224,B029,Autonomous,B029-1,,steward1938,,1860,Binford_2001_Table_9.01, +6934,B225,B029,Local autonomy with leader,B029-2,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +6935,B226,B029,Local autonomy with leader,B029-2,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +6936,B227,B029,Local autonomy with leader and council,B029-3,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +6937,B228,B029,Local autonomy with leader,B029-2,,steward1938,,1860,Binford_2001_Table_9.01, +6938,B229,B029,Local autonomy with leader and council,B029-3,,steward1938,,1860,Binford_2001_Table_9.01, +6939,B23,B029,Local autonomy with leader,B029-2,,qiu1983,,1900,Binford_2001_Table_9.01, +6940,B230,B029,Local autonomy with leader and council,B029-3,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +6941,B231,B029,Local autonomy with leader,B029-2,,whiting1950,,1870,Binford_2001_Table_9.01, +6942,B232,B029,Local autonomy with leader,B029-2,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +6943,B233,B029,Autonomous,B029-1,,steward1938,,1860,Binford_2001_Table_9.01, +6944,B234,B029,Autonomous,B029-1,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +6945,B24,B029,Local autonomy with leader and council,B029-3,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +6946,B240,B029,Local autonomy with leader and council,B029-3,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +6947,B241,B029,Local autonomy with leader and council,B029-3,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +6948,B242,B029,Local autonomy with leader and council,B029-3,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +6949,B243,B029,Local autonomy with leader and council,B029-3,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +6950,B244,B029,Local autonomy with leader and council,B029-3,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +6951,B245,B029,Regional leaders,B029-4,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +6952,B246,B029,Local autonomy with leader and council,B029-3,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +6953,B248,B029,Local autonomy with leader and council,B029-3,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +6954,B249,B029,Regional leaders,B029-4,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +6955,B25,B029,Local autonomy with leader and council,B029-3,,shternberg1933,,1920,Binford_2001_Table_9.01, +6956,B250,B029,Local autonomy with leader and council,B029-3,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +6957,B252,B029,Local autonomy with leader and council,B029-3,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +6958,B253,B029,Local autonomy with leader and council,B029-3,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +6959,B254,B029,Local autonomy with leader and council,B029-3,,skinner1914,,1850,Binford_2001_Table_9.01, +6960,B255,B029,Local autonomy with leader and council,B029-3,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +6961,B256,B029,Local autonomy with leader and council,B029-3,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +6962,B257,B029,Local autonomy with leader and council,B029-3,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +6963,B258,B029,Local autonomy with leader and council,B029-3,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +6964,B259,B029,Local autonomy with leader and council,B029-3,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +6965,B26,B029,Local autonomy with leader,B029-2,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +6966,B260,B029,Local autonomy with leader and council,B029-3,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +6967,B268,B029,Local autonomy with leader,B029-2,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +6968,B269,B029,Local autonomy with leader,B029-2,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +6969,B27,B029,Local autonomy with leader,B029-2,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +6970,B270,B029,Local autonomy with leader,B029-2,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +6971,B271,B029,Local autonomy with leader and council,B029-3,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +6972,B272,B029,Local autonomy with leader,B029-2,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +6973,B273,B029,Regional leaders,B029-4,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +6974,B274,B029,Local autonomy with leader and council,B029-3,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +6975,B275,B029,Local autonomy with leader and council,B029-3,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +6976,B276,B029,Local autonomy with leader and council,B029-3,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +6977,B277,B029,Local autonomy with leader and council,B029-3,,stern1934,,1880,Binford_2001_Table_9.01, +6978,B278,B029,Local autonomy with leader,B029-2,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +6979,B279,B029,Local autonomy with leader,B029-2,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +6980,B28,B029,Local autonomy with leader,B029-2,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +6981,B280,B029,Local autonomy with leader,B029-2,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +6982,B281,B029,Local autonomy with leader,B029-2,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +6983,B282,B029,Local autonomy with leader and council,B029-3,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +6984,B283,B029,Regional leaders,B029-4,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +6985,B284,B029,Local autonomy with leader,B029-2,,pettitt1950,,1880,Binford_2001_Table_9.01, +6986,B285,B029,Local autonomy with leader and council,B029-3,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +6987,B286,B029,Local autonomy with leader and council,B029-3,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +6988,B287,B029,Local autonomy with leader and council,B029-3,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +6989,B288,B029,Local autonomy with leader and council,B029-3,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +6990,B289,B029,Regional leaders,B029-4,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +6991,B290,B029,Regional leaders,B029-4,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +6992,B291,B029,Regional leaders,B029-4,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +6993,B292,B029,Regional leaders,B029-4,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +6994,B293,B029,Local autonomy with leader and council,B029-3,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +6995,B294,B029,Local autonomy with leader and council,B029-3,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +6996,B295,B029,Local autonomy with leader and council,B029-3,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +6997,B296,B029,Local autonomy with leader and council,B029-3,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +6998,B297,B029,Local autonomy with leader and council,B029-3,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +6999,B298,B029,Regional leaders,B029-4,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +7000,B299,B029,Regional leaders,B029-4,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +7001,B3,B029,Local autonomy with leader,B029-2,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +7002,B315,B029,Local autonomy with leader,B029-2,,murdock1980,,1850,Binford_2001_Table_9.01, +7003,B316,B029,Local autonomy with leader and council,B029-3,,,,1860,Binford_2001_Table_9.01, +7004,B317,B029,Local autonomy with leader,B029-2,,teit1928,,1870,Binford_2001_Table_9.01, +7005,B318,B029,Local autonomy with leader and council,B029-3,,,,1880,Binford_2001_Table_9.01, +7006,B319,B029,Local autonomy with leader and council,B029-3,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +7007,B320,B029,Local autonomy with leader and council,B029-3,,teit1930,,1860,Binford_2001_Table_9.01, +7008,B321,B029,Local autonomy with leader,B029-2,,clineetal1938,,1880,Binford_2001_Table_9.01, +7009,B322,B029,Local autonomy with leader,B029-2,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +7010,B323,B029,Local autonomy with leader,B029-2,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +7011,B324,B029,Local autonomy with leader and council,B029-3,,spinden1908,,1850,Binford_2001_Table_9.01, +7012,B325,B029,Local autonomy with leader and council,B029-3,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +7013,B326,B029,Local autonomy with leader and council,B029-3,,teit1930,,1870,Binford_2001_Table_9.01, +7014,B327,B029,Local autonomy with leader,B029-2,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +7015,B328,B029,Local autonomy with leader and council,B029-3,,kinietz1947,,1800,Binford_2001_Table_9.01, +7016,B329,B029,Local autonomy with leader and council,B029-3,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +7017,B330,B029,Local autonomy with leader and council,B029-3,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +7018,B331,B029,Local autonomy with leader,B029-2,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +7019,B332,B029,Local autonomy with leader,B029-2,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +7020,B333,B029,Local autonomy with leader and council,B029-3,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +7021,B334,B029,Local autonomy with leader,B029-2,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +7022,B335,B029,Local autonomy with leader,B029-2,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +7023,B336,B029,Local autonomy with leader and council,B029-3,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +7024,B337,B029,Local autonomy with leader,B029-2,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +7025,B338,B029,Local autonomy with leader,B029-2,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +7026,B339,B029,Local autonomy with leader,B029-2,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +7027,B340,B029,Local autonomy with leader,B029-2,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +7028,B341,B029,Local autonomy with leader,B029-2,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +7029,B342,B029,Local autonomy with leader,B029-2,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +7030,B343,B029,Local autonomy with leader,B029-2,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +7031,B344,B029,Local autonomy with leader,B029-2,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +7032,B345,B029,Local autonomy with leader,B029-2,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +7033,B346,B029,Autonomous,B029-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +7034,B347,B029,Local autonomy with leader and council,B029-3,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +7035,B348,B029,Local autonomy with leader,B029-2,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +7036,B349,B029,Local autonomy with leader and council,B029-3,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +7037,B35,B029,Regional leaders,B029-4,,,,1950,Binford_2001_Table_9.01, +7038,B350,B029,Autonomous,B029-1,,gillespie1981,,1800,Binford_2001_Table_9.01, +7039,B351,B029,Local autonomy with leader,B029-2,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +7040,B352,B029,Local autonomy with leader,B029-2,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +7041,B353,B029,Local autonomy with leader,B029-2,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +7042,B354,B029,Local autonomy with leader,B029-2,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +7043,B355,B029,Local autonomy with leader,B029-2,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +7044,B356,B029,Local autonomy with leader,B029-2,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +7045,B357,B029,Local autonomy with leader and council,B029-3,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +7046,B358,B029,Local autonomy with leader,B029-2,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +7047,B359,B029,Local autonomy with leader and council,B029-3,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +7048,B36,B029,Local autonomy with leader,B029-2,,metraux1948,,1960,Binford_2001_Table_9.01, +7049,B360,B029,Local autonomy with leader,B029-2,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +7050,B361,B029,Local autonomy with leader,B029-2,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +7051,B362,B029,Local autonomy with leader and council,B029-3,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +7052,B363,B029,Local autonomy with leader,B029-2,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +7053,B364,B029,Local autonomy with leader and council,B029-3,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +7054,B365,B029,Local autonomy with leader,B029-2,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +7055,B369,B029,Local autonomy with leader and council,B029-3,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +7056,B37,B029,Autonomous,B029-1,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +7057,B370,B029,Local autonomy with leader,B029-2,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +7058,B371,B029,Local autonomy with leader and council,B029-3,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +7059,B372,B029,Local autonomy with leader,B029-2,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +7060,B373,B029,Local autonomy with leader,B029-2,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +7061,B374,B029,Local autonomy with leader,B029-2,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +7062,B375,B029,Local autonomy with leader,B029-2,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +7063,B377,B029,Local autonomy with leader,B029-2,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +7064,B378,B029,Local autonomy with leader,B029-2,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +7065,B379,B029,Local autonomy with leader,B029-2,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +7066,B38,B029,Autonomous,B029-1,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +7067,B380,B029,Local autonomy with leader,B029-2,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +7068,B381,B029,Local autonomy with leader,B029-2,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +7069,B382,B029,Local autonomy with leader,B029-2,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +7070,B383,B029,Local autonomy with leader,B029-2,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +7071,B384,B029,Local autonomy with leader,B029-2,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +7072,B385,B029,Local autonomy with leader,B029-2,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +7073,B386,B029,Local autonomy with leader,B029-2,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +7074,B387,B029,Local autonomy with leader,B029-2,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +7075,B388,B029,Local autonomy with leader,B029-2,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +7076,B389,B029,Local autonomy with leader,B029-2,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +7077,B39,B029,Local autonomy with leader,B029-2,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +7078,B390,B029,Local autonomy with leader,B029-2,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +7079,B4,B029,Local autonomy with leader,B029-2,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +7080,B40,B029,Autonomous,B029-1,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +7081,B41,B029,Local autonomy with leader and council,B029-3,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +7082,B42,B029,Local autonomy with leader,B029-2,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +7083,B43,B029,Local autonomy with leader,B029-2,,holmberg1950,,1940,Binford_2001_Table_9.01, +7084,B44,B029,Local autonomy with leader,B029-2,,stearman1989,,1968,Binford_2001_Table_9.01, +7085,B45,B029,Local autonomy with leader,B029-2,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +7086,B46,B029,Regional leaders,B029-4,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +7087,B47,B029,Local autonomy with leader,B029-2,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +7088,B48,B029,Local autonomy with leader and council,B029-3,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +7089,B49,B029,Local autonomy with leader,B029-2,,kozaketal1979,,1954,Binford_2001_Table_9.01, +7090,B5,B029,Local autonomy with leader,B029-2,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +7091,B50,B029,Local autonomy with leader,B029-2,,henry1964,,1910,Binford_2001_Table_9.01, +7092,B51,B029,Local autonomy with leader,B029-2,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +7093,B52,B029,Local autonomy with leader,B029-2,,cooper1946d,,1880,Binford_2001_Table_9.01, +7094,B53,B029,Autonomous,B029-1,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +7095,B54,B029,Local autonomy with leader,B029-2,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +7096,B55,B029,Autonomous,B029-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +7097,B6,B029,Local autonomy with leader,B029-2,,temple1903,,1906,Binford_2001_Table_9.01, +7098,B60,B029,Local autonomy with leader,B029-2,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +7099,B61,B029,Local autonomy with leader,B029-2,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +7100,B62,B029,Local autonomy with leader,B029-2,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +7101,B63,B029,Local autonomy with leader,B029-2,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +7102,B64,B029,Local autonomy with leader,B029-2,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +7103,B65,B029,Local autonomy with leader,B029-2,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +7104,B66,B029,Autonomous,B029-1,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +7105,B67,B029,Local autonomy with leader,B029-2,,clark1951,,1950,Binford_2001_Table_9.01, +7106,B68,B029,Local autonomy with leader,B029-2,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +7107,B69,B029,Autonomous,B029-1,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +7108,B7,B029,Local autonomy with leader,B029-2,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +7109,B70,B029,Local autonomy with leader,B029-2,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +7110,B71,B029,Autonomous,B029-1,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +7111,B72,B029,Autonomous,B029-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +7112,B73,B029,Local autonomy with leader,B029-2,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +7113,B74,B029,Local autonomy with leader,B029-2,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +7114,B75,B029,Local autonomy with leader,B029-2,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +7115,B76,B029,Local autonomy with leader,B029-2,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +7116,B77,B029,Local autonomy with leader,B029-2,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +7117,B78,B029,Local autonomy with leader,B029-2,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +7118,B79,B029,Local autonomy with leader,B029-2,,bleek1924a,,,Binford_2001_Table_9.01, +7119,B8,B029,Local autonomy with leader,B029-2,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +7120,B82,B029,Local autonomy with leader,B029-2,,moore1979,,1848,Binford_2001_Table_9.01, +7121,B83,B029,Local autonomy with leader,B029-2,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +7122,B84,B029,Local autonomy with leader,B029-2,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +7123,B85,B029,Local autonomy with leader,B029-2,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +7124,B86,B029,Autonomous,B029-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +7125,B87,B029,Autonomous,B029-1,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +7126,B88,B029,Local autonomy with leader,B029-2,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +7127,B89,B029,Local autonomy with leader,B029-2,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +7128,B9,B029,Local autonomy with leader,B029-2,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +7129,B90,B029,Local autonomy with leader,B029-2,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +7130,B91,B029,Autonomous,B029-1,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +7131,B92,B029,Local autonomy with leader,B029-2,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +7132,B93,B029,Autonomous,B029-1,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +7133,B94,B029,Autonomous,B029-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +7134,B95,B029,Local autonomy with leader,B029-2,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +7135,B96,B029,Autonomous,B029-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +7136,B97,B029,Local autonomy with leader,B029-2,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +7137,B98,B029,Local autonomy with leader,B029-2,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +7138,B99,B029,Local autonomy with leader,B029-2,,stanner1933,,1900,Binford_2001_Table_9.01, +7139,B1,B003,5,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_5.01, +7140,B10,B003,5,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_5.01, +7141,B100,B003,10,,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_5.01, +7142,B101,B003,5,,,kaberry1939,,1934,Binford_2001_Table_5.01, +7143,B102,B003,60,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_5.01, +7144,B103,B003,80,,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_5.01, +7145,B104,B003,5,,,,,,Binford_2001_Table_5.01, +7146,B105,B003,25,,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_5.01, +7147,B106,B003,35,,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_5.01, +7148,B107,B003,34,,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_5.01, +7149,B108,B003,5,,,kaberry1939;nind1831,,1934,Binford_2001_Table_5.01, +7150,B109,B003,0,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_5.01, +7151,B11,B003,2,,,morris1982a,,1972,Binford_2001_Table_5.01, +7152,B110,B003,20,,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_5.01, +7153,B111,B003,0,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01, +7154,B112,B003,0,,,petersonandlong1986,,1968,Binford_2001_Table_5.01, +7155,B113,B003,0,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_5.01, +7156,B114,B003,85,,,colliverandwoolston1975,,1848,Binford_2001_Table_5.01, +7157,B115,B003,15,,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_5.01, +7158,B116,B003,0,,,duncankemp1964,,1900,Binford_2001_Table_5.01, +7159,B117,B003,0,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_5.01, +7160,B118,B003,0,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_5.01, +7161,B119,B003,40,,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_5.01, +7162,B12,B003,40,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_5.01, +7163,B120,B003,0,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_5.01, +7164,B121,B003,20,,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_5.01, +7165,B122,B003,5,,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +7166,B123,B003,0,,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_5.01, +7167,B124,B003,0,,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_5.01, +7168,B125,B003,20,,,parker1905,,1880,Binford_2001_Table_5.01, +7169,B126,B003,5,,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_5.01, +7170,B127,B003,0,,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +7171,B128,B003,35,,,,,1890,Binford_2001_Table_5.01, +7172,B129,B003,35,,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +7173,B13,B003,45,,,rai1982;wastl1957,,1979,Binford_2001_Table_5.01, +7174,B130,B003,25,,,,,1910,Binford_2001_Table_5.01, +7175,B131,B003,40,,,,,1850,Binford_2001_Table_5.01, +7176,B132,B003,30,,,nind1831,,1850,Binford_2001_Table_5.01, +7177,B133,B003,45,,,williams1985,,1850,Binford_2001_Table_5.01, +7178,B134,B003,40,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_5.01, +7179,B135,B003,25,,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_5.01, +7180,B136,B003,40,,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_5.01, +7181,B137,B003,60,,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_5.01, +7182,B14,B003,15,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_5.01, +7183,B143,B003,60,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_5.01, +7184,B144,B003,0,,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_5.01, +7185,B145,B003,0,,,gifford1926b;strong1929a,,1870,Binford_2001_Table_5.01, +7186,B146,B003,30,,,meigs1939,,1880,Binford_2001_Table_5.01, +7187,B147,B003,20,,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_5.01, +7188,B148,B003,30,,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_5.01, +7189,B149,B003,0,,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_5.01, +7190,B15,B003,5,,,furerhaimendorf1943b,,1940,Binford_2001_Table_5.01, +7191,B150,B003,25,,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_5.01, +7192,B151,B003,15,,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_5.01, +7193,B152,B003,15,,,voegelin1938,,1850,Binford_2001_Table_5.01, +7194,B153,B003,10,,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_5.01, +7195,B154,B003,25,,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_5.01, +7196,B155,B003,20,,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_5.01, +7197,B156,B003,50,,,,,1770,Binford_2001_Table_5.01, +7198,B157,B003,20,,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_5.01, +7199,B158,B003,25,,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +7200,B159,B003,25,,,cook1956;gifford1926a,,1860,Binford_2001_Table_5.01, +7201,B16,B003,5,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_5.01, +7202,B160,B003,40,,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_5.01, +7203,B161,B003,70,,,cookandheizer1965,,1860,Binford_2001_Table_5.01, +7204,B162,B003,40,,,dixon1910,,1860,Binford_2001_Table_5.01, +7205,B163,B003,20,,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_5.01, +7206,B164,B003,30,,,gifford1926b,,1805,Binford_2001_Table_5.01, +7207,B165,B003,40,,,barrett1908;cook1956,,1860,Binford_2001_Table_5.01, +7208,B166,B003,45,,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_5.01, +7209,B167,B003,35,,,,,,Binford_2001_Table_5.01, +7210,B168,B003,50,,,collierandthalman1991,,1850,Binford_2001_Table_5.01, +7211,B169,B003,50,,,cook1956;nomland1938,,,Binford_2001_Table_5.01, +7212,B17,B003,1,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_5.01, +7213,B170,B003,30,,,cook1955,,,Binford_2001_Table_5.01, +7214,B171,B003,35,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_5.01, +7215,B172,B003,30,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_5.01, +7216,B173,B003,30,,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +7217,B174,B003,30,,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +7218,B175,B003,10,,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_5.01, +7219,B176,B003,45,,,gray1987,,1860,Binford_2001_Table_5.01, +7220,B177,B003,60,,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +7221,B178,B003,65,,,cook1956;drucker1940,,1870,Binford_2001_Table_5.01, +7222,B179,B003,30,,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_5.01, +7223,B18,B003,0,,,senandsen1955;williams1974,,1963,Binford_2001_Table_5.01, +7224,B180,B003,55,,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_5.01, +7225,B181,B003,60,,,gray1987,,1870,Binford_2001_Table_5.01, +7226,B182,B003,55,,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_5.01, +7227,B183,B003,25,,,gifford1926b,,1860,Binford_2001_Table_5.01, +7228,B184,B003,65,,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_5.01, +7229,B185,B003,20,,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_5.01, +7230,B186,B003,70,,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_5.01, +7231,B187,B003,30,,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_5.01, +7232,B188,B003,25,,,gifford1926b;ray1963,,1860,Binford_2001_Table_5.01, +7233,B189,B003,50,,,gifford1926b;spier1930,,1860,Binford_2001_Table_5.01, +7234,B19,B003,5,,,ehrenfels1952,,1946,Binford_2001_Table_5.01, +7235,B190,B003,15,,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_5.01, +7236,B191,B003,15,,,,,1570,Binford_2001_Table_5.01, +7237,B192,B003,0,,,smith1978a;steward1938,,1860,Binford_2001_Table_5.01, +7238,B193,B003,55,,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_5.01, +7239,B194,B003,5,,,,,1715,Binford_2001_Table_5.01, +7240,B195,B003,0,,,steward1938,,1850,Binford_2001_Table_5.01, +7241,B196,B003,5,,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_5.01, +7242,B197,B003,0,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +7243,B198,B003,0,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_5.01, +7244,B199,B003,0,,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_5.01, +7245,B2,B003,5,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_5.01, +7246,B20,B003,10,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_5.01, +7247,B200,B003,0,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +7248,B201,B003,15,,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +7249,B202,B003,5,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_5.01, +7250,B203,B003,0,,,steward1938;thomas1983,,1860,Binford_2001_Table_5.01, +7251,B204,B003,0,,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_5.01, +7252,B205,B003,7,,,davis1965,,1870,Binford_2001_Table_5.01, +7253,B206,B003,0,,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_5.01, +7254,B207,B003,20,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +7255,B208,B003,30,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_5.01, +7256,B209,B003,30,,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_5.01, +7257,B21,B003,0,,,bird1983;birddavid1987,,1978,Binford_2001_Table_5.01, +7258,B210,B003,20,,,fowler1992,,1870,Binford_2001_Table_5.01, +7259,B211,B003,20,,,steward1938,,1860,Binford_2001_Table_5.01, +7260,B212,B003,10,,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +7261,B213,B003,20,,,steward1938,,1870,Binford_2001_Table_5.01, +7262,B214,B003,10,,,steward1938,,1860,Binford_2001_Table_5.01, +7263,B215,B003,0,,,steward1938,,1870,Binford_2001_Table_5.01, +7264,B216,B003,15,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_5.01, +7265,B217,B003,0,,,steward1938,,1860,Binford_2001_Table_5.01, +7266,B218,B003,15,,,steward1938,,1860,Binford_2001_Table_5.01, +7267,B219,B003,15,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_5.01, +7268,B22,B003,75,,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_5.01, +7269,B221,B003,15,,,steward1938,,1860,Binford_2001_Table_5.01, +7270,B222,B003,10,,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_5.01, +7271,B223,B003,5,,,lowie1924,,1870,Binford_2001_Table_5.01, +7272,B224,B003,10,,,steward1938,,1860,Binford_2001_Table_5.01, +7273,B225,B003,15,,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_5.01, +7274,B226,B003,20,,,brink1969;kelly1932,,1870,Binford_2001_Table_5.01, +7275,B227,B003,15,,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_5.01, +7276,B228,B003,8,,,steward1938,,1860,Binford_2001_Table_5.01, +7277,B229,B003,15,,,steward1938,,1860,Binford_2001_Table_5.01, +7278,B23,B003,25,,,qiu1983,,1900,Binford_2001_Table_5.01, +7279,B230,B003,25,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_5.01, +7280,B231,B003,20,,,whiting1950,,1870,Binford_2001_Table_5.01, +7281,B232,B003,25,,,boas1899;steward1938,,1860,Binford_2001_Table_5.01, +7282,B233,B003,0,,,steward1938,,1860,Binford_2001_Table_5.01, +7283,B234,B003,15,,,boas1899;steward1974b,,1860,Binford_2001_Table_5.01, +7284,B24,B003,50,,,lee1967;shimkin1939,,1900,Binford_2001_Table_5.01, +7285,B240,B003,5,,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_5.01, +7286,B241,B003,0,,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_5.01, +7287,B242,B003,0,,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_5.01, +7288,B243,B003,0,,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_5.01, +7289,B244,B003,0,,,bamforth1988;ewers1955,,1860,Binford_2001_Table_5.01, +7290,B245,B003,5,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_5.01, +7291,B246,B003,0,,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_5.01, +7292,B248,B003,0,,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_5.01, +7293,B249,B003,0,,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_5.01, +7294,B25,B003,85,,,shternberg1933,,1920,Binford_2001_Table_5.01, +7295,B250,B003,40,,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_5.01, +7296,B252,B003,20,,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +7297,B253,B003,0,,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_5.01, +7298,B254,B003,15,,,skinner1914,,1850,Binford_2001_Table_5.01, +7299,B255,B003,0,,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_5.01, +7300,B256,B003,5,,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_5.01, +7301,B257,B003,10,,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +7302,B258,B003,15,,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_5.01, +7303,B259,B003,5,,,bamforth1988;ewers1955,,1850,Binford_2001_Table_5.01, +7304,B26,B003,40,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_5.01, +7305,B260,B003,8,,,bamforth1988;jenness1938,,1880,Binford_2001_Table_5.01, +7306,B268,B003,60,,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_5.01, +7307,B269,B003,75,,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +7308,B27,B003,44,,,chard1963;popov1966,,1933,Binford_2001_Table_5.01, +7309,B270,B003,70,,,smith1940a;smith1940b,,1870,Binford_2001_Table_5.01, +7310,B271,B003,70,,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_5.01, +7311,B272,B003,65,,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_5.01, +7312,B273,B003,95,,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_5.01, +7313,B274,B003,75,,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_5.01, +7314,B275,B003,80,,,boyd1990;zenk1990,,1860,Binford_2001_Table_5.01, +7315,B276,B003,50,,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_5.01, +7316,B277,B003,75,,,stern1934,,1880,Binford_2001_Table_5.01, +7317,B278,B003,75,,,olson1936a;schalk1978,,1860,Binford_2001_Table_5.01, +7318,B279,B003,75,,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_5.01, +7319,B28,B003,69,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_5.01, +7320,B280,B003,60,,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_5.01, +7321,B281,B003,45,,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_5.01, +7322,B282,B003,75,,,kennedyandbouchard1990,,1860,Binford_2001_Table_5.01, +7323,B283,B003,70,,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_5.01, +7324,B284,B003,75,,,pettitt1950,,1880,Binford_2001_Table_5.01, +7325,B285,B003,70,,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_5.01, +7326,B286,B003,80,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_5.01, +7327,B287,B003,55,,,olson1940;schalk1978,,1880,Binford_2001_Table_5.01, +7328,B288,B003,85,,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +7329,B289,B003,75,,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_5.01, +7330,B290,B003,89,,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +7331,B291,B003,70,,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_5.01, +7332,B292,B003,84,,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_5.01, +7333,B293,B003,69,,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_5.01, +7334,B294,B003,94,,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_5.01, +7335,B295,B003,89.99,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_5.01, +7336,B296,B003,75,,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_5.01, +7337,B297,B003,89.99,,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_5.01, +7338,B298,B003,94,,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_5.01, +7339,B299,B003,84,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_5.01, +7340,B3,B003,5,,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_5.01, +7341,B315,B003,50,,,murdock1980,,1850,Binford_2001_Table_5.01, +7342,B316,B003,40,,,,,1860,Binford_2001_Table_5.01, +7343,B317,B003,55,,,teit1928,,1870,Binford_2001_Table_5.01, +7344,B318,B003,45,,,,,1880,Binford_2001_Table_5.01, +7345,B319,B003,60,,,spierandsapir1930,,1860,Binford_2001_Table_5.01, +7346,B320,B003,25,,,teit1930,,1860,Binford_2001_Table_5.01, +7347,B321,B003,60,,,clineetal1938,,1880,Binford_2001_Table_5.01, +7348,B322,B003,45,,,grabert1974;teit1930,,1860,Binford_2001_Table_5.01, +7349,B323,B003,40,,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_5.01, +7350,B324,B003,52,,,spinden1908,,1850,Binford_2001_Table_5.01, +7351,B325,B003,55,,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_5.01, +7352,B326,B003,45,,,teit1930,,1870,Binford_2001_Table_5.01, +7353,B327,B003,45,,,jenness1935;quimby1962,,1870,Binford_2001_Table_5.01, +7354,B328,B003,40,,,kinietz1947,,1800,Binford_2001_Table_5.01, +7355,B329,B003,35,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_5.01, +7356,B330,B003,20,,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_5.01, +7357,B331,B003,30,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_5.01, +7358,B332,B003,30,,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_5.01, +7359,B333,B003,55,,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_5.01, +7360,B334,B003,30,,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_5.01, +7361,B335,B003,20,,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_5.01, +7362,B336,B003,35,,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_5.01, +7363,B337,B003,35,,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_5.01, +7364,B338,B003,25.1,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_5.01, +7365,B339,B003,35,,,dunning1959;rogers1969,,1850,Binford_2001_Table_5.01, +7366,B340,B003,40,,,morantz1983;rogers1969,,1900,Binford_2001_Table_5.01, +7367,B341,B003,35,,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_5.01, +7368,B342,B003,40,,,lane1952;tanner1944,,1880,Binford_2001_Table_5.01, +7369,B343,B003,30,,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_5.01, +7370,B344,B003,35,,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_5.01, +7371,B345,B003,30,,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_5.01, +7372,B346,B003,25,,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_5.01, +7373,B347,B003,30,,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_5.01, +7374,B348,B003,50,,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +7375,B349,B003,43,,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_5.01, +7376,B35,B003,60,,,,,1950,Binford_2001_Table_5.01, +7377,B350,B003,15,,,gillespie1981,,1800,Binford_2001_Table_5.01, +7378,B351,B003,20,,,adney1900;crowandobley1981,,1880,Binford_2001_Table_5.01, +7379,B352,B003,25,,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_5.01, +7380,B353,B003,55,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_5.01, +7381,B354,B003,35,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_5.01, +7382,B355,B003,25,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_5.01, +7383,B356,B003,33,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_5.01, +7384,B357,B003,55,,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_5.01, +7385,B358,B003,20,,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_5.01, +7386,B359,B003,57,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_5.01, +7387,B36,B003,5,,,metraux1948,,1960,Binford_2001_Table_5.01, +7388,B360,B003,41,,,morantz1983;skinner1911,,1900,Binford_2001_Table_5.01, +7389,B361,B003,31,,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_5.01, +7390,B362,B003,46,,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_5.01, +7391,B363,B003,36,,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_5.01, +7392,B364,B003,62,,,michael1967;snow1981,,1860,Binford_2001_Table_5.01, +7393,B365,B003,26,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_5.01, +7394,B369,B003,84,,,ray1992;seltzer1933,,1870,Binford_2001_Table_5.01, +7395,B37,B003,5,,,kloos1977;kloos1982,,1968,Binford_2001_Table_5.01, +7396,B370,B003,36,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_5.01, +7397,B371,B003,78,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_5.01, +7398,B372,B003,70.99,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_5.01, +7399,B373,B003,81.9,,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_5.01, +7400,B374,B003,44.9,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_5.01, +7401,B375,B003,24.9,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_5.01, +7402,B377,B003,10.9,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_5.01, +7403,B378,B003,61.9,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_5.01, +7404,B379,B003,89.9,,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_5.01, +7405,B38,B003,53,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_5.01, +7406,B380,B003,64.9,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_5.01, +7407,B381,B003,74.99,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_5.01, +7408,B382,B003,69.9,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_5.01, +7409,B383,B003,64.9,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_5.01, +7410,B384,B003,84.99,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_5.01, +7411,B385,B003,84.99,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_5.01, +7412,B386,B003,94.99,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_5.01, +7413,B387,B003,74.99,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_5.01, +7414,B388,B003,89.99,,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_5.01, +7415,B389,B003,74.99,,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_5.01, +7416,B39,B003,20,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_5.01, +7417,B390,B003,69.99,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_5.01, +7418,B4,B003,35,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_5.01, +7419,B40,B003,13,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_5.01, +7420,B41,B003,10,,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_5.01, +7421,B42,B003,70,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_5.01, +7422,B43,B003,5,,,holmberg1950,,1940,Binford_2001_Table_5.01, +7423,B44,B003,5,,,stearman1989,,1968,Binford_2001_Table_5.01, +7424,B45,B003,5,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_5.01, +7425,B46,B003,65,,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_5.01, +7426,B47,B003,8,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01, +7427,B48,B003,10,,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_5.01, +7428,B49,B003,10,,,kozaketal1979,,1954,Binford_2001_Table_5.01, +7429,B5,B003,45,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_5.01, +7430,B50,B003,5,,,henry1964,,1910,Binford_2001_Table_5.01, +7431,B51,B003,5,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_5.01, +7432,B52,B003,75,,,cooper1946d,,1880,Binford_2001_Table_5.01, +7433,B53,B003,75,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_5.01, +7434,B54,B003,20,,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_5.01, +7435,B55,B003,70,,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_5.01, +7436,B6,B003,30,,,temple1903,,1906,Binford_2001_Table_5.01, +7437,B60,B003,0.04,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_5.01, +7438,B61,B003,0.7,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_5.01, +7439,B62,B003,1,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_5.01, +7440,B63,B003,1,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_5.01, +7441,B64,B003,0.8,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_5.01, +7442,B65,B003,1,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_5.01, +7443,B66,B003,0,,,kellyandpoyer1993,,,Binford_2001_Table_5.01, +7444,B67,B003,5,,,clark1951,,1950,Binford_2001_Table_5.01, +7445,B68,B003,0,,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_5.01, +7446,B69,B003,0,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_5.01, +7447,B7,B003,5,,,fox1952;reed1904,,1903,Binford_2001_Table_5.01, +7448,B70,B003,0,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_5.01, +7449,B71,B003,0,,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_5.01, +7450,B72,B003,0,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_5.01, +7451,B73,B003,0,,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_5.01, +7452,B74,B003,0,,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_5.01, +7453,B75,B003,0,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_5.01, +7454,B76,B003,0,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_5.01, +7455,B77,B003,0,,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_5.01, +7456,B78,B003,10,,,potgieter1955;toerien1958,,1950,Binford_2001_Table_5.01, +7457,B79,B003,0,,,bleek1924a,,,Binford_2001_Table_5.01, +7458,B8,B003,5,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_5.01, +7459,B82,B003,65,,,moore1979,,1848,Binford_2001_Table_5.01, +7460,B83,B003,65,,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +7461,B84,B003,25,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_5.01, +7462,B85,B003,50,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_5.01, +7463,B86,B003,55,,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_5.01, +7464,B87,B003,55,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_5.01, +7465,B88,B003,10,,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_5.01, +7466,B89,B003,25,,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_5.01, +7467,B9,B003,10,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_5.01, +7468,B90,B003,20,,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_5.01, +7469,B91,B003,25,,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_5.01, +7470,B92,B003,60,,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_5.01, +7471,B93,B003,75,,,thomson1933;thomson1934,,1930,Binford_2001_Table_5.01, +7472,B94,B003,10,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_5.01, +7473,B95,B003,35,,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_5.01, +7474,B96,B003,55,,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_5.01, +7475,B97,B003,60,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_5.01, +7476,B98,B003,70,,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_5.01, +7477,B99,B003,60,,,stanner1933,,1900,Binford_2001_Table_5.01, +7478,B1,B030,Articulated to a non-HG society,B030-3,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +7479,B10,B030,Articulated to a non-HG society,B030-3,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +7480,B100,B030,"Autonomous, matrix of similar HG groups",B030-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +7481,B101,B030,"Autonomous, matrix of similar HG groups",B030-1,,kaberry1939,,1934,Binford_2001_Table_9.01, +7482,B102,B030,"Autonomous, matrix of similar HG groups",B030-1,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +7483,B103,B030,"Autonomous, matrix of similar HG groups",B030-1,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +7484,B104,B030,"Autonomous, matrix of similar HG groups",B030-1,,,,,Binford_2001_Table_9.01, +7485,B105,B030,"Autonomous, matrix of similar HG groups",B030-1,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +7486,B106,B030,"Autonomous, matrix of similar HG groups",B030-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +7487,B107,B030,"Autonomous, matrix of similar HG groups",B030-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +7488,B108,B030,"Autonomous, matrix of similar HG groups",B030-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +7489,B109,B030,"Autonomous, matrix of similar HG groups",B030-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +7490,B11,B030,Articulated to a non-HG society,B030-3,,morris1982a,,1972,Binford_2001_Table_9.01, +7491,B110,B030,"Autonomous, matrix of similar HG groups",B030-1,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +7492,B111,B030,"Autonomous, matrix of similar HG groups",B030-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +7493,B112,B030,"Autonomous, matrix of similar HG groups",B030-1,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +7494,B113,B030,"Autonomous, matrix of similar HG groups",B030-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +7495,B114,B030,"Autonomous, matrix of similar HG groups",B030-1,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +7496,B115,B030,"Autonomous, matrix of similar HG groups",B030-1,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +7497,B116,B030,"Autonomous, matrix of similar HG groups",B030-1,,duncankemp1964,,1900,Binford_2001_Table_9.01, +7498,B117,B030,"Autonomous, matrix of similar HG groups",B030-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +7499,B118,B030,"Autonomous, matrix of similar HG groups",B030-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +7500,B119,B030,"Autonomous, matrix of similar HG groups",B030-1,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +7501,B12,B030,Articulated to a non-HG society,B030-3,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +7502,B120,B030,"Autonomous, matrix of similar HG groups",B030-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +7503,B121,B030,"Autonomous, matrix of similar HG groups",B030-1,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +7504,B122,B030,"Autonomous, matrix of similar HG groups",B030-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +7505,B123,B030,"Autonomous, matrix of similar HG groups",B030-1,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +7506,B124,B030,"Autonomous, matrix of similar HG groups",B030-1,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +7507,B125,B030,"Autonomous, matrix of similar HG groups",B030-1,,parker1905,,1880,Binford_2001_Table_9.01, +7508,B126,B030,"Autonomous, matrix of similar HG groups",B030-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +7509,B127,B030,"Autonomous, matrix of similar HG groups",B030-1,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +7510,B128,B030,"Autonomous, matrix of similar HG groups",B030-1,,,,1890,Binford_2001_Table_9.01, +7511,B129,B030,"Autonomous, matrix of similar HG groups",B030-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +7512,B13,B030,Articulated to a non-HG society,B030-3,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +7513,B130,B030,"Autonomous, matrix of similar HG groups",B030-1,,,,1910,Binford_2001_Table_9.01, +7514,B131,B030,"Autonomous, matrix of similar HG groups",B030-1,,,,1850,Binford_2001_Table_9.01, +7515,B132,B030,"Autonomous, matrix of similar HG groups",B030-1,,nind1831,,1850,Binford_2001_Table_9.01, +7516,B133,B030,"Autonomous, matrix of similar HG groups",B030-1,,williams1985,,1850,Binford_2001_Table_9.01, +7517,B134,B030,"Autonomous, matrix of similar HG groups",B030-1,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +7518,B135,B030,"Autonomous, matrix of similar HG groups",B030-1,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +7519,B136,B030,"Autonomous, matrix of similar HG groups",B030-1,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +7520,B137,B030,"Autonomous, matrix of similar HG groups",B030-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +7521,B14,B030,Articulated to a non-HG society,B030-3,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +7522,B143,B030,Articulated to a non-HG society,B030-3,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +7523,B144,B030,Articulated to a non-HG society,B030-3,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +7524,B145,B030,Articulated to a non-HG society,B030-3,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +7525,B146,B030,"Autonomous, matrix of similar HG groups",B030-1,,meigs1939,,1880,Binford_2001_Table_9.01, +7526,B147,B030,"Autonomous, matrix of similar HG groups",B030-1,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +7527,B148,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +7528,B149,B030,"Autonomous, matrix of similar HG groups",B030-1,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +7529,B15,B030,Articulated to a non-HG society,B030-3,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +7530,B150,B030,"Autonomous, matrix of similar HG groups",B030-1,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +7531,B151,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +7532,B152,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,voegelin1938,,1850,Binford_2001_Table_9.01, +7533,B153,B030,"Autonomous, matrix of similar HG groups",B030-1,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +7534,B154,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +7535,B155,B030,"Autonomous, matrix of similar HG groups",B030-1,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +7536,B156,B030,"Autonomous, matrix of similar HG groups",B030-1,,,,1770,Binford_2001_Table_9.01, +7537,B157,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +7538,B158,B030,"Autonomous, matrix of similar HG groups",B030-1,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +7539,B159,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +7540,B16,B030,Articulated to a non-HG society,B030-3,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +7541,B160,B030,"Autonomous, matrix of similar HG groups",B030-1,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +7542,B161,B030,"Autonomous, matrix of similar HG groups",B030-1,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +7543,B162,B030,"Autonomous, matrix of similar HG groups",B030-1,,dixon1910,,1860,Binford_2001_Table_9.01, +7544,B163,B030,"Autonomous, matrix of similar HG groups",B030-1,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +7545,B164,B030,"Autonomous, matrix of similar HG groups",B030-1,,gifford1926b,,1805,Binford_2001_Table_9.01, +7546,B165,B030,"Autonomous, matrix of similar HG groups",B030-1,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +7547,B166,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +7548,B167,B030,"Autonomous, matrix of similar HG groups",B030-1,,,,,Binford_2001_Table_9.01, +7549,B168,B030,"Autonomous, matrix of similar HG groups",B030-1,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +7550,B169,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +7551,B17,B030,Articulated to a non-HG society,B030-3,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +7552,B170,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1955,,,Binford_2001_Table_9.01, +7553,B171,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +7554,B172,B030,"Autonomous, matrix of similar HG groups",B030-1,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +7555,B173,B030,"Autonomous, matrix of similar HG groups",B030-1,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +7556,B174,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +7557,B175,B030,"Autonomous, matrix of similar HG groups",B030-1,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +7558,B176,B030,"Autonomous, matrix of similar HG groups",B030-1,,gray1987,,1860,Binford_2001_Table_9.01, +7559,B177,B030,"Autonomous, matrix of similar HG groups",B030-1,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +7560,B178,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +7561,B179,B030,"Autonomous, matrix of similar HG groups",B030-1,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +7562,B18,B030,Articulated to a non-HG society,B030-3,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +7563,B180,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +7564,B181,B030,"Autonomous, matrix of similar HG groups",B030-1,,gray1987,,1870,Binford_2001_Table_9.01, +7565,B182,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +7566,B183,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,gifford1926b,,1860,Binford_2001_Table_9.01, +7567,B184,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +7568,B185,B030,"Autonomous, matrix of similar HG groups",B030-1,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +7569,B186,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +7570,B187,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +7571,B188,B030,"Autonomous, matrix of similar HG groups",B030-1,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +7572,B189,B030,"Autonomous, matrix of similar HG groups",B030-1,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +7573,B19,B030,Articulated to a non-HG society,B030-3,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +7574,B190,B030,"Autonomous, matrix of similar HG groups",B030-1,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +7575,B191,B030,Articulated to a non-HG society,B030-3,,,,1570,Binford_2001_Table_9.01, +7576,B192,B030,"Autonomous, matrix of similar HG groups",B030-1,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +7577,B193,B030,"Autonomous, matrix of similar HG groups",B030-1,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +7578,B194,B030,"Autonomous, matrix of similar HG groups",B030-1,,,,1715,Binford_2001_Table_9.01, +7579,B195,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1850,Binford_2001_Table_9.01, +7580,B196,B030,"Autonomous, matrix of similar HG groups",B030-1,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +7581,B197,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +7582,B198,B030,"Autonomous, matrix of similar HG groups",B030-1,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +7583,B199,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +7584,B2,B030,Articulated to a non-HG society,B030-3,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +7585,B20,B030,Articulated to a non-HG society,B030-3,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +7586,B200,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +7587,B201,B030,"Autonomous, matrix of similar HG groups",B030-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +7588,B202,B030,"Autonomous, matrix of similar HG groups",B030-1,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +7589,B203,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +7590,B204,B030,"Autonomous, matrix of similar HG groups",B030-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +7591,B205,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,davis1965,,1870,Binford_2001_Table_9.01, +7592,B206,B030,"Autonomous, matrix of similar HG groups",B030-1,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +7593,B207,B030,"Autonomous, matrix of similar HG groups",B030-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +7594,B208,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +7595,B209,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +7596,B21,B030,Articulated to a non-HG society,B030-3,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +7597,B210,B030,"Autonomous, matrix of similar HG groups",B030-1,,fowler1992,,1870,Binford_2001_Table_9.01, +7598,B211,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7599,B212,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +7600,B213,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1870,Binford_2001_Table_9.01, +7601,B214,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7602,B215,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1870,Binford_2001_Table_9.01, +7603,B216,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +7604,B217,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7605,B218,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7606,B219,B030,"Autonomous, matrix of similar HG groups",B030-1,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +7607,B22,B030,"Autonomous, matrix of similar HG groups",B030-1,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +7608,B221,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7609,B222,B030,"Autonomous, matrix of similar HG groups",B030-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +7610,B223,B030,"Autonomous, matrix of similar HG groups",B030-1,,lowie1924,,1870,Binford_2001_Table_9.01, +7611,B224,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7612,B225,B030,"Autonomous, matrix of similar HG groups",B030-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +7613,B226,B030,"Autonomous, matrix of similar HG groups",B030-1,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +7614,B227,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +7615,B228,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7616,B229,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7617,B23,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,qiu1983,,1900,Binford_2001_Table_9.01, +7618,B230,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +7619,B231,B030,"Autonomous, matrix of similar HG groups",B030-1,,whiting1950,,1870,Binford_2001_Table_9.01, +7620,B232,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +7621,B233,B030,"Autonomous, matrix of similar HG groups",B030-1,,steward1938,,1860,Binford_2001_Table_9.01, +7622,B234,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +7623,B24,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +7624,B240,B030,"Autonomous, matrix of similar HG groups",B030-1,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +7625,B241,B030,"Autonomous, matrix of similar HG groups",B030-1,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +7626,B242,B030,"Autonomous, matrix of similar HG groups",B030-1,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +7627,B243,B030,"Autonomous, matrix of similar HG groups",B030-1,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +7628,B244,B030,"Autonomous, matrix of similar HG groups",B030-1,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +7629,B245,B030,"Autonomous, matrix of similar HG groups",B030-1,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +7630,B246,B030,"Autonomous, matrix of similar HG groups",B030-1,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +7631,B248,B030,"Autonomous, matrix of similar HG groups",B030-1,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +7632,B249,B030,"Autonomous, matrix of similar HG groups",B030-1,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +7633,B25,B030,"Autonomous, matrix of similar HG groups",B030-1,,shternberg1933,,1920,Binford_2001_Table_9.01, +7634,B250,B030,"Autonomous, matrix of similar HG groups",B030-1,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +7635,B252,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +7636,B253,B030,"Autonomous, matrix of similar HG groups",B030-1,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +7637,B254,B030,"Autonomous, matrix of similar HG groups",B030-1,,skinner1914,,1850,Binford_2001_Table_9.01, +7638,B255,B030,"Autonomous, matrix of similar HG groups",B030-1,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +7639,B256,B030,"Autonomous, matrix of similar HG groups",B030-1,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +7640,B257,B030,"Autonomous, matrix of similar HG groups",B030-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +7641,B258,B030,"Autonomous, matrix of similar HG groups",B030-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +7642,B259,B030,"Autonomous, matrix of similar HG groups",B030-1,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +7643,B26,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +7644,B260,B030,"Autonomous, matrix of similar HG groups",B030-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +7645,B268,B030,"Autonomous, matrix of similar HG groups",B030-1,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +7646,B269,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +7647,B27,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +7648,B270,B030,"Autonomous, matrix of similar HG groups",B030-1,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +7649,B271,B030,"Autonomous, matrix of similar HG groups",B030-1,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +7650,B272,B030,"Autonomous, matrix of similar HG groups",B030-1,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +7651,B273,B030,"Autonomous, matrix of similar HG groups",B030-1,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +7652,B274,B030,"Autonomous, matrix of similar HG groups",B030-1,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +7653,B275,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +7654,B276,B030,"Autonomous, matrix of similar HG groups",B030-1,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +7655,B277,B030,"Autonomous, matrix of similar HG groups",B030-1,,stern1934,,1880,Binford_2001_Table_9.01, +7656,B278,B030,"Autonomous, matrix of similar HG groups",B030-1,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +7657,B279,B030,"Autonomous, matrix of similar HG groups",B030-1,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +7658,B28,B030,"Autonomous, matrix of similar HG groups",B030-1,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +7659,B280,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +7660,B281,B030,"Autonomous, matrix of similar HG groups",B030-1,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +7661,B282,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +7662,B283,B030,"Autonomous, matrix of similar HG groups",B030-1,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +7663,B284,B030,"Autonomous, matrix of similar HG groups",B030-1,,pettitt1950,,1880,Binford_2001_Table_9.01, +7664,B285,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +7665,B286,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +7666,B287,B030,"Autonomous, matrix of similar HG groups",B030-1,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +7667,B288,B030,"Autonomous, matrix of similar HG groups",B030-1,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +7668,B289,B030,"Autonomous, matrix of similar HG groups",B030-1,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +7669,B290,B030,"Autonomous, matrix of similar HG groups",B030-1,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +7670,B291,B030,"Autonomous, matrix of similar HG groups",B030-1,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +7671,B292,B030,"Autonomous, matrix of similar HG groups",B030-1,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +7672,B293,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +7673,B294,B030,"Autonomous, matrix of similar HG groups",B030-1,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +7674,B295,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +7675,B296,B030,"Autonomous, matrix of similar HG groups",B030-1,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +7676,B297,B030,"Autonomous, matrix of similar HG groups",B030-1,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +7677,B298,B030,"Autonomous, matrix of similar HG groups",B030-1,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +7678,B299,B030,"Autonomous, matrix of similar HG groups",B030-1,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +7679,B3,B030,Articulated to a non-HG society,B030-3,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +7680,B315,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,murdock1980,,1850,Binford_2001_Table_9.01, +7681,B316,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,,,1860,Binford_2001_Table_9.01, +7682,B317,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,teit1928,,1870,Binford_2001_Table_9.01, +7683,B318,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,,,1880,Binford_2001_Table_9.01, +7684,B319,B030,"Autonomous, matrix of similar HG groups",B030-1,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +7685,B320,B030,"Autonomous, matrix of similar HG groups",B030-1,,teit1930,,1860,Binford_2001_Table_9.01, +7686,B321,B030,"Autonomous, matrix of similar HG groups",B030-1,,clineetal1938,,1880,Binford_2001_Table_9.01, +7687,B322,B030,"Autonomous, matrix of similar HG groups",B030-1,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +7688,B323,B030,"Autonomous, matrix of similar HG groups",B030-1,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +7689,B324,B030,"Autonomous, matrix of similar HG groups",B030-1,,spinden1908,,1850,Binford_2001_Table_9.01, +7690,B325,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +7691,B326,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,teit1930,,1870,Binford_2001_Table_9.01, +7692,B327,B030,"Autonomous, matrix of similar HG groups",B030-1,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +7693,B328,B030,"Autonomous, matrix of similar HG groups",B030-1,,kinietz1947,,1800,Binford_2001_Table_9.01, +7694,B329,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +7695,B330,B030,"Autonomous, matrix of similar HG groups",B030-1,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +7696,B331,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +7697,B332,B030,Articulated to a non-HG society,B030-3,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +7698,B333,B030,"Autonomous, matrix of similar HG groups",B030-1,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +7699,B334,B030,Articulated to a non-HG society,B030-3,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +7700,B335,B030,Articulated to a non-HG society,B030-3,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +7701,B336,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +7702,B337,B030,Articulated to a non-HG society,B030-3,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +7703,B338,B030,Articulated to a non-HG society,B030-3,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +7704,B339,B030,Articulated to a non-HG society,B030-3,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +7705,B340,B030,Articulated to a non-HG society,B030-3,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +7706,B341,B030,Articulated to a non-HG society,B030-3,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +7707,B342,B030,"Autonomous, matrix of similar HG groups",B030-1,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +7708,B343,B030,"Autonomous, matrix of similar HG groups",B030-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +7709,B344,B030,"Autonomous, matrix of similar HG groups",B030-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +7710,B345,B030,"Autonomous, matrix of similar HG groups",B030-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +7711,B346,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +7712,B347,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +7713,B348,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +7714,B349,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +7715,B35,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,,,1950,Binford_2001_Table_9.01, +7716,B350,B030,"Autonomous, matrix of similar HG groups",B030-1,,gillespie1981,,1800,Binford_2001_Table_9.01, +7717,B351,B030,"Autonomous, matrix of similar HG groups",B030-1,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +7718,B352,B030,"Autonomous, matrix of similar HG groups",B030-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +7719,B353,B030,Articulated to a non-HG society,B030-3,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +7720,B354,B030,"Autonomous, matrix of similar HG groups",B030-1,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +7721,B355,B030,"Autonomous, matrix of similar HG groups",B030-1,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +7722,B356,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +7723,B357,B030,"Autonomous, matrix of similar HG groups",B030-1,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +7724,B358,B030,"Autonomous, matrix of similar HG groups",B030-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +7725,B359,B030,"Autonomous, matrix of similar HG groups",B030-1,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +7726,B36,B030,"Autonomous, matrix of similar HG groups",B030-1,,metraux1948,,1960,Binford_2001_Table_9.01, +7727,B360,B030,Articulated to a non-HG society,B030-3,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +7728,B361,B030,"Autonomous, matrix of similar HG groups",B030-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +7729,B362,B030,"Autonomous, matrix of similar HG groups",B030-1,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +7730,B363,B030,"Autonomous, articulated to more complex HG group(s)",B030-2,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +7731,B364,B030,"Autonomous, matrix of similar HG groups",B030-1,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +7732,B365,B030,"Autonomous, matrix of similar HG groups",B030-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +7733,B369,B030,"Autonomous, matrix of similar HG groups",B030-1,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +7734,B37,B030,Articulated to a non-HG society,B030-3,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +7735,B370,B030,"Autonomous, matrix of similar HG groups",B030-1,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +7736,B371,B030,"Autonomous, matrix of similar HG groups",B030-1,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +7737,B372,B030,"Autonomous, matrix of similar HG groups",B030-1,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +7738,B373,B030,"Autonomous, matrix of similar HG groups",B030-1,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +7739,B374,B030,"Autonomous, matrix of similar HG groups",B030-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +7740,B375,B030,"Autonomous, matrix of similar HG groups",B030-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +7741,B377,B030,"Autonomous, matrix of similar HG groups",B030-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +7742,B378,B030,"Autonomous, matrix of similar HG groups",B030-1,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +7743,B379,B030,"Autonomous, matrix of similar HG groups",B030-1,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +7744,B38,B030,Articulated to a non-HG society,B030-3,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +7745,B380,B030,"Autonomous, matrix of similar HG groups",B030-1,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +7746,B381,B030,"Autonomous, matrix of similar HG groups",B030-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +7747,B382,B030,"Autonomous, matrix of similar HG groups",B030-1,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +7748,B383,B030,"Autonomous, matrix of similar HG groups",B030-1,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +7749,B384,B030,"Autonomous, matrix of similar HG groups",B030-1,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +7750,B385,B030,"Autonomous, matrix of similar HG groups",B030-1,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +7751,B386,B030,"Autonomous, matrix of similar HG groups",B030-1,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +7752,B387,B030,"Autonomous, matrix of similar HG groups",B030-1,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +7753,B388,B030,"Autonomous, matrix of similar HG groups",B030-1,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +7754,B389,B030,"Autonomous, matrix of similar HG groups",B030-1,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +7755,B39,B030,Articulated to a non-HG society,B030-3,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +7756,B390,B030,"Autonomous, matrix of similar HG groups",B030-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +7757,B4,B030,Articulated to a non-HG society,B030-3,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +7758,B40,B030,Articulated to a non-HG society,B030-3,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +7759,B41,B030,Articulated to a non-HG society,B030-3,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +7760,B42,B030,Articulated to a non-HG society,B030-3,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +7761,B43,B030,Articulated to a non-HG society,B030-3,,holmberg1950,,1940,Binford_2001_Table_9.01, +7762,B44,B030,Articulated to a non-HG society,B030-3,,stearman1989,,1968,Binford_2001_Table_9.01, +7763,B45,B030,Articulated to a non-HG society,B030-3,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +7764,B46,B030,Articulated to a non-HG society,B030-3,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +7765,B47,B030,"Autonomous, matrix of similar HG groups",B030-1,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +7766,B48,B030,"Autonomous, matrix of similar HG groups",B030-1,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +7767,B49,B030,Articulated to a non-HG society,B030-3,,kozaketal1979,,1954,Binford_2001_Table_9.01, +7768,B5,B030,"Autonomous, matrix of similar HG groups",B030-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +7769,B50,B030,Articulated to a non-HG society,B030-3,,henry1964,,1910,Binford_2001_Table_9.01, +7770,B51,B030,"Autonomous, matrix of similar HG groups",B030-1,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +7771,B52,B030,"Autonomous, matrix of similar HG groups",B030-1,,cooper1946d,,1880,Binford_2001_Table_9.01, +7772,B53,B030,"Autonomous, matrix of similar HG groups",B030-1,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +7773,B54,B030,"Autonomous, matrix of similar HG groups",B030-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +7774,B55,B030,"Autonomous, matrix of similar HG groups",B030-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +7775,B6,B030,"Autonomous, matrix of similar HG groups",B030-1,,temple1903,,1906,Binford_2001_Table_9.01, +7776,B60,B030,Articulated to a non-HG society,B030-3,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +7777,B61,B030,Articulated to a non-HG society,B030-3,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +7778,B62,B030,Articulated to a non-HG society,B030-3,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +7779,B63,B030,Articulated to a non-HG society,B030-3,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +7780,B64,B030,Articulated to a non-HG society,B030-3,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +7781,B65,B030,Articulated to a non-HG society,B030-3,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +7782,B66,B030,Articulated to a non-HG society,B030-3,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +7783,B67,B030,Articulated to a non-HG society,B030-3,,clark1951,,1950,Binford_2001_Table_9.01, +7784,B68,B030,Articulated to a non-HG society,B030-3,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +7785,B69,B030,Articulated to a non-HG society,B030-3,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +7786,B7,B030,Articulated to a non-HG society,B030-3,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +7787,B70,B030,Articulated to a non-HG society,B030-3,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +7788,B71,B030,Articulated to a non-HG society,B030-3,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +7789,B72,B030,"Autonomous, matrix of similar HG groups",B030-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +7790,B73,B030,"Autonomous, matrix of similar HG groups",B030-1,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +7791,B74,B030,"Autonomous, matrix of similar HG groups",B030-1,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +7792,B75,B030,Articulated to a non-HG society,B030-3,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +7793,B76,B030,"Autonomous, matrix of similar HG groups",B030-1,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +7794,B77,B030,"Autonomous, matrix of similar HG groups",B030-1,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +7795,B78,B030,Articulated to a non-HG society,B030-3,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +7796,B79,B030,Articulated to a non-HG society,B030-3,,bleek1924a,,,Binford_2001_Table_9.01, +7797,B8,B030,"Autonomous, matrix of similar HG groups",B030-1,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +7798,B82,B030,Articulated to a non-HG society,B030-3,,moore1979,,1848,Binford_2001_Table_9.01, +7799,B83,B030,"Autonomous, matrix of similar HG groups",B030-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +7800,B84,B030,"Autonomous, matrix of similar HG groups",B030-1,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +7801,B85,B030,"Autonomous, matrix of similar HG groups",B030-1,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +7802,B86,B030,"Autonomous, matrix of similar HG groups",B030-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +7803,B87,B030,"Autonomous, matrix of similar HG groups",B030-1,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +7804,B88,B030,"Autonomous, matrix of similar HG groups",B030-1,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +7805,B89,B030,"Autonomous, matrix of similar HG groups",B030-1,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +7806,B9,B030,Articulated to a non-HG society,B030-3,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +7807,B90,B030,"Autonomous, matrix of similar HG groups",B030-1,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +7808,B91,B030,"Autonomous, matrix of similar HG groups",B030-1,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +7809,B92,B030,"Autonomous, matrix of similar HG groups",B030-1,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +7810,B93,B030,"Autonomous, matrix of similar HG groups",B030-1,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +7811,B94,B030,"Autonomous, matrix of similar HG groups",B030-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +7812,B95,B030,"Autonomous, matrix of similar HG groups",B030-1,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +7813,B96,B030,"Autonomous, matrix of similar HG groups",B030-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +7814,B97,B030,"Autonomous, matrix of similar HG groups",B030-1,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +7815,B98,B030,"Autonomous, matrix of similar HG groups",B030-1,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +7816,B99,B030,"Autonomous, matrix of similar HG groups",B030-1,,stanner1933,,1900,Binford_2001_Table_9.01, +7817,B1,B031,Absence of distinctions,B031-1,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +7818,B10,B031,Absence of distinctions,B031-1,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +7819,B100,B031,Absence of distinctions,B031-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +7820,B101,B031,Absence of distinctions,B031-1,,kaberry1939,,1934,Binford_2001_Table_9.01, +7821,B102,B031,Absence of distinctions,B031-1,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +7822,B103,B031,Absence of distinctions,B031-1,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +7823,B104,B031,Absence of distinctions,B031-1,,,,,Binford_2001_Table_9.01, +7824,B105,B031,Absence of distinctions,B031-1,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +7825,B106,B031,Absence of distinctions,B031-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +7826,B107,B031,Absence of distinctions,B031-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +7827,B108,B031,Absence of distinctions,B031-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +7828,B109,B031,Absence of distinctions,B031-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +7829,B11,B031,Absence of distinctions,B031-1,,morris1982a,,1972,Binford_2001_Table_9.01, +7830,B110,B031,Absence of distinctions,B031-1,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +7831,B111,B031,Absence of distinctions,B031-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +7832,B112,B031,Absence of distinctions,B031-1,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +7833,B113,B031,Absence of distinctions,B031-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +7834,B114,B031,Absence of distinctions,B031-1,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +7835,B115,B031,Absence of distinctions,B031-1,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +7836,B116,B031,Absence of distinctions,B031-1,,duncankemp1964,,1900,Binford_2001_Table_9.01, +7837,B117,B031,Absence of distinctions,B031-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +7838,B118,B031,Absence of distinctions,B031-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +7839,B119,B031,Absence of distinctions,B031-1,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +7840,B12,B031,Absence of distinctions,B031-1,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +7841,B120,B031,Absence of distinctions,B031-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +7842,B121,B031,Absence of distinctions,B031-1,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +7843,B122,B031,Absence of distinctions,B031-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +7844,B123,B031,Absence of distinctions,B031-1,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +7845,B124,B031,Absence of distinctions,B031-1,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +7846,B125,B031,Absence of distinctions,B031-1,,parker1905,,1880,Binford_2001_Table_9.01, +7847,B126,B031,Absence of distinctions,B031-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +7848,B127,B031,Absence of distinctions,B031-1,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +7849,B128,B031,Absence of distinctions,B031-1,,,,1890,Binford_2001_Table_9.01, +7850,B129,B031,Absence of distinctions,B031-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +7851,B13,B031,Absence of distinctions,B031-1,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +7852,B130,B031,Absence of distinctions,B031-1,,,,1910,Binford_2001_Table_9.01, +7853,B131,B031,Absence of distinctions,B031-1,,,,1850,Binford_2001_Table_9.01, +7854,B132,B031,Absence of distinctions,B031-1,,nind1831,,1850,Binford_2001_Table_9.01, +7855,B133,B031,Absence of distinctions,B031-1,,williams1985,,1850,Binford_2001_Table_9.01, +7856,B134,B031,Absence of distinctions,B031-1,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +7857,B135,B031,Absence of distinctions,B031-1,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +7858,B136,B031,Absence of distinctions,B031-1,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +7859,B137,B031,Absence of distinctions,B031-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +7860,B14,B031,Absence of distinctions,B031-1,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +7861,B143,B031,Absence of distinctions,B031-1,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +7862,B144,B031,Absence of distinctions,B031-1,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +7863,B145,B031,Absence of distinctions,B031-1,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +7864,B146,B031,Absence of distinctions,B031-1,,meigs1939,,1880,Binford_2001_Table_9.01, +7865,B147,B031,Absence of distinctions,B031-1,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +7866,B148,B031,Wealth distinctions only,B031-2,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +7867,B149,B031,Wealth distinctions only,B031-2,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +7868,B15,B031,Absence of distinctions,B031-1,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +7869,B150,B031,Wealth distinctions only,B031-2,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +7870,B151,B031,Absence of distinctions,B031-1,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +7871,B152,B031,Absence of distinctions,B031-1,,voegelin1938,,1850,Binford_2001_Table_9.01, +7872,B153,B031,Wealth distinctions only,B031-2,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +7873,B154,B031,Wealth distinctions only,B031-2,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +7874,B155,B031,Wealth distinctions only,B031-2,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +7875,B156,B031,Dual: hereditary aristocracy and lower class,B031-3,,,,1770,Binford_2001_Table_9.01, +7876,B157,B031,Absence of distinctions,B031-1,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +7877,B158,B031,Wealth distinctions only,B031-2,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +7878,B159,B031,Wealth distinctions only,B031-2,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +7879,B16,B031,Absence of distinctions,B031-1,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +7880,B160,B031,Wealth distinctions only,B031-2,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +7881,B161,B031,Dual: hereditary aristocracy and lower class,B031-3,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +7882,B162,B031,Absence of distinctions,B031-1,,dixon1910,,1860,Binford_2001_Table_9.01, +7883,B163,B031,Wealth distinctions only,B031-2,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +7884,B164,B031,Wealth distinctions only,B031-2,,gifford1926b,,1805,Binford_2001_Table_9.01, +7885,B165,B031,Wealth distinctions only,B031-2,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +7886,B166,B031,Wealth distinctions only,B031-2,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +7887,B167,B031,Wealth distinctions only,B031-2,,,,,Binford_2001_Table_9.01, +7888,B168,B031,Absence of distinctions,B031-1,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +7889,B169,B031,Absence of distinctions,B031-1,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +7890,B17,B031,Absence of distinctions,B031-1,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +7891,B170,B031,Wealth distinctions only,B031-2,,cook1955,,,Binford_2001_Table_9.01, +7892,B171,B031,Wealth distinctions only,B031-2,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +7893,B172,B031,Wealth distinctions only,B031-2,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +7894,B173,B031,Wealth distinctions only,B031-2,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +7895,B174,B031,Wealth distinctions only,B031-2,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +7896,B175,B031,Absence of distinctions,B031-1,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +7897,B176,B031,Wealth distinctions only,B031-2,,gray1987,,1860,Binford_2001_Table_9.01, +7898,B177,B031,Absence of distinctions,B031-1,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +7899,B178,B031,Wealth distinctions only,B031-2,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +7900,B179,B031,Wealth distinctions only,B031-2,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +7901,B18,B031,Absence of distinctions,B031-1,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +7902,B180,B031,Wealth distinctions only,B031-2,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +7903,B181,B031,Wealth distinctions only,B031-2,,gray1987,,1870,Binford_2001_Table_9.01, +7904,B182,B031,Wealth distinctions only,B031-2,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +7905,B183,B031,Wealth distinctions only,B031-2,,gifford1926b,,1860,Binford_2001_Table_9.01, +7906,B184,B031,Wealth distinctions only,B031-2,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +7907,B185,B031,Wealth distinctions only,B031-2,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +7908,B186,B031,Wealth distinctions only,B031-2,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +7909,B187,B031,Wealth distinctions only,B031-2,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +7910,B188,B031,Wealth distinctions only,B031-2,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +7911,B189,B031,Wealth distinctions only,B031-2,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +7912,B19,B031,Absence of distinctions,B031-1,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +7913,B190,B031,Absence of distinctions,B031-1,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +7914,B191,B031,Absence of distinctions,B031-1,,,,1570,Binford_2001_Table_9.01, +7915,B192,B031,Absence of distinctions,B031-1,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +7916,B193,B031,Absence of distinctions,B031-1,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +7917,B194,B031,Absence of distinctions,B031-1,,,,1715,Binford_2001_Table_9.01, +7918,B195,B031,Absence of distinctions,B031-1,,steward1938,,1850,Binford_2001_Table_9.01, +7919,B196,B031,Absence of distinctions,B031-1,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +7920,B197,B031,Absence of distinctions,B031-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +7921,B198,B031,Absence of distinctions,B031-1,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +7922,B199,B031,Absence of distinctions,B031-1,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +7923,B2,B031,Absence of distinctions,B031-1,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +7924,B20,B031,Absence of distinctions,B031-1,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +7925,B200,B031,Absence of distinctions,B031-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +7926,B201,B031,Absence of distinctions,B031-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +7927,B202,B031,Absence of distinctions,B031-1,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +7928,B203,B031,Absence of distinctions,B031-1,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +7929,B204,B031,Absence of distinctions,B031-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +7930,B205,B031,Absence of distinctions,B031-1,,davis1965,,1870,Binford_2001_Table_9.01, +7931,B206,B031,Absence of distinctions,B031-1,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +7932,B207,B031,Absence of distinctions,B031-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +7933,B208,B031,Absence of distinctions,B031-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +7934,B209,B031,Absence of distinctions,B031-1,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +7935,B21,B031,Absence of distinctions,B031-1,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +7936,B210,B031,Absence of distinctions,B031-1,,fowler1992,,1870,Binford_2001_Table_9.01, +7937,B211,B031,Absence of distinctions,B031-1,,steward1938,,1860,Binford_2001_Table_9.01, +7938,B212,B031,Absence of distinctions,B031-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +7939,B213,B031,Absence of distinctions,B031-1,,steward1938,,1870,Binford_2001_Table_9.01, +7940,B214,B031,Absence of distinctions,B031-1,,steward1938,,1860,Binford_2001_Table_9.01, +7941,B215,B031,Absence of distinctions,B031-1,,steward1938,,1870,Binford_2001_Table_9.01, +7942,B216,B031,Absence of distinctions,B031-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +7943,B217,B031,Absence of distinctions,B031-1,,steward1938,,1860,Binford_2001_Table_9.01, +7944,B218,B031,Absence of distinctions,B031-1,,steward1938,,1860,Binford_2001_Table_9.01, +7945,B219,B031,Wealth distinctions only,B031-2,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +7946,B22,B031,Absence of distinctions,B031-1,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +7947,B221,B031,Absence of distinctions,B031-1,,steward1938,,1860,Binford_2001_Table_9.01, +7948,B222,B031,Absence of distinctions,B031-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +7949,B223,B031,Absence of distinctions,B031-1,,lowie1924,,1870,Binford_2001_Table_9.01, +7950,B224,B031,Absence of distinctions,B031-1,,steward1938,,1860,Binford_2001_Table_9.01, +7951,B225,B031,Absence of distinctions,B031-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +7952,B226,B031,Absence of distinctions,B031-1,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +7953,B227,B031,Absence of distinctions,B031-1,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +7954,B228,B031,Absence of distinctions,B031-1,,steward1938,,1860,Binford_2001_Table_9.01, +7955,B229,B031,Wealth distinctions only,B031-2,,steward1938,,1860,Binford_2001_Table_9.01, +7956,B23,B031,Wealth distinctions only,B031-2,,qiu1983,,1900,Binford_2001_Table_9.01, +7957,B230,B031,Absence of distinctions,B031-1,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +7958,B231,B031,Absence of distinctions,B031-1,,whiting1950,,1870,Binford_2001_Table_9.01, +7959,B232,B031,Absence of distinctions,B031-1,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +7960,B233,B031,Absence of distinctions,B031-1,,steward1938,,1860,Binford_2001_Table_9.01, +7961,B234,B031,Wealth distinctions only,B031-2,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +7962,B24,B031,Wealth distinctions only,B031-2,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +7963,B240,B031,Absence of distinctions,B031-1,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +7964,B241,B031,Wealth distinctions only,B031-2,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +7965,B242,B031,Absence of distinctions,B031-1,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +7966,B243,B031,Absence of distinctions,B031-1,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +7967,B244,B031,Absence of distinctions,B031-1,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +7968,B245,B031,Wealth distinctions only,B031-2,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +7969,B246,B031,Absence of distinctions,B031-1,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +7970,B248,B031,Wealth distinctions only,B031-2,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +7971,B249,B031,Wealth distinctions only,B031-2,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +7972,B25,B031,Wealth distinctions only,B031-2,,shternberg1933,,1920,Binford_2001_Table_9.01, +7973,B250,B031,Wealth distinctions only,B031-2,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +7974,B252,B031,Wealth distinctions only,B031-2,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +7975,B253,B031,Wealth distinctions only,B031-2,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +7976,B254,B031,Absence of distinctions,B031-1,,skinner1914,,1850,Binford_2001_Table_9.01, +7977,B255,B031,Wealth distinctions only,B031-2,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +7978,B256,B031,Wealth distinctions only,B031-2,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +7979,B257,B031,Absence of distinctions,B031-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +7980,B258,B031,Absence of distinctions,B031-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +7981,B259,B031,Wealth distinctions only,B031-2,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +7982,B26,B031,Absence of distinctions,B031-1,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +7983,B260,B031,Absence of distinctions,B031-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +7984,B268,B031,Wealth distinctions only,B031-2,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +7985,B269,B031,Wealth distinctions only,B031-2,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +7986,B27,B031,Absence of distinctions,B031-1,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +7987,B270,B031,Wealth distinctions only,B031-2,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +7988,B271,B031,Wealth distinctions only,B031-2,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +7989,B272,B031,Wealth distinctions only,B031-2,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +7990,B273,B031,Dual: hereditary aristocracy and lower class,B031-3,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +7991,B274,B031,Wealth distinctions only,B031-2,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +7992,B275,B031,Wealth distinctions only,B031-2,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +7993,B276,B031,Dual: hereditary aristocracy and lower class,B031-3,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +7994,B277,B031,Dual: hereditary aristocracy and lower class,B031-3,,stern1934,,1880,Binford_2001_Table_9.01, +7995,B278,B031,Dual: hereditary aristocracy and lower class,B031-3,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +7996,B279,B031,Wealth distinctions only,B031-2,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +7997,B28,B031,Wealth distinctions only,B031-2,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +7998,B280,B031,Wealth distinctions only,B031-2,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +7999,B281,B031,Wealth distinctions only,B031-2,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +8000,B282,B031,Dual: hereditary aristocracy and lower class,B031-3,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +8001,B283,B031,Dual: hereditary aristocracy and lower class,B031-3,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +8002,B284,B031,Dual: hereditary aristocracy and lower class,B031-3,,pettitt1950,,1880,Binford_2001_Table_9.01, +8003,B285,B031,Dual: hereditary aristocracy and lower class,B031-3,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +8004,B286,B031,Dual: hereditary aristocracy and lower class,B031-3,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +8005,B287,B031,Dual: hereditary aristocracy and lower class,B031-3,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +8006,B288,B031,Dual: hereditary aristocracy and lower class,B031-3,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +8007,B289,B031,Dual: hereditary aristocracy and lower class,B031-3,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +8008,B290,B031,Dual: hereditary aristocracy and lower class,B031-3,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +8009,B291,B031,Dual: hereditary aristocracy and lower class,B031-3,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +8010,B292,B031,Dual: hereditary aristocracy and lower class,B031-3,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +8011,B293,B031,Dual: hereditary aristocracy and lower class,B031-3,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +8012,B294,B031,Dual: hereditary aristocracy and lower class,B031-3,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +8013,B295,B031,Wealth distinctions only,B031-2,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +8014,B296,B031,Wealth distinctions only,B031-2,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +8015,B297,B031,Dual: hereditary aristocracy and lower class,B031-3,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +8016,B298,B031,Dual: hereditary aristocracy and lower class,B031-3,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +8017,B299,B031,Wealth distinctions only,B031-2,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +8018,B3,B031,Absence of distinctions,B031-1,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +8019,B315,B031,Wealth distinctions only,B031-2,,murdock1980,,1850,Binford_2001_Table_9.01, +8020,B316,B031,Wealth distinctions only,B031-2,,,,1860,Binford_2001_Table_9.01, +8021,B317,B031,Wealth distinctions only,B031-2,,teit1928,,1870,Binford_2001_Table_9.01, +8022,B318,B031,Absence of distinctions,B031-1,,,,1880,Binford_2001_Table_9.01, +8023,B319,B031,Wealth distinctions only,B031-2,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +8024,B320,B031,Wealth distinctions only,B031-2,,teit1930,,1860,Binford_2001_Table_9.01, +8025,B321,B031,Dual: hereditary aristocracy and lower class,B031-3,,clineetal1938,,1880,Binford_2001_Table_9.01, +8026,B322,B031,Wealth distinctions only,B031-2,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +8027,B323,B031,Absence of distinctions,B031-1,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +8028,B324,B031,Wealth distinctions only,B031-2,,spinden1908,,1850,Binford_2001_Table_9.01, +8029,B325,B031,Wealth distinctions only,B031-2,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +8030,B326,B031,Absence of distinctions,B031-1,,teit1930,,1870,Binford_2001_Table_9.01, +8031,B327,B031,Absence of distinctions,B031-1,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +8032,B328,B031,Absence of distinctions,B031-1,,kinietz1947,,1800,Binford_2001_Table_9.01, +8033,B329,B031,Wealth distinctions only,B031-2,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +8034,B330,B031,Wealth distinctions only,B031-2,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +8035,B331,B031,Absence of distinctions,B031-1,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +8036,B332,B031,Absence of distinctions,B031-1,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +8037,B333,B031,Wealth distinctions only,B031-2,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +8038,B334,B031,Absence of distinctions,B031-1,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +8039,B335,B031,Absence of distinctions,B031-1,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +8040,B336,B031,Dual: hereditary aristocracy and lower class,B031-3,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +8041,B337,B031,Wealth distinctions only,B031-2,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +8042,B338,B031,Absence of distinctions,B031-1,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +8043,B339,B031,Absence of distinctions,B031-1,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +8044,B340,B031,Absence of distinctions,B031-1,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +8045,B341,B031,Absence of distinctions,B031-1,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +8046,B342,B031,Absence of distinctions,B031-1,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +8047,B343,B031,Absence of distinctions,B031-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +8048,B344,B031,Absence of distinctions,B031-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +8049,B345,B031,Absence of distinctions,B031-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +8050,B346,B031,Absence of distinctions,B031-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +8051,B347,B031,Wealth distinctions only,B031-2,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +8052,B348,B031,Dual: hereditary aristocracy and lower class,B031-3,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +8053,B349,B031,Dual: hereditary aristocracy and lower class,B031-3,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +8054,B35,B031,Dual: hereditary aristocracy and lower class,B031-3,,,,1950,Binford_2001_Table_9.01, +8055,B350,B031,Absence of distinctions,B031-1,,gillespie1981,,1800,Binford_2001_Table_9.01, +8056,B351,B031,Wealth distinctions only,B031-2,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +8057,B352,B031,Absence of distinctions,B031-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +8058,B353,B031,Absence of distinctions,B031-1,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +8059,B354,B031,Absence of distinctions,B031-1,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +8060,B355,B031,Absence of distinctions,B031-1,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +8061,B356,B031,Wealth distinctions only,B031-2,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +8062,B357,B031,Absence of distinctions,B031-1,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +8063,B358,B031,Absence of distinctions,B031-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +8064,B359,B031,Absence of distinctions,B031-1,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +8065,B36,B031,Absence of distinctions,B031-1,,metraux1948,,1960,Binford_2001_Table_9.01, +8066,B360,B031,Absence of distinctions,B031-1,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +8067,B361,B031,Absence of distinctions,B031-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +8068,B362,B031,Dual: hereditary aristocracy and lower class,B031-3,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +8069,B363,B031,Wealth distinctions only,B031-2,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +8070,B364,B031,Wealth distinctions only,B031-2,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +8071,B365,B031,Absence of distinctions,B031-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +8072,B369,B031,Wealth distinctions only,B031-2,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +8073,B37,B031,Absence of distinctions,B031-1,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +8074,B370,B031,Absence of distinctions,B031-1,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +8075,B371,B031,Wealth distinctions only,B031-2,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +8076,B372,B031,Absence of distinctions,B031-1,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +8077,B373,B031,Wealth distinctions only,B031-2,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +8078,B374,B031,Absence of distinctions,B031-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +8079,B375,B031,Absence of distinctions,B031-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +8080,B377,B031,Absence of distinctions,B031-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +8081,B378,B031,Wealth distinctions only,B031-2,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +8082,B379,B031,Wealth distinctions only,B031-2,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +8083,B38,B031,Absence of distinctions,B031-1,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +8084,B380,B031,Wealth distinctions only,B031-2,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +8085,B381,B031,Absence of distinctions,B031-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +8086,B382,B031,Absence of distinctions,B031-1,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +8087,B383,B031,Absence of distinctions,B031-1,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +8088,B384,B031,Absence of distinctions,B031-1,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +8089,B385,B031,Absence of distinctions,B031-1,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +8090,B386,B031,Absence of distinctions,B031-1,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +8091,B387,B031,Absence of distinctions,B031-1,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +8092,B388,B031,Absence of distinctions,B031-1,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +8093,B389,B031,Wealth distinctions only,B031-2,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +8094,B39,B031,Absence of distinctions,B031-1,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +8095,B390,B031,Absence of distinctions,B031-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +8096,B4,B031,Absence of distinctions,B031-1,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +8097,B40,B031,Absence of distinctions,B031-1,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +8098,B41,B031,Absence of distinctions,B031-1,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +8099,B42,B031,Absence of distinctions,B031-1,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +8100,B43,B031,Absence of distinctions,B031-1,,holmberg1950,,1940,Binford_2001_Table_9.01, +8101,B44,B031,Absence of distinctions,B031-1,,stearman1989,,1968,Binford_2001_Table_9.01, +8102,B45,B031,Absence of distinctions,B031-1,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +8103,B46,B031,Dual: hereditary aristocracy and lower class,B031-3,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +8104,B47,B031,Absence of distinctions,B031-1,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +8105,B48,B031,Absence of distinctions,B031-1,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +8106,B49,B031,Absence of distinctions,B031-1,,kozaketal1979,,1954,Binford_2001_Table_9.01, +8107,B5,B031,Absence of distinctions,B031-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +8108,B50,B031,Absence of distinctions,B031-1,,henry1964,,1910,Binford_2001_Table_9.01, +8109,B51,B031,Wealth distinctions only,B031-2,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +8110,B52,B031,Absence of distinctions,B031-1,,cooper1946d,,1880,Binford_2001_Table_9.01, +8111,B53,B031,Absence of distinctions,B031-1,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +8112,B54,B031,Absence of distinctions,B031-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +8113,B55,B031,Absence of distinctions,B031-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +8114,B6,B031,Absence of distinctions,B031-1,,temple1903,,1906,Binford_2001_Table_9.01, +8115,B60,B031,Absence of distinctions,B031-1,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +8116,B61,B031,Absence of distinctions,B031-1,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +8117,B62,B031,Absence of distinctions,B031-1,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +8118,B63,B031,Absence of distinctions,B031-1,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +8119,B64,B031,Absence of distinctions,B031-1,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +8120,B65,B031,Absence of distinctions,B031-1,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +8121,B66,B031,Absence of distinctions,B031-1,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +8122,B67,B031,Absence of distinctions,B031-1,,clark1951,,1950,Binford_2001_Table_9.01, +8123,B68,B031,Absence of distinctions,B031-1,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +8124,B69,B031,Absence of distinctions,B031-1,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +8125,B7,B031,Absence of distinctions,B031-1,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +8126,B70,B031,Absence of distinctions,B031-1,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +8127,B71,B031,Absence of distinctions,B031-1,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +8128,B72,B031,Absence of distinctions,B031-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +8129,B73,B031,Absence of distinctions,B031-1,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +8130,B74,B031,Absence of distinctions,B031-1,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +8131,B75,B031,Absence of distinctions,B031-1,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +8132,B76,B031,Absence of distinctions,B031-1,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +8133,B77,B031,Absence of distinctions,B031-1,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +8134,B78,B031,Absence of distinctions,B031-1,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +8135,B79,B031,Absence of distinctions,B031-1,,bleek1924a,,,Binford_2001_Table_9.01, +8136,B8,B031,Absence of distinctions,B031-1,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +8137,B82,B031,Absence of distinctions,B031-1,,moore1979,,1848,Binford_2001_Table_9.01, +8138,B83,B031,Absence of distinctions,B031-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +8139,B84,B031,Absence of distinctions,B031-1,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +8140,B85,B031,Absence of distinctions,B031-1,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +8141,B86,B031,Absence of distinctions,B031-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +8142,B87,B031,Absence of distinctions,B031-1,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +8143,B88,B031,Absence of distinctions,B031-1,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +8144,B89,B031,Absence of distinctions,B031-1,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +8145,B9,B031,Absence of distinctions,B031-1,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +8146,B90,B031,Absence of distinctions,B031-1,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +8147,B91,B031,Absence of distinctions,B031-1,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +8148,B92,B031,Absence of distinctions,B031-1,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +8149,B93,B031,Absence of distinctions,B031-1,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +8150,B94,B031,Absence of distinctions,B031-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +8151,B95,B031,Absence of distinctions,B031-1,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +8152,B96,B031,Absence of distinctions,B031-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +8153,B97,B031,Absence of distinctions,B031-1,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +8154,B98,B031,Absence of distinctions,B031-1,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +8155,B99,B031,Wealth distinctions only,B031-2,,stanner1933,,1900,Binford_2001_Table_9.01, +8156,B1,B032,No subsistence relief; some assistants,B032-2,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +8157,B10,B032,No special prerogatives,B032-1,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +8158,B100,B032,No special prerogatives,B032-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +8159,B101,B032,No special prerogatives,B032-1,,kaberry1939,,1934,Binford_2001_Table_9.01, +8160,B102,B032,No special prerogatives,B032-1,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +8161,B103,B032,No special prerogatives,B032-1,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +8162,B104,B032,No special prerogatives,B032-1,,,,,Binford_2001_Table_9.01, +8163,B105,B032,No special prerogatives,B032-1,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +8164,B106,B032,No special prerogatives,B032-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +8165,B107,B032,No special prerogatives,B032-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +8166,B108,B032,No special prerogatives,B032-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +8167,B109,B032,No special prerogatives,B032-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +8168,B11,B032,No special prerogatives,B032-1,,morris1982a,,1972,Binford_2001_Table_9.01, +8169,B110,B032,No special prerogatives,B032-1,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +8170,B111,B032,No special prerogatives,B032-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +8171,B112,B032,No special prerogatives,B032-1,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +8172,B113,B032,No special prerogatives,B032-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +8173,B114,B032,No special prerogatives,B032-1,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +8174,B115,B032,No special prerogatives,B032-1,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +8175,B116,B032,No special prerogatives,B032-1,,duncankemp1964,,1900,Binford_2001_Table_9.01, +8176,B117,B032,No special prerogatives,B032-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +8177,B118,B032,No special prerogatives,B032-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +8178,B119,B032,No special prerogatives,B032-1,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +8179,B12,B032,No special prerogatives,B032-1,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +8180,B120,B032,No special prerogatives,B032-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +8181,B121,B032,No special prerogatives,B032-1,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +8182,B122,B032,No special prerogatives,B032-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +8183,B123,B032,No special prerogatives,B032-1,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +8184,B124,B032,No special prerogatives,B032-1,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +8185,B125,B032,No special prerogatives,B032-1,,parker1905,,1880,Binford_2001_Table_9.01, +8186,B126,B032,No special prerogatives,B032-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +8187,B127,B032,No special prerogatives,B032-1,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +8188,B128,B032,No special prerogatives,B032-1,,,,1890,Binford_2001_Table_9.01, +8189,B129,B032,No special prerogatives,B032-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +8190,B13,B032,No special prerogatives,B032-1,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +8191,B130,B032,No special prerogatives,B032-1,,,,1910,Binford_2001_Table_9.01, +8192,B131,B032,No special prerogatives,B032-1,,,,1850,Binford_2001_Table_9.01, +8193,B132,B032,No special prerogatives,B032-1,,nind1831,,1850,Binford_2001_Table_9.01, +8194,B133,B032,No special prerogatives,B032-1,,williams1985,,1850,Binford_2001_Table_9.01, +8195,B134,B032,No special prerogatives,B032-1,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +8196,B135,B032,No special prerogatives,B032-1,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +8197,B136,B032,No special prerogatives,B032-1,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +8198,B137,B032,No special prerogatives,B032-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +8199,B14,B032,No special prerogatives,B032-1,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +8200,B143,B032,No subsistence relief; some assistants,B032-2,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +8201,B144,B032,No subsistence relief; some assistants and dress,B032-3,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +8202,B145,B032,No subsistence relief; some assistants,B032-2,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +8203,B146,B032,No special prerogatives,B032-1,,meigs1939,,1880,Binford_2001_Table_9.01, +8204,B147,B032,No subsistence relief; some assistants,B032-2,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +8205,B148,B032,No subsistence relief; some assistants and dress,B032-3,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +8206,B149,B032,No subsistence relief; some assistants,B032-2,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +8207,B15,B032,No special prerogatives,B032-1,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +8208,B150,B032,No subsistence relief; some assistants and dress,B032-3,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +8209,B151,B032,No subsistence relief; some assistants and dress,B032-3,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +8210,B152,B032,No subsistence relief; some assistants and dress,B032-3,,voegelin1938,,1850,Binford_2001_Table_9.01, +8211,B153,B032,No subsistence relief; some assistants,B032-2,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +8212,B154,B032,No subsistence relief; some assistants and dress,B032-3,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +8213,B155,B032,Some subsistence relief,B032-4,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +8214,B156,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,,,1770,Binford_2001_Table_9.01, +8215,B157,B032,No subsistence relief; some assistants,B032-2,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +8216,B158,B032,Some subsistence relief,B032-4,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +8217,B159,B032,Some subsistence relief,B032-4,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +8218,B16,B032,No special prerogatives,B032-1,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +8219,B160,B032,Some subsistence relief,B032-4,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +8220,B161,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +8221,B162,B032,No special prerogatives,B032-1,,dixon1910,,1860,Binford_2001_Table_9.01, +8222,B163,B032,Some subsistence relief,B032-4,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +8223,B164,B032,Some subsistence relief,B032-4,,gifford1926b,,1805,Binford_2001_Table_9.01, +8224,B165,B032,Some subsistence relief,B032-4,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +8225,B166,B032,No special prerogatives,B032-1,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +8226,B167,B032,No subsistence relief; some assistants,B032-2,,,,,Binford_2001_Table_9.01, +8227,B168,B032,Some subsistence relief,B032-4,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +8228,B169,B032,No special prerogatives,B032-1,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +8229,B17,B032,No special prerogatives,B032-1,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +8230,B170,B032,,B032-NA,,,,,, +8231,B171,B032,Some subsistence relief,B032-4,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +8232,B172,B032,Some subsistence relief,B032-4,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +8233,B173,B032,Some subsistence relief,B032-4,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +8234,B174,B032,Some subsistence relief,B032-4,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +8235,B175,B032,No subsistence relief; some assistants and dress,B032-3,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +8236,B176,B032,No special prerogatives,B032-1,,gray1987,,1860,Binford_2001_Table_9.01, +8237,B177,B032,No special prerogatives,B032-1,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +8238,B178,B032,No special prerogatives,B032-1,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +8239,B179,B032,No subsistence relief; some assistants,B032-2,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +8240,B18,B032,No special prerogatives,B032-1,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +8241,B180,B032,No special prerogatives,B032-1,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +8242,B181,B032,Some subsistence relief,B032-4,,gray1987,,1870,Binford_2001_Table_9.01, +8243,B182,B032,No special prerogatives,B032-1,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +8244,B183,B032,Some subsistence relief,B032-4,,gifford1926b,,1860,Binford_2001_Table_9.01, +8245,B184,B032,No special prerogatives,B032-1,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +8246,B185,B032,No special prerogatives,B032-1,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +8247,B186,B032,No special prerogatives,B032-1,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +8248,B187,B032,No subsistence relief; some assistants,B032-2,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +8249,B188,B032,No special prerogatives,B032-1,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +8250,B189,B032,No special prerogatives,B032-1,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +8251,B19,B032,No special prerogatives,B032-1,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +8252,B190,B032,No special prerogatives,B032-1,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +8253,B191,B032,No special prerogatives,B032-1,,,,1570,Binford_2001_Table_9.01, +8254,B192,B032,No special prerogatives,B032-1,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +8255,B193,B032,No subsistence relief; some assistants,B032-2,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +8256,B194,B032,No special prerogatives,B032-1,,,,1715,Binford_2001_Table_9.01, +8257,B195,B032,No special prerogatives,B032-1,,steward1938,,1850,Binford_2001_Table_9.01, +8258,B196,B032,No subsistence relief; some assistants and dress,B032-3,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +8259,B197,B032,No special prerogatives,B032-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +8260,B198,B032,No subsistence relief; some assistants and dress,B032-3,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +8261,B199,B032,No special prerogatives,B032-1,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +8262,B2,B032,No special prerogatives,B032-1,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +8263,B20,B032,No special prerogatives,B032-1,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +8264,B200,B032,No special prerogatives,B032-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +8265,B201,B032,No special prerogatives,B032-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +8266,B202,B032,Some subsistence relief,B032-4,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +8267,B203,B032,No special prerogatives,B032-1,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +8268,B204,B032,No special prerogatives,B032-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +8269,B205,B032,No special prerogatives,B032-1,,davis1965,,1870,Binford_2001_Table_9.01, +8270,B206,B032,No special prerogatives,B032-1,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +8271,B207,B032,No special prerogatives,B032-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +8272,B208,B032,No special prerogatives,B032-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +8273,B209,B032,No subsistence relief; some assistants,B032-2,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +8274,B21,B032,No special prerogatives,B032-1,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +8275,B210,B032,No special prerogatives,B032-1,,fowler1992,,1870,Binford_2001_Table_9.01, +8276,B211,B032,No special prerogatives,B032-1,,steward1938,,1860,Binford_2001_Table_9.01, +8277,B212,B032,No special prerogatives,B032-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +8278,B213,B032,No subsistence relief; some assistants,B032-2,,steward1938,,1870,Binford_2001_Table_9.01, +8279,B214,B032,No special prerogatives,B032-1,,steward1938,,1860,Binford_2001_Table_9.01, +8280,B215,B032,No special prerogatives,B032-1,,steward1938,,1870,Binford_2001_Table_9.01, +8281,B216,B032,No special prerogatives,B032-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +8282,B217,B032,No special prerogatives,B032-1,,steward1938,,1860,Binford_2001_Table_9.01, +8283,B218,B032,No special prerogatives,B032-1,,steward1938,,1860,Binford_2001_Table_9.01, +8284,B219,B032,Some subsistence relief,B032-4,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +8285,B22,B032,No subsistence relief; some assistants,B032-2,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +8286,B221,B032,No special prerogatives,B032-1,,steward1938,,1860,Binford_2001_Table_9.01, +8287,B222,B032,No subsistence relief; some assistants,B032-2,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +8288,B223,B032,No special prerogatives,B032-1,,lowie1924,,1870,Binford_2001_Table_9.01, +8289,B224,B032,No special prerogatives,B032-1,,steward1938,,1860,Binford_2001_Table_9.01, +8290,B225,B032,No special prerogatives,B032-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +8291,B226,B032,No subsistence relief; some assistants,B032-2,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +8292,B227,B032,No subsistence relief; some assistants and dress,B032-3,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +8293,B228,B032,No subsistence relief; some assistants,B032-2,,steward1938,,1860,Binford_2001_Table_9.01, +8294,B229,B032,No subsistence relief; some assistants,B032-2,,steward1938,,1860,Binford_2001_Table_9.01, +8295,B23,B032,No subsistence relief; some assistants,B032-2,,qiu1983,,1900,Binford_2001_Table_9.01, +8296,B230,B032,No subsistence relief; some assistants,B032-2,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +8297,B231,B032,No subsistence relief; some assistants,B032-2,,whiting1950,,1870,Binford_2001_Table_9.01, +8298,B232,B032,No special prerogatives,B032-1,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +8299,B233,B032,No special prerogatives,B032-1,,steward1938,,1860,Binford_2001_Table_9.01, +8300,B234,B032,No special prerogatives,B032-1,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +8301,B24,B032,No subsistence relief; some assistants and dress,B032-3,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +8302,B240,B032,No special prerogatives,B032-1,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +8303,B241,B032,No subsistence relief; some assistants and dress,B032-3,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +8304,B242,B032,No special prerogatives,B032-1,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +8305,B243,B032,No subsistence relief; some assistants and dress,B032-3,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +8306,B244,B032,No subsistence relief; some assistants and dress,B032-3,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +8307,B245,B032,No subsistence relief; some assistants and dress,B032-3,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +8308,B246,B032,No subsistence relief; some assistants,B032-2,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +8309,B248,B032,No subsistence relief; some assistants and dress,B032-3,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +8310,B249,B032,No subsistence relief; some assistants and dress,B032-3,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +8311,B25,B032,No special prerogatives,B032-1,,shternberg1933,,1920,Binford_2001_Table_9.01, +8312,B250,B032,No subsistence relief; some assistants,B032-2,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +8313,B252,B032,No subsistence relief; some assistants,B032-2,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +8314,B253,B032,No subsistence relief; some assistants and dress,B032-3,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +8315,B254,B032,No subsistence relief; some assistants and dress,B032-3,,skinner1914,,1850,Binford_2001_Table_9.01, +8316,B255,B032,No subsistence relief; some assistants and dress,B032-3,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +8317,B256,B032,No subsistence relief; some assistants and dress,B032-3,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +8318,B257,B032,No subsistence relief; some assistants and dress,B032-3,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +8319,B258,B032,No subsistence relief; some assistants,B032-2,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +8320,B259,B032,No subsistence relief; some assistants and dress,B032-3,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +8321,B26,B032,No special prerogatives,B032-1,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +8322,B260,B032,,B032-NA,,,,,, +8323,B268,B032,Some subsistence relief,B032-4,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +8324,B269,B032,Some subsistence relief,B032-4,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +8325,B27,B032,No subsistence relief; some assistants,B032-2,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +8326,B270,B032,Some subsistence relief,B032-4,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +8327,B271,B032,No subsistence relief; some assistants and dress,B032-3,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +8328,B272,B032,No subsistence relief; some assistants,B032-2,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +8329,B273,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +8330,B274,B032,Some subsistence relief,B032-4,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +8331,B275,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +8332,B276,B032,No subsistence relief; some assistants,B032-2,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +8333,B277,B032,No subsistence relief; some assistants,B032-2,,stern1934,,1880,Binford_2001_Table_9.01, +8334,B278,B032,Some subsistence relief,B032-4,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +8335,B279,B032,Some subsistence relief,B032-4,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +8336,B28,B032,No subsistence relief; some assistants,B032-2,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +8337,B280,B032,No subsistence relief; some assistants and dress,B032-3,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +8338,B281,B032,No subsistence relief; some assistants,B032-2,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +8339,B282,B032,No subsistence relief; some assistants and dress,B032-3,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +8340,B283,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +8341,B284,B032,No subsistence relief; some assistants and dress,B032-3,,pettitt1950,,1880,Binford_2001_Table_9.01, +8342,B285,B032,No subsistence relief; some assistants and dress,B032-3,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +8343,B286,B032,No subsistence relief; some assistants and dress,B032-3,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +8344,B287,B032,No subsistence relief; some assistants and dress,B032-3,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +8345,B288,B032,Some subsistence relief,B032-4,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +8346,B289,B032,Some subsistence relief,B032-4,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +8347,B290,B032,Some subsistence relief,B032-4,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +8348,B291,B032,Some subsistence relief,B032-4,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +8349,B292,B032,Some subsistence relief,B032-4,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +8350,B293,B032,Some subsistence relief,B032-4,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +8351,B294,B032,No subsistence relief; some assistants and dress,B032-3,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +8352,B295,B032,Some subsistence relief,B032-4,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +8353,B296,B032,No subsistence relief; some assistants,B032-2,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +8354,B297,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +8355,B298,B032,Some subsistence relief,B032-4,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +8356,B299,B032,No special prerogatives,B032-1,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +8357,B3,B032,No special prerogatives,B032-1,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +8358,B315,B032,No subsistence relief; some assistants,B032-2,,murdock1980,,1850,Binford_2001_Table_9.01, +8359,B316,B032,No subsistence relief; some assistants and dress,B032-3,,,,1860,Binford_2001_Table_9.01, +8360,B317,B032,No subsistence relief; some assistants and dress,B032-3,,teit1928,,1870,Binford_2001_Table_9.01, +8361,B318,B032,No subsistence relief; some assistants and dress,B032-3,,,,1880,Binford_2001_Table_9.01, +8362,B319,B032,No subsistence relief; some assistants and dress,B032-3,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +8363,B320,B032,No subsistence relief; some assistants,B032-2,,teit1930,,1860,Binford_2001_Table_9.01, +8364,B321,B032,No subsistence relief; some assistants and dress,B032-3,,clineetal1938,,1880,Binford_2001_Table_9.01, +8365,B322,B032,No subsistence relief; some assistants,B032-2,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +8366,B323,B032,No subsistence relief; some assistants and dress,B032-3,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +8367,B324,B032,No subsistence relief; some assistants and dress,B032-3,,spinden1908,,1850,Binford_2001_Table_9.01, +8368,B325,B032,No subsistence relief; some assistants and dress,B032-3,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +8369,B326,B032,No subsistence relief; some assistants and dress,B032-3,,teit1930,,1870,Binford_2001_Table_9.01, +8370,B327,B032,No subsistence relief; some assistants,B032-2,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +8371,B328,B032,No special prerogatives,B032-1,,kinietz1947,,1800,Binford_2001_Table_9.01, +8372,B329,B032,Some subsistence relief,B032-4,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +8373,B330,B032,No subsistence relief; some assistants and dress,B032-3,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +8374,B331,B032,No subsistence relief; some assistants,B032-2,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +8375,B332,B032,No subsistence relief; some assistants,B032-2,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +8376,B333,B032,No subsistence relief; some assistants and dress,B032-3,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +8377,B334,B032,No subsistence relief; some assistants,B032-2,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +8378,B335,B032,No subsistence relief; some assistants,B032-2,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +8379,B336,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +8380,B337,B032,No subsistence relief; some assistants,B032-2,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +8381,B338,B032,No subsistence relief; some assistants,B032-2,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +8382,B339,B032,No subsistence relief; some assistants,B032-2,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +8383,B340,B032,No subsistence relief; some assistants,B032-2,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +8384,B341,B032,No subsistence relief; some assistants,B032-2,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +8385,B342,B032,No subsistence relief; some assistants,B032-2,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +8386,B343,B032,No special prerogatives,B032-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +8387,B344,B032,No special prerogatives,B032-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +8388,B345,B032,No special prerogatives,B032-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +8389,B346,B032,No special prerogatives,B032-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +8390,B347,B032,No subsistence relief; some assistants and dress,B032-3,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +8391,B348,B032,No special prerogatives,B032-1,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +8392,B349,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +8393,B35,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,,,1950,Binford_2001_Table_9.01, +8394,B350,B032,No special prerogatives,B032-1,,gillespie1981,,1800,Binford_2001_Table_9.01, +8395,B351,B032,No subsistence relief; some assistants,B032-2,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +8396,B352,B032,No special prerogatives,B032-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +8397,B353,B032,No special prerogatives,B032-1,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +8398,B354,B032,No special prerogatives,B032-1,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +8399,B355,B032,No special prerogatives,B032-1,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +8400,B356,B032,No subsistence relief; some assistants,B032-2,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +8401,B357,B032,No subsistence relief; some assistants,B032-2,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +8402,B358,B032,No special prerogatives,B032-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +8403,B359,B032,No subsistence relief; some assistants,B032-2,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +8404,B36,B032,No special prerogatives,B032-1,,metraux1948,,1960,Binford_2001_Table_9.01, +8405,B360,B032,No special prerogatives,B032-1,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +8406,B361,B032,No special prerogatives,B032-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +8407,B362,B032,Some subsistence relief,B032-4,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +8408,B363,B032,No special prerogatives,B032-1,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +8409,B364,B032,No subsistence relief; some assistants,B032-2,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +8410,B365,B032,No special prerogatives,B032-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +8411,B369,B032,No subsistence relief; some assistants,B032-2,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +8412,B37,B032,No special prerogatives,B032-1,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +8413,B370,B032,No subsistence relief; some assistants,B032-2,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +8414,B371,B032,No subsistence relief; some assistants,B032-2,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +8415,B372,B032,No subsistence relief; some assistants,B032-2,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +8416,B373,B032,No subsistence relief; some assistants,B032-2,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +8417,B374,B032,No special prerogatives,B032-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +8418,B375,B032,No special prerogatives,B032-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +8419,B377,B032,No special prerogatives,B032-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +8420,B378,B032,No special prerogatives,B032-1,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +8421,B379,B032,No special prerogatives,B032-1,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +8422,B38,B032,No special prerogatives,B032-1,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +8423,B380,B032,No subsistence relief; some assistants,B032-2,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +8424,B381,B032,No special prerogatives,B032-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +8425,B382,B032,No special prerogatives,B032-1,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +8426,B383,B032,No special prerogatives,B032-1,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +8427,B384,B032,No special prerogatives,B032-1,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +8428,B385,B032,No special prerogatives,B032-1,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +8429,B386,B032,No special prerogatives,B032-1,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +8430,B387,B032,No special prerogatives,B032-1,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +8431,B388,B032,No special prerogatives,B032-1,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +8432,B389,B032,No special prerogatives,B032-1,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +8433,B39,B032,No special prerogatives,B032-1,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +8434,B390,B032,No special prerogatives,B032-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +8435,B4,B032,No special prerogatives,B032-1,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +8436,B40,B032,No special prerogatives,B032-1,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +8437,B41,B032,No subsistence relief; some assistants and dress,B032-3,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +8438,B42,B032,No subsistence relief; some assistants,B032-2,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +8439,B43,B032,No special prerogatives,B032-1,,holmberg1950,,1940,Binford_2001_Table_9.01, +8440,B44,B032,No special prerogatives,B032-1,,stearman1989,,1968,Binford_2001_Table_9.01, +8441,B45,B032,No subsistence relief; some assistants,B032-2,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +8442,B46,B032,"Complete subsistence relief; assistants, distinctive dress",B032-5,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +8443,B47,B032,No special prerogatives,B032-1,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +8444,B48,B032,No subsistence relief; some assistants,B032-2,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +8445,B49,B032,No special prerogatives,B032-1,,kozaketal1979,,1954,Binford_2001_Table_9.01, +8446,B5,B032,No special prerogatives,B032-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +8447,B50,B032,No subsistence relief; some assistants,B032-2,,henry1964,,1910,Binford_2001_Table_9.01, +8448,B51,B032,Some subsistence relief,B032-4,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +8449,B52,B032,No special prerogatives,B032-1,,cooper1946d,,1880,Binford_2001_Table_9.01, +8450,B53,B032,No special prerogatives,B032-1,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +8451,B54,B032,No special prerogatives,B032-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +8452,B55,B032,No special prerogatives,B032-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +8453,B6,B032,No special prerogatives,B032-1,,temple1903,,1906,Binford_2001_Table_9.01, +8454,B60,B032,No special prerogatives,B032-1,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +8455,B61,B032,No special prerogatives,B032-1,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +8456,B62,B032,No special prerogatives,B032-1,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +8457,B63,B032,No special prerogatives,B032-1,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +8458,B64,B032,No special prerogatives,B032-1,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +8459,B65,B032,No special prerogatives,B032-1,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +8460,B66,B032,No special prerogatives,B032-1,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +8461,B67,B032,No special prerogatives,B032-1,,clark1951,,1950,Binford_2001_Table_9.01, +8462,B68,B032,No special prerogatives,B032-1,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +8463,B69,B032,No special prerogatives,B032-1,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +8464,B7,B032,No special prerogatives,B032-1,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +8465,B70,B032,No special prerogatives,B032-1,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +8466,B71,B032,No special prerogatives,B032-1,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +8467,B72,B032,No special prerogatives,B032-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +8468,B73,B032,No special prerogatives,B032-1,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +8469,B74,B032,No special prerogatives,B032-1,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +8470,B75,B032,No special prerogatives,B032-1,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +8471,B76,B032,No special prerogatives,B032-1,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +8472,B77,B032,No special prerogatives,B032-1,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +8473,B78,B032,No special prerogatives,B032-1,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +8474,B79,B032,No special prerogatives,B032-1,,bleek1924a,,,Binford_2001_Table_9.01, +8475,B8,B032,No special prerogatives,B032-1,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +8476,B82,B032,No special prerogatives,B032-1,,moore1979,,1848,Binford_2001_Table_9.01, +8477,B83,B032,No special prerogatives,B032-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +8478,B84,B032,No special prerogatives,B032-1,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +8479,B85,B032,No special prerogatives,B032-1,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +8480,B86,B032,No special prerogatives,B032-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +8481,B87,B032,No special prerogatives,B032-1,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +8482,B88,B032,No special prerogatives,B032-1,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +8483,B89,B032,No special prerogatives,B032-1,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +8484,B9,B032,No special prerogatives,B032-1,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +8485,B90,B032,No special prerogatives,B032-1,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +8486,B91,B032,No special prerogatives,B032-1,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +8487,B92,B032,No special prerogatives,B032-1,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +8488,B93,B032,No special prerogatives,B032-1,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +8489,B94,B032,No special prerogatives,B032-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +8490,B95,B032,No special prerogatives,B032-1,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +8491,B96,B032,No special prerogatives,B032-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +8492,B97,B032,No special prerogatives,B032-1,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +8493,B98,B032,No special prerogatives,B032-1,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +8494,B99,B032,No special prerogatives,B032-1,,stanner1933,,1900,Binford_2001_Table_9.01, +8495,B1,B033,Absent,B033-1,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +8496,B10,B033,Absent,B033-1,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +8497,B100,B033,Absent,B033-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +8498,B101,B033,Absent,B033-1,,kaberry1939,,1934,Binford_2001_Table_9.01, +8499,B102,B033,Absent,B033-1,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +8500,B103,B033,Absent,B033-1,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +8501,B104,B033,Absent,B033-1,,,,,Binford_2001_Table_9.01, +8502,B105,B033,Absent,B033-1,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +8503,B106,B033,Absent,B033-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +8504,B107,B033,Absent,B033-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +8505,B108,B033,Absent,B033-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +8506,B109,B033,Absent,B033-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +8507,B11,B033,Absent,B033-1,,morris1982a,,1972,Binford_2001_Table_9.01, +8508,B110,B033,Absent,B033-1,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +8509,B111,B033,Absent,B033-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +8510,B112,B033,Absent,B033-1,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +8511,B113,B033,Absent,B033-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +8512,B114,B033,Absent,B033-1,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +8513,B115,B033,Absent,B033-1,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +8514,B116,B033,Absent,B033-1,,duncankemp1964,,1900,Binford_2001_Table_9.01, +8515,B117,B033,Absent,B033-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +8516,B118,B033,Absent,B033-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +8517,B119,B033,Absent,B033-1,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +8518,B12,B033,Absent,B033-1,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +8519,B120,B033,Absent,B033-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +8520,B121,B033,Absent,B033-1,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +8521,B122,B033,Absent,B033-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +8522,B123,B033,Absent,B033-1,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +8523,B124,B033,Absent,B033-1,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +8524,B125,B033,Absent,B033-1,,parker1905,,1880,Binford_2001_Table_9.01, +8525,B126,B033,Absent,B033-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +8526,B127,B033,Absent,B033-1,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +8527,B128,B033,Absent,B033-1,,,,1890,Binford_2001_Table_9.01, +8528,B129,B033,Absent,B033-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +8529,B13,B033,Absent,B033-1,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +8530,B130,B033,Absent,B033-1,,,,1910,Binford_2001_Table_9.01, +8531,B131,B033,Absent,B033-1,,,,1850,Binford_2001_Table_9.01, +8532,B132,B033,Absent,B033-1,,nind1831,,1850,Binford_2001_Table_9.01, +8533,B133,B033,Absent,B033-1,,williams1985,,1850,Binford_2001_Table_9.01, +8534,B134,B033,Absent,B033-1,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +8535,B135,B033,Absent,B033-1,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +8536,B136,B033,Absent,B033-1,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +8537,B137,B033,Absent,B033-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +8538,B14,B033,Absent,B033-1,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +8539,B143,B033,Absent,B033-1,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +8540,B144,B033,Absent,B033-1,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +8541,B145,B033,Many convertible items,B033-4,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +8542,B146,B033,Absent,B033-1,,meigs1939,,1880,Binford_2001_Table_9.01, +8543,B147,B033,Absent,B033-1,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +8544,B148,B033,Many convertible items,B033-4,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +8545,B149,B033,Commonly used,B033-3,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +8546,B15,B033,Absent,B033-1,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +8547,B150,B033,Commonly used,B033-3,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +8548,B151,B033,Many convertible items,B033-4,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +8549,B152,B033,Many convertible items,B033-4,,voegelin1938,,1850,Binford_2001_Table_9.01, +8550,B153,B033,Many convertible items,B033-4,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +8551,B154,B033,Commonly used,B033-3,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +8552,B155,B033,Many convertible items,B033-4,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +8553,B156,B033,Many convertible items,B033-4,,,,1770,Binford_2001_Table_9.01, +8554,B157,B033,Commonly used,B033-3,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +8555,B158,B033,Many convertible items,B033-4,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +8556,B159,B033,Many convertible items,B033-4,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +8557,B16,B033,Absent,B033-1,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +8558,B160,B033,Many convertible items,B033-4,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +8559,B161,B033,Many convertible items,B033-4,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +8560,B162,B033,Commonly used,B033-3,,dixon1910,,1860,Binford_2001_Table_9.01, +8561,B163,B033,Many convertible items,B033-4,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +8562,B164,B033,Many convertible items,B033-4,,gifford1926b,,1805,Binford_2001_Table_9.01, +8563,B165,B033,Many convertible items,B033-4,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +8564,B166,B033,Many convertible items,B033-4,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +8565,B167,B033,Many convertible items,B033-4,,,,,Binford_2001_Table_9.01, +8566,B168,B033,Many convertible items,B033-4,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +8567,B169,B033,Many convertible items,B033-4,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +8568,B17,B033,Absent,B033-1,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +8569,B170,B033,Many convertible items,B033-4,,cook1955,,,Binford_2001_Table_9.01, +8570,B171,B033,Many convertible items,B033-4,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +8571,B172,B033,Many convertible items,B033-4,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +8572,B173,B033,Many convertible items,B033-4,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +8573,B174,B033,Commonly used,B033-3,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +8574,B175,B033,Commonly used,B033-3,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +8575,B176,B033,Many convertible items,B033-4,,gray1987,,1860,Binford_2001_Table_9.01, +8576,B177,B033,Commonly used,B033-3,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +8577,B178,B033,Many convertible items,B033-4,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +8578,B179,B033,Commonly used,B033-3,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +8579,B18,B033,Many convertible items,B033-4,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +8580,B180,B033,Many convertible items,B033-4,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +8581,B181,B033,Many convertible items,B033-4,,gray1987,,1870,Binford_2001_Table_9.01, +8582,B182,B033,Many convertible items,B033-4,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +8583,B183,B033,Commonly used,B033-3,,gifford1926b,,1860,Binford_2001_Table_9.01, +8584,B184,B033,Many convertible items,B033-4,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +8585,B185,B033,Commonly used,B033-3,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +8586,B186,B033,Many convertible items,B033-4,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +8587,B187,B033,Commonly used,B033-3,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +8588,B188,B033,Many convertible items,B033-4,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +8589,B189,B033,Commonly used,B033-3,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +8590,B19,B033,Absent,B033-1,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +8591,B190,B033,Absent,B033-1,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +8592,B191,B033,Absent,B033-1,,,,1570,Binford_2001_Table_9.01, +8593,B192,B033,Commonly used,B033-3,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +8594,B193,B033,Absent,B033-1,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +8595,B194,B033,Absent,B033-1,,,,1715,Binford_2001_Table_9.01, +8596,B195,B033,Commonly used,B033-3,,steward1938,,1850,Binford_2001_Table_9.01, +8597,B196,B033,Absent,B033-1,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +8598,B197,B033,Commonly used,B033-3,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +8599,B198,B033,Absent,B033-1,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +8600,B199,B033,Commonly used,B033-3,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +8601,B2,B033,Absent,B033-1,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +8602,B20,B033,Absent,B033-1,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +8603,B200,B033,Absent,B033-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +8604,B201,B033,Absent,B033-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +8605,B202,B033,Commonly used,B033-3,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +8606,B203,B033,Absent,B033-1,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +8607,B204,B033,Absent,B033-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +8608,B205,B033,Commonly used,B033-3,,davis1965,,1870,Binford_2001_Table_9.01, +8609,B206,B033,Commonly used,B033-3,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +8610,B207,B033,Absent,B033-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +8611,B208,B033,Absent,B033-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +8612,B209,B033,Absent,B033-1,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +8613,B21,B033,Many convertible items,B033-4,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +8614,B210,B033,Absent,B033-1,,fowler1992,,1870,Binford_2001_Table_9.01, +8615,B211,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8616,B212,B033,Commonly used,B033-3,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +8617,B213,B033,Absent,B033-1,,steward1938,,1870,Binford_2001_Table_9.01, +8618,B214,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8619,B215,B033,Absent,B033-1,,steward1938,,1870,Binford_2001_Table_9.01, +8620,B216,B033,Absent,B033-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +8621,B217,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8622,B218,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8623,B219,B033,Commonly used,B033-3,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +8624,B22,B033,Absent,B033-1,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +8625,B221,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8626,B222,B033,Absent,B033-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +8627,B223,B033,Absent,B033-1,,lowie1924,,1870,Binford_2001_Table_9.01, +8628,B224,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8629,B225,B033,Absent,B033-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +8630,B226,B033,Absent,B033-1,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +8631,B227,B033,Absent,B033-1,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +8632,B228,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8633,B229,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8634,B23,B033,Absent,B033-1,,qiu1983,,1900,Binford_2001_Table_9.01, +8635,B230,B033,Absent,B033-1,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +8636,B231,B033,Absent,B033-1,,whiting1950,,1870,Binford_2001_Table_9.01, +8637,B232,B033,Absent,B033-1,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +8638,B233,B033,Absent,B033-1,,steward1938,,1860,Binford_2001_Table_9.01, +8639,B234,B033,Absent,B033-1,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +8640,B24,B033,Absent,B033-1,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +8641,B240,B033,Absent,B033-1,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +8642,B241,B033,Absent,B033-1,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +8643,B242,B033,Absent,B033-1,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +8644,B243,B033,Absent,B033-1,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +8645,B244,B033,Absent,B033-1,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +8646,B245,B033,Absent,B033-1,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +8647,B246,B033,Absent,B033-1,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +8648,B248,B033,Absent,B033-1,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +8649,B249,B033,Absent,B033-1,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +8650,B25,B033,Absent,B033-1,,shternberg1933,,1920,Binford_2001_Table_9.01, +8651,B250,B033,Absent,B033-1,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +8652,B252,B033,Absent,B033-1,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +8653,B253,B033,Absent,B033-1,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +8654,B254,B033,Absent,B033-1,,skinner1914,,1850,Binford_2001_Table_9.01, +8655,B255,B033,Absent,B033-1,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +8656,B256,B033,Absent,B033-1,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +8657,B257,B033,Absent,B033-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +8658,B258,B033,Absent,B033-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +8659,B259,B033,Absent,B033-1,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +8660,B26,B033,Absent,B033-1,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +8661,B260,B033,Absent,B033-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +8662,B268,B033,Rarely used,B033-2,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +8663,B269,B033,Commonly used,B033-3,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +8664,B27,B033,Absent,B033-1,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +8665,B270,B033,Absent,B033-1,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +8666,B271,B033,Absent,B033-1,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +8667,B272,B033,Absent,B033-1,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +8668,B273,B033,Rarely used,B033-2,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +8669,B274,B033,Many convertible items,B033-4,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +8670,B275,B033,Many convertible items,B033-4,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +8671,B276,B033,Rarely used,B033-2,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +8672,B277,B033,Rarely used,B033-2,,stern1934,,1880,Binford_2001_Table_9.01, +8673,B278,B033,Many convertible items,B033-4,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +8674,B279,B033,Rarely used,B033-2,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +8675,B28,B033,Absent,B033-1,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +8676,B280,B033,Rarely used,B033-2,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +8677,B281,B033,Commonly used,B033-3,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +8678,B282,B033,Commonly used,B033-3,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +8679,B283,B033,Rarely used,B033-2,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +8680,B284,B033,Many convertible items,B033-4,,pettitt1950,,1880,Binford_2001_Table_9.01, +8681,B285,B033,Rarely used,B033-2,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +8682,B286,B033,Rarely used,B033-2,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +8683,B287,B033,Rarely used,B033-2,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +8684,B288,B033,Rarely used,B033-2,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +8685,B289,B033,Rarely used,B033-2,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +8686,B290,B033,Rarely used,B033-2,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +8687,B291,B033,Rarely used,B033-2,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +8688,B292,B033,Rarely used,B033-2,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +8689,B293,B033,Rarely used,B033-2,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +8690,B294,B033,Rarely used,B033-2,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +8691,B295,B033,Rarely used,B033-2,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +8692,B296,B033,Absent,B033-1,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +8693,B297,B033,Absent,B033-1,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +8694,B298,B033,Rarely used,B033-2,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +8695,B299,B033,Absent,B033-1,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +8696,B3,B033,Absent,B033-1,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +8697,B315,B033,Absent,B033-1,,murdock1980,,1850,Binford_2001_Table_9.01, +8698,B316,B033,Absent,B033-1,,,,1860,Binford_2001_Table_9.01, +8699,B317,B033,Absent,B033-1,,teit1928,,1870,Binford_2001_Table_9.01, +8700,B318,B033,Absent,B033-1,,,,1880,Binford_2001_Table_9.01, +8701,B319,B033,Rarely used,B033-2,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +8702,B320,B033,Absent,B033-1,,teit1930,,1860,Binford_2001_Table_9.01, +8703,B321,B033,Absent,B033-1,,clineetal1938,,1880,Binford_2001_Table_9.01, +8704,B322,B033,Absent,B033-1,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +8705,B323,B033,Absent,B033-1,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +8706,B324,B033,Absent,B033-1,,spinden1908,,1850,Binford_2001_Table_9.01, +8707,B325,B033,Absent,B033-1,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +8708,B326,B033,Absent,B033-1,,teit1930,,1870,Binford_2001_Table_9.01, +8709,B327,B033,Absent,B033-1,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +8710,B328,B033,Absent,B033-1,,kinietz1947,,1800,Binford_2001_Table_9.01, +8711,B329,B033,Absent,B033-1,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +8712,B330,B033,Absent,B033-1,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +8713,B331,B033,Absent,B033-1,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +8714,B332,B033,Absent,B033-1,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +8715,B333,B033,Rarely used,B033-2,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +8716,B334,B033,Absent,B033-1,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +8717,B335,B033,Absent,B033-1,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +8718,B336,B033,Rarely used,B033-2,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +8719,B337,B033,Absent,B033-1,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +8720,B338,B033,Absent,B033-1,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +8721,B339,B033,Absent,B033-1,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +8722,B340,B033,Absent,B033-1,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +8723,B341,B033,Absent,B033-1,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +8724,B342,B033,Absent,B033-1,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +8725,B343,B033,Absent,B033-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +8726,B344,B033,Absent,B033-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +8727,B345,B033,Absent,B033-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +8728,B346,B033,Absent,B033-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +8729,B347,B033,Rarely used,B033-2,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +8730,B348,B033,Rarely used,B033-2,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +8731,B349,B033,Rarely used,B033-2,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +8732,B35,B033,Rarely used,B033-2,,,,1950,Binford_2001_Table_9.01, +8733,B350,B033,Absent,B033-1,,gillespie1981,,1800,Binford_2001_Table_9.01, +8734,B351,B033,Rarely used,B033-2,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +8735,B352,B033,Absent,B033-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +8736,B353,B033,Absent,B033-1,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +8737,B354,B033,Rarely used,B033-2,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +8738,B355,B033,Absent,B033-1,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +8739,B356,B033,Absent,B033-1,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +8740,B357,B033,Absent,B033-1,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +8741,B358,B033,Absent,B033-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +8742,B359,B033,Absent,B033-1,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +8743,B36,B033,Absent,B033-1,,metraux1948,,1960,Binford_2001_Table_9.01, +8744,B360,B033,Absent,B033-1,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +8745,B361,B033,Absent,B033-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +8746,B362,B033,Rarely used,B033-2,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +8747,B363,B033,Rarely used,B033-2,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +8748,B364,B033,Absent,B033-1,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +8749,B365,B033,Absent,B033-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +8750,B369,B033,Absent,B033-1,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +8751,B37,B033,Absent,B033-1,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +8752,B370,B033,Absent,B033-1,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +8753,B371,B033,Rarely used,B033-2,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +8754,B372,B033,Absent,B033-1,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +8755,B373,B033,Absent,B033-1,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +8756,B374,B033,Absent,B033-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +8757,B375,B033,Absent,B033-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +8758,B377,B033,Absent,B033-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +8759,B378,B033,Absent,B033-1,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +8760,B379,B033,Absent,B033-1,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +8761,B38,B033,Absent,B033-1,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +8762,B380,B033,Absent,B033-1,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +8763,B381,B033,Absent,B033-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +8764,B382,B033,Absent,B033-1,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +8765,B383,B033,Absent,B033-1,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +8766,B384,B033,Absent,B033-1,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +8767,B385,B033,Absent,B033-1,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +8768,B386,B033,Absent,B033-1,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +8769,B387,B033,Absent,B033-1,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +8770,B388,B033,Absent,B033-1,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +8771,B389,B033,Absent,B033-1,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +8772,B39,B033,Absent,B033-1,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +8773,B390,B033,Absent,B033-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +8774,B4,B033,Absent,B033-1,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +8775,B40,B033,Absent,B033-1,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +8776,B41,B033,Absent,B033-1,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +8777,B42,B033,Absent,B033-1,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +8778,B43,B033,Absent,B033-1,,holmberg1950,,1940,Binford_2001_Table_9.01, +8779,B44,B033,Absent,B033-1,,stearman1989,,1968,Binford_2001_Table_9.01, +8780,B45,B033,Absent,B033-1,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +8781,B46,B033,Rarely used,B033-2,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +8782,B47,B033,Absent,B033-1,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +8783,B48,B033,Absent,B033-1,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +8784,B49,B033,Absent,B033-1,,kozaketal1979,,1954,Binford_2001_Table_9.01, +8785,B5,B033,Absent,B033-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +8786,B50,B033,Absent,B033-1,,henry1964,,1910,Binford_2001_Table_9.01, +8787,B51,B033,Absent,B033-1,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +8788,B52,B033,Absent,B033-1,,cooper1946d,,1880,Binford_2001_Table_9.01, +8789,B53,B033,Absent,B033-1,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +8790,B54,B033,Absent,B033-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +8791,B55,B033,Absent,B033-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +8792,B6,B033,Absent,B033-1,,temple1903,,1906,Binford_2001_Table_9.01, +8793,B60,B033,Absent,B033-1,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +8794,B61,B033,Absent,B033-1,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +8795,B62,B033,Absent,B033-1,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +8796,B63,B033,Absent,B033-1,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +8797,B64,B033,Absent,B033-1,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +8798,B65,B033,Absent,B033-1,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +8799,B66,B033,Absent,B033-1,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +8800,B67,B033,Commonly used,B033-3,,clark1951,,1950,Binford_2001_Table_9.01, +8801,B68,B033,Absent,B033-1,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +8802,B69,B033,Absent,B033-1,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +8803,B7,B033,Absent,B033-1,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +8804,B70,B033,Absent,B033-1,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +8805,B71,B033,Absent,B033-1,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +8806,B72,B033,Absent,B033-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +8807,B73,B033,Absent,B033-1,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +8808,B74,B033,Absent,B033-1,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +8809,B75,B033,Absent,B033-1,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +8810,B76,B033,Absent,B033-1,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +8811,B77,B033,Absent,B033-1,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +8812,B78,B033,Absent,B033-1,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +8813,B79,B033,Absent,B033-1,,bleek1924a,,,Binford_2001_Table_9.01, +8814,B8,B033,Absent,B033-1,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +8815,B82,B033,Absent,B033-1,,moore1979,,1848,Binford_2001_Table_9.01, +8816,B83,B033,Absent,B033-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +8817,B84,B033,Absent,B033-1,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +8818,B85,B033,Absent,B033-1,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +8819,B86,B033,Absent,B033-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +8820,B87,B033,Absent,B033-1,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +8821,B88,B033,Absent,B033-1,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +8822,B89,B033,Absent,B033-1,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +8823,B9,B033,Absent,B033-1,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +8824,B90,B033,Absent,B033-1,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +8825,B91,B033,Absent,B033-1,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +8826,B92,B033,Absent,B033-1,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +8827,B93,B033,Absent,B033-1,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +8828,B94,B033,Absent,B033-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +8829,B95,B033,Absent,B033-1,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +8830,B96,B033,Absent,B033-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +8831,B97,B033,Absent,B033-1,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +8832,B98,B033,Absent,B033-1,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +8833,B99,B033,Absent,B033-1,,stanner1933,,1900,Binford_2001_Table_9.01, +8834,B1,B034,Absent,B034-1,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +8835,B10,B034,Absent,B034-1,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +8836,B100,B034,Absent,B034-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +8837,B101,B034,Absent,B034-1,,kaberry1939,,1934,Binford_2001_Table_9.01, +8838,B102,B034,Absent,B034-1,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +8839,B103,B034,Absent,B034-1,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +8840,B104,B034,Absent,B034-1,,,,,Binford_2001_Table_9.01, +8841,B105,B034,Absent,B034-1,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +8842,B106,B034,Absent,B034-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +8843,B107,B034,Absent,B034-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +8844,B108,B034,Absent,B034-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +8845,B109,B034,Absent,B034-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +8846,B11,B034,Absent,B034-1,,morris1982a,,1972,Binford_2001_Table_9.01, +8847,B110,B034,Absent,B034-1,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +8848,B111,B034,Absent,B034-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +8849,B112,B034,Absent,B034-1,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +8850,B113,B034,Absent,B034-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +8851,B114,B034,Absent,B034-1,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +8852,B115,B034,Absent,B034-1,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +8853,B116,B034,Absent,B034-1,,duncankemp1964,,1900,Binford_2001_Table_9.01, +8854,B117,B034,Absent,B034-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +8855,B118,B034,Absent,B034-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +8856,B119,B034,Absent,B034-1,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +8857,B12,B034,Absent,B034-1,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +8858,B120,B034,Absent,B034-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +8859,B121,B034,Absent,B034-1,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +8860,B122,B034,Absent,B034-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +8861,B123,B034,Absent,B034-1,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +8862,B124,B034,Absent,B034-1,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +8863,B125,B034,Absent,B034-1,,parker1905,,1880,Binford_2001_Table_9.01, +8864,B126,B034,Absent,B034-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +8865,B127,B034,Absent,B034-1,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +8866,B128,B034,Absent,B034-1,,,,1890,Binford_2001_Table_9.01, +8867,B129,B034,Absent,B034-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +8868,B13,B034,Absent,B034-1,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +8869,B130,B034,Absent,B034-1,,,,1910,Binford_2001_Table_9.01, +8870,B131,B034,Absent,B034-1,,,,1850,Binford_2001_Table_9.01, +8871,B132,B034,Absent,B034-1,,nind1831,,1850,Binford_2001_Table_9.01, +8872,B133,B034,Absent,B034-1,,williams1985,,1850,Binford_2001_Table_9.01, +8873,B134,B034,Absent,B034-1,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +8874,B135,B034,Absent,B034-1,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +8875,B136,B034,Absent,B034-1,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +8876,B137,B034,Absent,B034-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +8877,B14,B034,Absent,B034-1,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +8878,B143,B034,Few (1-3),B034-2,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +8879,B144,B034,Absent,B034-1,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +8880,B145,B034,Absent,B034-1,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +8881,B146,B034,Absent,B034-1,,meigs1939,,1880,Binford_2001_Table_9.01, +8882,B147,B034,Absent,B034-1,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +8883,B148,B034,Absent,B034-1,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +8884,B149,B034,Few (1-3),B034-2,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +8885,B15,B034,Absent,B034-1,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +8886,B150,B034,Absent,B034-1,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +8887,B151,B034,Absent,B034-1,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +8888,B152,B034,Absent,B034-1,,voegelin1938,,1850,Binford_2001_Table_9.01, +8889,B153,B034,Few (1-3),B034-2,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +8890,B154,B034,Absent,B034-1,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +8891,B155,B034,Few (1-3),B034-2,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +8892,B156,B034,Few (1-3),B034-2,,,,1770,Binford_2001_Table_9.01, +8893,B157,B034,Absent,B034-1,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +8894,B158,B034,Few (1-3),B034-2,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +8895,B159,B034,Moderate (4-7),B034-3,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +8896,B16,B034,Absent,B034-1,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +8897,B160,B034,Few (1-3),B034-2,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +8898,B161,B034,Moderate (4-7),B034-3,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +8899,B162,B034,Few (1-3),B034-2,,dixon1910,,1860,Binford_2001_Table_9.01, +8900,B163,B034,Absent,B034-1,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +8901,B164,B034,Moderate (4-7),B034-3,,gifford1926b,,1805,Binford_2001_Table_9.01, +8902,B165,B034,Moderate (4-7),B034-3,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +8903,B166,B034,Few (1-3),B034-2,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +8904,B167,B034,Moderate (4-7),B034-3,,,,,Binford_2001_Table_9.01, +8905,B168,B034,Moderate (4-7),B034-3,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +8906,B169,B034,Few (1-3),B034-2,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +8907,B17,B034,Absent,B034-1,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +8908,B170,B034,Moderate (4-7),B034-3,,cook1955,,,Binford_2001_Table_9.01, +8909,B171,B034,Few (1-3),B034-2,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +8910,B172,B034,Few (1-3),B034-2,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +8911,B173,B034,Few (1-3),B034-2,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +8912,B174,B034,Few (1-3),B034-2,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +8913,B175,B034,Absent,B034-1,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +8914,B176,B034,Few (1-3),B034-2,,gray1987,,1860,Binford_2001_Table_9.01, +8915,B177,B034,Absent,B034-1,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +8916,B178,B034,Moderate (4-7),B034-3,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +8917,B179,B034,Few (1-3),B034-2,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +8918,B18,B034,Absent,B034-1,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +8919,B180,B034,Moderate (4-7),B034-3,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +8920,B181,B034,Few (1-3),B034-2,,gray1987,,1870,Binford_2001_Table_9.01, +8921,B182,B034,Moderate (4-7),B034-3,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +8922,B183,B034,Absent,B034-1,,gifford1926b,,1860,Binford_2001_Table_9.01, +8923,B184,B034,Moderate (4-7),B034-3,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +8924,B185,B034,Absent,B034-1,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +8925,B186,B034,Moderate (4-7),B034-3,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +8926,B187,B034,Absent,B034-1,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +8927,B188,B034,Few (1-3),B034-2,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +8928,B189,B034,Few (1-3),B034-2,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +8929,B19,B034,Absent,B034-1,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +8930,B190,B034,Absent,B034-1,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +8931,B191,B034,Absent,B034-1,,,,1570,Binford_2001_Table_9.01, +8932,B192,B034,Absent,B034-1,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +8933,B193,B034,Absent,B034-1,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +8934,B194,B034,Absent,B034-1,,,,1715,Binford_2001_Table_9.01, +8935,B195,B034,Absent,B034-1,,steward1938,,1850,Binford_2001_Table_9.01, +8936,B196,B034,Absent,B034-1,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +8937,B197,B034,Absent,B034-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +8938,B198,B034,Absent,B034-1,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +8939,B199,B034,Absent,B034-1,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +8940,B2,B034,Absent,B034-1,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +8941,B20,B034,Absent,B034-1,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +8942,B200,B034,Absent,B034-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +8943,B201,B034,Absent,B034-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +8944,B202,B034,Absent,B034-1,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +8945,B203,B034,Absent,B034-1,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +8946,B204,B034,Absent,B034-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +8947,B205,B034,Absent,B034-1,,davis1965,,1870,Binford_2001_Table_9.01, +8948,B206,B034,Absent,B034-1,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +8949,B207,B034,Absent,B034-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +8950,B208,B034,Absent,B034-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +8951,B209,B034,Absent,B034-1,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +8952,B21,B034,Absent,B034-1,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +8953,B210,B034,Absent,B034-1,,fowler1992,,1870,Binford_2001_Table_9.01, +8954,B211,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8955,B212,B034,Absent,B034-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +8956,B213,B034,Absent,B034-1,,steward1938,,1870,Binford_2001_Table_9.01, +8957,B214,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8958,B215,B034,Absent,B034-1,,steward1938,,1870,Binford_2001_Table_9.01, +8959,B216,B034,Absent,B034-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +8960,B217,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8961,B218,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8962,B219,B034,Absent,B034-1,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +8963,B22,B034,Few (1-3),B034-2,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +8964,B221,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8965,B222,B034,Absent,B034-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +8966,B223,B034,Absent,B034-1,,lowie1924,,1870,Binford_2001_Table_9.01, +8967,B224,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8968,B225,B034,Absent,B034-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +8969,B226,B034,Absent,B034-1,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +8970,B227,B034,Absent,B034-1,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +8971,B228,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8972,B229,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8973,B23,B034,Absent,B034-1,,qiu1983,,1900,Binford_2001_Table_9.01, +8974,B230,B034,Absent,B034-1,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +8975,B231,B034,Absent,B034-1,,whiting1950,,1870,Binford_2001_Table_9.01, +8976,B232,B034,Absent,B034-1,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +8977,B233,B034,Absent,B034-1,,steward1938,,1860,Binford_2001_Table_9.01, +8978,B234,B034,Many (>= 8),B034-4,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +8979,B24,B034,Absent,B034-1,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +8980,B240,B034,Absent,B034-1,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +8981,B241,B034,Absent,B034-1,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +8982,B242,B034,Absent,B034-1,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +8983,B243,B034,Absent,B034-1,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +8984,B244,B034,Absent,B034-1,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +8985,B245,B034,Absent,B034-1,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +8986,B246,B034,Absent,B034-1,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +8987,B248,B034,Absent,B034-1,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +8988,B249,B034,Absent,B034-1,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +8989,B25,B034,Few (1-3),B034-2,,shternberg1933,,1920,Binford_2001_Table_9.01, +8990,B250,B034,Absent,B034-1,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +8991,B252,B034,Absent,B034-1,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +8992,B253,B034,Moderate (4-7),B034-3,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +8993,B254,B034,Absent,B034-1,,skinner1914,,1850,Binford_2001_Table_9.01, +8994,B255,B034,Absent,B034-1,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +8995,B256,B034,Absent,B034-1,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +8996,B257,B034,Absent,B034-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +8997,B258,B034,Absent,B034-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +8998,B259,B034,Absent,B034-1,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +8999,B26,B034,Absent,B034-1,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +9000,B260,B034,Absent,B034-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +9001,B268,B034,Moderate (4-7),B034-3,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +9002,B269,B034,Few (1-3),B034-2,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +9003,B27,B034,Absent,B034-1,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +9004,B270,B034,Moderate (4-7),B034-3,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +9005,B271,B034,Moderate (4-7),B034-3,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +9006,B272,B034,Many (>= 8),B034-4,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +9007,B273,B034,Many (>= 8),B034-4,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +9008,B274,B034,Moderate (4-7),B034-3,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +9009,B275,B034,Moderate (4-7),B034-3,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +9010,B276,B034,Absent,B034-1,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +9011,B277,B034,Many (>= 8),B034-4,,stern1934,,1880,Binford_2001_Table_9.01, +9012,B278,B034,Moderate (4-7),B034-3,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +9013,B279,B034,Few (1-3),B034-2,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +9014,B28,B034,Few (1-3),B034-2,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +9015,B280,B034,Few (1-3),B034-2,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +9016,B281,B034,Moderate (4-7),B034-3,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +9017,B282,B034,Many (>= 8),B034-4,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +9018,B283,B034,Many (>= 8),B034-4,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +9019,B284,B034,Moderate (4-7),B034-3,,pettitt1950,,1880,Binford_2001_Table_9.01, +9020,B285,B034,Few (1-3),B034-2,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +9021,B286,B034,Moderate (4-7),B034-3,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +9022,B287,B034,Moderate (4-7),B034-3,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +9023,B288,B034,Many (>= 8),B034-4,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +9024,B289,B034,Many (>= 8),B034-4,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +9025,B290,B034,Many (>= 8),B034-4,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +9026,B291,B034,Many (>= 8),B034-4,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +9027,B292,B034,Many (>= 8),B034-4,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +9028,B293,B034,Many (>= 8),B034-4,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +9029,B294,B034,Few (1-3),B034-2,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +9030,B295,B034,Moderate (4-7),B034-3,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +9031,B296,B034,Absent,B034-1,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +9032,B297,B034,Many (>= 8),B034-4,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +9033,B298,B034,Moderate (4-7),B034-3,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +9034,B299,B034,Absent,B034-1,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +9035,B3,B034,Absent,B034-1,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +9036,B315,B034,Absent,B034-1,,murdock1980,,1850,Binford_2001_Table_9.01, +9037,B316,B034,Absent,B034-1,,,,1860,Binford_2001_Table_9.01, +9038,B317,B034,Absent,B034-1,,teit1928,,1870,Binford_2001_Table_9.01, +9039,B318,B034,Absent,B034-1,,,,1880,Binford_2001_Table_9.01, +9040,B319,B034,Few (1-3),B034-2,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +9041,B320,B034,Few (1-3),B034-2,,teit1930,,1860,Binford_2001_Table_9.01, +9042,B321,B034,Absent,B034-1,,clineetal1938,,1880,Binford_2001_Table_9.01, +9043,B322,B034,Absent,B034-1,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +9044,B323,B034,Absent,B034-1,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +9045,B324,B034,Absent,B034-1,,spinden1908,,1850,Binford_2001_Table_9.01, +9046,B325,B034,Absent,B034-1,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +9047,B326,B034,Absent,B034-1,,teit1930,,1870,Binford_2001_Table_9.01, +9048,B327,B034,Absent,B034-1,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +9049,B328,B034,Absent,B034-1,,kinietz1947,,1800,Binford_2001_Table_9.01, +9050,B329,B034,Absent,B034-1,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +9051,B330,B034,Absent,B034-1,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +9052,B331,B034,Absent,B034-1,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +9053,B332,B034,Absent,B034-1,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +9054,B333,B034,Few (1-3),B034-2,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +9055,B334,B034,Absent,B034-1,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +9056,B335,B034,Absent,B034-1,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +9057,B336,B034,Moderate (4-7),B034-3,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +9058,B337,B034,Absent,B034-1,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +9059,B338,B034,Absent,B034-1,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +9060,B339,B034,Absent,B034-1,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +9061,B340,B034,Absent,B034-1,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +9062,B341,B034,Absent,B034-1,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +9063,B342,B034,Absent,B034-1,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +9064,B343,B034,Absent,B034-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +9065,B344,B034,Absent,B034-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +9066,B345,B034,Absent,B034-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +9067,B346,B034,Absent,B034-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +9068,B347,B034,Few (1-3),B034-2,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +9069,B348,B034,Few (1-3),B034-2,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +9070,B349,B034,Few (1-3),B034-2,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +9071,B35,B034,Moderate (4-7),B034-3,,,,1950,Binford_2001_Table_9.01, +9072,B350,B034,Absent,B034-1,,gillespie1981,,1800,Binford_2001_Table_9.01, +9073,B351,B034,Absent,B034-1,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +9074,B352,B034,Absent,B034-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +9075,B353,B034,Absent,B034-1,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +9076,B354,B034,Few (1-3),B034-2,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +9077,B355,B034,Absent,B034-1,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +9078,B356,B034,Absent,B034-1,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +9079,B357,B034,Absent,B034-1,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +9080,B358,B034,Absent,B034-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +9081,B359,B034,Few (1-3),B034-2,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +9082,B36,B034,Absent,B034-1,,metraux1948,,1960,Binford_2001_Table_9.01, +9083,B360,B034,Absent,B034-1,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +9084,B361,B034,Absent,B034-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +9085,B362,B034,Few (1-3),B034-2,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +9086,B363,B034,Absent,B034-1,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +9087,B364,B034,Absent,B034-1,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +9088,B365,B034,Absent,B034-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +9089,B369,B034,Absent,B034-1,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +9090,B37,B034,Absent,B034-1,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +9091,B370,B034,Absent,B034-1,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +9092,B371,B034,Absent,B034-1,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +9093,B372,B034,Absent,B034-1,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +9094,B373,B034,Absent,B034-1,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +9095,B374,B034,Absent,B034-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +9096,B375,B034,Absent,B034-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +9097,B377,B034,Absent,B034-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +9098,B378,B034,Absent,B034-1,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +9099,B379,B034,Few (1-3),B034-2,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +9100,B38,B034,Absent,B034-1,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +9101,B380,B034,Absent,B034-1,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +9102,B381,B034,Absent,B034-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +9103,B382,B034,Absent,B034-1,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +9104,B383,B034,Absent,B034-1,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +9105,B384,B034,Absent,B034-1,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +9106,B385,B034,Absent,B034-1,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +9107,B386,B034,Absent,B034-1,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +9108,B387,B034,Absent,B034-1,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +9109,B388,B034,Absent,B034-1,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +9110,B389,B034,Absent,B034-1,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +9111,B39,B034,Absent,B034-1,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +9112,B390,B034,Absent,B034-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +9113,B4,B034,Absent,B034-1,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +9114,B40,B034,Absent,B034-1,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +9115,B41,B034,Few (1-3),B034-2,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +9116,B42,B034,Absent,B034-1,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +9117,B43,B034,Absent,B034-1,,holmberg1950,,1940,Binford_2001_Table_9.01, +9118,B44,B034,Absent,B034-1,,stearman1989,,1968,Binford_2001_Table_9.01, +9119,B45,B034,Absent,B034-1,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +9120,B46,B034,Moderate (4-7),B034-3,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +9121,B47,B034,Absent,B034-1,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +9122,B48,B034,Absent,B034-1,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +9123,B49,B034,Absent,B034-1,,kozaketal1979,,1954,Binford_2001_Table_9.01, +9124,B5,B034,Absent,B034-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +9125,B50,B034,Absent,B034-1,,henry1964,,1910,Binford_2001_Table_9.01, +9126,B51,B034,Absent,B034-1,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +9127,B52,B034,Absent,B034-1,,cooper1946d,,1880,Binford_2001_Table_9.01, +9128,B53,B034,Absent,B034-1,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +9129,B54,B034,Absent,B034-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +9130,B55,B034,Absent,B034-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +9131,B6,B034,Absent,B034-1,,temple1903,,1906,Binford_2001_Table_9.01, +9132,B60,B034,Absent,B034-1,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +9133,B61,B034,Absent,B034-1,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +9134,B62,B034,Absent,B034-1,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +9135,B63,B034,Absent,B034-1,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +9136,B64,B034,Absent,B034-1,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +9137,B65,B034,Absent,B034-1,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +9138,B66,B034,Absent,B034-1,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +9139,B67,B034,Absent,B034-1,,clark1951,,1950,Binford_2001_Table_9.01, +9140,B68,B034,Absent,B034-1,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +9141,B69,B034,Absent,B034-1,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +9142,B7,B034,Absent,B034-1,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +9143,B70,B034,Absent,B034-1,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +9144,B71,B034,Absent,B034-1,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +9145,B72,B034,Absent,B034-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +9146,B73,B034,Absent,B034-1,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +9147,B74,B034,Absent,B034-1,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +9148,B75,B034,Absent,B034-1,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +9149,B76,B034,Absent,B034-1,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +9150,B77,B034,Absent,B034-1,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +9151,B78,B034,Absent,B034-1,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +9152,B79,B034,Absent,B034-1,,bleek1924a,,,Binford_2001_Table_9.01, +9153,B8,B034,Absent,B034-1,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +9154,B82,B034,Few (1-3),B034-2,,moore1979,,1848,Binford_2001_Table_9.01, +9155,B83,B034,Absent,B034-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +9156,B84,B034,Absent,B034-1,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +9157,B85,B034,Absent,B034-1,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +9158,B86,B034,Absent,B034-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +9159,B87,B034,Absent,B034-1,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +9160,B88,B034,Absent,B034-1,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +9161,B89,B034,Absent,B034-1,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +9162,B9,B034,Absent,B034-1,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +9163,B90,B034,Absent,B034-1,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +9164,B91,B034,Absent,B034-1,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +9165,B92,B034,Absent,B034-1,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +9166,B93,B034,Absent,B034-1,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +9167,B94,B034,Absent,B034-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +9168,B95,B034,Absent,B034-1,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +9169,B96,B034,Absent,B034-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +9170,B97,B034,Absent,B034-1,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +9171,B98,B034,Absent,B034-1,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +9172,B99,B034,Absent,B034-1,,stanner1933,,1900,Binford_2001_Table_9.01, +9173,B1,B035,Endogamous demed,B035-4,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +9174,B10,B035,Endogamous segmented,B035-5,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +9175,B100,B035,Endogamous segmented,B035-5,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +9176,B101,B035,Agamous,B035-3,,kaberry1939,,1934,Binford_2001_Table_9.01, +9177,B102,B035,Agamous,B035-3,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +9178,B103,B035,Agamous,B035-3,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +9179,B104,B035,Agamous,B035-3,,,,,Binford_2001_Table_9.01, +9180,B105,B035,Endogamous demed,B035-4,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +9181,B106,B035,Agamous,B035-3,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +9182,B107,B035,Agamous,B035-3,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +9183,B108,B035,Agamous,B035-3,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +9184,B109,B035,Agamous,B035-3,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +9185,B11,B035,Agamous,B035-3,,morris1982a,,1972,Binford_2001_Table_9.01, +9186,B110,B035,Endogamous demed,B035-4,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +9187,B111,B035,Agamous,B035-3,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +9188,B112,B035,Agamous,B035-3,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +9189,B113,B035,Endogamous demed,B035-4,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +9190,B114,B035,Endogamous segmented,B035-5,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +9191,B115,B035,Endogamous segmented,B035-5,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +9192,B116,B035,Agamous,B035-3,,duncankemp1964,,1900,Binford_2001_Table_9.01, +9193,B117,B035,Agamous,B035-3,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +9194,B118,B035,Endogamous demed,B035-4,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +9195,B119,B035,Endogamous demed,B035-4,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +9196,B12,B035,Exogamous,B035-1,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +9197,B120,B035,Endogamous demed,B035-4,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +9198,B121,B035,Agamous,B035-3,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +9199,B122,B035,Agamous,B035-3,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +9200,B123,B035,Endogamous demed,B035-4,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +9201,B124,B035,Agamous,B035-3,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +9202,B125,B035,Agamous,B035-3,,parker1905,,1880,Binford_2001_Table_9.01, +9203,B126,B035,Endogamous demed,B035-4,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +9204,B127,B035,Exogamous,B035-1,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +9205,B128,B035,Agamous,B035-3,,,,1890,Binford_2001_Table_9.01, +9206,B129,B035,Endogamous segmented,B035-5,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +9207,B13,B035,Exogamous,B035-1,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +9208,B130,B035,Agamous,B035-3,,,,1910,Binford_2001_Table_9.01, +9209,B131,B035,Endogamous segmented,B035-5,,,,1850,Binford_2001_Table_9.01, +9210,B132,B035,Agamous,B035-3,,nind1831,,1850,Binford_2001_Table_9.01, +9211,B133,B035,,B035-NA,,,,,, +9212,B134,B035,Endogamous demed,B035-4,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +9213,B135,B035,Endogamous segmented,B035-5,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +9214,B136,B035,,B035-NA,,,,,, +9215,B137,B035,,B035-NA,,,,,, +9216,B14,B035,Endogamous demed,B035-4,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +9217,B143,B035,Exogamous,B035-1,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +9218,B144,B035,Exogamous clan,B035-2,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +9219,B145,B035,Exogamous clan,B035-2,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +9220,B146,B035,Endogamous segmented,B035-5,,meigs1939,,1880,Binford_2001_Table_9.01, +9221,B147,B035,Endogamous segmented,B035-5,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +9222,B148,B035,Exogamous clan,B035-2,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +9223,B149,B035,Endogamous segmented,B035-5,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +9224,B15,B035,Endogamous segmented,B035-5,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +9225,B150,B035,Exogamous clan,B035-2,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +9226,B151,B035,Exogamous,B035-1,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +9227,B152,B035,Exogamous,B035-1,,voegelin1938,,1850,Binford_2001_Table_9.01, +9228,B153,B035,Exogamous clan,B035-2,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +9229,B154,B035,Exogamous clan,B035-2,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +9230,B155,B035,Exogamous clan,B035-2,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +9231,B156,B035,Exogamous clan,B035-2,,,,1770,Binford_2001_Table_9.01, +9232,B157,B035,Exogamous,B035-1,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +9233,B158,B035,Exogamous clan,B035-2,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +9234,B159,B035,Exogamous clan,B035-2,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +9235,B16,B035,Agamous,B035-3,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +9236,B160,B035,Exogamous clan,B035-2,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +9237,B161,B035,Exogamous clan,B035-2,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +9238,B162,B035,Exogamous,B035-1,,dixon1910,,1860,Binford_2001_Table_9.01, +9239,B163,B035,Exogamous,B035-1,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +9240,B164,B035,Exogamous clan,B035-2,,gifford1926b,,1805,Binford_2001_Table_9.01, +9241,B165,B035,Exogamous clan,B035-2,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +9242,B166,B035,Exogamous,B035-1,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +9243,B167,B035,Exogamous,B035-1,,,,,Binford_2001_Table_9.01, +9244,B168,B035,Exogamous,B035-1,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +9245,B169,B035,Exogamous,B035-1,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +9246,B17,B035,Endogamous segmented,B035-5,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +9247,B170,B035,Exogamous clan,B035-2,,cook1955,,,Binford_2001_Table_9.01, +9248,B171,B035,Exogamous clan,B035-2,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +9249,B172,B035,Exogamous clan,B035-2,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +9250,B173,B035,Exogamous clan,B035-2,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +9251,B174,B035,Endogamous demed,B035-4,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +9252,B175,B035,Endogamous demed,B035-4,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +9253,B176,B035,Exogamous clan,B035-2,,gray1987,,1860,Binford_2001_Table_9.01, +9254,B177,B035,Exogamous,B035-1,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +9255,B178,B035,Exogamous clan,B035-2,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +9256,B179,B035,Endogamous segmented,B035-5,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +9257,B18,B035,Endogamous segmented,B035-5,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +9258,B180,B035,Exogamous,B035-1,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +9259,B181,B035,Exogamous clan,B035-2,,gray1987,,1870,Binford_2001_Table_9.01, +9260,B182,B035,Exogamous clan,B035-2,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +9261,B183,B035,Endogamous demed,B035-4,,gifford1926b,,1860,Binford_2001_Table_9.01, +9262,B184,B035,Exogamous,B035-1,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +9263,B185,B035,Endogamous segmented,B035-5,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +9264,B186,B035,Exogamous,B035-1,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +9265,B187,B035,Endogamous demed,B035-4,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +9266,B188,B035,Exogamous clan,B035-2,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +9267,B189,B035,Exogamous clan,B035-2,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +9268,B19,B035,Endogamous segmented,B035-5,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +9269,B190,B035,Agamous,B035-3,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +9270,B191,B035,Exogamous,B035-1,,,,1570,Binford_2001_Table_9.01, +9271,B192,B035,Exogamous,B035-1,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +9272,B193,B035,Endogamous demed,B035-4,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +9273,B194,B035,Endogamous demed,B035-4,,,,1715,Binford_2001_Table_9.01, +9274,B195,B035,Endogamous demed,B035-4,,steward1938,,1850,Binford_2001_Table_9.01, +9275,B196,B035,Endogamous segmented,B035-5,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +9276,B197,B035,Endogamous demed,B035-4,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +9277,B198,B035,Endogamous demed,B035-4,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +9278,B199,B035,Exogamous,B035-1,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +9279,B2,B035,Exogamous clan,B035-2,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +9280,B20,B035,Agamous,B035-3,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +9281,B200,B035,Exogamous,B035-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +9282,B201,B035,Exogamous,B035-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +9283,B202,B035,Exogamous clan,B035-2,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +9284,B203,B035,Endogamous demed,B035-4,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +9285,B204,B035,Endogamous demed,B035-4,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +9286,B205,B035,Endogamous demed,B035-4,,davis1965,,1870,Binford_2001_Table_9.01, +9287,B206,B035,Exogamous,B035-1,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +9288,B207,B035,Endogamous segmented,B035-5,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +9289,B208,B035,Exogamous,B035-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +9290,B209,B035,Exogamous,B035-1,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +9291,B21,B035,Endogamous segmented,B035-5,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +9292,B210,B035,Exogamous,B035-1,,fowler1992,,1870,Binford_2001_Table_9.01, +9293,B211,B035,Exogamous,B035-1,,steward1938,,1860,Binford_2001_Table_9.01, +9294,B212,B035,Exogamous,B035-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +9295,B213,B035,Exogamous,B035-1,,steward1938,,1870,Binford_2001_Table_9.01, +9296,B214,B035,Exogamous,B035-1,,steward1938,,1860,Binford_2001_Table_9.01, +9297,B215,B035,Endogamous segmented,B035-5,,steward1938,,1870,Binford_2001_Table_9.01, +9298,B216,B035,Endogamous segmented,B035-5,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +9299,B217,B035,Endogamous segmented,B035-5,,steward1938,,1860,Binford_2001_Table_9.01, +9300,B218,B035,Endogamous segmented,B035-5,,steward1938,,1860,Binford_2001_Table_9.01, +9301,B219,B035,Endogamous demed,B035-4,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +9302,B22,B035,Exogamous clan,B035-2,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +9303,B221,B035,Exogamous,B035-1,,steward1938,,1860,Binford_2001_Table_9.01, +9304,B222,B035,Exogamous,B035-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +9305,B223,B035,Exogamous,B035-1,,lowie1924,,1870,Binford_2001_Table_9.01, +9306,B224,B035,Endogamous segmented,B035-5,,steward1938,,1860,Binford_2001_Table_9.01, +9307,B225,B035,Exogamous,B035-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +9308,B226,B035,Exogamous,B035-1,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +9309,B227,B035,Exogamous clan,B035-2,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +9310,B228,B035,Endogamous segmented,B035-5,,steward1938,,1860,Binford_2001_Table_9.01, +9311,B229,B035,Exogamous clan,B035-2,,steward1938,,1860,Binford_2001_Table_9.01, +9312,B23,B035,Exogamous,B035-1,,qiu1983,,1900,Binford_2001_Table_9.01, +9313,B230,B035,Exogamous,B035-1,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +9314,B231,B035,Exogamous,B035-1,,whiting1950,,1870,Binford_2001_Table_9.01, +9315,B232,B035,Exogamous,B035-1,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +9316,B233,B035,Endogamous segmented,B035-5,,steward1938,,1860,Binford_2001_Table_9.01, +9317,B234,B035,Exogamous clan,B035-2,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +9318,B24,B035,Agamous,B035-3,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +9319,B240,B035,Exogamous clan,B035-2,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +9320,B241,B035,Exogamous clan,B035-2,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +9321,B242,B035,Exogamous clan,B035-2,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +9322,B243,B035,Exogamous clan,B035-2,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +9323,B244,B035,Exogamous clan,B035-2,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +9324,B245,B035,Exogamous clan,B035-2,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +9325,B246,B035,Exogamous clan,B035-2,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +9326,B248,B035,Agamous,B035-3,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +9327,B249,B035,Agamous,B035-3,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +9328,B25,B035,Exogamous clan,B035-2,,shternberg1933,,1920,Binford_2001_Table_9.01, +9329,B250,B035,Exogamous clan,B035-2,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +9330,B252,B035,Exogamous clan,B035-2,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +9331,B253,B035,Exogamous clan,B035-2,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +9332,B254,B035,Exogamous clan,B035-2,,skinner1914,,1850,Binford_2001_Table_9.01, +9333,B255,B035,Exogamous clan,B035-2,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +9334,B256,B035,Exogamous clan,B035-2,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +9335,B257,B035,Exogamous clan,B035-2,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +9336,B258,B035,Exogamous clan,B035-2,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +9337,B259,B035,Exogamous clan,B035-2,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +9338,B26,B035,Exogamous clan,B035-2,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +9339,B260,B035,Exogamous clan,B035-2,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +9340,B268,B035,Exogamous,B035-1,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +9341,B269,B035,Exogamous clan,B035-2,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +9342,B27,B035,Exogamous clan,B035-2,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +9343,B270,B035,Exogamous clan,B035-2,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +9344,B271,B035,Exogamous clan,B035-2,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +9345,B272,B035,Exogamous clan,B035-2,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +9346,B273,B035,Exogamous clan,B035-2,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +9347,B274,B035,Exogamous,B035-1,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +9348,B275,B035,Exogamous clan,B035-2,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +9349,B276,B035,Exogamous clan,B035-2,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +9350,B277,B035,Exogamous clan,B035-2,,stern1934,,1880,Binford_2001_Table_9.01, +9351,B278,B035,Exogamous clan,B035-2,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +9352,B279,B035,Exogamous clan,B035-2,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +9353,B28,B035,Exogamous clan,B035-2,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +9354,B280,B035,Exogamous clan,B035-2,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +9355,B281,B035,Exogamous clan,B035-2,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +9356,B282,B035,Exogamous clan,B035-2,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +9357,B283,B035,Exogamous clan,B035-2,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +9358,B284,B035,Exogamous,B035-1,,pettitt1950,,1880,Binford_2001_Table_9.01, +9359,B285,B035,Exogamous clan,B035-2,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +9360,B286,B035,Exogamous clan,B035-2,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +9361,B287,B035,Exogamous clan,B035-2,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +9362,B288,B035,Exogamous,B035-1,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +9363,B289,B035,Exogamous clan,B035-2,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +9364,B290,B035,Exogamous clan,B035-2,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +9365,B291,B035,Exogamous,B035-1,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +9366,B292,B035,Exogamous clan,B035-2,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +9367,B293,B035,Exogamous clan,B035-2,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +9368,B294,B035,Exogamous clan,B035-2,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +9369,B295,B035,Exogamous clan,B035-2,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +9370,B296,B035,Endogamous segmented,B035-5,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +9371,B297,B035,Exogamous clan,B035-2,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +9372,B298,B035,Exogamous clan,B035-2,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +9373,B299,B035,Exogamous clan,B035-2,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +9374,B3,B035,Endogamous segmented,B035-5,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +9375,B315,B035,Exogamous clan,B035-2,,murdock1980,,1850,Binford_2001_Table_9.01, +9376,B316,B035,Exogamous,B035-1,,,,1860,Binford_2001_Table_9.01, +9377,B317,B035,Exogamous clan,B035-2,,teit1928,,1870,Binford_2001_Table_9.01, +9378,B318,B035,Exogamous,B035-1,,,,1880,Binford_2001_Table_9.01, +9379,B319,B035,Exogamous clan,B035-2,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +9380,B320,B035,Exogamous,B035-1,,teit1930,,1860,Binford_2001_Table_9.01, +9381,B321,B035,Exogamous,B035-1,,clineetal1938,,1880,Binford_2001_Table_9.01, +9382,B322,B035,Exogamous,B035-1,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +9383,B323,B035,Exogamous clan,B035-2,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +9384,B324,B035,Exogamous clan,B035-2,,spinden1908,,1850,Binford_2001_Table_9.01, +9385,B325,B035,Exogamous,B035-1,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +9386,B326,B035,Exogamous,B035-1,,teit1930,,1870,Binford_2001_Table_9.01, +9387,B327,B035,Endogamous segmented,B035-5,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +9388,B328,B035,Exogamous clan,B035-2,,kinietz1947,,1800,Binford_2001_Table_9.01, +9389,B329,B035,Exogamous,B035-1,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +9390,B330,B035,Exogamous clan,B035-2,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +9391,B331,B035,Endogamous segmented,B035-5,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +9392,B332,B035,Endogamous segmented,B035-5,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +9393,B333,B035,Exogamous clan,B035-2,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +9394,B334,B035,Endogamous segmented,B035-5,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +9395,B335,B035,Exogamous clan,B035-2,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +9396,B336,B035,Exogamous clan,B035-2,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +9397,B337,B035,Endogamous segmented,B035-5,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +9398,B338,B035,Exogamous clan,B035-2,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +9399,B339,B035,Exogamous clan,B035-2,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +9400,B340,B035,Exogamous clan,B035-2,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +9401,B341,B035,Endogamous segmented,B035-5,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +9402,B342,B035,Endogamous segmented,B035-5,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +9403,B343,B035,Exogamous,B035-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +9404,B344,B035,Endogamous segmented,B035-5,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +9405,B345,B035,Exogamous clan,B035-2,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +9406,B346,B035,Exogamous clan,B035-2,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +9407,B347,B035,Exogamous clan,B035-2,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +9408,B348,B035,Exogamous clan,B035-2,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +9409,B349,B035,Exogamous clan,B035-2,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +9410,B35,B035,Exogamous clan,B035-2,,,,1950,Binford_2001_Table_9.01, +9411,B350,B035,Exogamous clan,B035-2,,gillespie1981,,1800,Binford_2001_Table_9.01, +9412,B351,B035,Exogamous clan,B035-2,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +9413,B352,B035,Exogamous clan,B035-2,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +9414,B353,B035,Exogamous clan,B035-2,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +9415,B354,B035,Exogamous clan,B035-2,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +9416,B355,B035,Endogamous segmented,B035-5,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +9417,B356,B035,Exogamous clan,B035-2,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +9418,B357,B035,Exogamous,B035-1,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +9419,B358,B035,Exogamous clan,B035-2,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +9420,B359,B035,Exogamous clan,B035-2,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +9421,B36,B035,Exogamous,B035-1,,metraux1948,,1960,Binford_2001_Table_9.01, +9422,B360,B035,Endogamous segmented,B035-5,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +9423,B361,B035,Exogamous clan,B035-2,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +9424,B362,B035,Exogamous clan,B035-2,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +9425,B363,B035,Exogamous clan,B035-2,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +9426,B364,B035,Exogamous clan,B035-2,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +9427,B365,B035,Exogamous clan,B035-2,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +9428,B369,B035,Endogamous segmented,B035-5,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +9429,B37,B035,Agamous,B035-3,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +9430,B370,B035,Exogamous clan,B035-2,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +9431,B371,B035,Exogamous clan,B035-2,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +9432,B372,B035,Exogamous clan,B035-2,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +9433,B373,B035,Exogamous clan,B035-2,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +9434,B374,B035,Exogamous,B035-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +9435,B375,B035,Exogamous,B035-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +9436,B377,B035,Exogamous,B035-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +9437,B378,B035,Exogamous clan,B035-2,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +9438,B379,B035,Exogamous clan,B035-2,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +9439,B38,B035,Endogamous segmented,B035-5,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +9440,B380,B035,Exogamous clan,B035-2,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +9441,B381,B035,Exogamous,B035-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +9442,B382,B035,Exogamous clan,B035-2,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +9443,B383,B035,Exogamous clan,B035-2,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +9444,B384,B035,Endogamous segmented,B035-5,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +9445,B385,B035,Exogamous clan,B035-2,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +9446,B386,B035,Exogamous,B035-1,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +9447,B387,B035,Exogamous clan,B035-2,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +9448,B388,B035,Exogamous,B035-1,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +9449,B389,B035,Exogamous clan,B035-2,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +9450,B39,B035,Agamous,B035-3,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +9451,B390,B035,Exogamous,B035-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +9452,B4,B035,Agamous,B035-3,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +9453,B40,B035,Agamous,B035-3,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +9454,B41,B035,Endogamous segmented,B035-5,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +9455,B42,B035,Endogamous segmented,B035-5,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +9456,B43,B035,Agamous,B035-3,,holmberg1950,,1940,Binford_2001_Table_9.01, +9457,B44,B035,Endogamous demed,B035-4,,stearman1989,,1968,Binford_2001_Table_9.01, +9458,B45,B035,Endogamous segmented,B035-5,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +9459,B46,B035,,B035-NA,,,,,, +9460,B47,B035,Agamous,B035-3,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +9461,B48,B035,Endogamous demed,B035-4,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +9462,B49,B035,Endogamous demed,B035-4,,kozaketal1979,,1954,Binford_2001_Table_9.01, +9463,B5,B035,Exogamous,B035-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +9464,B50,B035,Exogamous,B035-1,,henry1964,,1910,Binford_2001_Table_9.01, +9465,B51,B035,Exogamous,B035-1,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +9466,B52,B035,Exogamous,B035-1,,cooper1946d,,1880,Binford_2001_Table_9.01, +9467,B53,B035,Endogamous demed,B035-4,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +9468,B54,B035,Exogamous,B035-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +9469,B55,B035,Endogamous demed,B035-4,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +9470,B6,B035,Exogamous,B035-1,,temple1903,,1906,Binford_2001_Table_9.01, +9471,B60,B035,Exogamous,B035-1,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +9472,B61,B035,Exogamous,B035-1,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +9473,B62,B035,Exogamous,B035-1,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +9474,B63,B035,Exogamous,B035-1,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +9475,B64,B035,Exogamous,B035-1,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +9476,B65,B035,Exogamous,B035-1,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +9477,B66,B035,Endogamous demed,B035-4,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +9478,B67,B035,Agamous,B035-3,,clark1951,,1950,Binford_2001_Table_9.01, +9479,B68,B035,Agamous,B035-3,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +9480,B69,B035,Endogamous demed,B035-4,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +9481,B7,B035,Exogamous,B035-1,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +9482,B70,B035,Endogamous segmented,B035-5,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +9483,B71,B035,Exogamous clan,B035-2,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +9484,B72,B035,Endogamous demed,B035-4,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +9485,B73,B035,Agamous,B035-3,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +9486,B74,B035,Agamous,B035-3,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +9487,B75,B035,Agamous,B035-3,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +9488,B76,B035,Agamous,B035-3,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +9489,B77,B035,Agamous,B035-3,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +9490,B78,B035,Exogamous clan,B035-2,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +9491,B79,B035,Endogamous demed,B035-4,,bleek1924a,,,Binford_2001_Table_9.01, +9492,B8,B035,Endogamous demed,B035-4,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +9493,B82,B035,Exogamous,B035-1,,moore1979,,1848,Binford_2001_Table_9.01, +9494,B83,B035,Endogamous segmented,B035-5,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +9495,B84,B035,Endogamous segmented,B035-5,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +9496,B85,B035,Endogamous segmented,B035-5,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +9497,B86,B035,Endogamous segmented,B035-5,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +9498,B87,B035,Endogamous segmented,B035-5,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +9499,B88,B035,Agamous,B035-3,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +9500,B89,B035,Agamous,B035-3,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +9501,B9,B035,Endogamous demed,B035-4,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +9502,B90,B035,Agamous,B035-3,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +9503,B91,B035,Agamous,B035-3,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +9504,B92,B035,Endogamous segmented,B035-5,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +9505,B93,B035,Endogamous segmented,B035-5,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +9506,B94,B035,Agamous,B035-3,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +9507,B95,B035,Agamous,B035-3,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +9508,B96,B035,Agamous,B035-3,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +9509,B97,B035,Agamous,B035-3,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +9510,B98,B035,Endogamous segmented,B035-5,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +9511,B99,B035,Endogamous demed,B035-4,,stanner1933,,1900,Binford_2001_Table_9.01, +9512,B1,B036,No permanent structures,B036-1,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +9513,B10,B036,No permanent structures,B036-1,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +9514,B100,B036,No permanent structures,B036-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +9515,B101,B036,No permanent structures,B036-1,,kaberry1939,,1934,Binford_2001_Table_9.01, +9516,B102,B036,No permanent structures,B036-1,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +9517,B103,B036,No permanent structures,B036-1,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +9518,B104,B036,No permanent structures,B036-1,,,,,Binford_2001_Table_9.01, +9519,B105,B036,No permanent structures,B036-1,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +9520,B106,B036,No permanent structures,B036-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +9521,B107,B036,No permanent structures,B036-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +9522,B108,B036,No permanent structures,B036-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +9523,B109,B036,No permanent structures,B036-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +9524,B11,B036,No permanent structures,B036-1,,morris1982a,,1972,Binford_2001_Table_9.01, +9525,B110,B036,No permanent structures,B036-1,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +9526,B111,B036,No permanent structures,B036-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +9527,B112,B036,No permanent structures,B036-1,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +9528,B113,B036,No permanent structures,B036-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +9529,B114,B036,No permanent structures,B036-1,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +9530,B115,B036,No permanent structures,B036-1,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +9531,B116,B036,No permanent structures,B036-1,,duncankemp1964,,1900,Binford_2001_Table_9.01, +9532,B117,B036,No permanent structures,B036-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +9533,B118,B036,No permanent structures,B036-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +9534,B119,B036,No permanent structures,B036-1,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +9535,B12,B036,No permanent structures,B036-1,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +9536,B120,B036,No permanent structures,B036-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +9537,B121,B036,No permanent structures,B036-1,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +9538,B122,B036,No permanent structures,B036-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +9539,B123,B036,No permanent structures,B036-1,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +9540,B124,B036,No permanent structures,B036-1,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +9541,B125,B036,No permanent structures,B036-1,,parker1905,,1880,Binford_2001_Table_9.01, +9542,B126,B036,No permanent structures,B036-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +9543,B127,B036,No permanent structures,B036-1,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +9544,B128,B036,No permanent structures,B036-1,,,,1890,Binford_2001_Table_9.01, +9545,B129,B036,No permanent structures,B036-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +9546,B13,B036,No permanent structures,B036-1,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +9547,B130,B036,No permanent structures,B036-1,,,,1910,Binford_2001_Table_9.01, +9548,B131,B036,No permanent structures,B036-1,,,,1850,Binford_2001_Table_9.01, +9549,B132,B036,No permanent structures,B036-1,,nind1831,,1850,Binford_2001_Table_9.01, +9550,B133,B036,No permanent structures,B036-1,,williams1985,,1850,Binford_2001_Table_9.01, +9551,B134,B036,No permanent structures,B036-1,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +9552,B135,B036,No permanent structures,B036-1,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +9553,B136,B036,No permanent structures,B036-1,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +9554,B137,B036,No permanent structures,B036-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +9555,B14,B036,No permanent structures,B036-1,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +9556,B143,B036,No permanent structures,B036-1,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +9557,B144,B036,Host's residence,B036-2,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +9558,B145,B036,Host's residence,B036-2,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +9559,B146,B036,Host's residence,B036-2,,meigs1939,,1880,Binford_2001_Table_9.01, +9560,B147,B036,No permanent structures,B036-1,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +9561,B148,B036,Sweat lodge,B036-3,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +9562,B149,B036,Host's residence,B036-2,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +9563,B15,B036,No permanent structures,B036-1,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +9564,B150,B036,Host's residence,B036-2,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +9565,B151,B036,Sweat lodge,B036-3,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +9566,B152,B036,Host's residence,B036-2,,voegelin1938,,1850,Binford_2001_Table_9.01, +9567,B153,B036,Dance or Men's house and Sweat lodge,B036-5,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +9568,B154,B036,Sweat lodge,B036-3,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +9569,B155,B036,Functionally specific comm. house,B036-6,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +9570,B156,B036,Host's residence,B036-2,,,,1770,Binford_2001_Table_9.01, +9571,B157,B036,Sweat lodge,B036-3,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +9572,B158,B036,Dance house,B036-4,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +9573,B159,B036,Dance house,B036-4,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +9574,B16,B036,No permanent structures,B036-1,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +9575,B160,B036,Functionally specific comm. house,B036-6,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +9576,B161,B036,Host's residence,B036-2,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +9577,B162,B036,Dance house,B036-4,,dixon1910,,1860,Binford_2001_Table_9.01, +9578,B163,B036,Dance or Men's house and Sweat lodge,B036-5,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +9579,B164,B036,Sweat lodge,B036-3,,gifford1926b,,1805,Binford_2001_Table_9.01, +9580,B165,B036,Sweat lodge,B036-3,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +9581,B166,B036,Sweat lodge,B036-3,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +9582,B167,B036,Sweat lodge,B036-3,,,,,Binford_2001_Table_9.01, +9583,B168,B036,Sweat lodge,B036-3,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +9584,B169,B036,Sweat lodge,B036-3,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +9585,B17,B036,No permanent structures,B036-1,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +9586,B170,B036,Functionally specific comm. house,B036-6,,cook1955,,,Binford_2001_Table_9.01, +9587,B171,B036,Dance or Men's house and Sweat lodge,B036-5,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +9588,B172,B036,Dance house,B036-4,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +9589,B173,B036,Functionally specific comm. house,B036-6,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +9590,B174,B036,Functionally specific comm. house,B036-6,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +9591,B175,B036,Functionally specific comm. house,B036-6,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +9592,B176,B036,Host's residence,B036-2,,gray1987,,1860,Binford_2001_Table_9.01, +9593,B177,B036,Functionally specific comm. house,B036-6,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +9594,B178,B036,Sweat lodge,B036-3,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +9595,B179,B036,Dance or Men's house and Sweat lodge,B036-5,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +9596,B18,B036,No permanent structures,B036-1,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +9597,B180,B036,Dance or Men's house and Sweat lodge,B036-5,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +9598,B181,B036,Sweat lodge,B036-3,,gray1987,,1870,Binford_2001_Table_9.01, +9599,B182,B036,Dance or Men's house and Sweat lodge,B036-5,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +9600,B183,B036,Dance or Men's house and Sweat lodge,B036-5,,gifford1926b,,1860,Binford_2001_Table_9.01, +9601,B184,B036,Sweat lodge,B036-3,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +9602,B185,B036,Dance or Men's house and Sweat lodge,B036-5,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +9603,B186,B036,Sweat lodge,B036-3,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +9604,B187,B036,Dance or Men's house and Sweat lodge,B036-5,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +9605,B188,B036,Host's residence,B036-2,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +9606,B189,B036,Host's residence,B036-2,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +9607,B19,B036,No permanent structures,B036-1,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +9608,B190,B036,No permanent structures,B036-1,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +9609,B191,B036,No permanent structures,B036-1,,,,1570,Binford_2001_Table_9.01, +9610,B192,B036,No permanent structures,B036-1,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +9611,B193,B036,No permanent structures,B036-1,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +9612,B194,B036,No permanent structures,B036-1,,,,1715,Binford_2001_Table_9.01, +9613,B195,B036,Host's residence,B036-2,,steward1938,,1850,Binford_2001_Table_9.01, +9614,B196,B036,No permanent structures,B036-1,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +9615,B197,B036,No permanent structures,B036-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +9616,B198,B036,Host's residence,B036-2,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +9617,B199,B036,Host's residence,B036-2,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +9618,B2,B036,No permanent structures,B036-1,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +9619,B20,B036,No permanent structures,B036-1,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +9620,B200,B036,Host's residence,B036-2,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +9621,B201,B036,No permanent structures,B036-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +9622,B202,B036,Sweat lodge,B036-3,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +9623,B203,B036,No permanent structures,B036-1,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +9624,B204,B036,No permanent structures,B036-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +9625,B205,B036,No permanent structures,B036-1,,davis1965,,1870,Binford_2001_Table_9.01, +9626,B206,B036,Host's residence,B036-2,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +9627,B207,B036,No permanent structures,B036-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +9628,B208,B036,No permanent structures,B036-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +9629,B209,B036,Host's residence,B036-2,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +9630,B21,B036,No permanent structures,B036-1,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +9631,B210,B036,No permanent structures,B036-1,,fowler1992,,1870,Binford_2001_Table_9.01, +9632,B211,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9633,B212,B036,No permanent structures,B036-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +9634,B213,B036,No permanent structures,B036-1,,steward1938,,1870,Binford_2001_Table_9.01, +9635,B214,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9636,B215,B036,No permanent structures,B036-1,,steward1938,,1870,Binford_2001_Table_9.01, +9637,B216,B036,No permanent structures,B036-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +9638,B217,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9639,B218,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9640,B219,B036,Sweat lodge,B036-3,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +9641,B22,B036,No permanent structures,B036-1,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +9642,B221,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9643,B222,B036,No permanent structures,B036-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +9644,B223,B036,No permanent structures,B036-1,,lowie1924,,1870,Binford_2001_Table_9.01, +9645,B224,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9646,B225,B036,No permanent structures,B036-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +9647,B226,B036,No permanent structures,B036-1,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +9648,B227,B036,No permanent structures,B036-1,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +9649,B228,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9650,B229,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9651,B23,B036,No permanent structures,B036-1,,qiu1983,,1900,Binford_2001_Table_9.01, +9652,B230,B036,Host's residence,B036-2,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +9653,B231,B036,Host's residence,B036-2,,whiting1950,,1870,Binford_2001_Table_9.01, +9654,B232,B036,No permanent structures,B036-1,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +9655,B233,B036,No permanent structures,B036-1,,steward1938,,1860,Binford_2001_Table_9.01, +9656,B234,B036,No permanent structures,B036-1,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +9657,B24,B036,No permanent structures,B036-1,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +9658,B240,B036,No permanent structures,B036-1,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +9659,B241,B036,No permanent structures,B036-1,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +9660,B242,B036,Host's residence,B036-2,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +9661,B243,B036,Host's residence,B036-2,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +9662,B244,B036,Host's residence,B036-2,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +9663,B245,B036,No permanent structures,B036-1,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +9664,B246,B036,No permanent structures,B036-1,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +9665,B248,B036,No permanent structures,B036-1,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +9666,B249,B036,No permanent structures,B036-1,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +9667,B25,B036,No permanent structures,B036-1,,shternberg1933,,1920,Binford_2001_Table_9.01, +9668,B250,B036,Host's residence,B036-2,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +9669,B252,B036,No permanent structures,B036-1,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +9670,B253,B036,No permanent structures,B036-1,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +9671,B254,B036,No permanent structures,B036-1,,skinner1914,,1850,Binford_2001_Table_9.01, +9672,B255,B036,No permanent structures,B036-1,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +9673,B256,B036,No permanent structures,B036-1,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +9674,B257,B036,No permanent structures,B036-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +9675,B258,B036,No permanent structures,B036-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +9676,B259,B036,No permanent structures,B036-1,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +9677,B26,B036,No permanent structures,B036-1,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +9678,B260,B036,No permanent structures,B036-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +9679,B268,B036,No permanent structures,B036-1,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +9680,B269,B036,Host's residence,B036-2,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +9681,B27,B036,No permanent structures,B036-1,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +9682,B270,B036,Dance or Men's house and Sweat lodge,B036-5,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +9683,B271,B036,Dance or Men's house and Sweat lodge,B036-5,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +9684,B272,B036,No permanent structures,B036-1,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +9685,B273,B036,Dance or Men's house and Sweat lodge,B036-5,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +9686,B274,B036,Sweat lodge,B036-3,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +9687,B275,B036,Sweat lodge,B036-3,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +9688,B276,B036,No permanent structures,B036-1,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +9689,B277,B036,No permanent structures,B036-1,,stern1934,,1880,Binford_2001_Table_9.01, +9690,B278,B036,Host's residence,B036-2,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +9691,B279,B036,No permanent structures,B036-1,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +9692,B28,B036,No permanent structures,B036-1,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +9693,B280,B036,No permanent structures,B036-1,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +9694,B281,B036,No permanent structures,B036-1,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +9695,B282,B036,No permanent structures,B036-1,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +9696,B283,B036,No permanent structures,B036-1,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +9697,B284,B036,No permanent structures,B036-1,,pettitt1950,,1880,Binford_2001_Table_9.01, +9698,B285,B036,No permanent structures,B036-1,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +9699,B286,B036,No permanent structures,B036-1,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +9700,B287,B036,No permanent structures,B036-1,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +9701,B288,B036,No permanent structures,B036-1,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +9702,B289,B036,No permanent structures,B036-1,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +9703,B290,B036,No permanent structures,B036-1,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +9704,B291,B036,No permanent structures,B036-1,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +9705,B292,B036,No permanent structures,B036-1,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +9706,B293,B036,No permanent structures,B036-1,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +9707,B294,B036,Dance house,B036-4,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +9708,B295,B036,Dance or Men's house and Sweat lodge,B036-5,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +9709,B296,B036,Dance house,B036-4,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +9710,B297,B036,Dance house,B036-4,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +9711,B298,B036,No permanent structures,B036-1,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +9712,B299,B036,Dance house,B036-4,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +9713,B3,B036,No permanent structures,B036-1,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +9714,B315,B036,No permanent structures,B036-1,,murdock1980,,1850,Binford_2001_Table_9.01, +9715,B316,B036,No permanent structures,B036-1,,,,1860,Binford_2001_Table_9.01, +9716,B317,B036,Host's residence,B036-2,,teit1928,,1870,Binford_2001_Table_9.01, +9717,B318,B036,No permanent structures,B036-1,,,,1880,Binford_2001_Table_9.01, +9718,B319,B036,Sweat lodge,B036-3,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +9719,B320,B036,Host's residence,B036-2,,teit1930,,1860,Binford_2001_Table_9.01, +9720,B321,B036,Host's residence,B036-2,,clineetal1938,,1880,Binford_2001_Table_9.01, +9721,B322,B036,Host's residence,B036-2,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +9722,B323,B036,Host's residence,B036-2,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +9723,B324,B036,Sweat lodge,B036-3,,spinden1908,,1850,Binford_2001_Table_9.01, +9724,B325,B036,Host's residence,B036-2,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +9725,B326,B036,No permanent structures,B036-1,,teit1930,,1870,Binford_2001_Table_9.01, +9726,B327,B036,No permanent structures,B036-1,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +9727,B328,B036,Host's residence,B036-2,,kinietz1947,,1800,Binford_2001_Table_9.01, +9728,B329,B036,No permanent structures,B036-1,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +9729,B330,B036,No permanent structures,B036-1,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +9730,B331,B036,No permanent structures,B036-1,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +9731,B332,B036,No permanent structures,B036-1,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +9732,B333,B036,No permanent structures,B036-1,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +9733,B334,B036,No permanent structures,B036-1,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +9734,B335,B036,No permanent structures,B036-1,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +9735,B336,B036,Host's residence,B036-2,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +9736,B337,B036,No permanent structures,B036-1,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +9737,B338,B036,No permanent structures,B036-1,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +9738,B339,B036,No permanent structures,B036-1,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +9739,B340,B036,No permanent structures,B036-1,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +9740,B341,B036,No permanent structures,B036-1,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +9741,B342,B036,No permanent structures,B036-1,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +9742,B343,B036,No permanent structures,B036-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +9743,B344,B036,No permanent structures,B036-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +9744,B345,B036,No permanent structures,B036-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +9745,B346,B036,No permanent structures,B036-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +9746,B347,B036,No permanent structures,B036-1,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +9747,B348,B036,No permanent structures,B036-1,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +9748,B349,B036,No permanent structures,B036-1,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +9749,B35,B036,Dance house,B036-4,,,,1950,Binford_2001_Table_9.01, +9750,B350,B036,No permanent structures,B036-1,,gillespie1981,,1800,Binford_2001_Table_9.01, +9751,B351,B036,No permanent structures,B036-1,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +9752,B352,B036,No permanent structures,B036-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +9753,B353,B036,No permanent structures,B036-1,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +9754,B354,B036,Dance house,B036-4,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +9755,B355,B036,No permanent structures,B036-1,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +9756,B356,B036,No permanent structures,B036-1,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +9757,B357,B036,Dance house,B036-4,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +9758,B358,B036,No permanent structures,B036-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +9759,B359,B036,Dance house,B036-4,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +9760,B36,B036,No permanent structures,B036-1,,metraux1948,,1960,Binford_2001_Table_9.01, +9761,B360,B036,No permanent structures,B036-1,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +9762,B361,B036,No permanent structures,B036-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +9763,B362,B036,Sweat lodge,B036-3,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +9764,B363,B036,Host's residence,B036-2,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +9765,B364,B036,Dance house,B036-4,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +9766,B365,B036,No permanent structures,B036-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +9767,B369,B036,Dance house,B036-4,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +9768,B37,B036,No permanent structures,B036-1,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +9769,B370,B036,Dance house,B036-4,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +9770,B371,B036,Dance house,B036-4,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +9771,B372,B036,Dance house,B036-4,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +9772,B373,B036,Dance house,B036-4,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +9773,B374,B036,No permanent structures,B036-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +9774,B375,B036,No permanent structures,B036-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +9775,B377,B036,No permanent structures,B036-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +9776,B378,B036,Dance house,B036-4,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +9777,B379,B036,Dance house,B036-4,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +9778,B38,B036,No permanent structures,B036-1,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +9779,B380,B036,Dance house,B036-4,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +9780,B381,B036,No permanent structures,B036-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +9781,B382,B036,No permanent structures,B036-1,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +9782,B383,B036,No permanent structures,B036-1,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +9783,B384,B036,No permanent structures,B036-1,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +9784,B385,B036,No permanent structures,B036-1,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +9785,B386,B036,Dance house,B036-4,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +9786,B387,B036,No permanent structures,B036-1,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +9787,B388,B036,No permanent structures,B036-1,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +9788,B389,B036,Dance house,B036-4,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +9789,B39,B036,No permanent structures,B036-1,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +9790,B390,B036,No permanent structures,B036-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +9791,B4,B036,No permanent structures,B036-1,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +9792,B40,B036,No permanent structures,B036-1,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +9793,B41,B036,Dance house,B036-4,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +9794,B42,B036,No permanent structures,B036-1,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +9795,B43,B036,No permanent structures,B036-1,,holmberg1950,,1940,Binford_2001_Table_9.01, +9796,B44,B036,No permanent structures,B036-1,,stearman1989,,1968,Binford_2001_Table_9.01, +9797,B45,B036,No permanent structures,B036-1,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +9798,B46,B036,Complex of structures,B036-7,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +9799,B47,B036,No permanent structures,B036-1,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +9800,B48,B036,No permanent structures,B036-1,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +9801,B49,B036,No permanent structures,B036-1,,kozaketal1979,,1954,Binford_2001_Table_9.01, +9802,B5,B036,No permanent structures,B036-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +9803,B50,B036,No permanent structures,B036-1,,henry1964,,1910,Binford_2001_Table_9.01, +9804,B51,B036,No permanent structures,B036-1,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +9805,B52,B036,No permanent structures,B036-1,,cooper1946d,,1880,Binford_2001_Table_9.01, +9806,B53,B036,No permanent structures,B036-1,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +9807,B54,B036,No permanent structures,B036-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +9808,B55,B036,No permanent structures,B036-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +9809,B6,B036,No permanent structures,B036-1,,temple1903,,1906,Binford_2001_Table_9.01, +9810,B60,B036,No permanent structures,B036-1,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +9811,B61,B036,No permanent structures,B036-1,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +9812,B62,B036,No permanent structures,B036-1,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +9813,B63,B036,No permanent structures,B036-1,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +9814,B64,B036,No permanent structures,B036-1,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +9815,B65,B036,No permanent structures,B036-1,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +9816,B66,B036,No permanent structures,B036-1,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +9817,B67,B036,No permanent structures,B036-1,,clark1951,,1950,Binford_2001_Table_9.01, +9818,B68,B036,No permanent structures,B036-1,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +9819,B69,B036,No permanent structures,B036-1,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +9820,B7,B036,No permanent structures,B036-1,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +9821,B70,B036,Host's residence,B036-2,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +9822,B71,B036,No permanent structures,B036-1,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +9823,B72,B036,No permanent structures,B036-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +9824,B73,B036,No permanent structures,B036-1,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +9825,B74,B036,No permanent structures,B036-1,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +9826,B75,B036,No permanent structures,B036-1,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +9827,B76,B036,No permanent structures,B036-1,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +9828,B77,B036,No permanent structures,B036-1,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +9829,B78,B036,No permanent structures,B036-1,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +9830,B79,B036,No permanent structures,B036-1,,bleek1924a,,,Binford_2001_Table_9.01, +9831,B8,B036,No permanent structures,B036-1,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +9832,B82,B036,No permanent structures,B036-1,,moore1979,,1848,Binford_2001_Table_9.01, +9833,B83,B036,No permanent structures,B036-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +9834,B84,B036,No permanent structures,B036-1,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +9835,B85,B036,No permanent structures,B036-1,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +9836,B86,B036,No permanent structures,B036-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +9837,B87,B036,No permanent structures,B036-1,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +9838,B88,B036,No permanent structures,B036-1,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +9839,B89,B036,No permanent structures,B036-1,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +9840,B9,B036,No permanent structures,B036-1,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +9841,B90,B036,No permanent structures,B036-1,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +9842,B91,B036,No permanent structures,B036-1,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +9843,B92,B036,No permanent structures,B036-1,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +9844,B93,B036,No permanent structures,B036-1,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +9845,B94,B036,No permanent structures,B036-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +9846,B95,B036,No permanent structures,B036-1,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +9847,B96,B036,No permanent structures,B036-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +9848,B97,B036,No permanent structures,B036-1,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +9849,B98,B036,No permanent structures,B036-1,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +9850,B99,B036,No permanent structures,B036-1,,stanner1933,,1900,Binford_2001_Table_9.01, +9851,B1,B037,"No ownership, use rights recognized",B037-1,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +9852,B10,B037,"No ownership, use rights recognized",B037-1,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +9853,B100,B037,"No ownership, use rights recognized",B037-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +9854,B101,B037,"No ownership, use rights recognized",B037-1,,kaberry1939,,1934,Binford_2001_Table_9.01, +9855,B102,B037,"Grp ownership, hh claim trees/similar features",B037-2,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +9856,B103,B037,"Grp ownership, hh claim trees/similar features",B037-2,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +9857,B104,B037,"No ownership, use rights recognized",B037-1,,,,,Binford_2001_Table_9.01, +9858,B105,B037,"Grp ownership, hh claim trees/similar features",B037-2,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +9859,B106,B037,"No ownership, use rights recognized",B037-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +9860,B107,B037,"No ownership, use rights recognized",B037-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +9861,B108,B037,"No ownership, use rights recognized",B037-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +9862,B109,B037,"No ownership, use rights recognized",B037-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +9863,B11,B037,"No ownership, use rights recognized",B037-1,,morris1982a,,1972,Binford_2001_Table_9.01, +9864,B110,B037,"Grp ownership, hh claim trees/similar features",B037-2,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +9865,B111,B037,"No ownership, use rights recognized",B037-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +9866,B112,B037,"No ownership, use rights recognized",B037-1,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +9867,B113,B037,"No ownership, use rights recognized",B037-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +9868,B114,B037,"No ownership, use rights recognized",B037-1,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +9869,B115,B037,"Grp ownership, hh claim trees/similar features",B037-2,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +9870,B116,B037,"No ownership, use rights recognized",B037-1,,duncankemp1964,,1900,Binford_2001_Table_9.01, +9871,B117,B037,"No ownership, use rights recognized",B037-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +9872,B118,B037,"No ownership, use rights recognized",B037-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +9873,B119,B037,"Grp ownership, hh claim trees/similar features",B037-2,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +9874,B12,B037,"No ownership, use rights recognized",B037-1,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +9875,B120,B037,"No ownership, use rights recognized",B037-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +9876,B121,B037,"No ownership, use rights recognized",B037-1,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +9877,B122,B037,"No ownership, use rights recognized",B037-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +9878,B123,B037,"Grp ownership, hh claim trees/similar features",B037-2,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +9879,B124,B037,"Grp ownership, hh claim trees/similar features",B037-2,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +9880,B125,B037,"No ownership, use rights recognized",B037-1,,parker1905,,1880,Binford_2001_Table_9.01, +9881,B126,B037,"No ownership, use rights recognized",B037-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +9882,B127,B037,"Grp ownership, hh claim trees/similar features",B037-2,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +9883,B128,B037,"No ownership, use rights recognized",B037-1,,,,1890,Binford_2001_Table_9.01, +9884,B129,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +9885,B13,B037,"No ownership, use rights recognized",B037-1,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +9886,B130,B037,"Grp ownership, hh claim trees/similar features",B037-2,,,,1910,Binford_2001_Table_9.01, +9887,B131,B037,"Grp ownership, hh claim trees/similar features",B037-2,,,,1850,Binford_2001_Table_9.01, +9888,B132,B037,"Grp ownership, hh claim trees/similar features",B037-2,,nind1831,,1850,Binford_2001_Table_9.01, +9889,B133,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,williams1985,,1850,Binford_2001_Table_9.01, +9890,B134,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +9891,B135,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +9892,B136,B037,"No ownership, use rights recognized",B037-1,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +9893,B137,B037,"No ownership, use rights recognized",B037-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +9894,B14,B037,"No ownership, use rights recognized",B037-1,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +9895,B143,B037,"No ownership, use rights recognized",B037-1,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +9896,B144,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +9897,B145,B037,"Grp ownership, hh claim trees/similar features",B037-2,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +9898,B146,B037,"No ownership, use rights recognized",B037-1,,meigs1939,,1880,Binford_2001_Table_9.01, +9899,B147,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +9900,B148,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +9901,B149,B037,"Grp ownership, hh claim trees/similar features",B037-2,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +9902,B15,B037,"No ownership, use rights recognized",B037-1,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +9903,B150,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +9904,B151,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +9905,B152,B037,"Grp ownership, hh claim trees/similar features",B037-2,,voegelin1938,,1850,Binford_2001_Table_9.01, +9906,B153,B037,"Grp ownership, hh claim trees/similar features",B037-2,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +9907,B154,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +9908,B155,B037,"Grp ownership, hh claim trees/similar features",B037-2,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +9909,B156,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,,,1770,Binford_2001_Table_9.01, +9910,B157,B037,"Grp ownership, hh claim trees/similar features",B037-2,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +9911,B158,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +9912,B159,B037,Elite ownership,B037-4,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +9913,B16,B037,"No ownership, use rights recognized",B037-1,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +9914,B160,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +9915,B161,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +9916,B162,B037,"Grp ownership, hh claim trees/similar features",B037-2,,dixon1910,,1860,Binford_2001_Table_9.01, +9917,B163,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +9918,B164,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,gifford1926b,,1805,Binford_2001_Table_9.01, +9919,B165,B037,"Grp ownership, hh claim trees/similar features",B037-2,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +9920,B166,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +9921,B167,B037,"Grp ownership, hh claim trees/similar features",B037-2,,,,,Binford_2001_Table_9.01, +9922,B168,B037,"Grp ownership, hh claim trees/similar features",B037-2,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +9923,B169,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +9924,B17,B037,"No ownership, use rights recognized",B037-1,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +9925,B170,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1955,,,Binford_2001_Table_9.01, +9926,B171,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +9927,B172,B037,"Grp ownership, hh claim trees/similar features",B037-2,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +9928,B173,B037,"Grp ownership, hh claim trees/similar features",B037-2,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +9929,B174,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +9930,B175,B037,"Grp ownership, hh claim trees/similar features",B037-2,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +9931,B176,B037,"Grp ownership, hh claim trees/similar features",B037-2,,gray1987,,1860,Binford_2001_Table_9.01, +9932,B177,B037,"Grp ownership, hh claim trees/similar features",B037-2,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +9933,B178,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +9934,B179,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +9935,B18,B037,"Grp ownership, hh claim trees/similar features",B037-2,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +9936,B180,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +9937,B181,B037,"Grp ownership, hh claim trees/similar features",B037-2,,gray1987,,1870,Binford_2001_Table_9.01, +9938,B182,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +9939,B183,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,gifford1926b,,1860,Binford_2001_Table_9.01, +9940,B184,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +9941,B185,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +9942,B186,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +9943,B187,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +9944,B188,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +9945,B189,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +9946,B19,B037,"No ownership, use rights recognized",B037-1,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +9947,B190,B037,"No ownership, use rights recognized",B037-1,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +9948,B191,B037,"No ownership, use rights recognized",B037-1,,,,1570,Binford_2001_Table_9.01, +9949,B192,B037,"No ownership, use rights recognized",B037-1,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +9950,B193,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +9951,B194,B037,"No ownership, use rights recognized",B037-1,,,,1715,Binford_2001_Table_9.01, +9952,B195,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1850,Binford_2001_Table_9.01, +9953,B196,B037,"No ownership, use rights recognized",B037-1,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +9954,B197,B037,"No ownership, use rights recognized",B037-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +9955,B198,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +9956,B199,B037,"No ownership, use rights recognized",B037-1,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +9957,B2,B037,Elite ownership,B037-4,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +9958,B20,B037,"No ownership, use rights recognized",B037-1,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +9959,B200,B037,"No ownership, use rights recognized",B037-1,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +9960,B201,B037,"No ownership, use rights recognized",B037-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +9961,B202,B037,"No ownership, use rights recognized",B037-1,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +9962,B203,B037,"No ownership, use rights recognized",B037-1,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +9963,B204,B037,"No ownership, use rights recognized",B037-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +9964,B205,B037,"No ownership, use rights recognized",B037-1,,davis1965,,1870,Binford_2001_Table_9.01, +9965,B206,B037,"No ownership, use rights recognized",B037-1,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +9966,B207,B037,"No ownership, use rights recognized",B037-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +9967,B208,B037,"No ownership, use rights recognized",B037-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +9968,B209,B037,"No ownership, use rights recognized",B037-1,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +9969,B21,B037,"Grp ownership, hh claim trees/similar features",B037-2,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +9970,B210,B037,"No ownership, use rights recognized",B037-1,,fowler1992,,1870,Binford_2001_Table_9.01, +9971,B211,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1860,Binford_2001_Table_9.01, +9972,B212,B037,"No ownership, use rights recognized",B037-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +9973,B213,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1870,Binford_2001_Table_9.01, +9974,B214,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1860,Binford_2001_Table_9.01, +9975,B215,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1870,Binford_2001_Table_9.01, +9976,B216,B037,"No ownership, use rights recognized",B037-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +9977,B217,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1860,Binford_2001_Table_9.01, +9978,B218,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1860,Binford_2001_Table_9.01, +9979,B219,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +9980,B22,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +9981,B221,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1860,Binford_2001_Table_9.01, +9982,B222,B037,"No ownership, use rights recognized",B037-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +9983,B223,B037,"No ownership, use rights recognized",B037-1,,lowie1924,,1870,Binford_2001_Table_9.01, +9984,B224,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1860,Binford_2001_Table_9.01, +9985,B225,B037,"No ownership, use rights recognized",B037-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +9986,B226,B037,"No ownership, use rights recognized",B037-1,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +9987,B227,B037,"No ownership, use rights recognized",B037-1,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +9988,B228,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1860,Binford_2001_Table_9.01, +9989,B229,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,steward1938,,1860,Binford_2001_Table_9.01, +9990,B23,B037,"No ownership, use rights recognized",B037-1,,qiu1983,,1900,Binford_2001_Table_9.01, +9991,B230,B037,"No ownership, use rights recognized",B037-1,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +9992,B231,B037,"No ownership, use rights recognized",B037-1,,whiting1950,,1870,Binford_2001_Table_9.01, +9993,B232,B037,"No ownership, use rights recognized",B037-1,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +9994,B233,B037,"No ownership, use rights recognized",B037-1,,steward1938,,1860,Binford_2001_Table_9.01, +9995,B234,B037,,B037-NA,,,,,, +9996,B24,B037,Elite ownership,B037-4,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +9997,B240,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +9998,B241,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +9999,B242,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +10000,B243,B037,"No ownership, use rights recognized",B037-1,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +10001,B244,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +10002,B245,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +10003,B246,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +10004,B248,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +10005,B249,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +10006,B25,B037,"Grp ownership, hh claim trees/similar features",B037-2,,shternberg1933,,1920,Binford_2001_Table_9.01, +10007,B250,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +10008,B252,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +10009,B253,B037,"No ownership, use rights recognized",B037-1,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +10010,B254,B037,"No ownership, use rights recognized",B037-1,,skinner1914,,1850,Binford_2001_Table_9.01, +10011,B255,B037,"No ownership, use rights recognized",B037-1,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +10012,B256,B037,"No ownership, use rights recognized",B037-1,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +10013,B257,B037,"No ownership, use rights recognized",B037-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +10014,B258,B037,"No ownership, use rights recognized",B037-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +10015,B259,B037,"No ownership, use rights recognized",B037-1,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +10016,B26,B037,Elite ownership,B037-4,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +10017,B260,B037,"No ownership, use rights recognized",B037-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +10018,B268,B037,"Grp ownership, hh claim trees/similar features",B037-2,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +10019,B269,B037,"Grp ownership, hh claim trees/similar features",B037-2,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +10020,B27,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +10021,B270,B037,Elite ownership,B037-4,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +10022,B271,B037,Elite ownership,B037-4,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +10023,B272,B037,Elite ownership,B037-4,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +10024,B273,B037,Elite ownership,B037-4,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +10025,B274,B037,Elite ownership,B037-4,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +10026,B275,B037,Elite ownership,B037-4,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +10027,B276,B037,Elite ownership,B037-4,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +10028,B277,B037,"Grp ownership, hh claim trees/similar features",B037-2,,stern1934,,1880,Binford_2001_Table_9.01, +10029,B278,B037,Elite ownership,B037-4,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +10030,B279,B037,Elite ownership,B037-4,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +10031,B28,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +10032,B280,B037,Elite ownership,B037-4,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +10033,B281,B037,Elite ownership,B037-4,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +10034,B282,B037,Elite ownership,B037-4,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +10035,B283,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +10036,B284,B037,Elite ownership,B037-4,,pettitt1950,,1880,Binford_2001_Table_9.01, +10037,B285,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +10038,B286,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +10039,B287,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +10040,B288,B037,Elite ownership,B037-4,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +10041,B289,B037,Elite ownership,B037-4,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +10042,B290,B037,Elite ownership,B037-4,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +10043,B291,B037,Elite ownership,B037-4,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +10044,B292,B037,Elite ownership,B037-4,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +10045,B293,B037,Elite ownership,B037-4,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +10046,B294,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +10047,B295,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +10048,B296,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +10049,B297,B037,Elite ownership,B037-4,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +10050,B298,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +10051,B299,B037,Elite ownership,B037-4,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +10052,B3,B037,"No ownership, use rights recognized",B037-1,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +10053,B315,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,murdock1980,,1850,Binford_2001_Table_9.01, +10054,B316,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,,,1860,Binford_2001_Table_9.01, +10055,B317,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,teit1928,,1870,Binford_2001_Table_9.01, +10056,B318,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,,,1880,Binford_2001_Table_9.01, +10057,B319,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +10058,B320,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,teit1930,,1860,Binford_2001_Table_9.01, +10059,B321,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,clineetal1938,,1880,Binford_2001_Table_9.01, +10060,B322,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +10061,B323,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +10062,B324,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,spinden1908,,1850,Binford_2001_Table_9.01, +10063,B325,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +10064,B326,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,teit1930,,1870,Binford_2001_Table_9.01, +10065,B327,B037,Elite ownership,B037-4,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +10066,B328,B037,Elite ownership,B037-4,,kinietz1947,,1800,Binford_2001_Table_9.01, +10067,B329,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +10068,B330,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +10069,B331,B037,"No ownership, use rights recognized",B037-1,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +10070,B332,B037,"No ownership, use rights recognized",B037-1,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +10071,B333,B037,"Grp ownership, hh claim trees/similar features",B037-2,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +10072,B334,B037,"No ownership, use rights recognized",B037-1,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +10073,B335,B037,"No ownership, use rights recognized",B037-1,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +10074,B336,B037,"Grp ownership, hh claim trees/similar features",B037-2,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +10075,B337,B037,"No ownership, use rights recognized",B037-1,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +10076,B338,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +10077,B339,B037,"No ownership, use rights recognized",B037-1,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +10078,B340,B037,"No ownership, use rights recognized",B037-1,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +10079,B341,B037,"No ownership, use rights recognized",B037-1,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +10080,B342,B037,"No ownership, use rights recognized",B037-1,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +10081,B343,B037,"No ownership, use rights recognized",B037-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +10082,B344,B037,"No ownership, use rights recognized",B037-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +10083,B345,B037,"No ownership, use rights recognized",B037-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +10084,B346,B037,"No ownership, use rights recognized",B037-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +10085,B347,B037,"Grp ownership, hh claim trees/similar features",B037-2,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +10086,B348,B037,"Grp ownership, hh claim trees/similar features",B037-2,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +10087,B349,B037,"Grp ownership, hh claim trees/similar features",B037-2,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +10088,B35,B037,Elite ownership,B037-4,,,,1950,Binford_2001_Table_9.01, +10089,B350,B037,"Grp ownership, hh claim trees/similar features",B037-2,,gillespie1981,,1800,Binford_2001_Table_9.01, +10090,B351,B037,"Grp ownership, hh claim trees/similar features",B037-2,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +10091,B352,B037,"No ownership, use rights recognized",B037-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +10092,B353,B037,"No ownership, use rights recognized",B037-1,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +10093,B354,B037,"Grp ownership, hh claim trees/similar features",B037-2,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +10094,B355,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +10095,B356,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +10096,B357,B037,Elite ownership,B037-4,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +10097,B358,B037,"No ownership, use rights recognized",B037-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +10098,B359,B037,"Grp ownership, hh claim trees/similar features",B037-2,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +10099,B36,B037,"No ownership, use rights recognized",B037-1,,metraux1948,,1960,Binford_2001_Table_9.01, +10100,B360,B037,"No ownership, use rights recognized",B037-1,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +10101,B361,B037,"No ownership, use rights recognized",B037-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +10102,B362,B037,"Grp ownership, hh claim trees/similar features",B037-2,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +10103,B363,B037,"Grp ownership, hh claim trees/similar features",B037-2,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +10104,B364,B037,"Grp ownership, hh claim trees/similar features",B037-2,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +10105,B365,B037,"No ownership, use rights recognized",B037-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +10106,B369,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +10107,B37,B037,"No ownership, use rights recognized",B037-1,,kloos1977;kloos1982,,1968,Binford_2001_Table_9.01, +10108,B370,B037,"No ownership, use rights recognized",B037-1,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +10109,B371,B037,"Grp ownership, hh claim trees/similar features",B037-2,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +10110,B372,B037,"Grp ownership, hh claim trees/similar features",B037-2,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +10111,B373,B037,"No ownership, use rights recognized",B037-1,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +10112,B374,B037,"No ownership, use rights recognized",B037-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +10113,B375,B037,"No ownership, use rights recognized",B037-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +10114,B377,B037,"No ownership, use rights recognized",B037-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +10115,B378,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +10116,B379,B037,"No ownership, use rights recognized",B037-1,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +10117,B38,B037,"No ownership, use rights recognized",B037-1,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +10118,B380,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +10119,B381,B037,"No ownership, use rights recognized",B037-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +10120,B382,B037,"No ownership, use rights recognized",B037-1,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +10121,B383,B037,"No ownership, use rights recognized",B037-1,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +10122,B384,B037,"No ownership, use rights recognized",B037-1,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +10123,B385,B037,"No ownership, use rights recognized",B037-1,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +10124,B386,B037,"No ownership, use rights recognized",B037-1,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +10125,B387,B037,"No ownership, use rights recognized",B037-1,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +10126,B388,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +10127,B389,B037,"No ownership, use rights recognized",B037-1,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +10128,B39,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +10129,B390,B037,"No ownership, use rights recognized",B037-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +10130,B4,B037,"Grp ownership, hh claim trees/similar features",B037-2,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +10131,B40,B037,"No ownership, use rights recognized",B037-1,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +10132,B41,B037,"Grp ownership, hh claim trees/similar features",B037-2,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +10133,B42,B037,"No ownership, use rights recognized",B037-1,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +10134,B43,B037,"No ownership, use rights recognized",B037-1,,holmberg1950,,1940,Binford_2001_Table_9.01, +10135,B44,B037,"No ownership, use rights recognized",B037-1,,stearman1989,,1968,Binford_2001_Table_9.01, +10136,B45,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +10137,B46,B037,Elite ownership,B037-4,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +10138,B47,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +10139,B48,B037,"No ownership, use rights recognized",B037-1,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +10140,B49,B037,"No ownership, use rights recognized",B037-1,,kozaketal1979,,1954,Binford_2001_Table_9.01, +10141,B5,B037,"No ownership, use rights recognized",B037-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +10142,B50,B037,"No ownership, use rights recognized",B037-1,,henry1964,,1910,Binford_2001_Table_9.01, +10143,B51,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +10144,B52,B037,"Grp ownership, hh claim trees/similar features",B037-2,,cooper1946d,,1880,Binford_2001_Table_9.01, +10145,B53,B037,"Grp ownership, hh claim trees/similar features",B037-2,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +10146,B54,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +10147,B55,B037,"No ownership, use rights recognized",B037-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +10148,B6,B037,"No ownership, use rights recognized",B037-1,,temple1903,,1906,Binford_2001_Table_9.01, +10149,B60,B037,"No ownership, use rights recognized",B037-1,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +10150,B61,B037,"No ownership, use rights recognized",B037-1,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +10151,B62,B037,"No ownership, use rights recognized",B037-1,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +10152,B63,B037,"No ownership, use rights recognized",B037-1,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +10153,B64,B037,"No ownership, use rights recognized",B037-1,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +10154,B65,B037,"No ownership, use rights recognized",B037-1,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +10155,B66,B037,"No ownership, use rights recognized",B037-1,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +10156,B67,B037,"No ownership, use rights recognized",B037-1,,clark1951,,1950,Binford_2001_Table_9.01, +10157,B68,B037,"No ownership, use rights recognized",B037-1,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +10158,B69,B037,"No ownership, use rights recognized",B037-1,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +10159,B7,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +10160,B70,B037,"No ownership, use rights recognized",B037-1,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +10161,B71,B037,"No ownership, use rights recognized",B037-1,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +10162,B72,B037,"No ownership, use rights recognized",B037-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +10163,B73,B037,"No ownership, use rights recognized",B037-1,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +10164,B74,B037,"No ownership, use rights recognized",B037-1,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +10165,B75,B037,"No ownership, use rights recognized",B037-1,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +10166,B76,B037,"No ownership, use rights recognized",B037-1,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +10167,B77,B037,"No ownership, use rights recognized",B037-1,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +10168,B78,B037,"No ownership, use rights recognized",B037-1,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +10169,B79,B037,"No ownership, use rights recognized",B037-1,,bleek1924a,,,Binford_2001_Table_9.01, +10170,B8,B037,"No ownership, use rights recognized",B037-1,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +10171,B82,B037,"Grp ownership, hh claim trees/similar features",B037-2,,moore1979,,1848,Binford_2001_Table_9.01, +10172,B83,B037,"No ownership, use rights recognized",B037-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +10173,B84,B037,"No ownership, use rights recognized",B037-1,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +10174,B85,B037,"No ownership, use rights recognized",B037-1,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +10175,B86,B037,"No ownership, use rights recognized",B037-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +10176,B87,B037,"No ownership, use rights recognized",B037-1,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +10177,B88,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +10178,B89,B037,"No ownership, use rights recognized",B037-1,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +10179,B9,B037,"No ownership, use rights recognized",B037-1,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +10180,B90,B037,"No ownership, use rights recognized",B037-1,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +10181,B91,B037,"Grp ownership, hh claim trees/similar features",B037-2,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +10182,B92,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +10183,B93,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +10184,B94,B037,"No ownership, use rights recognized",B037-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +10185,B95,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +10186,B96,B037,"No ownership, use rights recognized",B037-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +10187,B97,B037,"No ownership, use rights recognized",B037-1,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +10188,B98,B037,"Grp ownership, subgrps claim excl. access to resources",B037-3,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +10189,B99,B037,"No ownership, use rights recognized",B037-1,,stanner1933,,1900,Binford_2001_Table_9.01, +10190,B1,B038,"Egalitarian, leaders",B038-5,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_9.01, +10191,B10,B038,"Egalitarian, no leaders",B038-4,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_9.01, +10192,B100,B038,"Egalitarian, no leaders",B038-4,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_9.01, +10193,B101,B038,"Egalitarian, no leaders",B038-4,,kaberry1939,,1934,Binford_2001_Table_9.01, +10194,B102,B038,"Egalitarian, no leaders",B038-4,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_9.01, +10195,B103,B038,"Egalitarian, no leaders",B038-4,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_9.01, +10196,B104,B038,"Egalitarian, no leaders",B038-4,,,,,Binford_2001_Table_9.01, +10197,B105,B038,"Egalitarian, no leaders",B038-4,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_9.01, +10198,B106,B038,"Egalitarian, no leaders",B038-4,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_9.01, +10199,B107,B038,"Egalitarian, no leaders",B038-4,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_9.01, +10200,B108,B038,"Egalitarian, no leaders",B038-4,,kaberry1939;nind1831,,1934,Binford_2001_Table_9.01, +10201,B109,B038,"Egalitarian, no leaders",B038-4,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_9.01, +10202,B11,B038,Mutualists,B038-3,,morris1982a,,1972,Binford_2001_Table_9.01, +10203,B110,B038,"Egalitarian, no leaders",B038-4,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_9.01, +10204,B111,B038,"Egalitarian, no leaders",B038-4,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_9.01, +10205,B112,B038,"Egalitarian, no leaders",B038-4,,petersonandlong1986,,1968,Binford_2001_Table_9.01, +10206,B113,B038,"Egalitarian, no leaders",B038-4,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_9.01, +10207,B114,B038,"Egalitarian, no leaders",B038-4,,colliverandwoolston1975,,1848,Binford_2001_Table_9.01, +10208,B115,B038,"Egalitarian, leaders",B038-5,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_9.01, +10209,B116,B038,"Egalitarian, no leaders",B038-4,,duncankemp1964,,1900,Binford_2001_Table_9.01, +10210,B117,B038,"Egalitarian, no leaders",B038-4,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_9.01, +10211,B118,B038,"Egalitarian, no leaders",B038-4,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_9.01, +10212,B119,B038,"Egalitarian, no leaders",B038-4,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_9.01, +10213,B12,B038,Mutualists,B038-3,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_9.01, +10214,B120,B038,"Egalitarian, no leaders",B038-4,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_9.01, +10215,B121,B038,"Egalitarian, no leaders",B038-4,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_9.01, +10216,B122,B038,"Egalitarian, no leaders",B038-4,,roberts1953;schulze1891,,1870,Binford_2001_Table_9.01, +10217,B123,B038,"Egalitarian, no leaders",B038-4,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_9.01, +10218,B124,B038,"Egalitarian, no leaders",B038-4,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_9.01, +10219,B125,B038,"Egalitarian, no leaders",B038-4,,parker1905,,1880,Binford_2001_Table_9.01, +10220,B126,B038,"Egalitarian, no leaders",B038-4,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_9.01, +10221,B127,B038,"Egalitarian, no leaders",B038-4,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_9.01, +10222,B128,B038,"Egalitarian, no leaders",B038-4,,,,1890,Binford_2001_Table_9.01, +10223,B129,B038,"Egalitarian, no leaders",B038-4,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_9.01, +10224,B13,B038,Mutualists,B038-3,,rai1982;wastl1957,,1979,Binford_2001_Table_9.01, +10225,B130,B038,"Egalitarian, no leaders",B038-4,,,,1910,Binford_2001_Table_9.01, +10226,B131,B038,"Egalitarian, no leaders",B038-4,,,,1850,Binford_2001_Table_9.01, +10227,B132,B038,"Egalitarian, no leaders",B038-4,,nind1831,,1850,Binford_2001_Table_9.01, +10228,B133,B038,Ranked wealth,B038-6,,williams1985,,1850,Binford_2001_Table_9.01, +10229,B134,B038,"Egalitarian, no leaders",B038-4,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_9.01, +10230,B135,B038,"Egalitarian, no leaders",B038-4,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_9.01, +10231,B136,B038,"Egalitarian, no leaders",B038-4,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_9.01, +10232,B137,B038,"Egalitarian, no leaders",B038-4,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_9.01, +10233,B14,B038,Mutualists,B038-3,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_9.01, +10234,B143,B038,"Egalitarian, leaders",B038-5,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_9.01, +10235,B144,B038,Agriculturalists,B038-2,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_9.01, +10236,B145,B038,"Egalitarian, leaders",B038-5,,gifford1926b;strong1929a,,1870,Binford_2001_Table_9.01, +10237,B146,B038,"Egalitarian, no leaders",B038-4,,meigs1939,,1880,Binford_2001_Table_9.01, +10238,B147,B038,"Egalitarian, leaders",B038-5,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_9.01, +10239,B148,B038,Ranked wealth,B038-6,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_9.01, +10240,B149,B038,Ranked wealth,B038-6,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_9.01, +10241,B15,B038,Agriculturalists,B038-2,,furerhaimendorf1943b,,1940,Binford_2001_Table_9.01, +10242,B150,B038,Ranked wealth,B038-6,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_9.01, +10243,B151,B038,"Egalitarian, no leaders",B038-4,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_9.01, +10244,B152,B038,"Egalitarian, leaders",B038-5,,voegelin1938,,1850,Binford_2001_Table_9.01, +10245,B153,B038,Ranked wealth,B038-6,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_9.01, +10246,B154,B038,Ranked wealth,B038-6,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_9.01, +10247,B155,B038,Ranked wealth,B038-6,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_9.01, +10248,B156,B038,Ranked elites,B038-7,,,,1770,Binford_2001_Table_9.01, +10249,B157,B038,"Egalitarian, leaders",B038-5,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_9.01, +10250,B158,B038,Ranked wealth,B038-6,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +10251,B159,B038,Ranked wealth,B038-6,,cook1956;gifford1926a,,1860,Binford_2001_Table_9.01, +10252,B16,B038,Mutualists,B038-3,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_9.01, +10253,B160,B038,Ranked wealth,B038-6,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_9.01, +10254,B161,B038,Ranked elites,B038-7,,cookandheizer1965,,1860,Binford_2001_Table_9.01, +10255,B162,B038,"Egalitarian, no leaders",B038-4,,dixon1910,,1860,Binford_2001_Table_9.01, +10256,B163,B038,Ranked wealth,B038-6,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_9.01, +10257,B164,B038,Ranked wealth,B038-6,,gifford1926b,,1805,Binford_2001_Table_9.01, +10258,B165,B038,Ranked wealth,B038-6,,barrett1908;cook1956,,1860,Binford_2001_Table_9.01, +10259,B166,B038,Ranked wealth,B038-6,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_9.01, +10260,B167,B038,Ranked wealth,B038-6,,,,,Binford_2001_Table_9.01, +10261,B168,B038,"Egalitarian, leaders",B038-5,,collierandthalman1991,,1850,Binford_2001_Table_9.01, +10262,B169,B038,Ranked wealth,B038-6,,cook1956;nomland1938,,,Binford_2001_Table_9.01, +10263,B17,B038,Mutualists,B038-3,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_9.01, +10264,B170,B038,Ranked wealth,B038-6,,cook1955,,,Binford_2001_Table_9.01, +10265,B171,B038,Ranked wealth,B038-6,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_9.01, +10266,B172,B038,Ranked wealth,B038-6,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_9.01, +10267,B173,B038,Ranked wealth,B038-6,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_9.01, +10268,B174,B038,Ranked wealth,B038-6,,gifford1926b;waterman1918,,1860,Binford_2001_Table_9.01, +10269,B175,B038,"Egalitarian, no leaders",B038-4,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_9.01, +10270,B176,B038,Ranked wealth,B038-6,,gray1987,,1860,Binford_2001_Table_9.01, +10271,B177,B038,"Egalitarian, leaders",B038-5,,gifford1939;miller1978,,1860,Binford_2001_Table_9.01, +10272,B178,B038,Ranked wealth,B038-6,,cook1956;drucker1940,,1870,Binford_2001_Table_9.01, +10273,B179,B038,Ranked wealth,B038-6,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_9.01, +10274,B18,B038,Mutualists,B038-3,,senandsen1955;williams1974,,1963,Binford_2001_Table_9.01, +10275,B180,B038,Ranked wealth,B038-6,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_9.01, +10276,B181,B038,Ranked wealth,B038-6,,gray1987,,1870,Binford_2001_Table_9.01, +10277,B182,B038,Ranked wealth,B038-6,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_9.01, +10278,B183,B038,Ranked wealth,B038-6,,gifford1926b,,1860,Binford_2001_Table_9.01, +10279,B184,B038,Ranked wealth,B038-6,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_9.01, +10280,B185,B038,Ranked wealth,B038-6,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_9.01, +10281,B186,B038,Ranked wealth,B038-6,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_9.01, +10282,B187,B038,Ranked wealth,B038-6,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_9.01, +10283,B188,B038,Ranked wealth,B038-6,,gifford1926b;ray1963,,1860,Binford_2001_Table_9.01, +10284,B189,B038,Ranked wealth,B038-6,,gifford1926b;spier1930,,1860,Binford_2001_Table_9.01, +10285,B19,B038,Mutualists,B038-3,,ehrenfels1952,,1946,Binford_2001_Table_9.01, +10286,B190,B038,"Egalitarian, no leaders",B038-4,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_9.01, +10287,B191,B038,"Egalitarian, no leaders",B038-4,,,,1570,Binford_2001_Table_9.01, +10288,B192,B038,"Egalitarian, no leaders",B038-4,,smith1978a;steward1938,,1860,Binford_2001_Table_9.01, +10289,B193,B038,"Egalitarian, leaders",B038-5,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_9.01, +10290,B194,B038,"Egalitarian, no leaders",B038-4,,,,1715,Binford_2001_Table_9.01, +10291,B195,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1850,Binford_2001_Table_9.01, +10292,B196,B038,Agriculturalists,B038-2,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_9.01, +10293,B197,B038,"Egalitarian, no leaders",B038-4,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +10294,B198,B038,Agriculturalists,B038-2,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_9.01, +10295,B199,B038,"Egalitarian, no leaders",B038-4,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_9.01, +10296,B2,B038,Agriculturalists,B038-2,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_9.01, +10297,B20,B038,Mutualists,B038-3,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_9.01, +10298,B200,B038,"Egalitarian, no leaders",B038-4,,steward1936;steward1938,,1860,Binford_2001_Table_9.01, +10299,B201,B038,"Egalitarian, no leaders",B038-4,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_9.01, +10300,B202,B038,"Egalitarian, no leaders",B038-4,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_9.01, +10301,B203,B038,"Egalitarian, no leaders",B038-4,,steward1938;thomas1983,,1860,Binford_2001_Table_9.01, +10302,B204,B038,"Egalitarian, no leaders",B038-4,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_9.01, +10303,B205,B038,"Egalitarian, no leaders",B038-4,,davis1965,,1870,Binford_2001_Table_9.01, +10304,B206,B038,"Egalitarian, no leaders",B038-4,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_9.01, +10305,B207,B038,"Egalitarian, no leaders",B038-4,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +10306,B208,B038,"Egalitarian, no leaders",B038-4,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_9.01, +10307,B209,B038,Mounted hunters,B038-1,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_9.01, +10308,B21,B038,Mutualists,B038-3,,bird1983;birddavid1987,,1978,Binford_2001_Table_9.01, +10309,B210,B038,"Egalitarian, no leaders",B038-4,,fowler1992,,1870,Binford_2001_Table_9.01, +10310,B211,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1860,Binford_2001_Table_9.01, +10311,B212,B038,"Egalitarian, no leaders",B038-4,,gifford1926b;riddell1960,,1870,Binford_2001_Table_9.01, +10312,B213,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1870,Binford_2001_Table_9.01, +10313,B214,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1860,Binford_2001_Table_9.01, +10314,B215,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1870,Binford_2001_Table_9.01, +10315,B216,B038,"Egalitarian, no leaders",B038-4,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_9.01, +10316,B217,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1860,Binford_2001_Table_9.01, +10317,B218,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1860,Binford_2001_Table_9.01, +10318,B219,B038,Ranked wealth,B038-6,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_9.01, +10319,B22,B038,"Egalitarian, leaders",B038-5,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_9.01, +10320,B221,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1860,Binford_2001_Table_9.01, +10321,B222,B038,Mounted hunters,B038-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_9.01, +10322,B223,B038,"Egalitarian, no leaders",B038-4,,lowie1924,,1870,Binford_2001_Table_9.01, +10323,B224,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1860,Binford_2001_Table_9.01, +10324,B225,B038,"Egalitarian, no leaders",B038-4,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_9.01, +10325,B226,B038,"Egalitarian, leaders",B038-5,,brink1969;kelly1932,,1870,Binford_2001_Table_9.01, +10326,B227,B038,"Egalitarian, no leaders",B038-4,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_9.01, +10327,B228,B038,"Egalitarian, leaders",B038-5,,steward1938,,1860,Binford_2001_Table_9.01, +10328,B229,B038,Mounted hunters,B038-1,,steward1938,,1860,Binford_2001_Table_9.01, +10329,B23,B038,Mounted hunters,B038-1,,qiu1983,,1900,Binford_2001_Table_9.01, +10330,B230,B038,Mounted hunters,B038-1,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_9.01, +10331,B231,B038,"Egalitarian, leaders",B038-5,,whiting1950,,1870,Binford_2001_Table_9.01, +10332,B232,B038,"Egalitarian, no leaders",B038-4,,boas1899;steward1938,,1860,Binford_2001_Table_9.01, +10333,B233,B038,"Egalitarian, no leaders",B038-4,,steward1938,,1860,Binford_2001_Table_9.01, +10334,B234,B038,Mounted hunters,B038-1,,boas1899;steward1974b,,1860,Binford_2001_Table_9.01, +10335,B24,B038,Ranked wealth,B038-6,,lee1967;shimkin1939,,1900,Binford_2001_Table_9.01, +10336,B240,B038,Mounted hunters,B038-1,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_9.01, +10337,B241,B038,Mounted hunters,B038-1,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_9.01, +10338,B242,B038,Mounted hunters,B038-1,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_9.01, +10339,B243,B038,Mounted hunters,B038-1,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_9.01, +10340,B244,B038,Mounted hunters,B038-1,,bamforth1988;ewers1955,,1860,Binford_2001_Table_9.01, +10341,B245,B038,Mounted hunters,B038-1,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_9.01, +10342,B246,B038,Mounted hunters,B038-1,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_9.01, +10343,B248,B038,Mounted hunters,B038-1,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_9.01, +10344,B249,B038,Mounted hunters,B038-1,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_9.01, +10345,B25,B038,Ranked wealth,B038-6,,shternberg1933,,1920,Binford_2001_Table_9.01, +10346,B250,B038,Mounted hunters,B038-1,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_9.01, +10347,B252,B038,Mounted hunters,B038-1,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_9.01, +10348,B253,B038,Mounted hunters,B038-1,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_9.01, +10349,B254,B038,Mounted hunters,B038-1,,skinner1914,,1850,Binford_2001_Table_9.01, +10350,B255,B038,Mounted hunters,B038-1,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_9.01, +10351,B256,B038,Mounted hunters,B038-1,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_9.01, +10352,B257,B038,Mounted hunters,B038-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_9.01, +10353,B258,B038,Mounted hunters,B038-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_9.01, +10354,B259,B038,Mounted hunters,B038-1,,bamforth1988;ewers1955,,1850,Binford_2001_Table_9.01, +10355,B26,B038,Agriculturalists,B038-2,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_9.01, +10356,B260,B038,Mounted hunters,B038-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_9.01, +10357,B268,B038,Ranked wealth,B038-6,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_9.01, +10358,B269,B038,Ranked wealth,B038-6,,boas1891a;drucker1939,,1860,Binford_2001_Table_9.01, +10359,B27,B038,Agriculturalists,B038-2,,chard1963;popov1966,,1933,Binford_2001_Table_9.01, +10360,B270,B038,Ranked wealth,B038-6,,smith1940a;smith1940b,,1870,Binford_2001_Table_9.01, +10361,B271,B038,Ranked wealth,B038-6,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_9.01, +10362,B272,B038,Ranked wealth,B038-6,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_9.01, +10363,B273,B038,Ranked elites,B038-7,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_9.01, +10364,B274,B038,Ranked wealth,B038-6,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_9.01, +10365,B275,B038,Ranked wealth,B038-6,,boyd1990;zenk1990,,1860,Binford_2001_Table_9.01, +10366,B276,B038,Ranked elites,B038-7,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_9.01, +10367,B277,B038,Ranked elites,B038-7,,stern1934,,1880,Binford_2001_Table_9.01, +10368,B278,B038,Ranked wealth,B038-6,,olson1936a;schalk1978,,1860,Binford_2001_Table_9.01, +10369,B279,B038,Ranked wealth,B038-6,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_9.01, +10370,B28,B038,Ranked wealth,B038-6,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_9.01, +10371,B280,B038,Ranked wealth,B038-6,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_9.01, +10372,B281,B038,Ranked wealth,B038-6,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_9.01, +10373,B282,B038,Ranked elites,B038-7,,kennedyandbouchard1990,,1860,Binford_2001_Table_9.01, +10374,B283,B038,Ranked elites,B038-7,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_9.01, +10375,B284,B038,Ranked wealth,B038-6,,pettitt1950,,1880,Binford_2001_Table_9.01, +10376,B285,B038,Ranked elites,B038-7,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_9.01, +10377,B286,B038,Ranked elites,B038-7,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_9.01, +10378,B287,B038,Ranked elites,B038-7,,olson1940;schalk1978,,1880,Binford_2001_Table_9.01, +10379,B288,B038,Ranked elites,B038-7,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +10380,B289,B038,Ranked elites,B038-7,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_9.01, +10381,B290,B038,Ranked elites,B038-7,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_9.01, +10382,B291,B038,Ranked elites,B038-7,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_9.01, +10383,B292,B038,Ranked elites,B038-7,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_9.01, +10384,B293,B038,Ranked elites,B038-7,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_9.01, +10385,B294,B038,Ranked elites,B038-7,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_9.01, +10386,B295,B038,Ranked wealth,B038-6,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_9.01, +10387,B296,B038,Ranked wealth,B038-6,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_9.01, +10388,B297,B038,Ranked elites,B038-7,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_9.01, +10389,B298,B038,Ranked elites,B038-7,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_9.01, +10390,B299,B038,Ranked wealth,B038-6,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_9.01, +10391,B3,B038,Mutualists,B038-3,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_9.01, +10392,B315,B038,Ranked wealth,B038-6,,murdock1980,,1850,Binford_2001_Table_9.01, +10393,B316,B038,Ranked wealth,B038-6,,,,1860,Binford_2001_Table_9.01, +10394,B317,B038,Ranked wealth,B038-6,,teit1928,,1870,Binford_2001_Table_9.01, +10395,B318,B038,Ranked wealth,B038-6,,,,1880,Binford_2001_Table_9.01, +10396,B319,B038,Ranked wealth,B038-6,,spierandsapir1930,,1860,Binford_2001_Table_9.01, +10397,B320,B038,Ranked wealth,B038-6,,teit1930,,1860,Binford_2001_Table_9.01, +10398,B321,B038,Ranked elites,B038-7,,clineetal1938,,1880,Binford_2001_Table_9.01, +10399,B322,B038,Ranked wealth,B038-6,,grabert1974;teit1930,,1860,Binford_2001_Table_9.01, +10400,B323,B038,"Egalitarian, leaders",B038-5,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_9.01, +10401,B324,B038,Ranked wealth,B038-6,,spinden1908,,1850,Binford_2001_Table_9.01, +10402,B325,B038,Ranked wealth,B038-6,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_9.01, +10403,B326,B038,Ranked wealth,B038-6,,teit1930,,1870,Binford_2001_Table_9.01, +10404,B327,B038,"Egalitarian, leaders",B038-5,,jenness1935;quimby1962,,1870,Binford_2001_Table_9.01, +10405,B328,B038,"Egalitarian, no leaders",B038-4,,kinietz1947,,1800,Binford_2001_Table_9.01, +10406,B329,B038,Ranked wealth,B038-6,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_9.01, +10407,B330,B038,Ranked wealth,B038-6,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_9.01, +10408,B331,B038,"Egalitarian, leaders",B038-5,,hickerson1967;landes1937a,,1880,Binford_2001_Table_9.01, +10409,B332,B038,"Egalitarian, leaders",B038-5,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_9.01, +10410,B333,B038,Mounted hunters,B038-1,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_9.01, +10411,B334,B038,Mutualists,B038-3,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_9.01, +10412,B335,B038,Mutualists,B038-3,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_9.01, +10413,B336,B038,Ranked elites,B038-7,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_9.01, +10414,B337,B038,Ranked wealth,B038-6,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_9.01, +10415,B338,B038,Mutualists,B038-3,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_9.01, +10416,B339,B038,Mutualists,B038-3,,dunning1959;rogers1969,,1850,Binford_2001_Table_9.01, +10417,B340,B038,Mutualists,B038-3,,morantz1983;rogers1969,,1900,Binford_2001_Table_9.01, +10418,B341,B038,Mutualists,B038-3,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_9.01, +10419,B342,B038,"Egalitarian, leaders",B038-5,,lane1952;tanner1944,,1880,Binford_2001_Table_9.01, +10420,B343,B038,Mounted hunters,B038-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_9.01, +10421,B344,B038,"Egalitarian, no leaders",B038-4,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_9.01, +10422,B345,B038,"Egalitarian, no leaders",B038-4,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_9.01, +10423,B346,B038,"Egalitarian, no leaders",B038-4,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_9.01, +10424,B347,B038,Ranked wealth,B038-6,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_9.01, +10425,B348,B038,Ranked elites,B038-7,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_9.01, +10426,B349,B038,Ranked elites,B038-7,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_9.01, +10427,B35,B038,Ranked elites,B038-7,,,,1950,Binford_2001_Table_9.01, +10428,B350,B038,"Egalitarian, no leaders",B038-4,,gillespie1981,,1800,Binford_2001_Table_9.01, +10429,B351,B038,Ranked wealth,B038-6,,adney1900;crowandobley1981,,1880,Binford_2001_Table_9.01, +10430,B352,B038,"Egalitarian, no leaders",B038-4,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_9.01, +10431,B353,B038,"Egalitarian, no leaders",B038-4,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_9.01, +10432,B354,B038,"Egalitarian, no leaders",B038-4,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_9.01, +10433,B355,B038,"Egalitarian, no leaders",B038-4,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_9.01, +10434,B356,B038,Ranked wealth,B038-6,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_9.01, +10435,B357,B038,"Egalitarian, leaders",B038-5,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_9.01, +10436,B358,B038,"Egalitarian, no leaders",B038-4,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_9.01, +10437,B359,B038,"Egalitarian, leaders",B038-5,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_9.01, +10438,B36,B038,"Egalitarian, no leaders",B038-4,,metraux1948,,1960,Binford_2001_Table_9.01, +10439,B360,B038,Mutualists,B038-3,,morantz1983;skinner1911,,1900,Binford_2001_Table_9.01, +10440,B361,B038,"Egalitarian, no leaders",B038-4,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_9.01, +10441,B362,B038,Ranked elites,B038-7,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_9.01, +10442,B363,B038,Ranked wealth,B038-6,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_9.01, +10443,B364,B038,Ranked wealth,B038-6,,michael1967;snow1981,,1860,Binford_2001_Table_9.01, +10444,B365,B038,"Egalitarian, no leaders",B038-4,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_9.01, +10445,B369,B038,Ranked wealth,B038-6,,ray1992;seltzer1933,,1870,Binford_2001_Table_9.01, +10446,B37,B038,,B038-NA,,,,,, +10447,B370,B038,"Egalitarian, leaders",B038-5,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_9.01, +10448,B371,B038,Ranked wealth,B038-6,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_9.01, +10449,B372,B038,"Egalitarian, leaders",B038-5,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_9.01, +10450,B373,B038,Ranked wealth,B038-6,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_9.01, +10451,B374,B038,"Egalitarian, no leaders",B038-4,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_9.01, +10452,B375,B038,"Egalitarian, no leaders",B038-4,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_9.01, +10453,B377,B038,"Egalitarian, no leaders",B038-4,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_9.01, +10454,B378,B038,Ranked wealth,B038-6,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_9.01, +10455,B379,B038,Ranked wealth,B038-6,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_9.01, +10456,B38,B038,Agriculturalists,B038-2,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_9.01, +10457,B380,B038,Ranked wealth,B038-6,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_9.01, +10458,B381,B038,"Egalitarian, no leaders",B038-4,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_9.01, +10459,B382,B038,"Egalitarian, no leaders",B038-4,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_9.01, +10460,B383,B038,"Egalitarian, no leaders",B038-4,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_9.01, +10461,B384,B038,"Egalitarian, no leaders",B038-4,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_9.01, +10462,B385,B038,"Egalitarian, no leaders",B038-4,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_9.01, +10463,B386,B038,"Egalitarian, no leaders",B038-4,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_9.01, +10464,B387,B038,"Egalitarian, no leaders",B038-4,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_9.01, +10465,B388,B038,"Egalitarian, no leaders",B038-4,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_9.01, +10466,B389,B038,Ranked wealth,B038-6,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_9.01, +10467,B39,B038,Agriculturalists,B038-2,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_9.01, +10468,B390,B038,"Egalitarian, no leaders",B038-4,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_9.01, +10469,B4,B038,Mutualists,B038-3,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_9.01, +10470,B40,B038,"Egalitarian, no leaders",B038-4,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_9.01, +10471,B41,B038,Agriculturalists,B038-2,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_9.01, +10472,B42,B038,Agriculturalists,B038-2,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_9.01, +10473,B43,B038,Agriculturalists,B038-2,,holmberg1950,,1940,Binford_2001_Table_9.01, +10474,B44,B038,"Egalitarian, no leaders",B038-4,,stearman1989,,1968,Binford_2001_Table_9.01, +10475,B45,B038,Agriculturalists,B038-2,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_9.01, +10476,B46,B038,Ranked elites,B038-7,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_9.01, +10477,B47,B038,"Egalitarian, no leaders",B038-4,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_9.01, +10478,B48,B038,"Egalitarian, leaders",B038-5,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_9.01, +10479,B49,B038,"Egalitarian, no leaders",B038-4,,kozaketal1979,,1954,Binford_2001_Table_9.01, +10480,B5,B038,"Egalitarian, no leaders",B038-4,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_9.01, +10481,B50,B038,"Egalitarian, leaders",B038-5,,henry1964,,1910,Binford_2001_Table_9.01, +10482,B51,B038,Mounted hunters,B038-1,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_9.01, +10483,B52,B038,"Egalitarian, no leaders",B038-4,,cooper1946d,,1880,Binford_2001_Table_9.01, +10484,B53,B038,"Egalitarian, no leaders",B038-4,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_9.01, +10485,B54,B038,"Egalitarian, no leaders",B038-4,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_9.01, +10486,B55,B038,"Egalitarian, no leaders",B038-4,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_9.01, +10487,B6,B038,"Egalitarian, no leaders",B038-4,,temple1903,,1906,Binford_2001_Table_9.01, +10488,B60,B038,Mutualists,B038-3,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_9.01, +10489,B61,B038,Mutualists,B038-3,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_9.01, +10490,B62,B038,Mutualists,B038-3,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_9.01, +10491,B63,B038,Mutualists,B038-3,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_9.01, +10492,B64,B038,Mutualists,B038-3,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_9.01, +10493,B65,B038,Mutualists,B038-3,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_9.01, +10494,B66,B038,Mutualists,B038-3,,kellyandpoyer1993,,,Binford_2001_Table_9.01, +10495,B67,B038,"Egalitarian, no leaders",B038-4,,clark1951,,1950,Binford_2001_Table_9.01, +10496,B68,B038,Agriculturalists,B038-2,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_9.01, +10497,B69,B038,"Egalitarian, no leaders",B038-4,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_9.01, +10498,B7,B038,Agriculturalists,B038-2,,fox1952;reed1904,,1903,Binford_2001_Table_9.01, +10499,B70,B038,Agriculturalists,B038-2,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_9.01, +10500,B71,B038,"Egalitarian, no leaders",B038-4,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_9.01, +10501,B72,B038,"Egalitarian, no leaders",B038-4,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_9.01, +10502,B73,B038,Agriculturalists,B038-2,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_9.01, +10503,B74,B038,"Egalitarian, no leaders",B038-4,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_9.01, +10504,B75,B038,"Egalitarian, no leaders",B038-4,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_9.01, +10505,B76,B038,"Egalitarian, no leaders",B038-4,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_9.01, +10506,B77,B038,"Egalitarian, no leaders",B038-4,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_9.01, +10507,B78,B038,"Egalitarian, no leaders",B038-4,,potgieter1955;toerien1958,,1950,Binford_2001_Table_9.01, +10508,B79,B038,"Egalitarian, no leaders",B038-4,,bleek1924a,,,Binford_2001_Table_9.01, +10509,B8,B038,"Egalitarian, no leaders",B038-4,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_9.01, +10510,B82,B038,Agriculturalists,B038-2,,moore1979,,1848,Binford_2001_Table_9.01, +10511,B83,B038,"Egalitarian, no leaders",B038-4,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_9.01, +10512,B84,B038,"Egalitarian, no leaders",B038-4,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_9.01, +10513,B85,B038,"Egalitarian, no leaders",B038-4,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_9.01, +10514,B86,B038,"Egalitarian, no leaders",B038-4,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_9.01, +10515,B87,B038,"Egalitarian, no leaders",B038-4,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_9.01, +10516,B88,B038,"Egalitarian, no leaders",B038-4,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_9.01, +10517,B89,B038,"Egalitarian, no leaders",B038-4,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_9.01, +10518,B9,B038,Mutualists,B038-3,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_9.01, +10519,B90,B038,"Egalitarian, no leaders",B038-4,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_9.01, +10520,B91,B038,"Egalitarian, no leaders",B038-4,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_9.01, +10521,B92,B038,"Egalitarian, no leaders",B038-4,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_9.01, +10522,B93,B038,"Egalitarian, no leaders",B038-4,,thomson1933;thomson1934,,1930,Binford_2001_Table_9.01, +10523,B94,B038,"Egalitarian, no leaders",B038-4,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_9.01, +10524,B95,B038,"Egalitarian, no leaders",B038-4,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_9.01, +10525,B96,B038,"Egalitarian, no leaders",B038-4,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_9.01, +10526,B97,B038,"Egalitarian, no leaders",B038-4,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_9.01, +10527,B98,B038,"Egalitarian, no leaders",B038-4,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_9.01, +10528,B99,B038,Ranked wealth,B038-6,,stanner1933,,1900,Binford_2001_Table_9.01, +10529,B1,B039,1498,,"Note, for this society, Binford provided two estimates, the first refers specifically to Gang Punan (1498) and the second to Busang Punan (1567); this entry is one of those estimates",urquhart1951[501],Gang Punan,1970,Binford_2001_Table_6.03, +10530,B1,B039,1567,,"Note, for this society, Binford provided two estimates, the first refers specifically to Gang Punan (1498) and the second to Busang Punan (1567); this entry is one of those estimates",oldrey1975[155],Busang Punan,1970,Binford_2001_Table_6.03, +10531,B10,B039,1533,,"Note, for this society, Binford provided two estimates (1533, 1435); this entry is one of those estimates",bailey1863[283];skeatandblagden1906[574],,1900,Binford_2001_Table_6.03, +10532,B10,B039,1435,,"Note, for this society, Binford provided two estimates (1533, 1435); this entry is one of those estimates",bailey1863[283];skeatandblagden1906[574],,1900,Binford_2001_Table_6.03, +10533,B100,B039,,,,,,,, +10534,B101,B039,,,,,,,, +10535,B102,B039,,,,,,,, +10536,B103,B039,,,,,,,, +10537,B104,B039,,,,,,,, +10538,B105,B039,1578,,,birdsell1967[112],,1900,Binford_2001_Table_6.03, +10539,B106,B039,,,,,,,, +10540,B107,B039,,,,,,,, +10541,B108,B039,,,,,,,, +10542,B109,B039,1698,,,abbie1957[236-38],,1965,Binford_2001_Table_6.03, +10543,B11,B039,,,,,,,, +10544,B110,B039,,,,,,,, +10545,B111,B039,,,,,,,, +10546,B112,B039,,,,,,,, +10547,B113,B039,1671,,,campbelletal1936[113],,1936,Binford_2001_Table_6.03, +10548,B114,B039,,,,,,,, +10549,B115,B039,,,,,,,, +10550,B116,B039,,,,,,,, +10551,B117,B039,1661,,,campbelletal1936[113],,1965,Binford_2001_Table_6.03, +10552,B118,B039,,,,,,,, +10553,B119,B039,,,,,,,, +10554,B12,B039,1520,,,headland1986[544],,1965,Binford_2001_Table_6.03, +10555,B120,B039,1687,,,campbelletal1936[113],,1968,Binford_2001_Table_6.03, +10556,B121,B039,,,,,,,, +10557,B122,B039,,,,,,,, +10558,B123,B039,,,,,,,, +10559,B124,B039,1663,,,roberts1953[556];spencerandgillen1899[appendix C],,1900,Binford_2001_Table_6.03, +10560,B125,B039,,,,,,,, +10561,B126,B039,,,,,,,, +10562,B127,B039,,,,,,,, +10563,B128,B039,,,,,,,, +10564,B129,B039,1680,,,cawthorne1844[50],,1840,Binford_2001_Table_6.03, +10565,B13,B039,1530,,,wastl1957[805],,1979,Binford_2001_Table_6.03, +10566,B130,B039,,,,,,,, +10567,B131,B039,,,,,,,, +10568,B132,B039,,,,,,,, +10569,B133,B039,,,,,,,, +10570,B134,B039,,,,,,,, +10571,B135,B039,,,,,,,, +10572,B136,B039,1618,,,roth1899[192],,1830,Binford_2001_Table_6.03, +10573,B137,B039,,,,,,,, +10574,B14,B039,1510,,,vanoverbergh1925[400],,1924,Binford_2001_Table_6.03, +10575,B143,B039,,,,,,,, +10576,B144,B039,1670,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +10577,B145,B039,1680,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +10578,B146,B039,,,,,,,, +10579,B147,B039,,,,,,,, +10580,B148,B039,1668,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10581,B149,B039,1710,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +10582,B15,B039,1630,,,furerhaimendorf1943b[17],,1940,Binford_2001_Table_6.03, +10583,B150,B039,1690,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10584,B151,B039,,,,,,,, +10585,B152,B039,,,,,,,, +10586,B153,B039,1650,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +10587,B154,B039,1640,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +10588,B155,B039,1690,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +10589,B156,B039,,,,,,,, +10590,B157,B039,,,,,,,, +10591,B158,B039,1690,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10592,B159,B039,,,,,,,, +10593,B16,B039,1580,,"Note, for this society, Binford provided three estimates (1580, 1529, 1546); this entry is one of those estimates",bernatzik1951[165],,1963,Binford_2001_Table_6.03, +10594,B16,B039,1529,,"Note, for this society, Binford provided three estimates (1580, 1529, 1546); this entry is one of those estimates",flatz1963[table 1],,1963,Binford_2001_Table_6.03, +10595,B16,B039,1546,,"Note, for this society, Binford provided three estimates (1580, 1529, 1546); this entry is one of those estimates",trier1981[292],,1963,Binford_2001_Table_6.03, +10596,B160,B039,,,,,,,, +10597,B161,B039,,,,,,,, +10598,B162,B039,,,,,,,, +10599,B163,B039,,,,,,,, +10600,B164,B039,1670,,,gifford1926b[232-33],,1805,Binford_2001_Table_6.03, +10601,B165,B039,,,,,,,, +10602,B166,B039,,,,,,,, +10603,B167,B039,,,,,,,, +10604,B168,B039,,,,,,,, +10605,B169,B039,,,,,,,, +10606,B17,B039,,,,,,,, +10607,B170,B039,,,,,,,, +10608,B171,B039,1570,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +10609,B172,B039,,,,,,,, +10610,B173,B039,1640,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10611,B174,B039,1690,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10612,B175,B039,1660,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +10613,B176,B039,,,,,,,, +10614,B177,B039,,,,,,,, +10615,B178,B039,,,,,,,, +10616,B179,B039,,,,,,,, +10617,B18,B039,,,,,,,, +10618,B180,B039,1660,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10619,B181,B039,,,,,,,, +10620,B182,B039,,,,,,,, +10621,B183,B039,1630,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10622,B184,B039,1650,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10623,B185,B039,1630,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +10624,B186,B039,1640,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +10625,B187,B039,1670,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10626,B188,B039,1620,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10627,B189,B039,1670,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10628,B19,B039,1580,,,ehrenfels1952[6],,1946,Binford_2001_Table_6.03, +10629,B190,B039,,,,,,,, +10630,B191,B039,,,,,,,, +10631,B192,B039,,,,,,,, +10632,B193,B039,,,,,,,, +10633,B194,B039,,,,,,,, +10634,B195,B039,,,,,,,, +10635,B196,B039,1740,,,corbusier1886[278-79],,1870,Binford_2001_Table_6.03, +10636,B197,B039,,,,,,,, +10637,B198,B039,1684,,,hrdlicka1909[413],,1870,Binford_2001_Table_6.03, +10638,B199,B039,,,,,,,, +10639,B2,B039,1531,,,eder1987[140],,1968,Binford_2001_Table_6.03, +10640,B20,B039,,,,,,,, +10641,B200,B039,,,,,,,, +10642,B201,B039,,,,,,,, +10643,B202,B039,1640,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +10644,B203,B039,,,,,,,, +10645,B204,B039,1667,,,hrdlicka1909[408],,1860,Binford_2001_Table_6.03, +10646,B205,B039,,,,,,,, +10647,B206,B039,,,,,,,, +10648,B207,B039,,,,,,,, +10649,B208,B039,1683,,,boas1899[753],,1860,Binford_2001_Table_6.03, +10650,B209,B039,1661,,,boas1899[753],,1860,Binford_2001_Table_6.03, +10651,B21,B039,,,,,,,, +10652,B210,B039,,,,,,,, +10653,B211,B039,,,,,,,, +10654,B212,B039,1669,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +10655,B213,B039,,,,,,,, +10656,B214,B039,,,,,,,, +10657,B215,B039,,,,,,,, +10658,B216,B039,1665,,,boas1899[753],,1860,Binford_2001_Table_6.03, +10659,B217,B039,,,,,,,, +10660,B218,B039,,,,,,,, +10661,B219,B039,1650,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +10662,B22,B039,1581,,,landor1893[299],,1900,Binford_2001_Table_6.03, +10663,B221,B039,,,,,,,, +10664,B222,B039,1668,,,hrdlicka1909[409],,1860,Binford_2001_Table_6.03, +10665,B223,B039,,,,,,,, +10666,B224,B039,,,,,,,, +10667,B225,B039,1730,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +10668,B226,B039,,,,,,,, +10669,B227,B039,,,,,,,, +10670,B228,B039,,,,,,,, +10671,B229,B039,,,,,,,, +10672,B23,B039,,,,,,,, +10673,B230,B039,1641,,"Note, this is a joint estimate for males and females",boas1899[753],,1860,Binford_2001_Table_6.03, +10674,B231,B039,,,,,,,, +10675,B232,B039,1665,,"Note, this is a joint estimate for males and females",boas1899[753],,1860,Binford_2001_Table_6.03, +10676,B233,B039,,,,,,,, +10677,B234,B039,1628,,"Note, this is a joint estimate for males and females",boas1899[753],,1860,Binford_2001_Table_6.03, +10678,B24,B039,1587,,,shimkin1939[149],,1900,Binford_2001_Table_6.03, +10679,B240,B039,1691,,,hrdlicka1909[412],,1880,Binford_2001_Table_6.03, +10680,B241,B039,1678,,,goldstein1934[299],,1870,Binford_2001_Table_6.03, +10681,B242,B039,,,,,,,, +10682,B243,B039,,,,,,,, +10683,B244,B039,,,,,,,, +10684,B245,B039,,,,,,,, +10685,B246,B039,,,,,,,, +10686,B248,B039,,,,,,,, +10687,B249,B039,1724,,,sullivan1920[169],,1870,Binford_2001_Table_6.03, +10688,B25,B039,,,,,,,, +10689,B250,B039,1690,,,chamberlain1892[564-82],,1880,Binford_2001_Table_6.03, +10690,B252,B039,1685,,,boas1899[753],,1860,Binford_2001_Table_6.03, +10691,B253,B039,,,,,,,, +10692,B254,B039,,,,,,,, +10693,B255,B039,,,,,,,, +10694,B256,B039,,,,,,,, +10695,B257,B039,,,,,,,, +10696,B258,B039,,,,,,,, +10697,B259,B039,,,,,,,, +10698,B26,B039,1560,,,jochelson191926[20],,1900,Binford_2001_Table_6.03, +10699,B260,B039,,,,,,,, +10700,B268,B039,,,,,,,, +10701,B269,B039,1652,,,boas1891a[433],,1860,Binford_2001_Table_6.03, +10702,B27,B039,,,,,,,, +10703,B270,B039,,,,,,,, +10704,B271,B039,1651,,,eells1887a[273],,1850,Binford_2001_Table_6.03, +10705,B272,B039,,,,,,,, +10706,B273,B039,1616,,,cybulski1990b[54],,1880,Binford_2001_Table_6.03, +10707,B274,B039,,,,,,,, +10708,B275,B039,,,,,,,, +10709,B276,B039,1633,,,boasandfarrand1899[630],,1860,Binford_2001_Table_6.03, +10710,B277,B039,,,,,,,, +10711,B278,B039,,,,,,,, +10712,B279,B039,1639,,,cybulski1990b[54],,1880,Binford_2001_Table_6.03, +10713,B28,B039,1628,,,szathmary1984[65],,1860,Binford_2001_Table_6.03, +10714,B280,B039,1610,,,wilson1866[278],,1880,Binford_2001_Table_6.03, +10715,B281,B039,,,,,,,, +10716,B282,B039,,,,,,,, +10717,B283,B039,1637,,,cybulski1990b[54],,1880,Binford_2001_Table_6.03, +10718,B284,B039,,,,,,,, +10719,B285,B039,,,,,,,, +10720,B286,B039,,,,,,,, +10721,B287,B039,,,,,,,, +10722,B288,B039,1633,,,boasandfarrand1899[630];cybulski1990b[54],,1890,Binford_2001_Table_6.03, +10723,B289,B039,1656,,,boasandfarrand1899[630],,1880,Binford_2001_Table_6.03, +10724,B290,B039,1625,,,cybulski1990b[54],,1890,Binford_2001_Table_6.03, +10725,B291,B039,1661,,,boasandfarrand1899[630];cybulski1990b[54],,1880,Binford_2001_Table_6.03, +10726,B292,B039,,,,,,,, +10727,B293,B039,1659,,,boasandfarrand1899[630];cybulski1990b[54],,1880,Binford_2001_Table_6.03, +10728,B294,B039,,,,,,,, +10729,B295,B039,,,,,,,, +10730,B296,B039,1660,,,hrdlicka1930[251],,1850,Binford_2001_Table_6.03, +10731,B297,B039,,,,,,,, +10732,B298,B039,1612,,,newman1960[289],,1830,Binford_2001_Table_6.03, +10733,B299,B039,1618,,,hrdlicka1930[251],,1930,Binford_2001_Table_6.03, +10734,B3,B039,1578,,,volz1909[92],,1900,Binford_2001_Table_6.03, +10735,B315,B039,,,,,,,, +10736,B316,B039,,,,,,,, +10737,B317,B039,,,,,,,, +10738,B318,B039,,,,,,,, +10739,B319,B039,,,,,,,, +10740,B320,B039,,,,,,,, +10741,B321,B039,,,,,,,, +10742,B322,B039,,,,,,,, +10743,B323,B039,,,,,,,, +10744,B324,B039,,,,,,,, +10745,B325,B039,1659,,,boasandfarrand1899[630],,1860,Binford_2001_Table_6.03, +10746,B326,B039,,,,,,,, +10747,B327,B039,,,,,,,, +10748,B328,B039,,,,,,,, +10749,B329,B039,1747,,,boas1895a[574],,1700,Binford_2001_Table_6.03, +10750,B330,B039,,,,,,,, +10751,B331,B039,,,,,,,, +10752,B332,B039,1719,,,grant1924[302],,1870,Binford_2001_Table_6.03, +10753,B333,B039,1705,,,chamberlain1892[615],,1850,Binford_2001_Table_6.03, +10754,B334,B039,1680,,,grant1924[302],,1940,Binford_2001_Table_6.03, +10755,B335,B039,1709,,,grant1924[302],,1900,Binford_2001_Table_6.03, +10756,B336,B039,,,,,,,, +10757,B337,B039,,,,,,,, +10758,B338,B039,1676,,,rogers1972[92],,1880,Binford_2001_Table_6.03, +10759,B339,B039,,,,,,,, +10760,B340,B039,,,,,,,, +10761,B341,B039,1712,,,boas1895a[574],,1890,Binford_2001_Table_6.03, +10762,B342,B039,,,,,,,, +10763,B343,B039,1693,,"Note, for this society, Binford provided two estimates (1693, 1683); this entry is one of those estimates",jenness1937[27],,1880,Binford_2001_Table_6.03, +10764,B343,B039,1683,,"Note, for this society, Binford provided two estimates (1693, 1683); this entry is one of those estimates",grant1936[18],,1880,Binford_2001_Table_6.03, +10765,B344,B039,1683,,,grant1936[13-15],,1850,Binford_2001_Table_6.03, +10766,B345,B039,,,,,,,, +10767,B346,B039,,,,,,,, +10768,B347,B039,1704,,,boas1901[61-63],,1870,Binford_2001_Table_6.03, +10769,B348,B039,1651,,,boasandfarrand1899[630],,1880,Binford_2001_Table_6.03, +10770,B349,B039,1679,,,grant1936[18],,1880,Binford_2001_Table_6.03, +10771,B35,B039,,,,,,,, +10772,B350,B039,,,,,,,, +10773,B351,B039,,,,,,,, +10774,B352,B039,,,,,,,, +10775,B353,B039,1680,,,mason1967[5],,1900,Binford_2001_Table_6.03, +10776,B354,B039,,,,,,,, +10777,B355,B039,1647,,,grant1936[13-15],,1880,Binford_2001_Table_6.03, +10778,B356,B039,1646,,,boas1901[64-65];mckennan1964[47],,1880,Binford_2001_Table_6.03, +10779,B357,B039,,,,,,,, +10780,B358,B039,,,,,,,, +10781,B359,B039,1699,,,mckennan1964[46],,1930,Binford_2001_Table_6.03, +10782,B36,B039,,,,,,,, +10783,B360,B039,,,,,,,, +10784,B361,B039,1654,,,szathmary1984[65],,1860,Binford_2001_Table_6.03, +10785,B362,B039,,,,,,,, +10786,B363,B039,,,,,,,, +10787,B364,B039,,,,,,,, +10788,B365,B039,1662,,,hallowell1929[341],,1890,Binford_2001_Table_6.03, +10789,B369,B039,1654,,,seltzer1933[341],,1870,Binford_2001_Table_6.03, +10790,B37,B039,,,,,,,, +10791,B370,B039,,,,,,,, +10792,B371,B039,1675,,,rodahlandedwards1952[243],,1880,Binford_2001_Table_6.03, +10793,B372,B039,1583,,,seltzer1933[341],,1890,Binford_2001_Table_6.03, +10794,B373,B039,,,,,,,, +10795,B374,B039,,,,,,,, +10796,B375,B039,1685,,,boas1901[64-65],,1900,Binford_2001_Table_6.03, +10797,B377,B039,1649,,,"jamison1978[56, 58]",,1950,Binford_2001_Table_6.03, +10798,B378,B039,1683,,,seltzer1933[341],,1910,Binford_2001_Table_6.03, +10799,B379,B039,1661,,"Note, for this society, Binford provided two estimates (1661, 1633); this entry is one of those estimates",rodahlandedwards1952[243],,1920,Binford_2001_Table_6.03, +10800,B379,B039,1633,,"Note, for this society, Binford provided two estimates (1661, 1633); this entry is one of those estimates",hrdlicka1930[251],,1920,Binford_2001_Table_6.03, +10801,B38,B039,1599,,,petrullo1939[177],,1989,Binford_2001_Table_6.03, +10802,B380,B039,1665,,,jenness1922[b49];seltzer1933[341],,1880,Binford_2001_Table_6.03, +10803,B381,B039,1648,,,jenness1922[b49],,1920,Binford_2001_Table_6.03, +10804,B382,B039,,,,,,,, +10805,B383,B039,1622,,,hrdlicka1930[230],,1880,Binford_2001_Table_6.03, +10806,B383,B039,1580,,"Note, this is a joint estimate for males and females",oetteking1931[423],,1880,Binford_2001_Table_6.03, +10807,B384,B039,1626,,"Note, for this society, Binford provided two estimates (1626, 1660); this entry is one of those estimates",szathmary1984,,1920,Binford_2001_Table_6.03, +10808,B384,B039,1660,,"Note, for this society, Binford provided two estimates (1626, 1660); this entry is one of those estimates",hallowell1929[353],,1920,Binford_2001_Table_6.03, +10809,B385,B039,1620,,,hansen1914,,1880,Binford_2001_Table_6.03, +10810,B386,B039,1602,,,roberts1953[557],,1880,Binford_2001_Table_6.03, +10811,B386,B039,1551,,"Note, this is a joint estimate for males and females",oetteking1931[423],,1880,Binford_2001_Table_6.03, +10812,B387,B039,,,,,,,, +10813,B388,B039,1635,,,"hansen1914;poulsen1909[135, 144-46]",,1880,Binford_2001_Table_6.03, +10814,B389,B039,1665,,"Note, for this society, Binford provided two estimates (1665, 1615); this entry is one of those estimates",roberts1953[556],Barrow Tareumiut,1880,Binford_2001_Table_6.03, +10815,B389,B039,1615,,"Note, for this society, Binford provided two estimates (1665, 1615); this entry is one of those estimates",seltzer1933[341],Barrow Tareumiut,1880,Binford_2001_Table_6.03, +10816,B39,B039,1540,,,hurtadoandhill1990[329],,1960,Binford_2001_Table_6.03, +10817,B390,B039,1574,,,roberts1953[557];steensby1910[389],,1880,Binford_2001_Table_6.03, +10818,B4,B039,1597,,"Note, for this society, Binford provided two estimates (1597, 1591); this entry is one of those estimates",agrawal1967[84-87];rizvi1990[35],,1989,Binford_2001_Table_6.03, +10819,B4,B039,1591,,"Note, for this society, Binford provided two estimates (1597, 1591); this entry is one of those estimates",agrawal1967[84-87];rizvi1990[35],,1989,Binford_2001_Table_6.03, +10820,B40,B039,,,,,,,, +10821,B41,B039,1680,,,newman1953[321],,1920,Binford_2001_Table_6.03, +10822,B42,B039,,,,,,,, +10823,B43,B039,1625,,,holmberg1950[8],,1940,Binford_2001_Table_6.03, +10824,B44,B039,,,,,,,, +10825,B45,B039,1620,,,newman1953[321],,1938,Binford_2001_Table_6.03, +10826,B46,B039,,,,,,,, +10827,B47,B039,1610,,,"hilletal1984[table 4, 132]",,1975,Binford_2001_Table_6.03, +10828,B48,B039,1585,,,ehrenreich1887[16-17],,1880,Binford_2001_Table_6.03, +10829,B49,B039,1652,,,kozaketal1979[374],,1954,Binford_2001_Table_6.03, +10830,B5,B039,1490,,"Note, for this society, Binford provided two estimates (1490, 1492); this entry is one of those estimates",man1883[73];temple1903[54],,1952,Binford_2001_Table_6.03, +10831,B5,B039,1492,,"Note, for this society, Binford provided two estimates (1490, 1492); this entry is one of those estimates",man1883[73];temple1903[54],,1952,Binford_2001_Table_6.03, +10832,B50,B039,,,,,,,, +10833,B51,B039,1750,,,lothrop1928[45],,1870,Binford_2001_Table_6.03, +10834,B52,B039,,,,,,,, +10835,B53,B039,1574,,,lothrop1928[39],,1900,Binford_2001_Table_6.03, +10836,B54,B039,1754,,,lothrop1928[41],,1880,Binford_2001_Table_6.03, +10837,B55,B039,1581,,,lothrop1928[41],,1870,Binford_2001_Table_6.03, +10838,B6,B039,,,,,,,, +10839,B60,B039,1486,,"Note, this is a joint estimate for males and females",cavallisforza1986a[83],,1980,Binford_2001_Table_6.03, +10840,B61,B039,1530,,,heymer1980[178];hiernauxetal1975[7],,1976,Binford_2001_Table_6.03, +10841,B62,B039,1452,,,skeatandblagden1906[573],,1977,Binford_2001_Table_6.03, +10842,B63,B039,1526,,,hiernauxetal1975[7];valloisandmarquer1976,,1980,Binford_2001_Table_6.03, +10843,B64,B039,1453,,,baileyandpeacock1988[107],,1980,Binford_2001_Table_6.03, +10844,B65,B039,1440,,,cavallisforza1986c[392];hiernauxetal1975[7];roberts1953[557],,1930,Binford_2001_Table_6.03, +10845,B66,B039,,,,,,,, +10846,B67,B039,1574,,,clark1951[60],,1950,Binford_2001_Table_6.03, +10847,B68,B039,1553,,"Note, for this society, Binford provided two estimates (1553, 1539); this entry is one of those estimates",werner1906a[241],,1920,Binford_2001_Table_6.03, +10848,B68,B039,1539,,"Note, for this society, Binford provided two estimates (1553, 1539); this entry is one of those estimates",tobias1962[802-3],,1920,Binford_2001_Table_6.03, +10849,B69,B039,,,,,,,, +10850,B7,B039,1464,,,reed1904[75-77],,1903,Binford_2001_Table_6.03, +10851,B70,B039,1694,,,wayland1931[217],,1920,Binford_2001_Table_6.03, +10852,B71,B039,1605,,"Note, for this society, Binford provided two estimates (1605, 1593); this entry is one of those estimates",bleek1929[106],,1928,Binford_2001_Table_6.03, +10853,B71,B039,1593,,"Note, for this society, Binford provided two estimates (1605, 1593); this entry is one of those estimates",decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_6.03, +10854,B72,B039,1584,,"Note, for this society, Binford provided three estimates (1584, 1515, 1584), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",bleek1929[106];howell1979[258-59],,1950,Binford_2001_Table_6.03, +10855,B72,B039,1515,,"Note, for this society, Binford provided three estimates (1584, 1515, 1584), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",kaufmann1910[135],Auen !Kung,1950,Binford_2001_Table_6.03, +10856,B72,B039,1584,,"Note, for this society, Binford provided three estimates (1584, 1515, 1584), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",tobias1962[802-3],Auen !Kung,1950,Binford_2001_Table_6.03, +10857,B73,B039,1570,,"Note, for this society, Binford provided two estimates (1570, 1593); this entry is one of those estimates",tobias1962[802-3],,1910,Binford_2001_Table_6.03, +10858,B73,B039,1593,,"Note, for this society, Binford provided two estimates (1570, 1593); this entry is one of those estimates",tobias1962[802-3],,1910,Binford_2001_Table_6.03, +10859,B74,B039,1578,,,tobias1962[802-3],,1962,Binford_2001_Table_6.03, +10860,B75,B039,1610,,,tobias1962[802-3];wyndhamandmorrison1958[221],,1976,Binford_2001_Table_6.03, +10861,B76,B039,,,,,,,, +10862,B77,B039,1558,,,dart1937b[184],,1920,Binford_2001_Table_6.03, +10863,B78,B039,1489,,,toerien1958[122-23],,1950,Binford_2001_Table_6.03, +10864,B79,B039,,,,,,,, +10865,B8,B039,,,,,,,, +10866,B82,B039,,,,,,,, +10867,B83,B039,1696,,,howells1937[16],,1900,Binford_2001_Table_6.03, +10868,B84,B039,,,,,,,, +10869,B85,B039,1706,,,macintosh1952[213],,1970,Binford_2001_Table_6.03, +10870,B86,B039,,,,,,,, +10871,B87,B039,,,,,,,, +10872,B88,B039,1665,,,howells1937[16];peterson1976[269],,1930,Binford_2001_Table_6.03, +10873,B89,B039,,,,,,,, +10874,B9,B039,1491,,,skeatandblagden1906[575],,1920,Binford_2001_Table_6.03, +10875,B90,B039,,,,,,,, +10876,B91,B039,,,,,,,, +10877,B92,B039,1669,,,howells1937[16],,1960,Binford_2001_Table_6.03, +10878,B93,B039,,,,,,,, +10879,B94,B039,,,,,,,, +10880,B95,B039,1668,,,howells1937[16],,1920,Binford_2001_Table_6.03, +10881,B96,B039,,,,,,,, +10882,B97,B039,,,,,,,, +10883,B98,B039,1650,,,haleandtindale1933[71],,1926,Binford_2001_Table_6.03, +10884,B99,B039,1708,,,stanner1933[386],,1900,Binford_2001_Table_6.03, +10885,B1,B004,Gathering,B004-2,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_5.01, +10886,B10,B004,Gathering,B004-2,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_5.01, +10887,B100,B004,Gathering,B004-2,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_5.01, +10888,B101,B004,Gathering,B004-2,,kaberry1939,,1934,Binford_2001_Table_5.01, +10889,B102,B004,Fishing (aquatic),B004-3,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_5.01, +10890,B103,B004,Fishing (aquatic),B004-3,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_5.01, +10891,B104,B004,Gathering,B004-2,,,,,Binford_2001_Table_5.01, +10892,B105,B004,Gathering,B004-2,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_5.01, +10893,B106,B004,Gathering,B004-2,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_5.01, +10894,B107,B004,Hunting,B004-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_5.01, +10895,B108,B004,Gathering,B004-2,,kaberry1939;nind1831,,1934,Binford_2001_Table_5.01, +10896,B109,B004,Gathering,B004-2,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_5.01, +10897,B11,B004,Gathering,B004-2,,morris1982a,,1972,Binford_2001_Table_5.01, +10898,B110,B004,Gathering,B004-2,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_5.01, +10899,B111,B004,Gathering,B004-2,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01, +10900,B112,B004,Gathering,B004-2,,petersonandlong1986,,1968,Binford_2001_Table_5.01, +10901,B113,B004,Gathering,B004-2,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_5.01, +10902,B114,B004,Fishing (aquatic),B004-3,,colliverandwoolston1975,,1848,Binford_2001_Table_5.01, +10903,B115,B004,Gathering,B004-2,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_5.01, +10904,B116,B004,Gathering,B004-2,,duncankemp1964,,1900,Binford_2001_Table_5.01, +10905,B117,B004,Gathering,B004-2,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_5.01, +10906,B118,B004,Gathering,B004-2,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_5.01, +10907,B119,B004,Fishing (aquatic),B004-3,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_5.01, +10908,B12,B004,Gathering,B004-2,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_5.01, +10909,B120,B004,Gathering,B004-2,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_5.01, +10910,B121,B004,Gathering,B004-2,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_5.01, +10911,B122,B004,Gathering,B004-2,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +10912,B123,B004,Gathering,B004-2,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_5.01, +10913,B124,B004,Gathering,B004-2,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_5.01, +10914,B125,B004,Gathering,B004-2,,parker1905,,1880,Binford_2001_Table_5.01, +10915,B126,B004,Gathering,B004-2,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_5.01, +10916,B127,B004,Gathering,B004-2,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +10917,B128,B004,Gathering,B004-2,,,,1890,Binford_2001_Table_5.01, +10918,B129,B004,Gathering,B004-2,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +10919,B13,B004,Fishing (aquatic),B004-3,,rai1982;wastl1957,,1979,Binford_2001_Table_5.01, +10920,B130,B004,Gathering,B004-2,,,,1910,Binford_2001_Table_5.01, +10921,B131,B004,Gathering,B004-2,,,,1850,Binford_2001_Table_5.01, +10922,B132,B004,Gathering,B004-2,,nind1831,,1850,Binford_2001_Table_5.01, +10923,B133,B004,Fishing (aquatic),B004-3,,williams1985,,1850,Binford_2001_Table_5.01, +10924,B134,B004,Fishing (aquatic),B004-3,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_5.01, +10925,B135,B004,Gathering,B004-2,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_5.01, +10926,B136,B004,Fishing (aquatic),B004-3,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_5.01, +10927,B137,B004,Fishing (aquatic),B004-3,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_5.01, +10928,B14,B004,Gathering,B004-2,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_5.01, +10929,B143,B004,Fishing (aquatic),B004-3,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_5.01, +10930,B144,B004,Gathering,B004-2,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_5.01, +10931,B145,B004,Gathering,B004-2,,gifford1926b;strong1929a,,1870,Binford_2001_Table_5.01, +10932,B146,B004,Gathering,B004-2,,meigs1939,,1880,Binford_2001_Table_5.01, +10933,B147,B004,Gathering,B004-2,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_5.01, +10934,B148,B004,Gathering,B004-2,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_5.01, +10935,B149,B004,Gathering,B004-2,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_5.01, +10936,B15,B004,Gathering,B004-2,,furerhaimendorf1943b,,1940,Binford_2001_Table_5.01, +10937,B150,B004,Gathering,B004-2,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_5.01, +10938,B151,B004,Gathering,B004-2,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_5.01, +10939,B152,B004,Gathering,B004-2,,voegelin1938,,1850,Binford_2001_Table_5.01, +10940,B153,B004,Gathering,B004-2,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_5.01, +10941,B154,B004,Gathering,B004-2,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_5.01, +10942,B155,B004,Gathering,B004-2,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_5.01, +10943,B156,B004,Fishing (aquatic),B004-3,,,,1770,Binford_2001_Table_5.01, +10944,B157,B004,Gathering,B004-2,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_5.01, +10945,B158,B004,Gathering,B004-2,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +10946,B159,B004,Gathering,B004-2,,cook1956;gifford1926a,,1860,Binford_2001_Table_5.01, +10947,B16,B004,Gathering,B004-2,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_5.01, +10948,B160,B004,Fishing (aquatic),B004-3,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_5.01, +10949,B161,B004,Fishing (aquatic),B004-3,,cookandheizer1965,,1860,Binford_2001_Table_5.01, +10950,B162,B004,Fishing (aquatic),B004-3,,dixon1910,,1860,Binford_2001_Table_5.01, +10951,B163,B004,Gathering,B004-2,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_5.01, +10952,B164,B004,Gathering,B004-2,,gifford1926b,,1805,Binford_2001_Table_5.01, +10953,B165,B004,Gathering,B004-2,,barrett1908;cook1956,,1860,Binford_2001_Table_5.01, +10954,B166,B004,Fishing (aquatic),B004-3,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_5.01, +10955,B167,B004,Gathering,B004-2,,,,,Binford_2001_Table_5.01, +10956,B168,B004,Fishing (aquatic),B004-3,,collierandthalman1991,,1850,Binford_2001_Table_5.01, +10957,B169,B004,Fishing (aquatic),B004-3,,cook1956;nomland1938,,,Binford_2001_Table_5.01, +10958,B17,B004,Gathering,B004-2,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_5.01, +10959,B170,B004,Gathering,B004-2,,cook1955,,,Binford_2001_Table_5.01, +10960,B171,B004,Gathering,B004-2,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_5.01, +10961,B172,B004,Gathering,B004-2,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_5.01, +10962,B173,B004,Gathering,B004-2,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +10963,B174,B004,Gathering,B004-2,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +10964,B175,B004,Gathering,B004-2,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_5.01, +10965,B176,B004,Fishing (aquatic),B004-3,,gray1987,,1860,Binford_2001_Table_5.01, +10966,B177,B004,Fishing (aquatic),B004-3,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +10967,B178,B004,Fishing (aquatic),B004-3,,cook1956;drucker1940,,1870,Binford_2001_Table_5.01, +10968,B179,B004,Gathering,B004-2,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_5.01, +10969,B18,B004,Gathering,B004-2,,senandsen1955;williams1974,,1963,Binford_2001_Table_5.01, +10970,B180,B004,Fishing (aquatic),B004-3,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_5.01, +10971,B181,B004,Fishing (aquatic),B004-3,,gray1987,,1870,Binford_2001_Table_5.01, +10972,B182,B004,Fishing (aquatic),B004-3,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_5.01, +10973,B183,B004,Hunting,B004-1,,gifford1926b,,1860,Binford_2001_Table_5.01, +10974,B184,B004,Fishing (aquatic),B004-3,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_5.01, +10975,B185,B004,Gathering,B004-2,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_5.01, +10976,B186,B004,Fishing (aquatic),B004-3,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_5.01, +10977,B187,B004,Hunting,B004-1,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_5.01, +10978,B188,B004,Gathering,B004-2,,gifford1926b;ray1963,,1860,Binford_2001_Table_5.01, +10979,B189,B004,Fishing (aquatic),B004-3,,gifford1926b;spier1930,,1860,Binford_2001_Table_5.01, +10980,B19,B004,Gathering,B004-2,,ehrenfels1952,,1946,Binford_2001_Table_5.01, +10981,B190,B004,Gathering,B004-2,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_5.01, +10982,B191,B004,Gathering,B004-2,,,,1570,Binford_2001_Table_5.01, +10983,B192,B004,Gathering,B004-2,,smith1978a;steward1938,,1860,Binford_2001_Table_5.01, +10984,B193,B004,Fishing (aquatic),B004-3,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_5.01, +10985,B194,B004,Gathering,B004-2,,,,1715,Binford_2001_Table_5.01, +10986,B195,B004,Gathering,B004-2,,steward1938,,1850,Binford_2001_Table_5.01, +10987,B196,B004,Gathering,B004-2,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_5.01, +10988,B197,B004,Gathering,B004-2,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +10989,B198,B004,Gathering,B004-2,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_5.01, +10990,B199,B004,Gathering,B004-2,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_5.01, +10991,B2,B004,Gathering,B004-2,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_5.01, +10992,B20,B004,Gathering,B004-2,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_5.01, +10993,B200,B004,Gathering,B004-2,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +10994,B201,B004,Gathering,B004-2,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +10995,B202,B004,Gathering,B004-2,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_5.01, +10996,B203,B004,Gathering,B004-2,,steward1938;thomas1983,,1860,Binford_2001_Table_5.01, +10997,B204,B004,Gathering,B004-2,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_5.01, +10998,B205,B004,Gathering,B004-2,,davis1965,,1870,Binford_2001_Table_5.01, +10999,B206,B004,Gathering,B004-2,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_5.01, +11000,B207,B004,Hunting,B004-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +11001,B208,B004,Gathering,B004-2,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_5.01, +11002,B209,B004,Gathering,B004-2,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_5.01, +11003,B21,B004,Gathering,B004-2,,bird1983;birddavid1987,,1978,Binford_2001_Table_5.01, +11004,B210,B004,Gathering,B004-2,,fowler1992,,1870,Binford_2001_Table_5.01, +11005,B211,B004,Gathering,B004-2,,steward1938,,1860,Binford_2001_Table_5.01, +11006,B212,B004,Hunting,B004-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +11007,B213,B004,Gathering,B004-2,,steward1938,,1870,Binford_2001_Table_5.01, +11008,B214,B004,Gathering,B004-2,,steward1938,,1860,Binford_2001_Table_5.01, +11009,B215,B004,Hunting,B004-1,,steward1938,,1870,Binford_2001_Table_5.01, +11010,B216,B004,Hunting,B004-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_5.01, +11011,B217,B004,Gathering,B004-2,,steward1938,,1860,Binford_2001_Table_5.01, +11012,B218,B004,Gathering,B004-2,,steward1938,,1860,Binford_2001_Table_5.01, +11013,B219,B004,Hunting,B004-1,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_5.01, +11014,B22,B004,Fishing (aquatic),B004-3,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_5.01, +11015,B221,B004,Hunting,B004-1,,steward1938,,1860,Binford_2001_Table_5.01, +11016,B222,B004,Hunting,B004-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_5.01, +11017,B223,B004,Hunting,B004-1,,lowie1924,,1870,Binford_2001_Table_5.01, +11018,B224,B004,Gathering,B004-2,,steward1938,,1860,Binford_2001_Table_5.01, +11019,B225,B004,Gathering,B004-2,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_5.01, +11020,B226,B004,Gathering,B004-2,,brink1969;kelly1932,,1870,Binford_2001_Table_5.01, +11021,B227,B004,Hunting,B004-1,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_5.01, +11022,B228,B004,Gathering,B004-2,,steward1938,,1860,Binford_2001_Table_5.01, +11023,B229,B004,Hunting,B004-1,,steward1938,,1860,Binford_2001_Table_5.01, +11024,B23,B004,Hunting,B004-1,,qiu1983,,1900,Binford_2001_Table_5.01, +11025,B230,B004,Gathering,B004-2,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_5.01, +11026,B231,B004,Gathering,B004-2,,whiting1950,,1870,Binford_2001_Table_5.01, +11027,B232,B004,Hunting,B004-1,,boas1899;steward1938,,1860,Binford_2001_Table_5.01, +11028,B233,B004,Hunting,B004-1,,steward1938,,1860,Binford_2001_Table_5.01, +11029,B234,B004,Hunting,B004-1,,boas1899;steward1974b,,1860,Binford_2001_Table_5.01, +11030,B24,B004,Fishing (aquatic),B004-3,,lee1967;shimkin1939,,1900,Binford_2001_Table_5.01, +11031,B240,B004,Gathering,B004-2,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_5.01, +11032,B241,B004,Hunting,B004-1,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_5.01, +11033,B242,B004,Gathering,B004-2,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_5.01, +11034,B243,B004,Hunting,B004-1,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_5.01, +11035,B244,B004,Hunting,B004-1,,bamforth1988;ewers1955,,1860,Binford_2001_Table_5.01, +11036,B245,B004,Hunting,B004-1,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_5.01, +11037,B246,B004,Hunting,B004-1,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_5.01, +11038,B248,B004,Hunting,B004-1,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_5.01, +11039,B249,B004,Hunting,B004-1,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_5.01, +11040,B25,B004,Fishing (aquatic),B004-3,,shternberg1933,,1920,Binford_2001_Table_5.01, +11041,B250,B004,Hunting,B004-1,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_5.01, +11042,B252,B004,Hunting,B004-1,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +11043,B253,B004,Hunting,B004-1,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_5.01, +11044,B254,B004,Hunting,B004-1,,skinner1914,,1850,Binford_2001_Table_5.01, +11045,B255,B004,Hunting,B004-1,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_5.01, +11046,B256,B004,Hunting,B004-1,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_5.01, +11047,B257,B004,Hunting,B004-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +11048,B258,B004,Hunting,B004-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_5.01, +11049,B259,B004,Hunting,B004-1,,bamforth1988;ewers1955,,1850,Binford_2001_Table_5.01, +11050,B26,B004,Hunting,B004-1,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_5.01, +11051,B260,B004,Hunting,B004-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_5.01, +11052,B268,B004,Fishing (aquatic),B004-3,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_5.01, +11053,B269,B004,Fishing (aquatic),B004-3,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +11054,B27,B004,Hunting,B004-1,,chard1963;popov1966,,1933,Binford_2001_Table_5.01, +11055,B270,B004,Fishing (aquatic),B004-3,,smith1940a;smith1940b,,1870,Binford_2001_Table_5.01, +11056,B271,B004,Fishing (aquatic),B004-3,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_5.01, +11057,B272,B004,Fishing (aquatic),B004-3,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_5.01, +11058,B273,B004,Fishing (aquatic),B004-3,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_5.01, +11059,B274,B004,Fishing (aquatic),B004-3,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_5.01, +11060,B275,B004,Fishing (aquatic),B004-3,,boyd1990;zenk1990,,1860,Binford_2001_Table_5.01, +11061,B276,B004,Fishing (aquatic),B004-3,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_5.01, +11062,B277,B004,Fishing (aquatic),B004-3,,stern1934,,1880,Binford_2001_Table_5.01, +11063,B278,B004,Fishing (aquatic),B004-3,,olson1936a;schalk1978,,1860,Binford_2001_Table_5.01, +11064,B279,B004,Fishing (aquatic),B004-3,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_5.01, +11065,B28,B004,Fishing (aquatic),B004-3,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_5.01, +11066,B280,B004,Fishing (aquatic),B004-3,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_5.01, +11067,B281,B004,Fishing (aquatic),B004-3,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_5.01, +11068,B282,B004,Fishing (aquatic),B004-3,,kennedyandbouchard1990,,1860,Binford_2001_Table_5.01, +11069,B283,B004,Fishing (aquatic),B004-3,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_5.01, +11070,B284,B004,Fishing (aquatic),B004-3,,pettitt1950,,1880,Binford_2001_Table_5.01, +11071,B285,B004,Fishing (aquatic),B004-3,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_5.01, +11072,B286,B004,Fishing (aquatic),B004-3,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_5.01, +11073,B287,B004,Fishing (aquatic),B004-3,,olson1940;schalk1978,,1880,Binford_2001_Table_5.01, +11074,B288,B004,Fishing (aquatic),B004-3,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +11075,B289,B004,Fishing (aquatic),B004-3,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_5.01, +11076,B290,B004,Fishing (aquatic),B004-3,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +11077,B291,B004,Fishing (aquatic),B004-3,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_5.01, +11078,B292,B004,Fishing (aquatic),B004-3,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_5.01, +11079,B293,B004,Fishing (aquatic),B004-3,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_5.01, +11080,B294,B004,Fishing (aquatic),B004-3,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_5.01, +11081,B295,B004,Fishing (aquatic),B004-3,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_5.01, +11082,B296,B004,Fishing (aquatic),B004-3,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_5.01, +11083,B297,B004,Fishing (aquatic),B004-3,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_5.01, +11084,B298,B004,Fishing (aquatic),B004-3,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_5.01, +11085,B299,B004,Fishing (aquatic),B004-3,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_5.01, +11086,B3,B004,Gathering,B004-2,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_5.01, +11087,B315,B004,Fishing (aquatic),B004-3,,murdock1980,,1850,Binford_2001_Table_5.01, +11088,B316,B004,Fishing (aquatic),B004-3,,,,1860,Binford_2001_Table_5.01, +11089,B317,B004,Fishing (aquatic),B004-3,,teit1928,,1870,Binford_2001_Table_5.01, +11090,B318,B004,Fishing (aquatic),B004-3,,,,1880,Binford_2001_Table_5.01, +11091,B319,B004,Fishing (aquatic),B004-3,,spierandsapir1930,,1860,Binford_2001_Table_5.01, +11092,B320,B004,Hunting,B004-1,,teit1930,,1860,Binford_2001_Table_5.01, +11093,B321,B004,Fishing (aquatic),B004-3,,clineetal1938,,1880,Binford_2001_Table_5.01, +11094,B322,B004,Fishing (aquatic),B004-3,,grabert1974;teit1930,,1860,Binford_2001_Table_5.01, +11095,B323,B004,Fishing (aquatic),B004-3,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_5.01, +11096,B324,B004,Fishing (aquatic),B004-3,,spinden1908,,1850,Binford_2001_Table_5.01, +11097,B325,B004,Fishing (aquatic),B004-3,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_5.01, +11098,B326,B004,Fishing (aquatic),B004-3,,teit1930,,1870,Binford_2001_Table_5.01, +11099,B327,B004,Fishing (aquatic),B004-3,,jenness1935;quimby1962,,1870,Binford_2001_Table_5.01, +11100,B328,B004,Hunting,B004-1,,kinietz1947,,1800,Binford_2001_Table_5.01, +11101,B329,B004,Hunting,B004-1,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_5.01, +11102,B330,B004,Hunting,B004-1,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_5.01, +11103,B331,B004,Hunting,B004-1,,hickerson1967;landes1937a,,1880,Binford_2001_Table_5.01, +11104,B332,B004,Hunting,B004-1,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_5.01, +11105,B333,B004,Fishing (aquatic),B004-3,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_5.01, +11106,B334,B004,Hunting,B004-1,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_5.01, +11107,B335,B004,Hunting,B004-1,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_5.01, +11108,B336,B004,Hunting,B004-1,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_5.01, +11109,B337,B004,Hunting,B004-1,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_5.01, +11110,B338,B004,Hunting,B004-1,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_5.01, +11111,B339,B004,Hunting,B004-1,,dunning1959;rogers1969,,1850,Binford_2001_Table_5.01, +11112,B340,B004,Hunting,B004-1,,morantz1983;rogers1969,,1900,Binford_2001_Table_5.01, +11113,B341,B004,Hunting,B004-1,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_5.01, +11114,B342,B004,Hunting,B004-1,,lane1952;tanner1944,,1880,Binford_2001_Table_5.01, +11115,B343,B004,Hunting,B004-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_5.01, +11116,B344,B004,Hunting,B004-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_5.01, +11117,B345,B004,Hunting,B004-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_5.01, +11118,B346,B004,Hunting,B004-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_5.01, +11119,B347,B004,Hunting,B004-1,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_5.01, +11120,B348,B004,Fishing (aquatic),B004-3,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +11121,B349,B004,Hunting,B004-1,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_5.01, +11122,B35,B004,Fishing (aquatic),B004-3,,,,1950,Binford_2001_Table_5.01, +11123,B350,B004,Hunting,B004-1,,gillespie1981,,1800,Binford_2001_Table_5.01, +11124,B351,B004,Hunting,B004-1,,adney1900;crowandobley1981,,1880,Binford_2001_Table_5.01, +11125,B352,B004,Hunting,B004-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_5.01, +11126,B353,B004,Fishing (aquatic),B004-3,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_5.01, +11127,B354,B004,Hunting,B004-1,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_5.01, +11128,B355,B004,Hunting,B004-1,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_5.01, +11129,B356,B004,Hunting,B004-1,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_5.01,"corrected based on values for B001,B002 and B003" +11130,B357,B004,Fishing (aquatic),B004-3,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_5.01, +11131,B358,B004,Hunting,B004-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_5.01, +11132,B359,B004,Fishing (aquatic),B004-3,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_5.01, +11133,B36,B004,Gathering,B004-2,,metraux1948,,1960,Binford_2001_Table_5.01, +11134,B360,B004,Hunting,B004-1,,morantz1983;skinner1911,,1900,Binford_2001_Table_5.01, +11135,B361,B004,Hunting,B004-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_5.01, +11136,B362,B004,Hunting,B004-1,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_5.01, +11137,B363,B004,Hunting,B004-1,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_5.01, +11138,B364,B004,Fishing (aquatic),B004-3,,michael1967;snow1981,,1860,Binford_2001_Table_5.01, +11139,B365,B004,Hunting,B004-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_5.01, +11140,B369,B004,Fishing (aquatic),B004-3,,ray1992;seltzer1933,,1870,Binford_2001_Table_5.01, +11141,B37,B004,Gathering,B004-2,,kloos1977;kloos1982,,1968,Binford_2001_Table_5.01, +11142,B370,B004,Hunting,B004-1,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_5.01, +11143,B371,B004,Fishing (aquatic),B004-3,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_5.01, +11144,B372,B004,Fishing (aquatic),B004-3,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_5.01, +11145,B373,B004,Fishing (aquatic),B004-3,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_5.01, +11146,B374,B004,Hunting,B004-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_5.01, +11147,B375,B004,Hunting,B004-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_5.01, +11148,B377,B004,Hunting,B004-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_5.01, +11149,B378,B004,Fishing (aquatic),B004-3,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_5.01, +11150,B379,B004,Fishing (aquatic),B004-3,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_5.01, +11151,B38,B004,Fishing (aquatic),B004-3,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_5.01, +11152,B380,B004,Fishing (aquatic),B004-3,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_5.01, +11153,B381,B004,Fishing (aquatic),B004-3,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_5.01, +11154,B382,B004,Fishing (aquatic),B004-3,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_5.01, +11155,B383,B004,Fishing (aquatic),B004-3,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_5.01, +11156,B384,B004,Fishing (aquatic),B004-3,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_5.01, +11157,B385,B004,Fishing (aquatic),B004-3,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_5.01, +11158,B386,B004,Fishing (aquatic),B004-3,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_5.01, +11159,B387,B004,Fishing (aquatic),B004-3,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_5.01, +11160,B388,B004,Fishing (aquatic),B004-3,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_5.01, +11161,B389,B004,Fishing (aquatic),B004-3,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_5.01, +11162,B39,B004,Gathering,B004-2,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_5.01, +11163,B390,B004,Fishing (aquatic),B004-3,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_5.01, +11164,B4,B004,Gathering,B004-2,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_5.01, +11165,B40,B004,Gathering,B004-2,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_5.01, +11166,B41,B004,Gathering,B004-2,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_5.01, +11167,B42,B004,Fishing (aquatic),B004-3,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_5.01, +11168,B43,B004,Hunting,B004-1,,holmberg1950,,1940,Binford_2001_Table_5.01, +11169,B44,B004,Hunting,B004-1,,stearman1989,,1968,Binford_2001_Table_5.01, +11170,B45,B004,Gathering,B004-2,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_5.01, +11171,B46,B004,Fishing (aquatic),B004-3,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_5.01, +11172,B47,B004,Hunting,B004-1,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01, +11173,B48,B004,Gathering,B004-2,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_5.01, +11174,B49,B004,Gathering,B004-2,,kozaketal1979,,1954,Binford_2001_Table_5.01, +11175,B5,B004,Fishing (aquatic),B004-3,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_5.01, +11176,B50,B004,Hunting,B004-1,,henry1964,,1910,Binford_2001_Table_5.01, +11177,B51,B004,Hunting,B004-1,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_5.01, +11178,B52,B004,Fishing (aquatic),B004-3,,cooper1946d,,1880,Binford_2001_Table_5.01, +11179,B53,B004,Fishing (aquatic),B004-3,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_5.01, +11180,B54,B004,Hunting,B004-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_5.01, +11181,B55,B004,Fishing (aquatic),B004-3,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_5.01, +11182,B6,B004,Gathering,B004-2,,temple1903,,1906,Binford_2001_Table_5.01, +11183,B60,B004,Gathering,B004-2,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_5.01, +11184,B61,B004,Gathering,B004-2,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_5.01, +11185,B62,B004,Gathering,B004-2,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_5.01, +11186,B63,B004,Gathering,B004-2,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_5.01, +11187,B64,B004,Gathering,B004-2,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_5.01, +11188,B65,B004,Gathering,B004-2,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_5.01, +11189,B66,B004,Gathering,B004-2,,kellyandpoyer1993,,,Binford_2001_Table_5.01, +11190,B67,B004,Gathering,B004-2,,clark1951,,1950,Binford_2001_Table_5.01, +11191,B68,B004,Gathering,B004-2,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_5.01, +11192,B69,B004,Gathering,B004-2,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_5.01, +11193,B7,B004,Gathering,B004-2,,fox1952;reed1904,,1903,Binford_2001_Table_5.01, +11194,B70,B004,Hunting,B004-1,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_5.01, +11195,B71,B004,Gathering,B004-2,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_5.01, +11196,B72,B004,Gathering,B004-2,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_5.01, +11197,B73,B004,Gathering,B004-2,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_5.01, +11198,B74,B004,Gathering,B004-2,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_5.01, +11199,B75,B004,Gathering,B004-2,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_5.01, +11200,B76,B004,Gathering,B004-2,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_5.01, +11201,B77,B004,Gathering,B004-2,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_5.01, +11202,B78,B004,Gathering,B004-2,,potgieter1955;toerien1958,,1950,Binford_2001_Table_5.01, +11203,B79,B004,Gathering,B004-2,,bleek1924a,,,Binford_2001_Table_5.01, +11204,B8,B004,Gathering,B004-2,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_5.01, +11205,B82,B004,Fishing (aquatic),B004-3,,moore1979,,1848,Binford_2001_Table_5.01, +11206,B83,B004,Fishing (aquatic),B004-3,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +11207,B84,B004,Gathering,B004-2,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_5.01, +11208,B85,B004,Fishing (aquatic),B004-3,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_5.01, +11209,B86,B004,Fishing (aquatic),B004-3,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_5.01, +11210,B87,B004,Fishing (aquatic),B004-3,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_5.01, +11211,B88,B004,Gathering,B004-2,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_5.01, +11212,B89,B004,Gathering,B004-2,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_5.01, +11213,B9,B004,Gathering,B004-2,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_5.01, +11214,B90,B004,Gathering,B004-2,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_5.01, +11215,B91,B004,Gathering,B004-2,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_5.01, +11216,B92,B004,Fishing (aquatic),B004-3,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_5.01, +11217,B93,B004,Fishing (aquatic),B004-3,,thomson1933;thomson1934,,1930,Binford_2001_Table_5.01, +11218,B94,B004,Gathering,B004-2,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_5.01, +11219,B95,B004,Gathering,B004-2,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_5.01, +11220,B96,B004,Fishing (aquatic),B004-3,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_5.01, +11221,B97,B004,Fishing (aquatic),B004-3,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_5.01, +11222,B98,B004,Fishing (aquatic),B004-3,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_5.01, +11223,B99,B004,Fishing (aquatic),B004-3,,stanner1933,,1900,Binford_2001_Table_5.01, +11224,B1,B040,1468,,,oldrey1975[155],Busang Punan,1970,Binford_2001_Table_6.03, +11225,B10,B040,1433,,"Note, for this society, Binford provided two estimates (1433, 1371); this entry is one of those estimates",bailey1863[283];skeatandblagden1906[574],,1900,Binford_2001_Table_6.03, +11226,B10,B040,1371,,"Note, for this society, Binford provided two estimates (1433, 1371); this entry is one of those estimates",bailey1863[283];skeatandblagden1906[574],,1900,Binford_2001_Table_6.03, +11227,B100,B040,,,,,,,, +11228,B101,B040,,,,,,,, +11229,B102,B040,,,,,,,, +11230,B103,B040,,,,,,,, +11231,B104,B040,,,,,,,, +11232,B105,B040,,,,,,,, +11233,B106,B040,,,,,,,, +11234,B107,B040,,,,,,,, +11235,B108,B040,,,,,,,, +11236,B109,B040,1571,,,abbie1957[236-38],,1965,Binford_2001_Table_6.03, +11237,B11,B040,,,,,,,, +11238,B110,B040,,,,,,,, +11239,B111,B040,,,,,,,, +11240,B112,B040,,,,,,,, +11241,B113,B040,,,,,,,, +11242,B114,B040,,,,,,,, +11243,B115,B040,,,,,,,, +11244,B116,B040,,,,,,,, +11245,B117,B040,,,,,,,, +11246,B118,B040,,,,,,,, +11247,B119,B040,,,,,,,, +11248,B12,B040,1457,,,headland1986[544],,1965,Binford_2001_Table_6.03, +11249,B120,B040,,,,,,,, +11250,B121,B040,,,,,,,, +11251,B122,B040,,,,,,,, +11252,B123,B040,,,,,,,, +11253,B124,B040,1568,,,roberts1953[556];spencerandgillen1899[appendix C],,1900,Binford_2001_Table_6.03, +11254,B125,B040,,,,,,,, +11255,B126,B040,,,,,,,, +11256,B127,B040,,,,,,,, +11257,B128,B040,,,,,,,, +11258,B129,B040,1520,,,cawthorne1844[50],,1840,Binford_2001_Table_6.03, +11259,B13,B040,1450,,,wastl1957[805],,1979,Binford_2001_Table_6.03, +11260,B130,B040,,,,,,,, +11261,B131,B040,,,,,,,, +11262,B132,B040,,,,,,,, +11263,B133,B040,,,,,,,, +11264,B134,B040,,,,,,,, +11265,B135,B040,,,,,,,, +11266,B136,B040,1503,,,roth1899[192],,1830,Binford_2001_Table_6.03, +11267,B137,B040,,,,,,,, +11268,B14,B040,1425,,"Note, for this society, Binford provided two estimates (1425, 1427); this entry is one of those estimates",vanoverbergh1925[400],,1924,Binford_2001_Table_6.03, +11269,B14,B040,1427,,"Note, for this society, Binford provided two estimates (1425, 1427); this entry is one of those estimates",goodmanetal1985[1203],,1924,Binford_2001_Table_6.03, +11270,B143,B040,1612,,,mcgee1898[136],,1900,Binford_2001_Table_6.03, +11271,B144,B040,1580,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +11272,B145,B040,1560,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +11273,B146,B040,,,,,,,, +11274,B147,B040,,,,,,,, +11275,B148,B040,1550,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11276,B149,B040,1580,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +11277,B15,B040,,,,,,,, +11278,B150,B040,1570,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11279,B151,B040,,,,,,,, +11280,B152,B040,,,,,,,, +11281,B153,B040,1520,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +11282,B154,B040,1510,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +11283,B155,B040,,,,,,,, +11284,B156,B040,,,,,,,, +11285,B157,B040,,,,,,,, +11286,B158,B040,1640,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11287,B159,B040,,,,,,,, +11288,B16,B040,1444,,"Note, for this society, Binford provided three estimates (1444, 1440, 1445); this entry is one of those estimates",bernatzik1951[165],,1963,Binford_2001_Table_6.03, +11289,B16,B040,1440,,"Note, for this society, Binford provided three estimates (1444, 1440, 1445); this entry is one of those estimates",flatz1963[table 1],,1963,Binford_2001_Table_6.03, +11290,B16,B040,1445,,"Note, for this society, Binford provided three estimates (1444, 1440, 1445); this entry is one of those estimates",trier1981[292],,1963,Binford_2001_Table_6.03, +11291,B160,B040,,,,,,,, +11292,B161,B040,,,,,,,, +11293,B162,B040,,,,,,,, +11294,B163,B040,,,,,,,, +11295,B164,B040,,,,,,,, +11296,B165,B040,,,,,,,, +11297,B166,B040,,,,,,,, +11298,B167,B040,,,,,,,, +11299,B168,B040,,,,,,,, +11300,B169,B040,,,,,,,, +11301,B17,B040,,,,,,,, +11302,B170,B040,,,,,,,, +11303,B171,B040,1480,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +11304,B172,B040,,,,,,,, +11305,B173,B040,1540,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11306,B174,B040,,,,,,,, +11307,B175,B040,1550,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +11308,B176,B040,,,,,,,, +11309,B177,B040,,,,,,,, +11310,B178,B040,,,,,,,, +11311,B179,B040,,,,,,,, +11312,B18,B040,,,,,,,, +11313,B180,B040,1520,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11314,B181,B040,,,,,,,, +11315,B182,B040,,,,,,,, +11316,B183,B040,1540,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11317,B184,B040,1560,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11318,B185,B040,1530,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +11319,B186,B040,1530,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +11320,B187,B040,1530,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11321,B188,B040,1550,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11322,B189,B040,1600,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11323,B19,B040,1500,,,ehrenfels1952[6],,1946,Binford_2001_Table_6.03, +11324,B190,B040,,,,,,,, +11325,B191,B040,,,,,,,, +11326,B192,B040,,,,,,,, +11327,B193,B040,,,,,,,, +11328,B194,B040,,,,,,,, +11329,B195,B040,,,,,,,, +11330,B196,B040,1600,,,corbusier1886[278-79],,1870,Binford_2001_Table_6.03, +11331,B197,B040,,,,,,,, +11332,B198,B040,1577,,,hrdlicka1909[413],,1870,Binford_2001_Table_6.03, +11333,B199,B040,,,,,,,, +11334,B2,B040,1432,,,eder1987[140],,1968,Binford_2001_Table_6.03, +11335,B20,B040,,,,,,,, +11336,B200,B040,,,,,,,, +11337,B201,B040,,,,,,,, +11338,B202,B040,1560,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +11339,B203,B040,,,,,,,, +11340,B204,B040,1521,,,hrdlicka1909[408],,1860,Binford_2001_Table_6.03, +11341,B205,B040,,,,,,,, +11342,B206,B040,,,,,,,, +11343,B207,B040,,,,,,,, +11344,B208,B040,,,,,,,, +11345,B209,B040,,,,,,,, +11346,B21,B040,,,,,,,, +11347,B210,B040,,,,,,,, +11348,B211,B040,,,,,,,, +11349,B212,B040,1600,,,gifford1926b[232-33],,1870,Binford_2001_Table_6.03, +11350,B213,B040,,,,,,,, +11351,B214,B040,,,,,,,, +11352,B215,B040,,,,,,,, +11353,B216,B040,,,,,,,, +11354,B217,B040,,,,,,,, +11355,B218,B040,,,,,,,, +11356,B219,B040,1560,,,gifford1926b[232-33],,1860,Binford_2001_Table_6.03, +11357,B22,B040,1482,,,landor1893[299],,1900,Binford_2001_Table_6.03, +11358,B221,B040,,,,,,,, +11359,B222,B040,1537,,,hrdlicka1909[409],,1860,Binford_2001_Table_6.03, +11360,B223,B040,,,,,,,, +11361,B224,B040,,,,,,,, +11362,B225,B040,1580,,,gifford1926b[232-33],,1850,Binford_2001_Table_6.03, +11363,B226,B040,,,,,,,, +11364,B227,B040,,,,,,,, +11365,B228,B040,,,,,,,, +11366,B229,B040,,,,,,,, +11367,B23,B040,,,,,,,, +11368,B230,B040,1641,,"Note, this is a joint estimate for males and females",boas1899[753],,1860,Binford_2001_Table_6.03, +11369,B231,B040,,,,,,,, +11370,B232,B040,1665,,"Note, this is a joint estimate for males and females",boas1899[753],,1860,Binford_2001_Table_6.03, +11371,B233,B040,,,,,,,, +11372,B234,B040,1628,,"Note, this is a joint estimate for males and females",boas1899[753],,1860,Binford_2001_Table_6.03, +11373,B24,B040,,,,,,,, +11374,B240,B040,1568,,,hrdlicka1909[412],,1880,Binford_2001_Table_6.03, +11375,B241,B040,1562,,,goldstein1934[299],,1870,Binford_2001_Table_6.03, +11376,B242,B040,,,,,,,, +11377,B243,B040,,,,,,,, +11378,B244,B040,,,,,,,, +11379,B245,B040,,,,,,,, +11380,B246,B040,,,,,,,, +11381,B248,B040,,,,,,,, +11382,B249,B040,1600,,,sullivan1920[169],,1870,Binford_2001_Table_6.03, +11383,B25,B040,,,,,,,, +11384,B250,B040,1569,,,chamberlain1892[564-82],,1880,Binford_2001_Table_6.03, +11385,B252,B040,,,,,,,, +11386,B253,B040,,,,,,,, +11387,B254,B040,,,,,,,, +11388,B255,B040,,,,,,,, +11389,B256,B040,,,,,,,, +11390,B257,B040,,,,,,,, +11391,B258,B040,,,,,,,, +11392,B259,B040,,,,,,,, +11393,B26,B040,1470,,,jochelson191926[20],,1900,Binford_2001_Table_6.03, +11394,B260,B040,,,,,,,, +11395,B268,B040,,,,,,,, +11396,B269,B040,1486,,,boas1891a[433],,1860,Binford_2001_Table_6.03, +11397,B27,B040,,,,,,,, +11398,B270,B040,,,,,,,, +11399,B271,B040,,,,,,,, +11400,B272,B040,,,,,,,, +11401,B273,B040,,,,,,,, +11402,B274,B040,,,,,,,, +11403,B275,B040,,,,,,,, +11404,B276,B040,1532,,,boasandfarrand1899[630],,1860,Binford_2001_Table_6.03, +11405,B277,B040,,,,,,,, +11406,B278,B040,,,,,,,, +11407,B279,B040,,,,,,,, +11408,B28,B040,,,,,,,, +11409,B280,B040,1495,,,wilson1866[278],,1880,Binford_2001_Table_6.03, +11410,B281,B040,,,,,,,, +11411,B282,B040,,,,,,,, +11412,B283,B040,,,,,,,, +11413,B284,B040,,,,,,,, +11414,B285,B040,,,,,,,, +11415,B286,B040,,,,,,,, +11416,B287,B040,,,,,,,, +11417,B288,B040,1543,,,boasandfarrand1899[630];cybulski1990b[54],,1890,Binford_2001_Table_6.03, +11418,B289,B040,1520,,,boasandfarrand1899[630],,1880,Binford_2001_Table_6.03, +11419,B290,B040,1552,,,cybulski1990b[54],,1890,Binford_2001_Table_6.03, +11420,B291,B040,1573,,,boasandfarrand1899[630];cybulski1990b[54],,1880,Binford_2001_Table_6.03, +11421,B292,B040,,,,,,,, +11422,B293,B040,1543,,,boasandfarrand1899[630];cybulski1990b[54],,1880,Binford_2001_Table_6.03, +11423,B294,B040,,,,,,,, +11424,B295,B040,,,,,,,, +11425,B296,B040,,,,,,,, +11426,B297,B040,,,,,,,, +11427,B298,B040,,,,,,,, +11428,B299,B040,1531,,,hrdlicka1930[251],,1930,Binford_2001_Table_6.03, +11429,B3,B040,1462,,,volz1909[92],,1900,Binford_2001_Table_6.03, +11430,B315,B040,,,,,,,, +11431,B316,B040,,,,,,,, +11432,B317,B040,,,,,,,, +11433,B318,B040,,,,,,,, +11434,B319,B040,,,,,,,, +11435,B320,B040,,,,,,,, +11436,B321,B040,,,,,,,, +11437,B322,B040,,,,,,,, +11438,B323,B040,,,,,,,, +11439,B324,B040,,,,,,,, +11440,B325,B040,1576,,,boasandfarrand1899[630],,1860,Binford_2001_Table_6.03, +11441,B326,B040,,,,,,,, +11442,B327,B040,,,,,,,, +11443,B328,B040,,,,,,,, +11444,B329,B040,1579,,,boas1895a[574],,1700,Binford_2001_Table_6.03, +11445,B330,B040,,,,,,,, +11446,B331,B040,,,,,,,, +11447,B332,B040,,,,,,,, +11448,B333,B040,1569,,,chamberlain1892[615],,1850,Binford_2001_Table_6.03, +11449,B334,B040,,,,,,,, +11450,B335,B040,,,,,,,, +11451,B336,B040,,,,,,,, +11452,B337,B040,,,,,,,, +11453,B338,B040,1549,,,rogers1972[92],,1880,Binford_2001_Table_6.03, +11454,B339,B040,,,,,,,, +11455,B340,B040,,,,,,,, +11456,B341,B040,1574,,,boas1895a[574],,1890,Binford_2001_Table_6.03, +11457,B342,B040,,,,,,,, +11458,B343,B040,1578,,"Note, for this society, Binford provided two estimates (1578, 1568); this entry is one of those estimates",jenness1937[27],,1880,Binford_2001_Table_6.03, +11459,B343,B040,1568,,"Note, for this society, Binford provided two estimates (1578, 1568); this entry is one of those estimates",grant1936[18],,1880,Binford_2001_Table_6.03, +11460,B344,B040,1564,,,grant1936[13-15],,1850,Binford_2001_Table_6.03, +11461,B345,B040,,,,,,,, +11462,B346,B040,,,,,,,, +11463,B347,B040,1617,,,boas1901[61-63],,1870,Binford_2001_Table_6.03, +11464,B348,B040,1565,,,boasandfarrand1899[630],,1880,Binford_2001_Table_6.03, +11465,B349,B040,1572,,,grant1936[18],,1880,Binford_2001_Table_6.03, +11466,B35,B040,,,,,,,, +11467,B350,B040,,,,,,,, +11468,B351,B040,,,,,,,, +11469,B352,B040,,,,,,,, +11470,B353,B040,1555,,,mason1967[5],,1900,Binford_2001_Table_6.03, +11471,B354,B040,,,,,,,, +11472,B355,B040,1509,,,grant1936[13-15],,1880,Binford_2001_Table_6.03, +11473,B356,B040,1521,,,boas1901[64-65];mckennan1964[47],,1880,Binford_2001_Table_6.03, +11474,B357,B040,,,,,,,, +11475,B358,B040,,,,,,,, +11476,B359,B040,,,,,,,, +11477,B36,B040,,,,,,,, +11478,B360,B040,,,,,,,, +11479,B361,B040,,,,,,,, +11480,B362,B040,,,,,,,, +11481,B363,B040,,,,,,,, +11482,B364,B040,,,,,,,, +11483,B365,B040,1546,,,hallowell1929[341],,1890,Binford_2001_Table_6.03, +11484,B369,B040,1561,,,seltzer1933[341],,1870,Binford_2001_Table_6.03, +11485,B37,B040,,,,,,,, +11486,B370,B040,,,,,,,, +11487,B371,B040,1607,,,rodahlandedwards1952[243],,1880,Binford_2001_Table_6.03, +11488,B372,B040,1504,,,seltzer1933[341],,1890,Binford_2001_Table_6.03, +11489,B373,B040,,,,,,,, +11490,B374,B040,,,,,,,, +11491,B375,B040,1556,,,boas1901[64-65],,1900,Binford_2001_Table_6.03, +11492,B377,B040,1549,,,"jamison1978[56, 58]",,1950,Binford_2001_Table_6.03, +11493,B378,B040,1535,,,seltzer1933[341],,1910,Binford_2001_Table_6.03, +11494,B379,B040,1533,,"Note, for this society, Binford provided two estimates (1533, 1514); this entry is one of those estimates",rodahlandedwards1952[243],,1920,Binford_2001_Table_6.03, +11495,B379,B040,1514,,"Note, for this society, Binford provided two estimates (1533, 1514); this entry is one of those estimates",hrdlicka1930[251],,1920,Binford_2001_Table_6.03, +11496,B38,B040,1484,,,petrullo1939[177],,1989,Binford_2001_Table_6.03, +11497,B380,B040,,,,,,,, +11498,B381,B040,1564,,,jenness1922[b49],,1920,Binford_2001_Table_6.03, +11499,B382,B040,,,,,,,, +11500,B383,B040,1583,,,hrdlicka1930[230],,1880,Binford_2001_Table_6.03, +11501,B383,B040,1580,,"Note, this is a joint estimate for males and females",oetteking1931[423],,1880,Binford_2001_Table_6.03, +11502,B384,B040,1537,,,szathmary1984,,1920,Binford_2001_Table_6.03, +11503,B385,B040,1520,,,hansen1914,,1880,Binford_2001_Table_6.03, +11504,B386,B040,1499,,,roberts1953[557],,1880,Binford_2001_Table_6.03, +11505,B386,B040,1551,,"Note, this is a joint estimate for males and females",oetteking1931[423],,1880,Binford_2001_Table_6.03, +11506,B387,B040,,,,,,,, +11507,B388,B040,1521,,,"hansen1914;poulsen1909[135, 144-46]",,1880,Binford_2001_Table_6.03, +11508,B389,B040,1537,,"Note, for this society, Binford provided two estimates (1537, 1536); this entry is one of those estimates",roberts1953[556],Barrow Tareumiut,1880,Binford_2001_Table_6.03, +11509,B389,B040,1536,,"Note, for this society, Binford provided two estimates (1537, 1536); this entry is one of those estimates",seltzer1933[341],Barrow Tareumiut,1880,Binford_2001_Table_6.03, +11510,B39,B040,,,,,,,, +11511,B390,B040,1454,,,roberts1953[557];steensby1910[389],,1880,Binford_2001_Table_6.03, +11512,B4,B040,1474,,"Note, for this society, Binford provided two estimates (1474, 1487); this entry is one of those estimates",agrawal1967[84-87];rizvi1990[35],,1989,Binford_2001_Table_6.03, +11513,B4,B040,1487,,"Note, for this society, Binford provided two estimates (1474, 1487); this entry is one of those estimates",agrawal1967[84-87];rizvi1990[35],,1989,Binford_2001_Table_6.03, +11514,B40,B040,,,,,,,, +11515,B41,B040,,,,,,,, +11516,B42,B040,,,,,,,, +11517,B43,B040,1575,,,holmberg1950[8],,1940,Binford_2001_Table_6.03, +11518,B44,B040,,,,,,,, +11519,B45,B040,,,,,,,, +11520,B46,B040,,,,,,,, +11521,B47,B040,1500,,,"hilletal1984[table 4, 132]",,1975,Binford_2001_Table_6.03, +11522,B48,B040,1495,,,ehrenreich1887[16-17],,1880,Binford_2001_Table_6.03, +11523,B49,B040,,,,,,,, +11524,B5,B040,1371,,"Note, for this society, Binford provided two estimates (1371, 1393); this entry is one of those estimates",man1883[73];temple1903[54],,1952,Binford_2001_Table_6.03, +11525,B5,B040,1393,,"Note, for this society, Binford provided two estimates (1371, 1393); this entry is one of those estimates",man1883[73];temple1903[54],,1952,Binford_2001_Table_6.03, +11526,B50,B040,,,,,,,, +11527,B51,B040,,,,,,,, +11528,B52,B040,,,,,,,, +11529,B53,B040,1488,,,lothrop1928[39],,1900,Binford_2001_Table_6.03, +11530,B54,B040,1592,,,lothrop1928[41],,1880,Binford_2001_Table_6.03, +11531,B55,B040,1475,,,lothrop1928[41],,1870,Binford_2001_Table_6.03, +11532,B6,B040,,,,,,,, +11533,B60,B040,1486,,"Note, this is a joint estimate for males and females",cavallisforza1986a[83],,1980,Binford_2001_Table_6.03, +11534,B61,B040,1440,,,heymer1980[178];hiernauxetal1975[7],,1976,Binford_2001_Table_6.03, +11535,B62,B040,,,,,,,, +11536,B63,B040,1441,,,hiernauxetal1975[7];valloisandmarquer1976,,1980,Binford_2001_Table_6.03, +11537,B64,B040,1363,,,baileyandpeacock1988[107],,1980,Binford_2001_Table_6.03, +11538,B65,B040,1370,,,cavallisforza1986c[392];hiernauxetal1975[7];roberts1953[557],,1930,Binford_2001_Table_6.03, +11539,B66,B040,,,,,,,, +11540,B67,B040,1494,,,clark1951[60],,1950,Binford_2001_Table_6.03, +11541,B68,B040,1497,,"Note, for this society, Binford provided two estimates (1497, 1491); this entry is one of those estimates",werner1906a[241],,1920,Binford_2001_Table_6.03, +11542,B68,B040,1491,,"Note, for this society, Binford provided two estimates (1497, 1491); this entry is one of those estimates",tobias1962[802-3],,1920,Binford_2001_Table_6.03, +11543,B69,B040,,,,,,,, +11544,B7,B040,1388,,,reed1904[75-77],,1903,Binford_2001_Table_6.03, +11545,B70,B040,1587,,,wayland1931[217],,1920,Binford_2001_Table_6.03, +11546,B71,B040,1503,,"Note, for this society, Binford provided two estimates (1503, 1488); this entry is one of those estimates",bleek1929[106],,1928,Binford_2001_Table_6.03, +11547,B71,B040,1488,,"Note, for this society, Binford provided two estimates (1503, 1488); this entry is one of those estimates",decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_6.03, +11548,B72,B040,1485,,"Note, for this society, Binford provided three estimates (1485, 1455, 1493), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",bleek1929[106];howell1979[258-59],,1950,Binford_2001_Table_6.03, +11549,B72,B040,1455,,"Note, for this society, Binford provided three estimates (1485, 1455, 1493), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",kaufmann1910[135],Auen !Kung,1950,Binford_2001_Table_6.03, +11550,B72,B040,1493,,"Note, for this society, Binford provided three estimates (1485, 1455, 1493), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",tobias1962[802-3],Auen !Kung,1950,Binford_2001_Table_6.03, +11551,B73,B040,1501,,"Note, for this society, Binford provided two estimates (1501, 1493); this entry is one of those estimates",tobias1962[802-3],,1910,Binford_2001_Table_6.03, +11552,B73,B040,1493,,"Note, for this society, Binford provided two estimates (1501, 1493); this entry is one of those estimates",tobias1962[802-3],,1910,Binford_2001_Table_6.03, +11553,B74,B040,1520,,,tobias1962[802-3],,1962,Binford_2001_Table_6.03, +11554,B75,B040,1523,,,tobias1962[802-3];wyndhamandmorrison1958[221],,1976,Binford_2001_Table_6.03, +11555,B76,B040,,,,,,,, +11556,B77,B040,1460,,,dart1937b[184],,1920,Binford_2001_Table_6.03, +11557,B78,B040,1347,,,toerien1958[122-23],,1950,Binford_2001_Table_6.03, +11558,B79,B040,,,,,,,, +11559,B8,B040,,,,,,,, +11560,B82,B040,,,,,,,, +11561,B83,B040,,,,,,,, +11562,B84,B040,,,,,,,, +11563,B85,B040,,,,,,,, +11564,B86,B040,,,,,,,, +11565,B87,B040,,,,,,,, +11566,B88,B040,1580,,,howells1937[16];peterson1976[269],,1930,Binford_2001_Table_6.03, +11567,B89,B040,,,,,,,, +11568,B9,B040,1408,,,skeatandblagden1906[575],,1920,Binford_2001_Table_6.03, +11569,B90,B040,,,,,,,, +11570,B91,B040,,,,,,,, +11571,B92,B040,,,,,,,, +11572,B93,B040,,,,,,,, +11573,B94,B040,,,,,,,, +11574,B95,B040,,,,,,,, +11575,B96,B040,,,,,,,, +11576,B97,B040,,,,,,,, +11577,B98,B040,1550,,,haleandtindale1933[71],,1926,Binford_2001_Table_6.03, +11578,B99,B040,,,,,,,, +11579,B1,B041,52.9,,,oldrey1975[155],Busang Punan,1970,Binford_2001_Table_6.03, +11580,B10,B041,,,,,,,, +11581,B100,B041,,,,,,,, +11582,B101,B041,,,,,,,, +11583,B102,B041,,,,,,,, +11584,B103,B041,,,,,,,, +11585,B104,B041,,,,,,,, +11586,B105,B041,,,,,,,, +11587,B106,B041,,,,,,,, +11588,B107,B041,,,,,,,, +11589,B108,B041,,,,,,,, +11590,B109,B041,56.7,,,abbie1957[236-38],,1965,Binford_2001_Table_6.03, +11591,B11,B041,,,,,,,, +11592,B110,B041,,,,,,,, +11593,B111,B041,,,,,,,, +11594,B112,B041,,,,,,,, +11595,B113,B041,,,,,,,, +11596,B114,B041,,,,,,,, +11597,B115,B041,,,,,,,, +11598,B116,B041,,,,,,,, +11599,B117,B041,,,,,,,, +11600,B118,B041,,,,,,,, +11601,B119,B041,,,,,,,, +11602,B12,B041,44,,,headland1986[544],,1965,Binford_2001_Table_6.03, +11603,B120,B041,,,,,,,, +11604,B121,B041,,,,,,,, +11605,B122,B041,,,,,,,, +11606,B123,B041,,,,,,,, +11607,B124,B041,,,,,,,, +11608,B125,B041,,,,,,,, +11609,B126,B041,,,,,,,, +11610,B127,B041,,,,,,,, +11611,B128,B041,,,,,,,, +11612,B129,B041,,,,,,,, +11613,B13,B041,41,,,wastl1957[805],,1979,Binford_2001_Table_6.03, +11614,B130,B041,,,,,,,, +11615,B131,B041,,,,,,,, +11616,B132,B041,,,,,,,, +11617,B133,B041,,,,,,,, +11618,B134,B041,,,,,,,, +11619,B135,B041,,,,,,,, +11620,B136,B041,,,,,,,, +11621,B137,B041,,,,,,,, +11622,B14,B041,,,,,,,, +11623,B143,B041,,,,,,,, +11624,B144,B041,,,,,,,, +11625,B145,B041,,,,,,,, +11626,B146,B041,,,,,,,, +11627,B147,B041,,,,,,,, +11628,B148,B041,,,,,,,, +11629,B149,B041,,,,,,,, +11630,B15,B041,,,,,,,, +11631,B150,B041,,,,,,,, +11632,B151,B041,,,,,,,, +11633,B152,B041,,,,,,,, +11634,B153,B041,,,,,,,, +11635,B154,B041,,,,,,,, +11636,B155,B041,,,,,,,, +11637,B156,B041,,,,,,,, +11638,B157,B041,,,,,,,, +11639,B158,B041,,,,,,,, +11640,B159,B041,,,,,,,, +11641,B16,B041,48.8,,,flatz1963[table 1],,1963,Binford_2001_Table_6.03, +11642,B160,B041,,,,,,,, +11643,B161,B041,,,,,,,, +11644,B162,B041,,,,,,,, +11645,B163,B041,,,,,,,, +11646,B164,B041,,,,,,,, +11647,B165,B041,,,,,,,, +11648,B166,B041,,,,,,,, +11649,B167,B041,,,,,,,, +11650,B168,B041,,,,,,,, +11651,B169,B041,,,,,,,, +11652,B17,B041,,,,,,,, +11653,B170,B041,,,,,,,, +11654,B171,B041,,,,,,,, +11655,B172,B041,,,,,,,, +11656,B173,B041,,,,,,,, +11657,B174,B041,,,,,,,, +11658,B175,B041,,,,,,,, +11659,B176,B041,,,,,,,, +11660,B177,B041,,,,,,,, +11661,B178,B041,,,,,,,, +11662,B179,B041,,,,,,,, +11663,B18,B041,,,,,,,, +11664,B180,B041,,,,,,,, +11665,B181,B041,,,,,,,, +11666,B182,B041,,,,,,,, +11667,B183,B041,,,,,,,, +11668,B184,B041,,,,,,,, +11669,B185,B041,,,,,,,, +11670,B186,B041,,,,,,,, +11671,B187,B041,,,,,,,, +11672,B188,B041,,,,,,,, +11673,B189,B041,,,,,,,, +11674,B19,B041,,,,,,,, +11675,B190,B041,,,,,,,, +11676,B191,B041,,,,,,,, +11677,B192,B041,,,,,,,, +11678,B193,B041,,,,,,,, +11679,B194,B041,,,,,,,, +11680,B195,B041,,,,,,,, +11681,B196,B041,71,,,corbusier1886[278-79],,1870,Binford_2001_Table_6.03, +11682,B197,B041,,,,,,,, +11683,B198,B041,,,,,,,, +11684,B199,B041,,,,,,,, +11685,B2,B041,46.5,,,eder1987[140],,1968,Binford_2001_Table_6.03, +11686,B20,B041,,,,,,,, +11687,B200,B041,,,,,,,, +11688,B201,B041,,,,,,,, +11689,B202,B041,,,,,,,, +11690,B203,B041,,,,,,,, +11691,B204,B041,,,,,,,, +11692,B205,B041,,,,,,,, +11693,B206,B041,,,,,,,, +11694,B207,B041,,,,,,,, +11695,B208,B041,,,,,,,, +11696,B209,B041,,,,,,,, +11697,B21,B041,,,,,,,, +11698,B210,B041,,,,,,,, +11699,B211,B041,,,,,,,, +11700,B212,B041,,,,,,,, +11701,B213,B041,,,,,,,, +11702,B214,B041,,,,,,,, +11703,B215,B041,,,,,,,, +11704,B216,B041,,,,,,,, +11705,B217,B041,,,,,,,, +11706,B218,B041,,,,,,,, +11707,B219,B041,,,,,,,, +11708,B22,B041,,,,,,,, +11709,B221,B041,,,,,,,, +11710,B222,B041,,,,,,,, +11711,B223,B041,,,,,,,, +11712,B224,B041,,,,,,,, +11713,B225,B041,,,,,,,, +11714,B226,B041,,,,,,,, +11715,B227,B041,,,,,,,, +11716,B228,B041,,,,,,,, +11717,B229,B041,,,,,,,, +11718,B23,B041,,,,,,,, +11719,B230,B041,,,,,,,, +11720,B231,B041,,,,,,,, +11721,B232,B041,,,,,,,, +11722,B233,B041,,,,,,,, +11723,B234,B041,,,,,,,, +11724,B24,B041,,,,,,,, +11725,B240,B041,,,,,,,, +11726,B241,B041,,,,,,,, +11727,B242,B041,,,,,,,, +11728,B243,B041,,,,,,,, +11729,B244,B041,,,,,,,, +11730,B245,B041,,,,,,,, +11731,B246,B041,,,,,,,, +11732,B248,B041,,,,,,,, +11733,B249,B041,,,,,,,, +11734,B25,B041,,,,,,,, +11735,B250,B041,67.8,,,chamberlain1892[564-82],,1880,Binford_2001_Table_6.03, +11736,B252,B041,,,,,,,, +11737,B253,B041,,,,,,,, +11738,B254,B041,,,,,,,, +11739,B255,B041,,,,,,,, +11740,B256,B041,,,,,,,, +11741,B257,B041,,,,,,,, +11742,B258,B041,,,,,,,, +11743,B259,B041,,,,,,,, +11744,B26,B041,,,,,,,, +11745,B260,B041,,,,,,,, +11746,B268,B041,,,,,,,, +11747,B269,B041,,,,,,,, +11748,B27,B041,,,,,,,, +11749,B270,B041,,,,,,,, +11750,B271,B041,64.4,,,eells1887a[273],,1850,Binford_2001_Table_6.03, +11751,B272,B041,,,,,,,, +11752,B273,B041,,,,,,,, +11753,B274,B041,,,,,,,, +11754,B275,B041,,,,,,,, +11755,B276,B041,,,,,,,, +11756,B277,B041,,,,,,,, +11757,B278,B041,,,,,,,, +11758,B279,B041,,,,,,,, +11759,B28,B041,64.2,,,szathmary1984[65],,1860,Binford_2001_Table_6.03, +11760,B280,B041,,,,,,,, +11761,B281,B041,,,,,,,, +11762,B282,B041,,,,,,,, +11763,B283,B041,,,,,,,, +11764,B284,B041,,,,,,,, +11765,B285,B041,,,,,,,, +11766,B286,B041,,,,,,,, +11767,B287,B041,,,,,,,, +11768,B288,B041,,,,,,,, +11769,B289,B041,,,,,,,, +11770,B290,B041,,,,,,,, +11771,B291,B041,,,,,,,, +11772,B292,B041,,,,,,,, +11773,B293,B041,,,,,,,, +11774,B294,B041,,,,,,,, +11775,B295,B041,,,,,,,, +11776,B296,B041,,,,,,,, +11777,B297,B041,,,,,,,, +11778,B298,B041,,,,,,,, +11779,B299,B041,,,,,,,, +11780,B3,B041,,,,,,,, +11781,B315,B041,,,,,,,, +11782,B316,B041,,,,,,,, +11783,B317,B041,,,,,,,, +11784,B318,B041,,,,,,,, +11785,B319,B041,,,,,,,, +11786,B320,B041,,,,,,,, +11787,B321,B041,,,,,,,, +11788,B322,B041,,,,,,,, +11789,B323,B041,,,,,,,, +11790,B324,B041,,,,,,,, +11791,B325,B041,,,,,,,, +11792,B326,B041,,,,,,,, +11793,B327,B041,,,,,,,, +11794,B328,B041,,,,,,,, +11795,B329,B041,,,,,,,, +11796,B330,B041,,,,,,,, +11797,B331,B041,,,,,,,, +11798,B332,B041,,,,,,,, +11799,B333,B041,,,,,,,, +11800,B334,B041,,,,,,,, +11801,B335,B041,,,,,,,, +11802,B336,B041,,,,,,,, +11803,B337,B041,,,,,,,, +11804,B338,B041,,,,,,,, +11805,B339,B041,,,,,,,, +11806,B340,B041,,,,,,,, +11807,B341,B041,70.3,,,boas1895a[574],,1890,Binford_2001_Table_6.03, +11808,B342,B041,,,,,,,, +11809,B343,B041,,,,,,,, +11810,B344,B041,,,,,,,, +11811,B345,B041,,,,,,,, +11812,B346,B041,,,,,,,, +11813,B347,B041,,,,,,,, +11814,B348,B041,,,,,,,, +11815,B349,B041,,,,,,,, +11816,B35,B041,,,,,,,, +11817,B350,B041,,,,,,,, +11818,B351,B041,,,,,,,, +11819,B352,B041,,,,,,,, +11820,B353,B041,,,,,,,, +11821,B354,B041,,,,,,,, +11822,B355,B041,,,,,,,, +11823,B356,B041,,,,,,,, +11824,B357,B041,,,,,,,, +11825,B358,B041,,,,,,,, +11826,B359,B041,,,,,,,, +11827,B36,B041,,,,,,,, +11828,B360,B041,,,,,,,, +11829,B361,B041,66.6,,,szathmary1984[65],,1860,Binford_2001_Table_6.03, +11830,B362,B041,,,,,,,, +11831,B363,B041,,,,,,,, +11832,B364,B041,,,,,,,, +11833,B365,B041,,,,,,,, +11834,B369,B041,,,,,,,, +11835,B37,B041,,,,,,,, +11836,B370,B041,,,,,,,, +11837,B371,B041,64.3,,,rodahlandedwards1952[243],,1880,Binford_2001_Table_6.03, +11838,B372,B041,,,,,,,, +11839,B373,B041,,,,,,,, +11840,B374,B041,,,,,,,, +11841,B375,B041,,,,,,,, +11842,B377,B041,,,,,,,, +11843,B378,B041,,,,,,,, +11844,B379,B041,64.4,,,rodahlandedwards1952[243],,1920,Binford_2001_Table_6.03, +11845,B38,B041,,,,,,,, +11846,B380,B041,,,,,,,, +11847,B381,B041,,,,,,,, +11848,B382,B041,,,,,,,, +11849,B383,B041,,,,,,,, +11850,B384,B041,65.3,,,szathmary1984,,1920,Binford_2001_Table_6.03, +11851,B385,B041,,,,,,,, +11852,B386,B041,62.1,,,roberts1953[557],,1880,Binford_2001_Table_6.03, +11853,B387,B041,,,,,,,, +11854,B388,B041,,,,,,,, +11855,B389,B041,65.3,,,roberts1953[556];seltzer1933[341],Barrow Tareumiut,1880,Binford_2001_Table_6.03, +11856,B389,B041,69.7,,,seltzer1933[341],Barrow Tareumiut,1880,Binford_2001_Table_6.03, +11857,B39,B041,57.8,,,hurtadoandhill1990[329],,1960,Binford_2001_Table_6.03, +11858,B390,B041,63.5,,,roberts1953[557];steensby1910[389],,1880,Binford_2001_Table_6.03, +11859,B4,B041,60.5,,"Note, for this society, Binford provided two estimates (60.5, 55.3); this entry is one of those estimates",agrawal1967[84-87];rizvi1990[35],,1989,Binford_2001_Table_6.03, +11860,B4,B041,55.3,,"Note, for this society, Binford provided two estimates (60.5, 55.3); this entry is one of those estimates",agrawal1967[84-87];rizvi1990[35],,1989,Binford_2001_Table_6.03, +11861,B40,B041,,,,,,,, +11862,B41,B041,,,,,,,, +11863,B42,B041,,,,,,,, +11864,B43,B041,,,,,,,, +11865,B44,B041,,,,,,,, +11866,B45,B041,,,,,,,, +11867,B46,B041,,,,,,,, +11868,B47,B041,59.6,,,"hilletal1984[table 4, 132]",,1975,Binford_2001_Table_6.03, +11869,B48,B041,,,,,,,, +11870,B49,B041,,,,,,,, +11871,B5,B041,43.5,,"Note, for this society, Binford provided two estimates (43.5, 44.5); this entry is one of those estimates",man1883[73];temple1903[54],,1952,Binford_2001_Table_6.03, +11872,B5,B041,44.5,,"Note, for this society, Binford provided two estimates (43.5, 44.5); this entry is one of those estimates",man1883[73];temple1903[54],,1952,Binford_2001_Table_6.03, +11873,B50,B041,,,,,,,, +11874,B51,B041,,,,,,,, +11875,B52,B041,,,,,,,, +11876,B53,B041,,,,,,,, +11877,B54,B041,,,,,,,, +11878,B55,B041,,,,,,,, +11879,B6,B041,,,,,,,, +11880,B60,B041,45.1,,,cavallisforza1986a[83],,1980,Binford_2001_Table_6.03, +11881,B61,B041,46.4,,,heymer1980[178];hiernauxetal1975[7],,1976,Binford_2001_Table_6.03, +11882,B62,B041,,,,,,,, +11883,B63,B041,49.5,,,hiernauxetal1975[7];valloisandmarquer1976,,1980,Binford_2001_Table_6.03, +11884,B64,B041,43.1,,,baileyandpeacock1988[107],,1980,Binford_2001_Table_6.03, +11885,B65,B041,39.8,,,cavallisforza1986c[392];hiernauxetal1975[7];roberts1953[557],,1930,Binford_2001_Table_6.03, +11886,B66,B041,,,,,,,, +11887,B67,B041,,,,,,,, +11888,B68,B041,,,,,,,, +11889,B69,B041,,,,,,,, +11890,B7,B041,,,,,,,, +11891,B70,B041,,,,,,,, +11892,B71,B041,,,,,,,, +11893,B72,B041,50.4,,,bleek1929[106];howell1979[258-59],,1950,Binford_2001_Table_6.03, +11894,B72,B041,42.5,,,tobias1962[802-3],,1950,Binford_2001_Table_6.03, +11895,B73,B041,,,,,,,, +11896,B74,B041,,,,,,,, +11897,B75,B041,,,,,,,, +11898,B76,B041,,,,,,,, +11899,B77,B041,,,,,,,, +11900,B78,B041,,,,,,,, +11901,B79,B041,,,,,,,, +11902,B8,B041,,,,,,,, +11903,B82,B041,,,,,,,, +11904,B83,B041,,,,,,,, +11905,B84,B041,55.3,,,altman1987[34],,1978,Binford_2001_Table_6.03, +11906,B85,B041,,,,,,,, +11907,B86,B041,,,,,,,, +11908,B87,B041,,,,,,,, +11909,B88,B041,59.2,,,howells1937[16];peterson1976[269],,1930,Binford_2001_Table_6.03, +11910,B89,B041,,,,,,,, +11911,B9,B041,,,,,,,, +11912,B90,B041,,,,,,,, +11913,B91,B041,,,,,,,, +11914,B92,B041,,,,,,,, +11915,B93,B041,,,,,,,, +11916,B94,B041,,,,,,,, +11917,B95,B041,,,,,,,, +11918,B96,B041,,,,,,,, +11919,B97,B041,,,,,,,, +11920,B98,B041,,,,,,,, +11921,B99,B041,,,,,,,, +11922,B1,B042,37.9,,,oldrey1975[155],Busang Punan,1970,Binford_2001_Table_6.03, +11923,B10,B042,,,,,,,, +11924,B100,B042,,,,,,,, +11925,B101,B042,,,,,,,, +11926,B102,B042,,,,,,,, +11927,B103,B042,,,,,,,, +11928,B104,B042,,,,,,,, +11929,B105,B042,50.5,,,birdsell1967[112],,1900,Binford_2001_Table_6.03, +11930,B106,B042,,,,,,,, +11931,B107,B042,,,,,,,, +11932,B108,B042,,,,,,,, +11933,B109,B042,45.4,,,abbie1957[236-38],,1965,Binford_2001_Table_6.03, +11934,B11,B042,,,,,,,, +11935,B110,B042,,,,,,,, +11936,B111,B042,,,,,,,, +11937,B112,B042,,,,,,,, +11938,B113,B042,,,,,,,, +11939,B114,B042,,,,,,,, +11940,B115,B042,,,,,,,, +11941,B116,B042,,,,,,,, +11942,B117,B042,,,,,,,, +11943,B118,B042,,,,,,,, +11944,B119,B042,,,,,,,, +11945,B12,B042,37.5,,,headland1986[544],,1965,Binford_2001_Table_6.03, +11946,B120,B042,,,,,,,, +11947,B121,B042,,,,,,,, +11948,B122,B042,53.1,,,roberts1953[556],,1870,Binford_2001_Table_6.03, +11949,B123,B042,,,,,,,, +11950,B124,B042,56.9,,,roberts1953[556];spencerandgillen1899[appendix C],,1900,Binford_2001_Table_6.03, +11951,B125,B042,,,,,,,, +11952,B126,B042,,,,,,,, +11953,B127,B042,,,,,,,, +11954,B128,B042,,,,,,,, +11955,B129,B042,,,,,,,, +11956,B13,B042,34,,,wastl1957[805],,1979,Binford_2001_Table_6.03, +11957,B130,B042,,,,,,,, +11958,B131,B042,,,,,,,, +11959,B132,B042,,,,,,,, +11960,B133,B042,,,,,,,, +11961,B134,B042,,,,,,,, +11962,B135,B042,,,,,,,, +11963,B136,B042,,,,,,,, +11964,B137,B042,,,,,,,, +11965,B14,B042,34.9,,,goodmanetal1985[1203],,1924,Binford_2001_Table_6.03, +11966,B143,B042,,,,,,,, +11967,B144,B042,,,,,,,, +11968,B145,B042,,,,,,,, +11969,B146,B042,,,,,,,, +11970,B147,B042,,,,,,,, +11971,B148,B042,,,,,,,, +11972,B149,B042,,,,,,,, +11973,B15,B042,,,,,,,, +11974,B150,B042,,,,,,,, +11975,B151,B042,,,,,,,, +11976,B152,B042,,,,,,,, +11977,B153,B042,,,,,,,, +11978,B154,B042,,,,,,,, +11979,B155,B042,,,,,,,, +11980,B156,B042,,,,,,,, +11981,B157,B042,,,,,,,, +11982,B158,B042,,,,,,,, +11983,B159,B042,,,,,,,, +11984,B16,B042,,,,,,,, +11985,B160,B042,,,,,,,, +11986,B161,B042,,,,,,,, +11987,B162,B042,,,,,,,, +11988,B163,B042,,,,,,,, +11989,B164,B042,,,,,,,, +11990,B165,B042,,,,,,,, +11991,B166,B042,,,,,,,, +11992,B167,B042,,,,,,,, +11993,B168,B042,,,,,,,, +11994,B169,B042,,,,,,,, +11995,B17,B042,,,,,,,, +11996,B170,B042,,,,,,,, +11997,B171,B042,,,,,,,, +11998,B172,B042,,,,,,,, +11999,B173,B042,,,,,,,, +12000,B174,B042,,,,,,,, +12001,B175,B042,,,,,,,, +12002,B176,B042,,,,,,,, +12003,B177,B042,,,,,,,, +12004,B178,B042,,,,,,,, +12005,B179,B042,,,,,,,, +12006,B18,B042,,,,,,,, +12007,B180,B042,,,,,,,, +12008,B181,B042,,,,,,,, +12009,B182,B042,,,,,,,, +12010,B183,B042,,,,,,,, +12011,B184,B042,,,,,,,, +12012,B185,B042,,,,,,,, +12013,B186,B042,,,,,,,, +12014,B187,B042,,,,,,,, +12015,B188,B042,,,,,,,, +12016,B189,B042,,,,,,,, +12017,B19,B042,,,,,,,, +12018,B190,B042,,,,,,,, +12019,B191,B042,,,,,,,, +12020,B192,B042,,,,,,,, +12021,B193,B042,,,,,,,, +12022,B194,B042,,,,,,,, +12023,B195,B042,,,,,,,, +12024,B196,B042,63,,,corbusier1886[278-79],,1870,Binford_2001_Table_6.03, +12025,B197,B042,,,,,,,, +12026,B198,B042,,,,,,,, +12027,B199,B042,,,,,,,, +12028,B2,B042,40.6,,,eder1987[140],,1968,Binford_2001_Table_6.03, +12029,B20,B042,,,,,,,, +12030,B200,B042,,,,,,,, +12031,B201,B042,,,,,,,, +12032,B202,B042,,,,,,,, +12033,B203,B042,,,,,,,, +12034,B204,B042,,,,,,,, +12035,B205,B042,,,,,,,, +12036,B206,B042,,,,,,,, +12037,B207,B042,,,,,,,, +12038,B208,B042,,,,,,,, +12039,B209,B042,,,,,,,, +12040,B21,B042,,,,,,,, +12041,B210,B042,,,,,,,, +12042,B211,B042,,,,,,,, +12043,B212,B042,,,,,,,, +12044,B213,B042,,,,,,,, +12045,B214,B042,,,,,,,, +12046,B215,B042,,,,,,,, +12047,B216,B042,,,,,,,, +12048,B217,B042,,,,,,,, +12049,B218,B042,,,,,,,, +12050,B219,B042,,,,,,,, +12051,B22,B042,,,,,,,, +12052,B221,B042,,,,,,,, +12053,B222,B042,,,,,,,, +12054,B223,B042,,,,,,,, +12055,B224,B042,,,,,,,, +12056,B225,B042,,,,,,,, +12057,B226,B042,,,,,,,, +12058,B227,B042,,,,,,,, +12059,B228,B042,,,,,,,, +12060,B229,B042,,,,,,,, +12061,B23,B042,,,,,,,, +12062,B230,B042,,,,,,,, +12063,B231,B042,,,,,,,, +12064,B232,B042,,,,,,,, +12065,B233,B042,,,,,,,, +12066,B234,B042,,,,,,,, +12067,B24,B042,,,,,,,, +12068,B240,B042,,,,,,,, +12069,B241,B042,,,,,,,, +12070,B242,B042,,,,,,,, +12071,B243,B042,,,,,,,, +12072,B244,B042,,,,,,,, +12073,B245,B042,,,,,,,, +12074,B246,B042,,,,,,,, +12075,B248,B042,,,,,,,, +12076,B249,B042,,,,,,,, +12077,B25,B042,,,,,,,, +12078,B250,B042,,,,,,,, +12079,B252,B042,,,,,,,, +12080,B253,B042,,,,,,,, +12081,B254,B042,,,,,,,, +12082,B255,B042,,,,,,,, +12083,B256,B042,,,,,,,, +12084,B257,B042,,,,,,,, +12085,B258,B042,,,,,,,, +12086,B259,B042,,,,,,,, +12087,B26,B042,,,,,,,, +12088,B260,B042,,,,,,,, +12089,B268,B042,,,,,,,, +12090,B269,B042,,,,,,,, +12091,B27,B042,,,,,,,, +12092,B270,B042,,,,,,,, +12093,B271,B042,,,,,,,, +12094,B272,B042,,,,,,,, +12095,B273,B042,,,,,,,, +12096,B274,B042,,,,,,,, +12097,B275,B042,,,,,,,, +12098,B276,B042,,,,,,,, +12099,B277,B042,,,,,,,, +12100,B278,B042,,,,,,,, +12101,B279,B042,,,,,,,, +12102,B28,B042,,,,,,,, +12103,B280,B042,,,,,,,, +12104,B281,B042,,,,,,,, +12105,B282,B042,,,,,,,, +12106,B283,B042,,,,,,,, +12107,B284,B042,,,,,,,, +12108,B285,B042,,,,,,,, +12109,B286,B042,,,,,,,, +12110,B287,B042,,,,,,,, +12111,B288,B042,,,,,,,, +12112,B289,B042,,,,,,,, +12113,B290,B042,,,,,,,, +12114,B291,B042,,,,,,,, +12115,B292,B042,,,,,,,, +12116,B293,B042,,,,,,,, +12117,B294,B042,,,,,,,, +12118,B295,B042,,,,,,,, +12119,B296,B042,,,,,,,, +12120,B297,B042,,,,,,,, +12121,B298,B042,,,,,,,, +12122,B299,B042,,,,,,,, +12123,B3,B042,,,,,,,, +12124,B315,B042,,,,,,,, +12125,B316,B042,,,,,,,, +12126,B317,B042,,,,,,,, +12127,B318,B042,,,,,,,, +12128,B319,B042,,,,,,,, +12129,B320,B042,,,,,,,, +12130,B321,B042,,,,,,,, +12131,B322,B042,,,,,,,, +12132,B323,B042,,,,,,,, +12133,B324,B042,,,,,,,, +12134,B325,B042,,,,,,,, +12135,B326,B042,,,,,,,, +12136,B327,B042,,,,,,,, +12137,B328,B042,,,,,,,, +12138,B329,B042,,,,,,,, +12139,B330,B042,,,,,,,, +12140,B331,B042,,,,,,,, +12141,B332,B042,,,,,,,, +12142,B333,B042,,,,,,,, +12143,B334,B042,,,,,,,, +12144,B335,B042,,,,,,,, +12145,B336,B042,,,,,,,, +12146,B337,B042,,,,,,,, +12147,B338,B042,,,,,,,, +12148,B339,B042,,,,,,,, +12149,B340,B042,,,,,,,, +12150,B341,B042,,,,,,,, +12151,B342,B042,,,,,,,, +12152,B343,B042,,,,,,,, +12153,B344,B042,,,,,,,, +12154,B345,B042,,,,,,,, +12155,B346,B042,,,,,,,, +12156,B347,B042,,,,,,,, +12157,B348,B042,,,,,,,, +12158,B349,B042,,,,,,,, +12159,B35,B042,,,,,,,, +12160,B350,B042,,,,,,,, +12161,B351,B042,,,,,,,, +12162,B352,B042,,,,,,,, +12163,B353,B042,,,,,,,, +12164,B354,B042,,,,,,,, +12165,B355,B042,,,,,,,, +12166,B356,B042,,,,,,,, +12167,B357,B042,,,,,,,, +12168,B358,B042,,,,,,,, +12169,B359,B042,,,,,,,, +12170,B36,B042,,,,,,,, +12171,B360,B042,,,,,,,, +12172,B361,B042,,,,,,,, +12173,B362,B042,,,,,,,, +12174,B363,B042,,,,,,,, +12175,B364,B042,,,,,,,, +12176,B365,B042,,,,,,,, +12177,B369,B042,,,,,,,, +12178,B37,B042,,,,,,,, +12179,B370,B042,,,,,,,, +12180,B371,B042,64.3,,,rodahlandedwards1952[243],,1880,Binford_2001_Table_6.03, +12181,B372,B042,,,,,,,, +12182,B373,B042,,,,,,,, +12183,B374,B042,,,,,,,, +12184,B375,B042,,,,,,,, +12185,B377,B042,,,,,,,, +12186,B378,B042,,,,,,,, +12187,B379,B042,56.5,,,rodahlandedwards1952[243],,1920,Binford_2001_Table_6.03, +12188,B38,B042,,,,,,,, +12189,B380,B042,,,,,,,, +12190,B381,B042,,,,,,,, +12191,B382,B042,,,,,,,, +12192,B383,B042,,,,,,,, +12193,B384,B042,,,,,,,, +12194,B385,B042,,,,,,,, +12195,B386,B042,,,,,,,, +12196,B387,B042,,,,,,,, +12197,B388,B042,,,,,,,, +12198,B389,B042,61.22,,,seltzer1933[341],Barrow Tareumiut,1880,Binford_2001_Table_6.03, +12199,B39,B042,47.3,,,hurtadoandhill1990[329],,1960,Binford_2001_Table_6.03, +12200,B390,B042,,,,,,,, +12201,B4,B042,48,,"Note, for this society, Binford provided two estimates (48, 47.1); this entry is one of those estimates",agrawal1967[84-87];rizvi1990[35],,1989,Binford_2001_Table_6.03, +12202,B4,B042,47.1,,"Note, for this society, Binford provided two estimates (48, 47.1); this entry is one of those estimates",agrawal1967[84-87];rizvi1990[35],,1989,Binford_2001_Table_6.03, +12203,B40,B042,,,,,,,, +12204,B41,B042,,,,,,,, +12205,B42,B042,,,,,,,, +12206,B43,B042,,,,,,,, +12207,B44,B042,,,,,,,, +12208,B45,B042,,,,,,,, +12209,B46,B042,,,,,,,, +12210,B47,B042,55.8,,,"hilletal1984[table 4, 132]",,1975,Binford_2001_Table_6.03, +12211,B48,B042,,,,,,,, +12212,B49,B042,,,,,,,, +12213,B5,B042,39.5,,"Note, for this society, Binford provided two estimates (39.5, 42.3); this entry is one of those estimates",man1883[73];temple1903[54],,1952,Binford_2001_Table_6.03, +12214,B5,B042,42.3,,"Note, for this society, Binford provided two estimates (39.5, 42.3); this entry is one of those estimates",man1883[73];temple1903[54],,1952,Binford_2001_Table_6.03, +12215,B50,B042,,,,,,,, +12216,B51,B042,,,,,,,, +12217,B52,B042,,,,,,,, +12218,B53,B042,,,,,,,, +12219,B54,B042,,,,,,,, +12220,B55,B042,,,,,,,, +12221,B6,B042,,,,,,,, +12222,B60,B042,,,,,,,, +12223,B61,B042,,,,,,,, +12224,B62,B042,,,,,,,, +12225,B63,B042,,,,,,,, +12226,B64,B042,37.9,,,baileyandpeacock1988[107],,1980,Binford_2001_Table_6.03, +12227,B65,B042,,,,,,,, +12228,B66,B042,,,,,,,, +12229,B67,B042,,,,,,,, +12230,B68,B042,,,,,,,, +12231,B69,B042,,,,,,,, +12232,B7,B042,,,,,,,, +12233,B70,B042,,,,,,,, +12234,B71,B042,,,,,,,, +12235,B72,B042,42.5,,,bleek1929[106];howell1979[258-59],,1950,Binford_2001_Table_6.03, +12236,B73,B042,,,,,,,, +12237,B74,B042,,,,,,,, +12238,B75,B042,54.43,,,tobias1962[802-3];wyndhamandmorrison1958[221],,1976,Binford_2001_Table_6.03, +12239,B76,B042,,,,,,,, +12240,B77,B042,,,,,,,, +12241,B78,B042,,,,,,,, +12242,B79,B042,,,,,,,, +12243,B8,B042,,,,,,,, +12244,B82,B042,,,,,,,, +12245,B83,B042,55.1,,,howells1937[16],,1900,Binford_2001_Table_6.03, +12246,B84,B042,46.1,,,altman1987[34],,1978,Binford_2001_Table_6.03, +12247,B85,B042,,,,,,,, +12248,B86,B042,,,,,,,, +12249,B87,B042,,,,,,,, +12250,B88,B042,43.5,,,howells1937[16];peterson1976[269],,1930,Binford_2001_Table_6.03, +12251,B89,B042,,,,,,,, +12252,B9,B042,,,,,,,, +12253,B90,B042,,,,,,,, +12254,B91,B042,,,,,,,, +12255,B92,B042,55.8,,,howells1937[16],,1960,Binford_2001_Table_6.03, +12256,B93,B042,,,,,,,, +12257,B94,B042,,,,,,,, +12258,B95,B042,56.9,,,howells1937[16],,1920,Binford_2001_Table_6.03, +12259,B96,B042,,,,,,,, +12260,B97,B042,,,,,,,, +12261,B98,B042,,,,,,,, +12262,B99,B042,,,,,,,, +12263,B1,B005,Suspect,B005-2,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_5.01, +12264,B10,B005,Suspect,B005-2,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_5.01, +12265,B100,B005,Normal,B005-1,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_5.01, +12266,B101,B005,Normal,B005-1,,kaberry1939,,1934,Binford_2001_Table_5.01, +12267,B102,B005,Normal,B005-1,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_5.01, +12268,B103,B005,Normal,B005-1,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_5.01, +12269,B104,B005,Normal,B005-1,,,,,Binford_2001_Table_5.01, +12270,B105,B005,Suspect,B005-2,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_5.01, +12271,B106,B005,Normal,B005-1,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_5.01, +12272,B107,B005,Normal,B005-1,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_5.01, +12273,B108,B005,Normal,B005-1,,kaberry1939;nind1831,,1934,Binford_2001_Table_5.01, +12274,B109,B005,Normal,B005-1,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_5.01, +12275,B11,B005,Suspect,B005-2,,morris1982a,,1972,Binford_2001_Table_5.01, +12276,B110,B005,Suspect,B005-2,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_5.01, +12277,B111,B005,Normal,B005-1,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01, +12278,B112,B005,Normal,B005-1,,petersonandlong1986,,1968,Binford_2001_Table_5.01, +12279,B113,B005,Normal,B005-1,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_5.01, +12280,B114,B005,Normal,B005-1,,colliverandwoolston1975,,1848,Binford_2001_Table_5.01, +12281,B115,B005,Normal,B005-1,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_5.01, +12282,B116,B005,Normal,B005-1,,duncankemp1964,,1900,Binford_2001_Table_5.01, +12283,B117,B005,Normal,B005-1,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_5.01, +12284,B118,B005,Normal,B005-1,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_5.01, +12285,B119,B005,Normal,B005-1,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_5.01, +12286,B12,B005,Suspect,B005-2,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_5.01, +12287,B120,B005,Normal,B005-1,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_5.01, +12288,B121,B005,Normal,B005-1,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_5.01, +12289,B122,B005,Normal,B005-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +12290,B123,B005,Normal,B005-1,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_5.01, +12291,B124,B005,Normal,B005-1,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_5.01, +12292,B125,B005,Normal,B005-1,,parker1905,,1880,Binford_2001_Table_5.01, +12293,B126,B005,Normal,B005-1,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_5.01, +12294,B127,B005,Suspect,B005-2,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +12295,B128,B005,Normal,B005-1,,,,1890,Binford_2001_Table_5.01, +12296,B129,B005,Normal,B005-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +12297,B13,B005,Suspect,B005-2,,rai1982;wastl1957,,1979,Binford_2001_Table_5.01, +12298,B130,B005,Normal,B005-1,,,,1910,Binford_2001_Table_5.01, +12299,B131,B005,Normal,B005-1,,,,1850,Binford_2001_Table_5.01, +12300,B132,B005,Normal,B005-1,,nind1831,,1850,Binford_2001_Table_5.01, +12301,B133,B005,Normal,B005-1,,williams1985,,1850,Binford_2001_Table_5.01, +12302,B134,B005,Normal,B005-1,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_5.01, +12303,B135,B005,Normal,B005-1,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_5.01, +12304,B136,B005,Normal,B005-1,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_5.01, +12305,B137,B005,Normal,B005-1,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_5.01, +12306,B14,B005,Suspect,B005-2,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_5.01, +12307,B143,B005,Normal,B005-1,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_5.01, +12308,B144,B005,Suspect,B005-2,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_5.01, +12309,B145,B005,Suspect,B005-2,,gifford1926b;strong1929a,,1870,Binford_2001_Table_5.01, +12310,B146,B005,Normal,B005-1,,meigs1939,,1880,Binford_2001_Table_5.01, +12311,B147,B005,Normal,B005-1,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_5.01, +12312,B148,B005,Normal,B005-1,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_5.01, +12313,B149,B005,Normal,B005-1,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_5.01, +12314,B15,B005,Suspect,B005-2,,furerhaimendorf1943b,,1940,Binford_2001_Table_5.01, +12315,B150,B005,Normal,B005-1,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_5.01, +12316,B151,B005,Normal,B005-1,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_5.01, +12317,B152,B005,Normal,B005-1,,voegelin1938,,1850,Binford_2001_Table_5.01, +12318,B153,B005,Normal,B005-1,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_5.01, +12319,B154,B005,Normal,B005-1,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_5.01, +12320,B155,B005,Normal,B005-1,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_5.01, +12321,B156,B005,Normal,B005-1,,,,1770,Binford_2001_Table_5.01, +12322,B157,B005,Normal,B005-1,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_5.01, +12323,B158,B005,Normal,B005-1,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +12324,B159,B005,Normal,B005-1,,cook1956;gifford1926a,,1860,Binford_2001_Table_5.01, +12325,B16,B005,Suspect,B005-2,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_5.01, +12326,B160,B005,Normal,B005-1,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_5.01, +12327,B161,B005,Normal,B005-1,,cookandheizer1965,,1860,Binford_2001_Table_5.01, +12328,B162,B005,Normal,B005-1,,dixon1910,,1860,Binford_2001_Table_5.01, +12329,B163,B005,Normal,B005-1,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_5.01, +12330,B164,B005,Normal,B005-1,,gifford1926b,,1805,Binford_2001_Table_5.01, +12331,B165,B005,Normal,B005-1,,barrett1908;cook1956,,1860,Binford_2001_Table_5.01, +12332,B166,B005,Normal,B005-1,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_5.01, +12333,B167,B005,Normal,B005-1,,,,,Binford_2001_Table_5.01, +12334,B168,B005,Normal,B005-1,,collierandthalman1991,,1850,Binford_2001_Table_5.01, +12335,B169,B005,Normal,B005-1,,cook1956;nomland1938,,,Binford_2001_Table_5.01, +12336,B17,B005,Suspect,B005-2,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_5.01, +12337,B170,B005,Normal,B005-1,,cook1955,,,Binford_2001_Table_5.01, +12338,B171,B005,Normal,B005-1,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_5.01, +12339,B172,B005,Normal,B005-1,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_5.01, +12340,B173,B005,Normal,B005-1,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +12341,B174,B005,Normal,B005-1,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +12342,B175,B005,Normal,B005-1,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_5.01, +12343,B176,B005,Normal,B005-1,,gray1987,,1860,Binford_2001_Table_5.01, +12344,B177,B005,Normal,B005-1,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +12345,B178,B005,Normal,B005-1,,cook1956;drucker1940,,1870,Binford_2001_Table_5.01, +12346,B179,B005,Normal,B005-1,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_5.01, +12347,B18,B005,Suspect,B005-2,,senandsen1955;williams1974,,1963,Binford_2001_Table_5.01, +12348,B180,B005,Normal,B005-1,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_5.01, +12349,B181,B005,Normal,B005-1,,gray1987,,1870,Binford_2001_Table_5.01, +12350,B182,B005,Normal,B005-1,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_5.01, +12351,B183,B005,Normal,B005-1,,gifford1926b,,1860,Binford_2001_Table_5.01, +12352,B184,B005,Normal,B005-1,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_5.01, +12353,B185,B005,Normal,B005-1,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_5.01, +12354,B186,B005,Normal,B005-1,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_5.01, +12355,B187,B005,Normal,B005-1,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_5.01, +12356,B188,B005,Normal,B005-1,,gifford1926b;ray1963,,1860,Binford_2001_Table_5.01, +12357,B189,B005,Normal,B005-1,,gifford1926b;spier1930,,1860,Binford_2001_Table_5.01, +12358,B19,B005,Suspect,B005-2,,ehrenfels1952,,1946,Binford_2001_Table_5.01, +12359,B190,B005,Normal,B005-1,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_5.01, +12360,B191,B005,Normal,B005-1,,,,1570,Binford_2001_Table_5.01, +12361,B192,B005,Normal,B005-1,,smith1978a;steward1938,,1860,Binford_2001_Table_5.01, +12362,B193,B005,Normal,B005-1,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_5.01, +12363,B194,B005,Normal,B005-1,,,,1715,Binford_2001_Table_5.01, +12364,B195,B005,Normal,B005-1,,steward1938,,1850,Binford_2001_Table_5.01, +12365,B196,B005,Suspect,B005-2,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_5.01, +12366,B197,B005,Normal,B005-1,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +12367,B198,B005,Suspect,B005-2,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_5.01, +12368,B199,B005,Normal,B005-1,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_5.01, +12369,B2,B005,Suspect,B005-2,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_5.01, +12370,B20,B005,Suspect,B005-2,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_5.01, +12371,B200,B005,Normal,B005-1,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +12372,B201,B005,Normal,B005-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +12373,B202,B005,Normal,B005-1,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_5.01, +12374,B203,B005,Normal,B005-1,,steward1938;thomas1983,,1860,Binford_2001_Table_5.01, +12375,B204,B005,Normal,B005-1,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_5.01, +12376,B205,B005,Normal,B005-1,,davis1965,,1870,Binford_2001_Table_5.01, +12377,B206,B005,Normal,B005-1,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_5.01, +12378,B207,B005,Normal,B005-1,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +12379,B208,B005,Normal,B005-1,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_5.01, +12380,B209,B005,Normal,B005-1,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_5.01, +12381,B21,B005,Suspect,B005-2,,bird1983;birddavid1987,,1978,Binford_2001_Table_5.01, +12382,B210,B005,Normal,B005-1,,fowler1992,,1870,Binford_2001_Table_5.01, +12383,B211,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12384,B212,B005,Normal,B005-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +12385,B213,B005,Normal,B005-1,,steward1938,,1870,Binford_2001_Table_5.01, +12386,B214,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12387,B215,B005,Normal,B005-1,,steward1938,,1870,Binford_2001_Table_5.01, +12388,B216,B005,Normal,B005-1,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_5.01, +12389,B217,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12390,B218,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12391,B219,B005,Normal,B005-1,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_5.01, +12392,B22,B005,Normal,B005-1,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_5.01, +12393,B221,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12394,B222,B005,Normal,B005-1,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_5.01, +12395,B223,B005,Normal,B005-1,,lowie1924,,1870,Binford_2001_Table_5.01, +12396,B224,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12397,B225,B005,Normal,B005-1,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_5.01, +12398,B226,B005,Normal,B005-1,,brink1969;kelly1932,,1870,Binford_2001_Table_5.01, +12399,B227,B005,Normal,B005-1,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_5.01, +12400,B228,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12401,B229,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12402,B23,B005,Normal,B005-1,,qiu1983,,1900,Binford_2001_Table_5.01, +12403,B230,B005,Normal,B005-1,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_5.01, +12404,B231,B005,Normal,B005-1,,whiting1950,,1870,Binford_2001_Table_5.01, +12405,B232,B005,Normal,B005-1,,boas1899;steward1938,,1860,Binford_2001_Table_5.01, +12406,B233,B005,Normal,B005-1,,steward1938,,1860,Binford_2001_Table_5.01, +12407,B234,B005,Normal,B005-1,,boas1899;steward1974b,,1860,Binford_2001_Table_5.01, +12408,B24,B005,Normal,B005-1,,lee1967;shimkin1939,,1900,Binford_2001_Table_5.01, +12409,B240,B005,Suspect,B005-2,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_5.01, +12410,B241,B005,Normal,B005-1,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_5.01, +12411,B242,B005,Suspect,B005-2,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_5.01, +12412,B243,B005,Normal,B005-1,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_5.01, +12413,B244,B005,Normal,B005-1,,bamforth1988;ewers1955,,1860,Binford_2001_Table_5.01, +12414,B245,B005,Normal,B005-1,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_5.01, +12415,B246,B005,Normal,B005-1,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_5.01, +12416,B248,B005,Normal,B005-1,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_5.01, +12417,B249,B005,Normal,B005-1,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_5.01, +12418,B25,B005,Normal,B005-1,,shternberg1933,,1920,Binford_2001_Table_5.01, +12419,B250,B005,Normal,B005-1,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_5.01, +12420,B252,B005,Normal,B005-1,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +12421,B253,B005,Normal,B005-1,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_5.01, +12422,B254,B005,Normal,B005-1,,skinner1914,,1850,Binford_2001_Table_5.01, +12423,B255,B005,Normal,B005-1,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_5.01, +12424,B256,B005,Normal,B005-1,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_5.01, +12425,B257,B005,Normal,B005-1,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +12426,B258,B005,Normal,B005-1,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_5.01, +12427,B259,B005,Normal,B005-1,,bamforth1988;ewers1955,,1850,Binford_2001_Table_5.01, +12428,B26,B005,Normal,B005-1,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_5.01, +12429,B260,B005,Normal,B005-1,,bamforth1988;jenness1938,,1880,Binford_2001_Table_5.01, +12430,B268,B005,Normal,B005-1,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_5.01, +12431,B269,B005,Normal,B005-1,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +12432,B27,B005,Normal,B005-1,,chard1963;popov1966,,1933,Binford_2001_Table_5.01, +12433,B270,B005,Normal,B005-1,,smith1940a;smith1940b,,1870,Binford_2001_Table_5.01, +12434,B271,B005,Normal,B005-1,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_5.01, +12435,B272,B005,Normal,B005-1,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_5.01, +12436,B273,B005,Normal,B005-1,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_5.01, +12437,B274,B005,Normal,B005-1,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_5.01, +12438,B275,B005,Normal,B005-1,,boyd1990;zenk1990,,1860,Binford_2001_Table_5.01, +12439,B276,B005,Normal,B005-1,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_5.01, +12440,B277,B005,Normal,B005-1,,stern1934,,1880,Binford_2001_Table_5.01, +12441,B278,B005,Normal,B005-1,,olson1936a;schalk1978,,1860,Binford_2001_Table_5.01, +12442,B279,B005,Normal,B005-1,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_5.01, +12443,B28,B005,Normal,B005-1,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_5.01, +12444,B280,B005,Normal,B005-1,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_5.01, +12445,B281,B005,Normal,B005-1,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_5.01, +12446,B282,B005,Normal,B005-1,,kennedyandbouchard1990,,1860,Binford_2001_Table_5.01, +12447,B283,B005,Normal,B005-1,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_5.01, +12448,B284,B005,Normal,B005-1,,pettitt1950,,1880,Binford_2001_Table_5.01, +12449,B285,B005,Normal,B005-1,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_5.01, +12450,B286,B005,Normal,B005-1,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_5.01, +12451,B287,B005,Normal,B005-1,,olson1940;schalk1978,,1880,Binford_2001_Table_5.01, +12452,B288,B005,Normal,B005-1,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +12453,B289,B005,Normal,B005-1,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_5.01, +12454,B290,B005,Normal,B005-1,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +12455,B291,B005,Normal,B005-1,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_5.01, +12456,B292,B005,Normal,B005-1,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_5.01, +12457,B293,B005,Normal,B005-1,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_5.01, +12458,B294,B005,Normal,B005-1,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_5.01, +12459,B295,B005,Normal,B005-1,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_5.01, +12460,B296,B005,Normal,B005-1,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_5.01, +12461,B297,B005,Normal,B005-1,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_5.01, +12462,B298,B005,Normal,B005-1,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_5.01, +12463,B299,B005,Normal,B005-1,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_5.01, +12464,B3,B005,Suspect,B005-2,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_5.01, +12465,B315,B005,Normal,B005-1,,murdock1980,,1850,Binford_2001_Table_5.01, +12466,B316,B005,Normal,B005-1,,,,1860,Binford_2001_Table_5.01, +12467,B317,B005,Normal,B005-1,,teit1928,,1870,Binford_2001_Table_5.01, +12468,B318,B005,Normal,B005-1,,,,1880,Binford_2001_Table_5.01, +12469,B319,B005,Normal,B005-1,,spierandsapir1930,,1860,Binford_2001_Table_5.01, +12470,B320,B005,Normal,B005-1,,teit1930,,1860,Binford_2001_Table_5.01, +12471,B321,B005,Normal,B005-1,,clineetal1938,,1880,Binford_2001_Table_5.01, +12472,B322,B005,Normal,B005-1,,grabert1974;teit1930,,1860,Binford_2001_Table_5.01, +12473,B323,B005,Normal,B005-1,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_5.01, +12474,B324,B005,Normal,B005-1,,spinden1908,,1850,Binford_2001_Table_5.01, +12475,B325,B005,Normal,B005-1,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_5.01, +12476,B326,B005,Normal,B005-1,,teit1930,,1870,Binford_2001_Table_5.01, +12477,B327,B005,Normal,B005-1,,jenness1935;quimby1962,,1870,Binford_2001_Table_5.01, +12478,B328,B005,Normal,B005-1,,kinietz1947,,1800,Binford_2001_Table_5.01, +12479,B329,B005,Normal,B005-1,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_5.01, +12480,B330,B005,Normal,B005-1,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_5.01, +12481,B331,B005,Normal,B005-1,,hickerson1967;landes1937a,,1880,Binford_2001_Table_5.01, +12482,B332,B005,Normal,B005-1,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_5.01, +12483,B333,B005,Normal,B005-1,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_5.01, +12484,B334,B005,Normal,B005-1,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_5.01, +12485,B335,B005,Normal,B005-1,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_5.01, +12486,B336,B005,Normal,B005-1,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_5.01, +12487,B337,B005,Normal,B005-1,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_5.01, +12488,B338,B005,Normal,B005-1,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_5.01, +12489,B339,B005,Normal,B005-1,,dunning1959;rogers1969,,1850,Binford_2001_Table_5.01, +12490,B340,B005,Normal,B005-1,,morantz1983;rogers1969,,1900,Binford_2001_Table_5.01, +12491,B341,B005,Normal,B005-1,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_5.01, +12492,B342,B005,Normal,B005-1,,lane1952;tanner1944,,1880,Binford_2001_Table_5.01, +12493,B343,B005,Normal,B005-1,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_5.01, +12494,B344,B005,Normal,B005-1,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_5.01, +12495,B345,B005,Normal,B005-1,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_5.01, +12496,B346,B005,Normal,B005-1,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_5.01, +12497,B347,B005,Normal,B005-1,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_5.01, +12498,B348,B005,Normal,B005-1,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +12499,B349,B005,Normal,B005-1,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_5.01, +12500,B35,B005,Normal,B005-1,,,,1950,Binford_2001_Table_5.01, +12501,B350,B005,Normal,B005-1,,gillespie1981,,1800,Binford_2001_Table_5.01, +12502,B351,B005,Normal,B005-1,,adney1900;crowandobley1981,,1880,Binford_2001_Table_5.01, +12503,B352,B005,Normal,B005-1,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_5.01, +12504,B353,B005,Normal,B005-1,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_5.01, +12505,B354,B005,Normal,B005-1,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_5.01, +12506,B355,B005,Normal,B005-1,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_5.01, +12507,B356,B005,Normal,B005-1,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_5.01, +12508,B357,B005,Normal,B005-1,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_5.01, +12509,B358,B005,Normal,B005-1,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_5.01, +12510,B359,B005,Normal,B005-1,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_5.01, +12511,B36,B005,Suspect,B005-2,,metraux1948,,1960,Binford_2001_Table_5.01, +12512,B360,B005,Normal,B005-1,,morantz1983;skinner1911,,1900,Binford_2001_Table_5.01, +12513,B361,B005,Normal,B005-1,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_5.01, +12514,B362,B005,Normal,B005-1,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_5.01, +12515,B363,B005,Normal,B005-1,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_5.01, +12516,B364,B005,Normal,B005-1,,michael1967;snow1981,,1860,Binford_2001_Table_5.01, +12517,B365,B005,Normal,B005-1,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_5.01, +12518,B369,B005,Normal,B005-1,,ray1992;seltzer1933,,1870,Binford_2001_Table_5.01, +12519,B37,B005,Normal,B005-1,,kloos1977;kloos1982,,1968,Binford_2001_Table_5.01, +12520,B370,B005,Normal,B005-1,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_5.01, +12521,B371,B005,Normal,B005-1,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_5.01, +12522,B372,B005,Normal,B005-1,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_5.01, +12523,B373,B005,Normal,B005-1,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_5.01, +12524,B374,B005,Normal,B005-1,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_5.01, +12525,B375,B005,Normal,B005-1,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_5.01, +12526,B377,B005,Normal,B005-1,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_5.01, +12527,B378,B005,Normal,B005-1,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_5.01, +12528,B379,B005,Normal,B005-1,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_5.01, +12529,B38,B005,Suspect,B005-2,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_5.01, +12530,B380,B005,Normal,B005-1,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_5.01, +12531,B381,B005,Normal,B005-1,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_5.01, +12532,B382,B005,Normal,B005-1,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_5.01, +12533,B383,B005,Normal,B005-1,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_5.01, +12534,B384,B005,Normal,B005-1,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_5.01, +12535,B385,B005,Normal,B005-1,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_5.01, +12536,B386,B005,Normal,B005-1,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_5.01, +12537,B387,B005,Normal,B005-1,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_5.01, +12538,B388,B005,Normal,B005-1,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_5.01, +12539,B389,B005,Normal,B005-1,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_5.01, +12540,B39,B005,Suspect,B005-2,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_5.01, +12541,B390,B005,Normal,B005-1,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_5.01, +12542,B4,B005,Normal,B005-1,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_5.01, +12543,B40,B005,Normal,B005-1,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_5.01, +12544,B41,B005,Suspect,B005-2,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_5.01, +12545,B42,B005,Suspect,B005-2,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_5.01, +12546,B43,B005,Suspect,B005-2,,holmberg1950,,1940,Binford_2001_Table_5.01, +12547,B44,B005,Suspect,B005-2,,stearman1989,,1968,Binford_2001_Table_5.01, +12548,B45,B005,Suspect,B005-2,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_5.01, +12549,B46,B005,Normal,B005-1,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_5.01, +12550,B47,B005,Suspect,B005-2,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01, +12551,B48,B005,Suspect,B005-2,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_5.01, +12552,B49,B005,Normal,B005-1,,kozaketal1979,,1954,Binford_2001_Table_5.01, +12553,B5,B005,Normal,B005-1,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_5.01, +12554,B50,B005,Suspect,B005-2,,henry1964,,1910,Binford_2001_Table_5.01, +12555,B51,B005,Normal,B005-1,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_5.01, +12556,B52,B005,Normal,B005-1,,cooper1946d,,1880,Binford_2001_Table_5.01, +12557,B53,B005,Normal,B005-1,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_5.01, +12558,B54,B005,Normal,B005-1,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_5.01, +12559,B55,B005,Normal,B005-1,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_5.01, +12560,B6,B005,Normal,B005-1,,temple1903,,1906,Binford_2001_Table_5.01, +12561,B60,B005,Suspect,B005-2,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_5.01, +12562,B61,B005,Suspect,B005-2,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_5.01, +12563,B62,B005,Suspect,B005-2,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_5.01, +12564,B63,B005,Suspect,B005-2,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_5.01, +12565,B64,B005,Suspect,B005-2,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_5.01, +12566,B65,B005,Suspect,B005-2,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_5.01, +12567,B66,B005,Suspect,B005-2,,kellyandpoyer1993,,,Binford_2001_Table_5.01, +12568,B67,B005,Normal,B005-1,,clark1951,,1950,Binford_2001_Table_5.01, +12569,B68,B005,Suspect,B005-2,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_5.01, +12570,B69,B005,Normal,B005-1,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_5.01, +12571,B7,B005,Suspect,B005-2,,fox1952;reed1904,,1903,Binford_2001_Table_5.01, +12572,B70,B005,Suspect,B005-2,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_5.01, +12573,B71,B005,Suspect,B005-2,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_5.01, +12574,B72,B005,Normal,B005-1,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_5.01, +12575,B73,B005,Suspect,B005-2,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_5.01, +12576,B74,B005,Normal,B005-1,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_5.01, +12577,B75,B005,Suspect,B005-2,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_5.01, +12578,B76,B005,Normal,B005-1,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_5.01, +12579,B77,B005,Normal,B005-1,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_5.01, +12580,B78,B005,Suspect,B005-2,,potgieter1955;toerien1958,,1950,Binford_2001_Table_5.01, +12581,B79,B005,Normal,B005-1,,bleek1924a,,,Binford_2001_Table_5.01, +12582,B8,B005,Normal,B005-1,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_5.01, +12583,B82,B005,Suspect,B005-2,,moore1979,,1848,Binford_2001_Table_5.01, +12584,B83,B005,Normal,B005-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +12585,B84,B005,Suspect,B005-2,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_5.01, +12586,B85,B005,Suspect,B005-2,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_5.01, +12587,B86,B005,Normal,B005-1,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_5.01, +12588,B87,B005,Suspect,B005-2,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_5.01, +12589,B88,B005,Normal,B005-1,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_5.01, +12590,B89,B005,Normal,B005-1,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_5.01, +12591,B9,B005,Suspect,B005-2,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_5.01, +12592,B90,B005,Normal,B005-1,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_5.01, +12593,B91,B005,Normal,B005-1,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_5.01, +12594,B92,B005,Normal,B005-1,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_5.01, +12595,B93,B005,Normal,B005-1,,thomson1933;thomson1934,,1930,Binford_2001_Table_5.01, +12596,B94,B005,Normal,B005-1,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_5.01, +12597,B95,B005,Normal,B005-1,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_5.01, +12598,B96,B005,Normal,B005-1,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_5.01, +12599,B97,B005,Normal,B005-1,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_5.01, +12600,B98,B005,Normal,B005-1,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_5.01, +12601,B99,B005,Normal,B005-1,,stanner1933,,1900,Binford_2001_Table_5.01, +12602,B1,B006,349,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_5.01, +12603,B10,B006,72,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_5.01, +12604,B100,B006,1114,,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_5.01, +12605,B101,B006,562,,,kaberry1939,,1934,Binford_2001_Table_5.01, +12606,B102,B006,120,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_5.01, +12607,B103,B006,165,,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_5.01, +12608,B104,B006,536,,,,,,Binford_2001_Table_5.01, +12609,B105,B006,585,,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_5.01, +12610,B106,B006,1111,,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_5.01, +12611,B107,B006,1562,,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_5.01, +12612,B108,B006,1345,,,kaberry1939;nind1831,,1934,Binford_2001_Table_5.01, +12613,B109,B006,1598,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_5.01, +12614,B11,B006,556,,,morris1982a,,1972,Binford_2001_Table_5.01, +12615,B110,B006,299,,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_5.01, +12616,B111,B006,169,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01, +12617,B112,B006,354,,,petersonandlong1986,,1968,Binford_2001_Table_5.01, +12618,B113,B006,343,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_5.01, +12619,B114,B006,500,,,colliverandwoolston1975,,1848,Binford_2001_Table_5.01, +12620,B115,B006,219,,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_5.01, +12621,B116,B006,660,,,duncankemp1964,,1900,Binford_2001_Table_5.01, +12622,B117,B006,560,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_5.01, +12623,B118,B006,312,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_5.01, +12624,B119,B006,804,,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_5.01, +12625,B12,B006,609,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_5.01, +12626,B120,B006,358,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_5.01, +12627,B121,B006,420,,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_5.01, +12628,B122,B006,500,,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +12629,B123,B006,572,,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_5.01, +12630,B124,B006,2045,,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_5.01, +12631,B125,B006,1080,,,parker1905,,1880,Binford_2001_Table_5.01, +12632,B126,B006,429,,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_5.01, +12633,B127,B006,300,,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +12634,B128,B006,3008,,,,,1890,Binford_2001_Table_5.01, +12635,B129,B006,1296,,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +12636,B13,B006,1644,,,rai1982;wastl1957,,1979,Binford_2001_Table_5.01, +12637,B130,B006,3589,,,,,1910,Binford_2001_Table_5.01, +12638,B131,B006,200,,,,,1850,Binford_2001_Table_5.01, +12639,B132,B006,889,,,nind1831,,1850,Binford_2001_Table_5.01, +12640,B133,B006,2450,,,williams1985,,1850,Binford_2001_Table_5.01, +12641,B134,B006,1953,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_5.01, +12642,B135,B006,336,,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_5.01, +12643,B136,B006,700,,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_5.01, +12644,B137,B006,450,,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_5.01, +12645,B14,B006,46,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_5.01, +12646,B143,B006,550,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_5.01, +12647,B144,B006,3675,,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_5.01, +12648,B145,B006,195,,,gifford1926b;strong1929a,,1870,Binford_2001_Table_5.01, +12649,B146,B006,445,,,meigs1939,,1880,Binford_2001_Table_5.01, +12650,B147,B006,3000,,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_5.01, +12651,B148,B006,6500,,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_5.01, +12652,B149,B006,3500,,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_5.01, +12653,B15,B006,426,,,furerhaimendorf1943b,,1940,Binford_2001_Table_5.01, +12654,B150,B006,5500,,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_5.01, +12655,B151,B006,92,,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_5.01, +12656,B152,B006,1000,,,voegelin1938,,1850,Binford_2001_Table_5.01, +12657,B153,B006,1575,,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_5.01, +12658,B154,B006,360,,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_5.01, +12659,B155,B006,1517,,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_5.01, +12660,B156,B006,5000,,,,,1770,Binford_2001_Table_5.01, +12661,B157,B006,387,,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_5.01, +12662,B158,B006,940,,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +12663,B159,B006,2099,,,cook1956;gifford1926a,,1860,Binford_2001_Table_5.01, +12664,B16,B006,139,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_5.01, +12665,B160,B006,4000,,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_5.01, +12666,B161,B006,2124,,,cookandheizer1965,,1860,Binford_2001_Table_5.01, +12667,B162,B006,450,,,dixon1910,,1860,Binford_2001_Table_5.01, +12668,B163,B006,4770,,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_5.01, +12669,B164,B006,3500,,,gifford1926b,,1805,Binford_2001_Table_5.01, +12670,B165,B006,2250,,,barrett1908;cook1956,,1860,Binford_2001_Table_5.01, +12671,B166,B006,1300,,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_5.01, +12672,B167,B006,1770,,,,,,Binford_2001_Table_5.01, +12673,B168,B006,1500,,,collierandthalman1991,,1850,Binford_2001_Table_5.01, +12674,B169,B006,652,,,cook1956;nomland1938,,,Binford_2001_Table_5.01, +12675,B17,B006,3000,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_5.01, +12676,B170,B006,227,,,cook1955,,,Binford_2001_Table_5.01, +12677,B171,B006,4000,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_5.01, +12678,B172,B006,1170,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_5.01, +12679,B173,B006,3360,,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +12680,B174,B006,1820,,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +12681,B175,B006,1212,,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_5.01, +12682,B176,B006,900,,,gray1987,,1860,Binford_2001_Table_5.01, +12683,B177,B006,750,,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +12684,B178,B006,2562,,,cook1956;drucker1940,,1870,Binford_2001_Table_5.01, +12685,B179,B006,2925,,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_5.01, +12686,B18,B006,629,,,senandsen1955;williams1974,,1963,Binford_2001_Table_5.01, +12687,B180,B006,1000,,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_5.01, +12688,B181,B006,2200,,,gray1987,,1870,Binford_2001_Table_5.01, +12689,B182,B006,1500,,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_5.01, +12690,B183,B006,1300,,,gifford1926b,,1860,Binford_2001_Table_5.01, +12691,B184,B006,1390,,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_5.01, +12692,B185,B006,1900,,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_5.01, +12693,B186,B006,2500,,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_5.01, +12694,B187,B006,1700,,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_5.01, +12695,B188,B006,2000,,,gifford1926b;ray1963,,1860,Binford_2001_Table_5.01, +12696,B189,B006,1200,,,gifford1926b;spier1930,,1860,Binford_2001_Table_5.01, +12697,B19,B006,565,,,ehrenfels1952,,1946,Binford_2001_Table_5.01, +12698,B190,B006,977,,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_5.01, +12699,B191,B006,3000,,,,,1570,Binford_2001_Table_5.01, +12700,B192,B006,42,,,smith1978a;steward1938,,1860,Binford_2001_Table_5.01, +12701,B193,B006,2800,,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_5.01, +12702,B194,B006,600,,,,,1715,Binford_2001_Table_5.01, +12703,B195,B006,500,,,steward1938,,1850,Binford_2001_Table_5.01, +12704,B196,B006,600,,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_5.01, +12705,B197,B006,222,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +12706,B198,B006,1000,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_5.01, +12707,B199,B006,500,,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_5.01, +12708,B2,B006,424,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_5.01, +12709,B20,B006,254,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_5.01, +12710,B200,B006,65,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +12711,B201,B006,234,,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +12712,B202,B006,2100,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_5.01, +12713,B203,B006,105,,,steward1938;thomas1983,,1860,Binford_2001_Table_5.01, +12714,B204,B006,425,,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_5.01, +12715,B205,B006,170,,,davis1965,,1870,Binford_2001_Table_5.01, +12716,B206,B006,23,,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_5.01, +12717,B207,B006,400,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +12718,B208,B006,485,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_5.01, +12719,B209,B006,480,,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_5.01, +12720,B21,B006,70,,,bird1983;birddavid1987,,1978,Binford_2001_Table_5.01, +12721,B210,B006,481,,,fowler1992,,1870,Binford_2001_Table_5.01, +12722,B211,B006,100,,,steward1938,,1860,Binford_2001_Table_5.01, +12723,B212,B006,385,,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +12724,B213,B006,1000,,,steward1938,,1870,Binford_2001_Table_5.01, +12725,B214,B006,435,,,steward1938,,1860,Binford_2001_Table_5.01, +12726,B215,B006,378,,,steward1938,,1870,Binford_2001_Table_5.01, +12727,B216,B006,500,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_5.01, +12728,B217,B006,250,,,steward1938,,1860,Binford_2001_Table_5.01, +12729,B218,B006,390,,,steward1938,,1860,Binford_2001_Table_5.01, +12730,B219,B006,385,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_5.01, +12731,B22,B006,122,,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_5.01, +12732,B221,B006,200,,,steward1938,,1860,Binford_2001_Table_5.01, +12733,B222,B006,405,,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_5.01, +12734,B223,B006,60,,,lowie1924,,1870,Binford_2001_Table_5.01, +12735,B224,B006,78,,,steward1938,,1860,Binford_2001_Table_5.01, +12736,B225,B006,1877,,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_5.01, +12737,B226,B006,367,,,brink1969;kelly1932,,1870,Binford_2001_Table_5.01, +12738,B227,B006,1500,,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_5.01, +12739,B228,B006,450,,,steward1938,,1860,Binford_2001_Table_5.01, +12740,B229,B006,380,,,steward1938,,1860,Binford_2001_Table_5.01, +12741,B23,B006,3200,,,qiu1983,,1900,Binford_2001_Table_5.01, +12742,B230,B006,1750,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_5.01, +12743,B231,B006,200,,,whiting1950,,1870,Binford_2001_Table_5.01, +12744,B232,B006,550,,,boas1899;steward1938,,1860,Binford_2001_Table_5.01, +12745,B233,B006,96,,,steward1938,,1860,Binford_2001_Table_5.01, +12746,B234,B006,1100,,,boas1899;steward1974b,,1860,Binford_2001_Table_5.01, +12747,B24,B006,1000,,,lee1967;shimkin1939,,1900,Binford_2001_Table_5.01, +12748,B240,B006,500,,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_5.01, +12749,B241,B006,3500,,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_5.01, +12750,B242,B006,1425,,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_5.01, +12751,B243,B006,392,,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_5.01, +12752,B244,B006,1908,,,bamforth1988;ewers1955,,1860,Binford_2001_Table_5.01, +12753,B245,B006,2750,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_5.01, +12754,B246,B006,3000,,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_5.01, +12755,B248,B006,4650,,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_5.01, +12756,B249,B006,12725,,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_5.01, +12757,B25,B006,1481,,,shternberg1933,,1920,Binford_2001_Table_5.01, +12758,B250,B006,1200,,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_5.01, +12759,B252,B006,1500,,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +12760,B253,B006,2260,,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_5.01, +12761,B254,B006,2000,,,skinner1914,,1850,Binford_2001_Table_5.01, +12762,B255,B006,1525,,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_5.01, +12763,B256,B006,2425,,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_5.01, +12764,B257,B006,4500,,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +12765,B258,B006,4650,,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_5.01, +12766,B259,B006,3110,,,bamforth1988;ewers1955,,1850,Binford_2001_Table_5.01, +12767,B26,B006,2360,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_5.01, +12768,B260,B006,700,,,bamforth1988;jenness1938,,1880,Binford_2001_Table_5.01, +12769,B268,B006,1700,,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_5.01, +12770,B269,B006,1500,,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +12771,B27,B006,876,,,chard1963;popov1966,,1933,Binford_2001_Table_5.01, +12772,B270,B006,441,,,smith1940a;smith1940b,,1870,Binford_2001_Table_5.01, +12773,B271,B006,965.5,,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_5.01, +12774,B272,B006,4000,,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_5.01, +12775,B273,B006,14000,,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_5.01, +12776,B274,B006,5000,,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_5.01, +12777,B275,B006,2000,,,boyd1990;zenk1990,,1860,Binford_2001_Table_5.01, +12778,B276,B006,4000,,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_5.01, +12779,B277,B006,459,,,stern1934,,1880,Binford_2001_Table_5.01, +12780,B278,B006,1661,,,olson1936a;schalk1978,,1860,Binford_2001_Table_5.01, +12781,B279,B006,1650,,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_5.01, +12782,B28,B006,1292,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_5.01, +12783,B280,B006,347,,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_5.01, +12784,B281,B006,1500,,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_5.01, +12785,B282,B006,2475,,,kennedyandbouchard1990,,1860,Binford_2001_Table_5.01, +12786,B283,B006,2000,,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_5.01, +12787,B284,B006,1324,,,pettitt1950,,1880,Binford_2001_Table_5.01, +12788,B285,B006,2400,,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_5.01, +12789,B286,B006,332,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_5.01, +12790,B287,B006,1300,,,olson1940;schalk1978,,1880,Binford_2001_Table_5.01, +12791,B288,B006,14500,,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +12792,B289,B006,10100,,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_5.01, +12793,B290,B006,10000,,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +12794,B291,B006,1950,,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_5.01, +12795,B292,B006,12000,,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_5.01, +12796,B293,B006,3000,,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_5.01, +12797,B294,B006,8800,,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_5.01, +12798,B295,B006,156,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_5.01, +12799,B296,B006,7200,,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_5.01, +12800,B297,B006,3170,,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_5.01, +12801,B298,B006,13500,,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_5.01, +12802,B299,B006,864,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_5.01, +12803,B3,B006,11800,,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_5.01, +12804,B315,B006,1510,,,murdock1980,,1850,Binford_2001_Table_5.01, +12805,B316,B006,1155,,,,,1860,Binford_2001_Table_5.01, +12806,B317,B006,5000,,,teit1928,,1870,Binford_2001_Table_5.01, +12807,B318,B006,3780,,,,,1880,Binford_2001_Table_5.01, +12808,B319,B006,2132,,,spierandsapir1930,,1860,Binford_2001_Table_5.01, +12809,B320,B006,1000,,,teit1930,,1860,Binford_2001_Table_5.01, +12810,B321,B006,875,,,clineetal1938,,1880,Binford_2001_Table_5.01, +12811,B322,B006,1500,,,grabert1974;teit1930,,1860,Binford_2001_Table_5.01, +12812,B323,B006,687,,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_5.01, +12813,B324,B006,4000,,,spinden1908,,1850,Binford_2001_Table_5.01, +12814,B325,B006,5150,,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_5.01, +12815,B326,B006,1000,,,teit1930,,1870,Binford_2001_Table_5.01, +12816,B327,B006,3000,,,jenness1935;quimby1962,,1870,Binford_2001_Table_5.01, +12817,B328,B006,76,,,kinietz1947,,1800,Binford_2001_Table_5.01, +12818,B329,B006,4393,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_5.01, +12819,B330,B006,800,,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_5.01, +12820,B331,B006,230,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_5.01, +12821,B332,B006,185,,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_5.01, +12822,B333,B006,14582,,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_5.01, +12823,B334,B006,382,,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_5.01, +12824,B335,B006,250,,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_5.01, +12825,B336,B006,405,,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_5.01, +12826,B337,B006,221,,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_5.01, +12827,B338,B006,450,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_5.01, +12828,B339,B006,225,,,dunning1959;rogers1969,,1850,Binford_2001_Table_5.01, +12829,B340,B006,150,,,morantz1983;rogers1969,,1900,Binford_2001_Table_5.01, +12830,B341,B006,250,,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_5.01, +12831,B342,B006,2700,,,lane1952;tanner1944,,1880,Binford_2001_Table_5.01, +12832,B343,B006,656,,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_5.01, +12833,B344,B006,1000,,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_5.01, +12834,B345,B006,2454,,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_5.01, +12835,B346,B006,540,,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_5.01, +12836,B347,B006,810,,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_5.01, +12837,B348,B006,2500,,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +12838,B349,B006,525,,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_5.01, +12839,B35,B006,5000,,,,,1950,Binford_2001_Table_5.01, +12840,B350,B006,780,,,gillespie1981,,1800,Binford_2001_Table_5.01, +12841,B351,B006,1000,,,adney1900;crowandobley1981,,1880,Binford_2001_Table_5.01, +12842,B352,B006,572,,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_5.01, +12843,B353,B006,4460,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_5.01, +12844,B354,B006,2000,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_5.01, +12845,B355,B006,2850,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_5.01, +12846,B356,B006,4863,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_5.01, +12847,B357,B006,1500,,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_5.01, +12848,B358,B006,825,,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_5.01, +12849,B359,B006,162,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_5.01, +12850,B36,B006,1200,,,metraux1948,,1960,Binford_2001_Table_5.01, +12851,B360,B006,450,,,morantz1983;skinner1911,,1900,Binford_2001_Table_5.01, +12852,B361,B006,1590,,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_5.01, +12853,B362,B006,4500,,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_5.01, +12854,B363,B006,1500,,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_5.01, +12855,B364,B006,330,,,michael1967;snow1981,,1860,Binford_2001_Table_5.01, +12856,B365,B006,400,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_5.01, +12857,B369,B006,1600,,,ray1992;seltzer1933,,1870,Binford_2001_Table_5.01, +12858,B37,B006,66,,,kloos1977;kloos1982,,1968,Binford_2001_Table_5.01, +12859,B370,B006,500,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_5.01, +12860,B371,B006,975,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_5.01, +12861,B372,B006,1460,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_5.01, +12862,B373,B006,450,,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_5.01, +12863,B374,B006,700,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_5.01, +12864,B375,B006,550,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_5.01, +12865,B377,B006,240,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_5.01, +12866,B378,B006,2500,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_5.01, +12867,B379,B006,600,,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_5.01, +12868,B38,B006,164,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_5.01, +12869,B380,B006,450,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_5.01, +12870,B381,B006,2000,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_5.01, +12871,B382,B006,164,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_5.01, +12872,B383,B006,130,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_5.01, +12873,B384,B006,1193,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_5.01, +12874,B385,B006,5112,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_5.01, +12875,B386,B006,6000,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_5.01, +12876,B387,B006,500,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_5.01, +12877,B388,B006,567,,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_5.01, +12878,B389,B006,550,,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_5.01, +12879,B39,B006,1540,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_5.01, +12880,B390,B006,300,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_5.01, +12881,B4,B006,342,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_5.01, +12882,B40,B006,282,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_5.01, +12883,B41,B006,850,,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_5.01, +12884,B42,B006,450,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_5.01, +12885,B43,B006,94,,,holmberg1950,,1940,Binford_2001_Table_5.01, +12886,B44,B006,43,,,stearman1989,,1968,Binford_2001_Table_5.01, +12887,B45,B006,235,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_5.01, +12888,B46,B006,5500,,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_5.01, +12889,B47,B006,100,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01, +12890,B48,B006,2346,,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_5.01, +12891,B49,B006,30,,,kozaketal1979,,1954,Binford_2001_Table_5.01, +12892,B5,B006,393,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_5.01, +12893,B50,B006,106,,,henry1964,,1910,Binford_2001_Table_5.01, +12894,B51,B006,9000,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_5.01, +12895,B52,B006,2100,,,cooper1946d,,1880,Binford_2001_Table_5.01, +12896,B53,B006,3400,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_5.01, +12897,B54,B006,3497,,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_5.01, +12898,B55,B006,2500,,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_5.01, +12899,B6,B006,255,,,temple1903,,1906,Binford_2001_Table_5.01, +12900,B60,B006,1088,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_5.01, +12901,B61,B006,1223,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_5.01, +12902,B62,B006,937,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_5.01, +12903,B63,B006,3000,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_5.01, +12904,B64,B006,750,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_5.01, +12905,B65,B006,1496,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_5.01, +12906,B66,B006,300,,,kellyandpoyer1993,,,Binford_2001_Table_5.01, +12907,B67,B006,124,,,clark1951,,1950,Binford_2001_Table_5.01, +12908,B68,B006,2000,,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_5.01, +12909,B69,B006,600,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_5.01, +12910,B7,B006,1645,,,fox1952;reed1904,,1903,Binford_2001_Table_5.01, +12911,B70,B006,151,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_5.01, +12912,B71,B006,3500,,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_5.01, +12913,B72,B006,726,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_5.01, +12914,B73,B006,7500,,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_5.01, +12915,B74,B006,528,,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_5.01, +12916,B75,B006,954,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_5.01, +12917,B76,B006,122,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_5.01, +12918,B77,B006,364,,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_5.01, +12919,B78,B006,280,,,potgieter1955;toerien1958,,1950,Binford_2001_Table_5.01, +12920,B79,B006,300,,,bleek1924a,,,Binford_2001_Table_5.01, +12921,B8,B006,464,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_5.01, +12922,B82,B006,140,,,moore1979,,1848,Binford_2001_Table_5.01, +12923,B83,B006,1560,,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +12924,B84,B006,1302,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_5.01, +12925,B85,B006,77,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_5.01, +12926,B86,B006,35,,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_5.01, +12927,B87,B006,400,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_5.01, +12928,B88,B006,588,,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_5.01, +12929,B89,B006,442,,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_5.01, +12930,B9,B006,366,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_5.01, +12931,B90,B006,1602,,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_5.01, +12932,B91,B006,528,,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_5.01, +12933,B92,B006,1610,,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_5.01, +12934,B93,B006,217,,,thomson1933;thomson1934,,1930,Binford_2001_Table_5.01, +12935,B94,B006,104,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_5.01, +12936,B95,B006,2662,,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_5.01, +12937,B96,B006,650,,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_5.01, +12938,B97,B006,595,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_5.01, +12939,B98,B006,75,,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_5.01, +12940,B99,B006,445,,,stanner1933,,1900,Binford_2001_Table_5.01, +12941,B1,B007,2960,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_5.01, +12942,B10,B007,390,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_5.01, +12943,B100,B007,10400,,,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_5.01, +12944,B101,B007,12500,,,kaberry1939,,1934,Binford_2001_Table_5.01, +12945,B102,B007,400,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_5.01, +12946,B103,B007,250,,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_5.01, +12947,B104,B007,14300,,,,,,Binford_2001_Table_5.01, +12948,B105,B007,1300,,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_5.01, +12949,B106,B007,11700,,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_5.01, +12950,B107,B007,9600,,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_5.01, +12951,B108,B007,33800,,,kaberry1939;nind1831,,1934,Binford_2001_Table_5.01, +12952,B109,B007,137800,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_5.01, +12953,B11,B007,790,,,morris1982a,,1972,Binford_2001_Table_5.01, +12954,B110,B007,500,,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_5.01, +12955,B111,B007,22600,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01, +12956,B112,B007,78700,,,petersonandlong1986,,1968,Binford_2001_Table_5.01, +12957,B113,B007,22900,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_5.01, +12958,B114,B007,2300,,,colliverandwoolston1975,,1848,Binford_2001_Table_5.01, +12959,B115,B007,1370,,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_5.01, +12960,B116,B007,33000,,,duncankemp1964,,1900,Binford_2001_Table_5.01, +12961,B117,B007,46300,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_5.01, +12962,B118,B007,78000,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_5.01, +12963,B119,B007,6000,,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_5.01, +12964,B12,B007,700,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_5.01, +12965,B120,B007,59800,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_5.01, +12966,B121,B007,21800,,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_5.01, +12967,B122,B007,45500,,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +12968,B123,B007,57200,,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_5.01, +12969,B124,B007,76700,,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_5.01, +12970,B125,B007,12000,,,parker1905,,1880,Binford_2001_Table_5.01, +12971,B126,B007,49400,,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_5.01, +12972,B127,B007,63700,,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +12973,B128,B007,19500,,,,,1890,Binford_2001_Table_5.01, +12974,B129,B007,7200,,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +12975,B13,B007,3910,,,rai1982;wastl1957,,1979,Binford_2001_Table_5.01, +12976,B130,B007,70110,,,,,1910,Binford_2001_Table_5.01, +12977,B131,B007,500,,,,,1850,Binford_2001_Table_5.01, +12978,B132,B007,12700,,,nind1831,,1850,Binford_2001_Table_5.01, +12979,B133,B007,7000,,,williams1985,,1850,Binford_2001_Table_5.01, +12980,B134,B007,7800,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_5.01, +12981,B135,B007,1900,,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_5.01, +12982,B136,B007,8570,,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_5.01, +12983,B137,B007,3370,,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_5.01, +12984,B14,B007,120,,,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_5.01, +12985,B143,B007,2160,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_5.01, +12986,B144,B007,8400,,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_5.01, +12987,B145,B007,400,,,gifford1926b;strong1929a,,1870,Binford_2001_Table_5.01, +12988,B146,B007,3640,,,meigs1939,,1880,Binford_2001_Table_5.01, +12989,B147,B007,16600,,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_5.01, +12990,B148,B007,17070,,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_5.01, +12991,B149,B007,19900,,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_5.01, +12992,B15,B007,340,,,furerhaimendorf1943b,,1940,Binford_2001_Table_5.01, +12993,B150,B007,8120,,,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_5.01, +12994,B151,B007,380,,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_5.01, +12995,B152,B007,5800,,,voegelin1938,,1850,Binford_2001_Table_5.01, +12996,B153,B007,4500,,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_5.01, +12997,B154,B007,940,,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_5.01, +12998,B155,B007,1850,,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_5.01, +12999,B156,B007,7700,,,,,1770,Binford_2001_Table_5.01, +13000,B157,B007,1350,,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_5.01, +13001,B158,B007,740,,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +13002,B159,B007,540,,,cook1956;gifford1926a,,1860,Binford_2001_Table_5.01, +13003,B16,B007,600,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_5.01, +13004,B160,B007,6800,,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_5.01, +13005,B161,B007,1800,,,cookandheizer1965,,1860,Binford_2001_Table_5.01, +13006,B162,B007,990,,,dixon1910,,1860,Binford_2001_Table_5.01, +13007,B163,B007,12000,,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_5.01, +13008,B164,B007,9400,,,gifford1926b,,1805,Binford_2001_Table_5.01, +13009,B165,B007,2030,,,barrett1908;cook1956,,1860,Binford_2001_Table_5.01, +13010,B166,B007,954,,,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_5.01, +13011,B167,B007,1820,,,,,,Binford_2001_Table_5.01, +13012,B168,B007,2800,,,collierandthalman1991,,1850,Binford_2001_Table_5.01, +13013,B169,B007,560,,,cook1956;nomland1938,,,Binford_2001_Table_5.01, +13014,B17,B007,31160,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_5.01, +13015,B170,B007,350,,,cook1955,,,Binford_2001_Table_5.01, +13016,B171,B007,3040,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_5.01, +13017,B172,B007,970,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_5.01, +13018,B173,B007,3100,,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +13019,B174,B007,5810,,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +13020,B175,B007,4950,,,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_5.01, +13021,B176,B007,7000,,,gray1987,,1860,Binford_2001_Table_5.01, +13022,B177,B007,1120,,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +13023,B178,B007,2100,,,cook1956;drucker1940,,1870,Binford_2001_Table_5.01, +13024,B179,B007,11700,,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_5.01, +13025,B18,B007,2860,,,senandsen1955;williams1974,,1963,Binford_2001_Table_5.01, +13026,B180,B007,1250,,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_5.01, +13027,B181,B007,3280,,,gray1987,,1870,Binford_2001_Table_5.01, +13028,B182,B007,3200,,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_5.01, +13029,B183,B007,7250,,,gifford1926b,,1860,Binford_2001_Table_5.01, +13030,B184,B007,1320,,,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_5.01, +13031,B185,B007,8100,,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_5.01, +13032,B186,B007,1900,,,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_5.01, +13033,B187,B007,9850,,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_5.01, +13034,B188,B007,9000,,,gifford1926b;ray1963,,1860,Binford_2001_Table_5.01, +13035,B189,B007,8980,,,gifford1926b;spier1930,,1860,Binford_2001_Table_5.01, +13036,B19,B007,1130,,,ehrenfels1952,,1946,Binford_2001_Table_5.01, +13037,B190,B007,16290,,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_5.01, +13038,B191,B007,33300,,,,,1570,Binford_2001_Table_5.01, +13039,B192,B007,3270,,,smith1978a;steward1938,,1860,Binford_2001_Table_5.01, +13040,B193,B007,13300,,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_5.01, +13041,B194,B007,37300,,,,,1715,Binford_2001_Table_5.01, +13042,B195,B007,23600,,,steward1938,,1850,Binford_2001_Table_5.01, +13043,B196,B007,40500,,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_5.01, +13044,B197,B007,2590,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +13045,B198,B007,25900,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_5.01, +13046,B199,B007,4200,,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_5.01, +13047,B2,B007,980,,,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_5.01, +13048,B20,B007,360,,,bhanu1982;bhanu1992,,1974,Binford_2001_Table_5.01, +13049,B200,B007,2800,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +13050,B201,B007,6800,,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +13051,B202,B007,5520,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_5.01, +13052,B203,B007,5260,,,steward1938;thomas1983,,1860,Binford_2001_Table_5.01, +13053,B204,B007,11460,,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_5.01, +13054,B205,B007,2880,,,davis1965,,1870,Binford_2001_Table_5.01, +13055,B206,B007,650,,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_5.01, +13056,B207,B007,5790,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +13057,B208,B007,2620,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_5.01, +13058,B209,B007,13880,,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_5.01, +13059,B21,B007,100,,,bird1983;birddavid1987,,1978,Binford_2001_Table_5.01, +13060,B210,B007,2180,,,fowler1992,,1870,Binford_2001_Table_5.01, +13061,B211,B007,2570,,,steward1938,,1860,Binford_2001_Table_5.01, +13062,B212,B007,3630,,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +13063,B213,B007,33760,,,steward1938,,1870,Binford_2001_Table_5.01, +13064,B214,B007,25970,,,steward1938,,1860,Binford_2001_Table_5.01, +13065,B215,B007,6260,,,steward1938,,1870,Binford_2001_Table_5.01, +13066,B216,B007,4270,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_5.01, +13067,B217,B007,5840,,,steward1938,,1860,Binford_2001_Table_5.01, +13068,B218,B007,2340,,,steward1938,,1860,Binford_2001_Table_5.01, +13069,B219,B007,2400,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_5.01, +13070,B22,B007,350,,,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_5.01, +13071,B221,B007,12200,,,steward1938,,1860,Binford_2001_Table_5.01, +13072,B222,B007,15600,,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_5.01, +13073,B223,B007,5400,,,lowie1924,,1870,Binford_2001_Table_5.01, +13074,B224,B007,5840,,,steward1938,,1860,Binford_2001_Table_5.01, +13075,B225,B007,12600,,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_5.01, +13076,B226,B007,2700,,,brink1969;kelly1932,,1870,Binford_2001_Table_5.01, +13077,B227,B007,96000,,,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_5.01, +13078,B228,B007,3260,,,steward1938,,1860,Binford_2001_Table_5.01, +13079,B229,B007,36540,,,steward1938,,1860,Binford_2001_Table_5.01, +13080,B23,B007,74400,,,qiu1983,,1900,Binford_2001_Table_5.01, +13081,B230,B007,23370,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_5.01, +13082,B231,B007,16080,,,whiting1950,,1870,Binford_2001_Table_5.01, +13083,B232,B007,8810,,,boas1899;steward1938,,1860,Binford_2001_Table_5.01, +13084,B233,B007,5260,,,steward1938,,1860,Binford_2001_Table_5.01, +13085,B234,B007,25640,,,boas1899;steward1974b,,1860,Binford_2001_Table_5.01, +13086,B24,B007,62500,,,lee1967;shimkin1939,,1900,Binford_2001_Table_5.01, +13087,B240,B007,98000,,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_5.01, +13088,B241,B007,150000,,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_5.01, +13089,B242,B007,122850,,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_5.01, +13090,B243,B007,28000,,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_5.01, +13091,B244,B007,46000,,,bamforth1988;ewers1955,,1860,Binford_2001_Table_5.01, +13092,B245,B007,57000,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_5.01, +13093,B246,B007,40000,,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_5.01, +13094,B248,B007,80000,,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_5.01, +13095,B249,B007,145000,,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_5.01, +13096,B25,B007,7670,,,shternberg1933,,1920,Binford_2001_Table_5.01, +13097,B250,B007,59500,,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_5.01, +13098,B252,B007,64900,,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +13099,B253,B007,67000,,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_5.01, +13100,B254,B007,71680,,,skinner1914,,1850,Binford_2001_Table_5.01, +13101,B255,B007,60000,,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_5.01, +13102,B256,B007,70000,,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_5.01, +13103,B257,B007,140000,,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +13104,B258,B007,170000,,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_5.01, +13105,B259,B007,70000,,,bamforth1988;ewers1955,,1850,Binford_2001_Table_5.01, +13106,B26,B007,386880,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_5.01, +13107,B260,B007,40000,,,bamforth1988;jenness1938,,1880,Binford_2001_Table_5.01, +13108,B268,B007,3000,,,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_5.01, +13109,B269,B007,1550,,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +13110,B27,B007,190430,,,chard1963;popov1966,,1933,Binford_2001_Table_5.01, +13111,B270,B007,1200,,,smith1940a;smith1940b,,1870,Binford_2001_Table_5.01, +13112,B271,B007,2980,,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_5.01, +13113,B272,B007,18200,,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_5.01, +13114,B273,B007,9100,,,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_5.01, +13115,B274,B007,14800,,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_5.01, +13116,B275,B007,1920,,,boyd1990;zenk1990,,1860,Binford_2001_Table_5.01, +13117,B276,B007,17000,,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_5.01, +13118,B277,B007,410,,,stern1934,,1880,Binford_2001_Table_5.01, +13119,B278,B007,2830,,,olson1936a;schalk1978,,1860,Binford_2001_Table_5.01, +13120,B279,B007,2500,,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_5.01, +13121,B28,B007,27490,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_5.01, +13122,B280,B007,1000,,,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_5.01, +13123,B281,B007,3630,,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_5.01, +13124,B282,B007,4500,,,kennedyandbouchard1990,,1860,Binford_2001_Table_5.01, +13125,B283,B007,9750,,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_5.01, +13126,B284,B007,1270,,,pettitt1950,,1880,Binford_2001_Table_5.01, +13127,B285,B007,3390,,,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_5.01, +13128,B286,B007,270,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_5.01, +13129,B287,B007,6820,,,olson1940;schalk1978,,1880,Binford_2001_Table_5.01, +13130,B288,B007,21100,,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +13131,B289,B007,24100,,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_5.01, +13132,B290,B007,10300,,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +13133,B291,B007,15000,,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_5.01, +13134,B292,B007,105000,,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_5.01, +13135,B293,B007,12720,,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_5.01, +13136,B294,B007,28700,,,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_5.01, +13137,B295,B007,2660,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_5.01, +13138,B296,B007,41600,,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_5.01, +13139,B297,B007,26200,,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_5.01, +13140,B298,B007,24700,,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_5.01, +13141,B299,B007,4500,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_5.01, +13142,B3,B007,128260,,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_5.01, +13143,B315,B007,7950,,,murdock1980,,1850,Binford_2001_Table_5.01, +13144,B316,B007,11000,,,,,1860,Binford_2001_Table_5.01, +13145,B317,B007,8450,,,teit1928,,1870,Binford_2001_Table_5.01, +13146,B318,B007,14080,,,,,1880,Binford_2001_Table_5.01, +13147,B319,B007,920,,,spierandsapir1930,,1860,Binford_2001_Table_5.01, +13148,B320,B007,66600,,,teit1930,,1860,Binford_2001_Table_5.01, +13149,B321,B007,6030,,,clineetal1938,,1880,Binford_2001_Table_5.01, +13150,B322,B007,11310,,,grabert1974;teit1930,,1860,Binford_2001_Table_5.01, +13151,B323,B007,6140,,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_5.01, +13152,B324,B007,45000,,,spinden1908,,1850,Binford_2001_Table_5.01, +13153,B325,B007,15500,,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_5.01, +13154,B326,B007,66600,,,teit1930,,1870,Binford_2001_Table_5.01, +13155,B327,B007,60000,,,jenness1935;quimby1962,,1870,Binford_2001_Table_5.01, +13156,B328,B007,2460,,,kinietz1947,,1800,Binford_2001_Table_5.01, +13157,B329,B007,101700,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_5.01, +13158,B330,B007,53300,,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_5.01, +13159,B331,B007,19010,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_5.01, +13160,B332,B007,15420,,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_5.01, +13161,B333,B007,117600,,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_5.01, +13162,B334,B007,12400,,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_5.01, +13163,B335,B007,14290,,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_5.01, +13164,B336,B007,5400,,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_5.01, +13165,B337,B007,25500,,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_5.01, +13166,B338,B007,77900,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_5.01, +13167,B339,B007,15740,,,dunning1959;rogers1969,,1850,Binford_2001_Table_5.01, +13168,B340,B007,35800,,,morantz1983;rogers1969,,1900,Binford_2001_Table_5.01, +13169,B341,B007,49000,,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_5.01, +13170,B342,B007,660000,,,lane1952;tanner1944,,1880,Binford_2001_Table_5.01, +13171,B343,B007,80000,,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_5.01, +13172,B344,B007,194700,,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_5.01, +13173,B345,B007,245370,,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_5.01, +13174,B346,B007,60000,,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_5.01, +13175,B347,B007,70000,,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_5.01, +13176,B348,B007,21700,,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +13177,B349,B007,7000,,,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_5.01, +13178,B35,B007,14280,,,,,1950,Binford_2001_Table_5.01, +13179,B350,B007,100000,,,gillespie1981,,1800,Binford_2001_Table_5.01, +13180,B351,B007,55080,,,adney1900;crowandobley1981,,1880,Binford_2001_Table_5.01, +13181,B352,B007,173400,,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_5.01, +13182,B353,B007,312000,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_5.01, +13183,B354,B007,182500,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_5.01, +13184,B355,B007,619400,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_5.01, +13185,B356,B007,286100,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_5.01, +13186,B357,B007,69000,,,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_5.01, +13187,B358,B007,150000,,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_5.01, +13188,B359,B007,21000,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_5.01, +13189,B36,B007,7690,,,metraux1948,,1960,Binford_2001_Table_5.01, +13190,B360,B007,50000,,,morantz1983;skinner1911,,1900,Binford_2001_Table_5.01, +13191,B361,B007,180900,,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_5.01, +13192,B362,B007,92500,,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_5.01, +13193,B363,B007,162000,,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_5.01, +13194,B364,B007,21640,,,michael1967;snow1981,,1860,Binford_2001_Table_5.01, +13195,B365,B007,96000,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_5.01, +13196,B369,B007,21000,,,ray1992;seltzer1933,,1870,Binford_2001_Table_5.01, +13197,B37,B007,1640,,,kloos1977;kloos1982,,1968,Binford_2001_Table_5.01, +13198,B370,B007,18700,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_5.01, +13199,B371,B007,14700,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_5.01, +13200,B372,B007,52500,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_5.01, +13201,B373,B007,24200,,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_5.01, +13202,B374,B007,236500,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_5.01, +13203,B375,B007,25000,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_5.01, +13204,B377,B007,24900,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_5.01, +13205,B378,B007,65000,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_5.01, +13206,B379,B007,4000,,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_5.01, +13207,B38,B007,820,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_5.01, +13208,B380,B007,10710,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_5.01, +13209,B381,B007,462000,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_5.01, +13210,B382,B007,43100,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_5.01, +13211,B383,B007,40000,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_5.01, +13212,B384,B007,221000,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_5.01, +13213,B385,B007,108000,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_5.01, +13214,B386,B007,370600,,,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_5.01, +13215,B387,B007,197000,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_5.01, +13216,B388,B007,7350,,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_5.01, +13217,B389,B007,14250,,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_5.01, +13218,B39,B007,8740,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_5.01, +13219,B390,B007,73100,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_5.01, +13220,B4,B007,860,,,agrawal1967;rizvi1990,,1989,Binford_2001_Table_5.01, +13221,B40,B007,3010,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_5.01, +13222,B41,B007,1650,,,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_5.01, +13223,B42,B007,6680,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_5.01, +13224,B43,B007,1560,,,holmberg1950,,1940,Binford_2001_Table_5.01, +13225,B44,B007,2580,,,stearman1989,,1968,Binford_2001_Table_5.01, +13226,B45,B007,3020,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_5.01, +13227,B46,B007,14200,,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_5.01, +13228,B47,B007,2870,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01, +13229,B48,B007,23940,,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_5.01, +13230,B49,B007,310,,,kozaketal1979,,1954,Binford_2001_Table_5.01, +13231,B5,B007,980,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_5.01, +13232,B50,B007,2600,,,henry1964,,1910,Binford_2001_Table_5.01, +13233,B51,B007,475300,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_5.01, +13234,B52,B007,15390,,,cooper1946d,,1880,Binford_2001_Table_5.01, +13235,B53,B007,22690,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_5.01, +13236,B54,B007,48100,,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_5.01, +13237,B55,B007,8800,,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_5.01, +13238,B6,B007,570,,,temple1903,,1906,Binford_2001_Table_5.01, +13239,B60,B007,12000,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_5.01, +13240,B61,B007,7000,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_5.01, +13241,B62,B007,3750,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_5.01, +13242,B63,B007,22000,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_5.01, +13243,B64,B007,4700,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_5.01, +13244,B65,B007,3400,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_5.01, +13245,B66,B007,6880,,,kellyandpoyer1993,,,Binford_2001_Table_5.01, +13246,B67,B007,4300,,,clark1951,,1950,Binford_2001_Table_5.01, +13247,B68,B007,52000,,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_5.01, +13248,B69,B007,2500,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_5.01, +13249,B7,B007,1790,,,fox1952;reed1904,,1903,Binford_2001_Table_5.01, +13250,B70,B007,370,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_5.01, +13251,B71,B007,230000,,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_5.01, +13252,B72,B007,11000,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_5.01, +13253,B73,B007,60000,,,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_5.01, +13254,B74,B007,18000,,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_5.01, +13255,B75,B007,15000,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_5.01, +13256,B76,B007,11800,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_5.01, +13257,B77,B007,57000,,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_5.01, +13258,B78,B007,7840,,,potgieter1955;toerien1958,,1950,Binford_2001_Table_5.01, +13259,B79,B007,12350,,,bleek1924a,,,Binford_2001_Table_5.01, +13260,B8,B007,1390,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_5.01, +13261,B82,B007,400,,,moore1979,,1848,Binford_2001_Table_5.01, +13262,B83,B007,3900,,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +13263,B84,B007,7300,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_5.01, +13264,B85,B007,200,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_5.01, +13265,B86,B007,80,,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_5.01, +13266,B87,B007,550,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_5.01, +13267,B88,B007,5000,,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_5.01, +13268,B89,B007,2600,,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_5.01, +13269,B9,B007,2080,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_5.01, +13270,B90,B007,8300,,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_5.01, +13271,B91,B007,6000,,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_5.01, +13272,B92,B007,7000,,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_5.01, +13273,B93,B007,700,,,thomson1933;thomson1934,,1930,Binford_2001_Table_5.01, +13274,B94,B007,1300,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_5.01, +13275,B95,B007,7100,,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_5.01, +13276,B96,B007,1300,,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_5.01, +13277,B97,B007,2600,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_5.01, +13278,B98,B007,130,,,haleandtindale1933;roth1909,,1926,Binford_2001_Table_5.01, +13279,B99,B007,1000,,,stanner1933,,1900,Binford_2001_Table_5.01, +13280,B1,B008,0.1179,,,avadhani1975;brosius1986;harrison1949;kedit1982;oldrey1975;sellato1994;urquhart1951,,1970,Binford_2001_Table_5.01, +13281,B10,B008,0.1846,,,bailey1863;seligmannandseligmann1911;skeatandblagden1906;spittel1945,,1900,Binford_2001_Table_5.01, +13282,B100,B008,0.1071,,Note Binford (2001) gives density as 0.11 persons per km2,blundell1975;blundell1980;love1917;love1936,,,Binford_2001_Table_5.01, +13283,B101,B008,0.045,,,kaberry1939,,1934,Binford_2001_Table_5.01, +13284,B102,B008,0.3,,,memmott1983a;memmott1983b,,1909,Binford_2001_Table_5.01, +13285,B103,B008,0.66,,,tindale1962a;tindale1962b,,1928,Binford_2001_Table_5.01, +13286,B104,B008,0.0375,,,,,,Binford_2001_Table_5.01, +13287,B105,B008,0.45,,,birdsell1967;harris1978;harris1982;roth1909,,1900,Binford_2001_Table_5.01, +13288,B106,B008,0.095,,,clement1903;radcliffebrown1912,,1910,Binford_2001_Table_5.01, +13289,B107,B008,0.1627,,,brayshaw1990;lumholtz1889,,1870,Binford_2001_Table_5.01, +13290,B108,B008,0.0398,,,kaberry1939;nind1831,,1934,Binford_2001_Table_5.01, +13291,B109,B008,0.0116,,,abbie1957;meggitt1962;meggittperscomm1973,,1965,Binford_2001_Table_5.01, +13292,B11,B008,0.7038,,,morris1982a,,1972,Binford_2001_Table_5.01, +13293,B110,B008,0.598,,,petersonandlong1986;tonkinson1978,,1880,Binford_2001_Table_5.01, +13294,B111,B008,0.0075,,,harris1978;petersonandlong1986,,1960,Binford_2001_Table_5.01, +13295,B112,B008,0.0045,,,petersonandlong1986,,1968,Binford_2001_Table_5.01, +13296,B113,B008,0.015,,,campbelletal1936;gargettandhayden1991;haydenperscomm1990;haydenperscomm1992;long1970;long1971;meggitt1962;myers1986;petersonandlong1986,,1936,Binford_2001_Table_5.01, +13297,B114,B008,0.2174,,,colliverandwoolston1975,,1848,Binford_2001_Table_5.01, +13298,B115,B008,0.1599,,,morwood1987;winterbotham1980,,1840,Binford_2001_Table_5.01, +13299,B116,B008,0.02,,,duncankemp1964,,1900,Binford_2001_Table_5.01, +13300,B117,B008,0.0121,,,binfordfieldnotes1974;campbelletal1936;denham1975;oconnell1987,,1965,Binford_2001_Table_5.01, +13301,B118,B008,0.004,,,gould1968;gould1969;gould1971;gould1977,,1968,Binford_2001_Table_5.01, +13302,B119,B008,0.134,,,belshaw1978;debertrodano1978;gardner1978,,1850,Binford_2001_Table_5.01, +13303,B12,B008,0.87,,,headland1986;headlandperscomm1992;headlandperscomm1993,,1965,Binford_2001_Table_5.01, +13304,B120,B008,0.006,,,brokensha1975;campbelletal1936;layton1983;long1970;petersonandlong1986;tindale1972;yengoyan1970,,1968,Binford_2001_Table_5.01, +13305,B121,B008,0.0193,,,gason1879;howitt1891;sturt1849a,,1900,Binford_2001_Table_5.01, +13306,B122,B008,0.011,,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +13307,B123,B008,0.01,,,tindaleperscomm1965;tindaleperscomm1966;tindaleperscomm196668;white1915,,1922,Binford_2001_Table_5.01, +13308,B124,B008,0.0267,,,binfordfieldnotes1993;long1970;roberts1953;spencerandgillen1899;spencerandgillen1927,,1900,Binford_2001_Table_5.01, +13309,B125,B008,0.09,,,parker1905,,1880,Binford_2001_Table_5.01, +13310,B126,B008,0.0087,,,petersonandlong1986;tindaleperscomm1966,,1912,Binford_2001_Table_5.01, +13311,B127,B008,0.0047,,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +13312,B128,B008,0.1543,,,,,1890,Binford_2001_Table_5.01, +13313,B129,B008,0.18,,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +13314,B13,B008,0.4205,,,rai1982;wastl1957,,1979,Binford_2001_Table_5.01, +13315,B130,B008,0.0512,,,,,1910,Binford_2001_Table_5.01, +13316,B131,B008,0.4,,,,,1850,Binford_2001_Table_5.01, +13317,B132,B008,0.07,,,nind1831,,1850,Binford_2001_Table_5.01, +13318,B133,B008,0.35,,,williams1985,,1850,Binford_2001_Table_5.01, +13319,B134,B008,0.2504,,,cannon1983;gaughwinandsullivan1984,,1850,Binford_2001_Table_5.01, +13320,B135,B008,0.1768,,,fisonandhowitt1880;howitt1904,,1850,Binford_2001_Table_5.01, +13321,B136,B008,0.0817,,,hiatt1967;jones1971;jones1972;plomley1983;roth1899,,1830,Binford_2001_Table_5.01, +13322,B137,B008,0.1335,,,hiatt1967;jones1971;jones1972,,1830,Binford_2001_Table_5.01, +13323,B14,B008,0.3833,,Note Binford (2001) gives density as 0.3794 persons per km2,goodmanetal1985;vanoverbergh1925,,1924,Binford_2001_Table_5.01, +13324,B143,B008,0.2546,,,bowen1976;gilg1965;griffen1959;kroeber1931;mcgee1898,,1900,Binford_2001_Table_5.01, +13325,B144,B008,0.4375,,,bean1972;gifford1926b;kroeber1925a;strong1929a,,1870,Binford_2001_Table_5.01, +13326,B145,B008,0.4875,,Note Binford (2001) gives density as 0.488 persons per km2,gifford1926b;strong1929a,,1870,Binford_2001_Table_5.01, +13327,B146,B008,0.1223,,,meigs1939,,1880,Binford_2001_Table_5.01, +13328,B147,B008,0.1807,,,kroeber1925a;luomala1978,,1850,Binford_2001_Table_5.01, +13329,B148,B008,0.3808,,,cook1955;gayton1948a;gifford1926b;kroeber1925a;wallace1978b,,1860,Binford_2001_Table_5.01, +13330,B149,B008,0.1759,,,benedict1924;gifford1926b;kroeber1925a,,1870,Binford_2001_Table_5.01, +13331,B15,B008,1.2529,,Note Binford (2001) gives density as 1.233 persons per km2,furerhaimendorf1943b,,1940,Binford_2001_Table_5.01, +13332,B150,B008,0.6773,,Note Binford (2001) gives density as 0.679 persons per km2,gifford1926b;oxendine1983;sparkman1908,,1860,Binford_2001_Table_5.01, +13333,B151,B008,0.2421,,,cook1955;gayton1948a;gayton1948b,,1860,Binford_2001_Table_5.01, +13334,B152,B008,0.1724,,,voegelin1938,,1850,Binford_2001_Table_5.01, +13335,B153,B008,0.35,,,gifford1926b;goldschmidt1948;goldschmidtperscomm1966,,1850,Binford_2001_Table_5.01, +13336,B154,B008,0.383,,,cook1955;gayton1948a;gifford1926b;spier1978,,1850,Binford_2001_Table_5.01, +13337,B155,B008,0.82,,,barrett1908;gifford1926b;johnson1978;kroeber1932,,1850,Binford_2001_Table_5.01, +13338,B156,B008,0.6494,,,,,1770,Binford_2001_Table_5.01, +13339,B157,B008,0.2867,,,gayton1948a;gayton1948b;gifford1932b,,1870,Binford_2001_Table_5.01, +13340,B158,B008,1.2703,,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +13341,B159,B008,3.887,,Note Binford (2001) gives density as 3.087 persons per km2,cook1956;gifford1926a,,1860,Binford_2001_Table_5.01, +13342,B16,B008,0.2317,,,bernatzik1951;flatz1963;nimmanahaemindaandhartlandswam1962;pookajorn1985;pookajorn1988;trier1981;velder1963,,1963,Binford_2001_Table_5.01, +13343,B160,B008,0.5882,,,barrett1908;cookandheizer1965;dubois1935,,1860,Binford_2001_Table_5.01, +13344,B161,B008,1.18,,Note Binford (2001) gives density as 1.182 persons per km2,cookandheizer1965,,1860,Binford_2001_Table_5.01, +13345,B162,B008,0.4545,,Note Binford (2001) gives density as 0.5 persons per km2,dixon1910,,1860,Binford_2001_Table_5.01, +13346,B163,B008,0.3975,,,cookandheizer1965;faye1923;kroeber1929;wilsonandtowne1978,,1850,Binford_2001_Table_5.01, +13347,B164,B008,0.3723,,Note Binford (2001) gives density as 0.374 persons per km2,gifford1926b,,1805,Binford_2001_Table_5.01, +13348,B165,B008,1.1084,,,barrett1908;cook1956,,1860,Binford_2001_Table_5.01, +13349,B166,B008,1.3627,,Note Binford (2001) gives density as 1.3644 persons per km2,cook1956;goddard1923;nomland1935,,1860,Binford_2001_Table_5.01, +13350,B167,B008,0.9725,,,,,,Binford_2001_Table_5.01, +13351,B168,B008,0.5357,,,collierandthalman1991,,1850,Binford_2001_Table_5.01, +13352,B169,B008,1.1643,,,cook1956;nomland1938,,,Binford_2001_Table_5.01, +13353,B17,B008,0.0963,,,gardner1965;gardner1972;gardner1988,,1963,Binford_2001_Table_5.01, +13354,B170,B008,0.6486,,Note Binford (2001) gives density as 0.65 persons per km2,cook1955,,,Binford_2001_Table_5.01, +13355,B171,B008,1.3158,,,cook1956;foster1944;gifford1926b,,1850,Binford_2001_Table_5.01, +13356,B172,B008,1.2062,,,barrett1908;cook1956;cookandheizer1965;driver1936,,1860,Binford_2001_Table_5.01, +13357,B173,B008,1.0839,,,barrett1908;cook1956;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +13358,B174,B008,0.3133,,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +13359,B175,B008,0.2448,,Note Binford (2001) gives density as 0.2454 persons per km2,barrett1908;barrettandgifford1933;cook1955;cookandheizer1965;gifford1916;gifford1926b,,1850,Binford_2001_Table_5.01, +13360,B176,B008,0.1286,,,gray1987,,1860,Binford_2001_Table_5.01, +13361,B177,B008,0.6696,,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +13362,B178,B008,1.22,,,cook1956;drucker1940,,1870,Binford_2001_Table_5.01, +13363,B179,B008,0.25,,,cookandheizer1965;dixon1907,,1860,Binford_2001_Table_5.01, +13364,B18,B008,0.2199,,,senandsen1955;williams1974,,1963,Binford_2001_Table_5.01, +13365,B180,B008,0.8,,,cook1956;gifford1926b;goddard1904;kroeber1925a;wallace1978a,,1860,Binford_2001_Table_5.01, +13366,B181,B008,0.6707,,,gray1987,,1870,Binford_2001_Table_5.01, +13367,B182,B008,0.4688,,,cook1956;cookandheizer1965;schenckandgifford1952,,1860,Binford_2001_Table_5.01, +13368,B183,B008,0.1793,,,gifford1926b,,1860,Binford_2001_Table_5.01, +13369,B184,B008,1.053,,Note Binford (2001) gives density as 1.0793 persons per km2,cook1956;gifford1926b;loud1918;schalk1978,,1860,Binford_2001_Table_5.01, +13370,B185,B008,0.2346,,,cookandheizer1965;dixon1905;gifford1926b,,1850,Binford_2001_Table_5.01, +13371,B186,B008,1.3158,,Note Binford (2001) gives density as 1.31 persons per km2,cook1956;gifford1926b;heizerandmills1952;kroeber1925a;schalk1978,,1850,Binford_2001_Table_5.01, +13372,B187,B008,0.1726,,,gifford1926b;kniffen1926;kroeber1962,,1860,Binford_2001_Table_5.01, +13373,B188,B008,0.2222,,Note Binford (2001) gives density as 0.2289 persons per km2,gifford1926b;ray1963,,1860,Binford_2001_Table_5.01, +13374,B189,B008,0.1336,,,gifford1926b;spier1930,,1860,Binford_2001_Table_5.01, +13375,B19,B008,0.5,,,ehrenfels1952,,1946,Binford_2001_Table_5.01, +13376,B190,B008,0.06,,,aschmann1967;baegert1863;baegert1865,,1760,Binford_2001_Table_5.01, +13377,B191,B008,0.0901,,,,,1570,Binford_2001_Table_5.01, +13378,B192,B008,0.0128,,,smith1978a;steward1938,,1860,Binford_2001_Table_5.01, +13379,B193,B008,0.2105,,,bolton1916;schaedel1949;stiles1906,,1800,Binford_2001_Table_5.01, +13380,B194,B008,0.0161,,Note Binford (2001) gives density as 0.0168 persons per km2,,,1715,Binford_2001_Table_5.01, +13381,B195,B008,0.0212,,,steward1938,,1850,Binford_2001_Table_5.01, +13382,B196,B008,0.0148,,,corbusier1886;gifford1932a,,1870,Binford_2001_Table_5.01, +13383,B197,B008,0.0857,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +13384,B198,B008,0.0386,,,hayden1936;hrdlicka1909;kniffen1935;kroeber1935,,1870,Binford_2001_Table_5.01, +13385,B199,B008,0.119,,,steward1938;voegelin1938;zigmond1986,,1860,Binford_2001_Table_5.01, +13386,B2,B008,0.4327,,Note Binford (2001) gives density as 0.43 persons per km2,cadelina1982;eder1978;eder1984;eder1987;warren1964,,1968,Binford_2001_Table_5.01, +13387,B20,B008,0.7056,,Note Binford (2001) gives density as 0.705 persons per km2,bhanu1982;bhanu1992,,1974,Binford_2001_Table_5.01, +13388,B200,B008,0.0232,,,steward1936;steward1938,,1860,Binford_2001_Table_5.01, +13389,B201,B008,0.0344,,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +13390,B202,B008,0.3804,,,gifford1926b;liljebladandfowler1986;lowie1909;steward1933;steward1938,,1870,Binford_2001_Table_5.01, +13391,B203,B008,0.02,,,steward1938;thomas1983,,1860,Binford_2001_Table_5.01, +13392,B204,B008,0.0371,,,euler1972;eulerandfowler1966;hrdlicka1909;kelly1964;kellyandfowler1986;knack1975;stoffleandevans1978,,1860,Binford_2001_Table_5.01, +13393,B205,B008,0.059,,,davis1965,,1870,Binford_2001_Table_5.01, +13394,B206,B008,0.0354,,,fowlerandliljeblad1986;steward1938,,1860,Binford_2001_Table_5.01, +13395,B207,B008,0.0691,,,gouldandplew1996;gouldperscomm1992;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +13396,B208,B008,0.1851,,,boas1899;fowler1966;fowlerandliljeblad1986,,1860,Binford_2001_Table_5.01, +13397,B209,B008,0.0346,,,boas1899;callawayetal1986;janetski1983,,1860,Binford_2001_Table_5.01, +13398,B21,B008,0.7,,,bird1983;birddavid1987,,1978,Binford_2001_Table_5.01, +13399,B210,B008,0.2206,,Note Binford (2001) gives density as 0.22 persons per km2,fowler1992,,1870,Binford_2001_Table_5.01, +13400,B211,B008,0.0389,,,steward1938,,1860,Binford_2001_Table_5.01, +13401,B212,B008,0.1061,,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +13402,B213,B008,0.0296,,,steward1938,,1870,Binford_2001_Table_5.01, +13403,B214,B008,0.0168,,,steward1938,,1860,Binford_2001_Table_5.01, +13404,B215,B008,0.0604,,Note Binford (2001) gives density as 0.0609 persons per km2,steward1938,,1870,Binford_2001_Table_5.01, +13405,B216,B008,0.1171,,,boas1899;ewers1955;harris1940;lowie1924;steward1938,,1860,Binford_2001_Table_5.01, +13406,B217,B008,0.0428,,,steward1938,,1860,Binford_2001_Table_5.01, +13407,B218,B008,0.1667,,,steward1938,,1860,Binford_2001_Table_5.01, +13408,B219,B008,0.1604,,,cook1955;gayton1948a;gifford1926b;gifford1932b;whiting1964,,1860,Binford_2001_Table_5.01, +13409,B22,B008,0.3486,,Note Binford (2001) gives density as 0.348 persons per km2,batchelor1927;hitchcock1891;landor1893;watanabe1964a;watanabe1972,,1900,Binford_2001_Table_5.01, +13410,B221,B008,0.0164,,,steward1938,,1860,Binford_2001_Table_5.01, +13411,B222,B008,0.026,,,callawayetal1986;hrdlicka1909;smith1974,,1860,Binford_2001_Table_5.01, +13412,B223,B008,0.0111,,,lowie1924,,1870,Binford_2001_Table_5.01, +13413,B224,B008,0.0134,,Note Binford (2001) gives density as 0.0113 persons per km2,steward1938,,1860,Binford_2001_Table_5.01, +13414,B225,B008,0.149,,,dazevedo1963;downs1966;gifford1926b;price1962,,1850,Binford_2001_Table_5.01, +13415,B226,B008,0.1359,,,brink1969;kelly1932,,1870,Binford_2001_Table_5.01, +13416,B227,B008,0.0156,,Note Binford (2001) gives density as 0.0187 persons per km2,lowie1924;shimkin1947;steward1974a,,1860,Binford_2001_Table_5.01, +13417,B228,B008,0.138,,,steward1938,,1860,Binford_2001_Table_5.01, +13418,B229,B008,0.0104,,,steward1938,,1860,Binford_2001_Table_5.01, +13419,B23,B008,0.043,,,qiu1983,,1900,Binford_2001_Table_5.01, +13420,B230,B008,0.0749,,,boas1899;smith1974;steward1974b;stewart1941,,1860,Binford_2001_Table_5.01, +13421,B231,B008,0.0124,,,whiting1950,,1870,Binford_2001_Table_5.01, +13422,B232,B008,0.0624,,,boas1899;steward1938,,1860,Binford_2001_Table_5.01, +13423,B233,B008,0.0183,,,steward1938,,1860,Binford_2001_Table_5.01, +13424,B234,B008,0.0429,,,boas1899;steward1974b,,1860,Binford_2001_Table_5.01, +13425,B24,B008,0.016,,,lee1967;shimkin1939,,1900,Binford_2001_Table_5.01, +13426,B240,B008,0.0051,,,basehartperscomm1972;hrdlicka1909;swanton1952,,1880,Binford_2001_Table_5.01, +13427,B241,B008,0.0233,,,goldstein1934;wallaceandhoebel1952,,1870,Binford_2001_Table_5.01, +13428,B242,B008,0.0116,,,basehart1972;morice1906b;opler1937,,1880,Binford_2001_Table_5.01, +13429,B243,B008,0.014,,,bamforth1988;mishkin1940;newcomb1961,,1870,Binford_2001_Table_5.01, +13430,B244,B008,0.0415,,,bamforth1988;ewers1955,,1860,Binford_2001_Table_5.01, +13431,B245,B008,0.0482,,,bushnell1922;gussow1954;moore1987;moore1991,,1860,Binford_2001_Table_5.01, +13432,B246,B008,0.075,,,eggan1937;flannery1953;gussowetal1974;hilger1952,,1860,Binford_2001_Table_5.01, +13433,B248,B008,0.0581,,,bamforth1988;denig1953;denig1961;ewers1955;kelly1995,,1870,Binford_2001_Table_5.01, +13434,B249,B008,0.0878,,,bushnell1922;culbertson1952;sullivan1920,,1870,Binford_2001_Table_5.01, +13435,B25,B008,0.1931,,,shternberg1933,,1920,Binford_2001_Table_5.01, +13436,B250,B008,0.0202,,,chamberlain1892;turneyhigh1941,,1880,Binford_2001_Table_5.01, +13437,B252,B008,0.0231,,,boas1899;murphyandmurphy1960;steward1938,,1860,Binford_2001_Table_5.01, +13438,B253,B008,0.0337,,,bamforth1988;culbertson1952;ewers1955;flannery1953;swanton1952,,1870,Binford_2001_Table_5.01, +13439,B254,B008,0.0279,,,skinner1914,,1850,Binford_2001_Table_5.01, +13440,B255,B008,0.0254,,,dejong1912;ewers1955;kehoe1993,,1850,Binford_2001_Table_5.01, +13441,B256,B008,0.0346,,,bushnell1922;ewers1955;ewers1971;lewis1973;robbins1971;wissler1911,,1850,Binford_2001_Table_5.01, +13442,B257,B008,0.0321,,,bushnell1922;culbertson1952;denig1930;lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +13443,B258,B008,0.0274,,,bamforth1988;bushnell1922;mandelbaum1940,,1850,Binford_2001_Table_5.01, +13444,B259,B008,0.0444,,,bamforth1988;ewers1955,,1850,Binford_2001_Table_5.01, +13445,B26,B008,0.0061,,,jochelson191926;jochelson191926;kreynovich1979,,1900,Binford_2001_Table_5.01, +13446,B260,B008,0.0175,,,bamforth1988;jenness1938,,1880,Binford_2001_Table_5.01, +13447,B268,B008,0.5667,,Note Binford (2001) gives density as 0.565 persons per km2,drucker1990;kelly1995;suttles1990,,1880,Binford_2001_Table_5.01, +13448,B269,B008,0.9677,,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +13449,B27,B008,0.0046,,,chard1963;popov1966,,1933,Binford_2001_Table_5.01, +13450,B270,B008,0.3675,,,smith1940a;smith1940b,,1870,Binford_2001_Table_5.01, +13451,B271,B008,0.324,,,eells1884;eells1887a;elmendorf1960;kelly1995,,1850,Binford_2001_Table_5.01, +13452,B272,B008,0.2198,,,schalk1978;taylor1974a;taylor1974b,,1880,Binford_2001_Table_5.01, +13453,B273,B008,1.5385,,Note Binford (2001) gives density as 1.539 persons per km2,cybulski1990b;drucker1951;koppert1930a;schalk1978,,1880,Binford_2001_Table_5.01, +13454,B274,B008,0.3378,,,ray1937;ray1938;silverstein1990,,1850,Binford_2001_Table_5.01, +13455,B275,B008,1.0417,,,boyd1990;zenk1990,,1860,Binford_2001_Table_5.01, +13456,B276,B008,0.2353,,,boasandfarrand1899;hayden1997;teit1906b,,1860,Binford_2001_Table_5.01, +13457,B277,B008,1.1195,,Note Binford (2001) gives density as 1.0463 persons per km2,stern1934,,1880,Binford_2001_Table_5.01, +13458,B278,B008,0.5869,,,olson1936a;schalk1978,,1860,Binford_2001_Table_5.01, +13459,B279,B008,0.66,,,cybulski1990b;duff1952;schalk1978,,1880,Binford_2001_Table_5.01, +13460,B28,B008,0.047,,,bogoras1904;haydenetal1996;krupnik1983a;moore1923;szathmary1984,,1860,Binford_2001_Table_5.01, +13461,B280,B008,0.347,,Note Binford (2001) gives density as 0.3475 persons per km2,hilltout1904;suttles1990;wilson1866,,1880,Binford_2001_Table_5.01, +13462,B281,B008,0.4132,,,seaburgandmiller1990;taylor1974a,,,Binford_2001_Table_5.01, +13463,B282,B008,0.55,,,kennedyandbouchard1990,,1860,Binford_2001_Table_5.01, +13464,B283,B008,0.2051,,,cybulski1990b;hilton1990,,1880,Binford_2001_Table_5.01, +13465,B284,B008,1.0425,,Note Binford (2001) gives density as 1.043 persons per km2,pettitt1950,,1880,Binford_2001_Table_5.01, +13466,B285,B008,0.708,,Note Binford (2001) gives density as 0.7 persons per km2,boyd1990;eells1884;schalk1978;suttles1990,,1860,Binford_2001_Table_5.01, +13467,B286,B008,1.2296,,,gunther1962;schalk1978;swan1870,,1860,Binford_2001_Table_5.01, +13468,B287,B008,0.1906,,,olson1940;schalk1978,,1880,Binford_2001_Table_5.01, +13469,B288,B008,0.6872,,,boasandfarrand1899;cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +13470,B289,B008,0.4191,,,boasandfarrand1899;halpinandseguin1990;kane1859;schalk1978,,1880,Binford_2001_Table_5.01, +13471,B290,B008,0.9709,,,cybulski1990b;kane1859;schalk1978,,1890,Binford_2001_Table_5.01, +13472,B291,B008,0.13,,,boasandfarrand1899;cybulski1990b;mcilwraith1948;schalk1978,,1880,Binford_2001_Table_5.01, +13473,B292,B008,0.1143,,,kane1859;mitchellanddonald1988;schalk1978,,1880,Binford_2001_Table_5.01, +13474,B293,B008,0.2358,,,adams1973;boasandfarrand1899;cybulski1990b;halpinandseguin1990;kane1859,,1880,Binford_2001_Table_5.01, +13475,B294,B008,0.3066,,Note Binford (2001) gives density as 0.306 persons per km2,holmberg1985;knechtandjordan1985,,1840,Binford_2001_Table_5.01, +13476,B295,B008,0.0586,,,birketsmithanddelaguna1938;delaguna1990,,1890,Binford_2001_Table_5.01, +13477,B296,B008,0.1731,,,hrdlicka1930;michael1967;nelson1899;oswalt1966;oswaltandvanstone1967;oswaltperscomm1966;porter1893,,1850,Binford_2001_Table_5.01, +13478,B297,B008,0.121,,,birketsmith1953;delaguna1956;michael1967,,1930,Binford_2001_Table_5.01, +13479,B298,B008,0.5466,,,lantis1970a;lantis1984;mickey1955;mitchellanddonald1988;newman1960,,1830,Binford_2001_Table_5.01, +13480,B299,B008,0.192,,,hrdlicka1930;lantis1946;lantis1960,,1930,Binford_2001_Table_5.01, +13481,B3,B008,0.092,,,hagen1908;persoon1989;volz1909,,1900,Binford_2001_Table_5.01, +13482,B315,B008,0.1899,,,murdock1980,,1850,Binford_2001_Table_5.01, +13483,B316,B008,0.105,,,,,1860,Binford_2001_Table_5.01, +13484,B317,B008,0.5917,,Note Binford (2001) gives density as 0.5017 persons per km2,teit1928,,1870,Binford_2001_Table_5.01, +13485,B318,B008,0.2685,,Note Binford (2001) gives density as 0.27 persons per km2,,,1880,Binford_2001_Table_5.01, +13486,B319,B008,2.3174,,,spierandsapir1930,,1860,Binford_2001_Table_5.01, +13487,B320,B008,0.015,,,teit1930,,1860,Binford_2001_Table_5.01, +13488,B321,B008,0.1451,,,clineetal1938,,1880,Binford_2001_Table_5.01, +13489,B322,B008,0.1326,,,grabert1974;teit1930,,1860,Binford_2001_Table_5.01, +13490,B323,B008,0.1119,,,kelly1995;ray1932;teit1930,,1870,Binford_2001_Table_5.01, +13491,B324,B008,0.0889,,,spinden1908,,1850,Binford_2001_Table_5.01, +13492,B325,B008,0.3323,,,boasandfarrand1899;haydenetal1996;teit1900,,1860,Binford_2001_Table_5.01, +13493,B326,B008,0.015,,,teit1930,,1870,Binford_2001_Table_5.01, +13494,B327,B008,0.05,,,jenness1935;quimby1962,,1870,Binford_2001_Table_5.01, +13495,B328,B008,0.0309,,,kinietz1947,,1800,Binford_2001_Table_5.01, +13496,B329,B008,0.0432,,,boas1895a;speck1922;speckanddexter1951;wallisandwallis1955,,1700,Binford_2001_Table_5.01, +13497,B330,B008,0.015,,,ewers1955;teit1930;turneyhigh1937,,1860,Binford_2001_Table_5.01, +13498,B331,B008,0.0121,,,hickerson1967;landes1937a,,1880,Binford_2001_Table_5.01, +13499,B332,B008,0.012,,,bishop1969;bishop1978;grant1924;hallowell1938;hallowell1955;skinner1911,,1870,Binford_2001_Table_5.01, +13500,B333,B008,0.124,,,chamberlain1892;dawson1891;teit1900;teit1905,,1850,Binford_2001_Table_5.01, +13501,B334,B008,0.0308,,,dunning1959;grant1924;rogers1969,,1940,Binford_2001_Table_5.01, +13502,B335,B008,0.0175,,,grant1924;rogers1963a;rogers1963b;rogers1969,,1900,Binford_2001_Table_5.01, +13503,B336,B008,0.075,,,goldman1940;jenness1943;smithnd,,1865,Binford_2001_Table_5.01, +13504,B337,B008,0.0087,,,cameron1890;grant1890;hickerson1962,,1800,Binford_2001_Table_5.01, +13505,B338,B008,0.0058,,,lips1947a;morantz1983;rogers1963a;rogers1969;rogers1972;rogers1973;speck1923,,1880,Binford_2001_Table_5.01, +13506,B339,B008,0.0143,,,dunning1959;rogers1969,,1850,Binford_2001_Table_5.01, +13507,B340,B008,0.0042,,,morantz1983;rogers1969,,1900,Binford_2001_Table_5.01, +13508,B341,B008,0.0051,,,boas1895a;rogersandblack1976,,1890,Binford_2001_Table_5.01, +13509,B342,B008,0.0041,,,lane1952;tanner1944,,1880,Binford_2001_Table_5.01, +13510,B343,B008,0.0082,,,dennison1981;grant1936;jenness1937,,1880,Binford_2001_Table_5.01, +13511,B344,B008,0.0051,,,goddard1916;grant1936;ives1985;keith1960;nicks1980;ridington1982,,1850,Binford_2001_Table_5.01, +13512,B345,B008,0.01,,,helm1961;ives1985;janes1983;mackenzie1966,,1860,Binford_2001_Table_5.01, +13513,B346,B008,0.009,,,honigmann1949;honigmann1954,,1920,Binford_2001_Table_5.01, +13514,B347,B008,0.0116,,,boas1901;emmons1911;maclachlan1981,,1870,Binford_2001_Table_5.01, +13515,B348,B008,0.1152,,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +13516,B349,B008,0.075,,Note Binford (2001) gives density as 0.0759 persons per km2,grant1936;jenness1937;jenness1943,,1880,Binford_2001_Table_5.01, +13517,B35,B008,0.3501,,,,,1950,Binford_2001_Table_5.01, +13518,B350,B008,0.0078,,,gillespie1981,,1800,Binford_2001_Table_5.01, +13519,B351,B008,0.0182,,,adney1900;crowandobley1981,,1880,Binford_2001_Table_5.01, +13520,B352,B008,0.0033,,,helm1961;mackenzie1966;savishinsky1974;savishinskyandhara1981;whiting1964,,1860,Binford_2001_Table_5.01, +13521,B353,B008,0.0143,,,honigmann1949;honigmann1956b;honigmann1981;mason1967,,1900,Binford_2001_Table_5.01, +13522,B354,B008,0.011,,,clark1974;clark1975;mcfaydenclark1981;michael1967;sullivan1942,,1880,Binford_2001_Table_5.01, +13523,B355,B008,0.0046,,,brumbachandjarvenpa1989;fidler1934;grant1936;irimoto1981;mullerwille1974;smith1976;smith1978a;smith1981,,1880,Binford_2001_Table_5.01, +13524,B356,B008,0.017,,,boas1901;mckennan1964;mckennan1965;osgood1936;slobodin1969;slobodin1981,,1880,Binford_2001_Table_5.01, +13525,B357,B008,0.0217,,Note Binford (2001) gives density as 0.0271 persons per km2,michael1967;osgood1958;oswaltandvanstone1967;porter1893;snow1981;sullivan1942,,1880,Binford_2001_Table_5.01, +13526,B358,B008,0.0055,,,hooper1853;mackenzie1966;rushforth1977,,1860,Binford_2001_Table_5.01, +13527,B359,B008,0.0077,,,mckennan1959;mckennan1964;pitts1972,,1930,Binford_2001_Table_5.01, +13528,B36,B008,0.156,,,metraux1948,,1960,Binford_2001_Table_5.01, +13529,B360,B008,0.009,,,morantz1983;skinner1911,,1900,Binford_2001_Table_5.01, +13530,B361,B008,0.0088,,,helm1968;helm1972;keith1960;mackenzie1966;szathmary1984,,1860,Binford_2001_Table_5.01, +13531,B362,B008,0.0486,,,michael1967;osgood1937;townsend1963;townsend1981,,1870,Binford_2001_Table_5.01, +13532,B363,B008,0.0093,,,legros1982;mcclellan1981;oleary1985,,1890,Binford_2001_Table_5.01, +13533,B364,B008,0.0152,,,michael1967;snow1981,,1860,Binford_2001_Table_5.01, +13534,B365,B008,0.0042,,,hallowell1929;henriksen1973;tanner1944,,1890,Binford_2001_Table_5.01, +13535,B369,B008,0.0762,,,ray1992;seltzer1933,,1870,Binford_2001_Table_5.01, +13536,B37,B008,0.0402,,Note Binford (2001) gives density as 0.0704 persons per km2,kloos1977;kloos1982,,1968,Binford_2001_Table_5.01, +13537,B370,B008,0.0267,,,burch1975;foote1966;giddings1956;giddingsperscomm1963,,1890,Binford_2001_Table_5.01, +13538,B371,B008,0.0663,,,burch1975;burch1984;rodahlandedwards1952,,1880,Binford_2001_Table_5.01, +13539,B372,B008,0.0278,,,graburn1969;seltzer1933;taylor1974;turner1894,,1890,Binford_2001_Table_5.01, +13540,B373,B008,0.0186,,,barger1981;saladindanglure1984;willmott1960,,1890,Binford_2001_Table_5.01, +13541,B374,B008,0.003,,,arima1984;birketsmith1929;harper1964;haydenetal1996;rasmussen1930;tyrrell1897;vallee1967,,1900,Binford_2001_Table_5.01, +13542,B375,B008,0.022,,,binford1969;binfordfieldnotes1971;binfordfieldnotes1972;boas1901;burch1975,,1900,Binford_2001_Table_5.01, +13543,B377,B008,0.0096,,,amsden1977;binford1971;binford1991a;binfordandchasko1976;jamison1978,,1950,Binford_2001_Table_5.01, +13544,B378,B008,0.0385,,,haydenetal1996;mcghee1988;seltzer1933;smith1984;tyrrell1897,,1910,Binford_2001_Table_5.01, +13545,B379,B008,0.15,,,hrdlicka1930;hughes1960;moore1923;rodahlandedwards1952,,1920,Binford_2001_Table_5.01, +13546,B38,B008,0.2,,,gragson1989;greavesperscomm1993;petrullo1939,,1989,Binford_2001_Table_5.01, +13547,B380,B008,0.042,,,burch1975;jenness1922;rainey1947;seltzer1933,,1880,Binford_2001_Table_5.01, +13548,B381,B008,0.0043,,,damas1972;damas1984;haydenetal1996;jenness1922;jenness1932;rasmussen1932,,1920,Binford_2001_Table_5.01, +13549,B382,B008,0.0038,,,amundsen1908;briggs1970;rasmussen1931,,1920,Binford_2001_Table_5.01, +13550,B383,B008,0.0033,,,hrdlicka1930;mathiassen1928;oetteking1931;rae1850;vandeveldeetal1992;vanstone1960,,1880,Binford_2001_Table_5.01, +13551,B384,B008,0.0054,,,damas1992;hallowell1929;lyon1924;mathiassen1928;szathmary1984,,1920,Binford_2001_Table_5.01, +13552,B385,B008,0.0473,,,birketsmith1928a;grnnowetal1983;hansen1914;perry1898;rink1875;rink1877;york1875,,1880,Binford_2001_Table_5.01, +13553,B386,B008,0.0162,,Note Binford (2001) gives density as 0.0126 persons per km2,boas1888;boas1964;christy1894;hantzsch1977;low1906;oetteking1931;roberts1953,,1880,Binford_2001_Table_5.01, +13554,B387,B008,0.0025,,,balikci1970;boas1907;mclintock1860;rae1850;rasmussen1931;ross1835;savelle1987;vandersteenhoven1959,,1880,Binford_2001_Table_5.01, +13555,B388,B008,0.0771,,,birketsmith1928a;hansen1914;haydenetal1996;holm1914;mirsky1937a;peterson1984;poulsen1909;thalbitzer1914,,1880,Binford_2001_Table_5.01, +13556,B389,B008,0.0386,,,burch1975;ray1885;roberts1953;seltzer1933;simpson1875;spencer1959,,1880,Binford_2001_Table_5.01, +13557,B39,B008,0.1762,,,hurtadoandhill1986;hurtadoandhill1990;kirchhoff1945;metzger1968;wilbert1957,,1960,Binford_2001_Table_5.01, +13558,B390,B008,0.0041,,,ekblaw1928;ekblaw1948;gilberg1984;roberts1953;steensby1910,,1880,Binford_2001_Table_5.01, +13559,B4,B008,0.3977,,Note Binford (2001) gives density as 0.3954 persons per km2,agrawal1967;rizvi1990,,1989,Binford_2001_Table_5.01, +13560,B40,B008,0.0937,,,politis1992;politisperscomm1992;politisperscomm1993,,1990,Binford_2001_Table_5.01, +13561,B41,B008,0.5152,,Note Binford (2001) gives density as 0.5136 persons per km2,baldus1937;cook1908;levistrauss1936;levistrauss1970;newman1953,,1920,Binford_2001_Table_5.01, +13562,B42,B008,0.0674,,,metraux1946guato;schmidt1942,,1901,Binford_2001_Table_5.01, +13563,B43,B008,0.0603,,,holmberg1950,,1940,Binford_2001_Table_5.01, +13564,B44,B008,0.0167,,,stearman1989,,1968,Binford_2001_Table_5.01, +13565,B45,B008,0.0778,,,aspelin1976;levistrauss1948a;levistrauss1948b;levistrauss1970;newman1953;oberg1953,,1938,Binford_2001_Table_5.01, +13566,B46,B008,0.3873,,,gogginandsturtevant1964;hann1991;widmer1983,,1600,Binford_2001_Table_5.01, +13567,B47,B008,0.0348,,,clastres1968;clastres1972;hilletal1984;jones1983;metrauxandbaldus1946;oberg1953,,1975,Binford_2001_Table_5.01, +13568,B48,B008,0.098,,,ehrenreich1887;metraux1946botocudo;metrauxandbaldus1946,,1880,Binford_2001_Table_5.01, +13569,B49,B008,0.0968,,Note Binford (2001) gives density as 0.096 persons per km2,kozaketal1979,,1954,Binford_2001_Table_5.01, +13570,B5,B008,0.401,,,bose1964;cooper1991;heinegeldernandhoehngerlachstein1958;man1883;sen1962;temple1903,,1952,Binford_2001_Table_5.01, +13571,B50,B008,0.0408,,,henry1964,,1910,Binford_2001_Table_5.01, +13572,B51,B008,0.0189,,,boschinandmacuzzi1979;cooper1946c;goni1988;lothrop1928,,1870,Binford_2001_Table_5.01, +13573,B52,B008,0.1365,,,cooper1946d,,1880,Binford_2001_Table_5.01, +13574,B53,B008,0.1498,,,bird1946;bird1988;birdperscomm1970;lothrop1928,,1900,Binford_2001_Table_5.01, +13575,B54,B008,0.0727,,,chapman1982;cooper1946b;gusinde1931;lothrop1928,,1880,Binford_2001_Table_5.01, +13576,B55,B008,0.2841,,,cooper1946a;gusinde1937a;lothrop1928,,1870,Binford_2001_Table_5.01, +13577,B6,B008,0.4474,,Note Binford (2001) gives density as 0.4465 persons per km2,temple1903,,1906,Binford_2001_Table_5.01, +13578,B60,B008,0.0907,,,bahuchet1979;bahuchet1988;cavallisforza1986a;hudson1990,,1980,Binford_2001_Table_5.01, +13579,B61,B008,0.1747,,,heymer1980;hiernauxetal1975;lalouel1950,,1976,Binford_2001_Table_5.01, +13580,B62,B008,0.2499,,,skeatandblagden1906;terashima1980,,1977,Binford_2001_Table_5.01, +13581,B63,B008,0.1364,,,cavallisforza1986a;cavallisforza1986c;hiernauxetal1975;valloisandmarquer1976,,1980,Binford_2001_Table_5.01, +13582,B64,B008,0.1596,,,bailey1985;baileyandpeacock1988;fisher1987;fisherandstrickland1989;peacock1985;schebesta1962a,,1980,Binford_2001_Table_5.01, +13583,B65,B008,0.44,,,cavallisforza1986c;harako1976;hiernauxetal1975;ichikawa1978;putnam1948;roberts1953;tanno1976;turnbull1965a,,1930,Binford_2001_Table_5.01, +13584,B66,B008,0.0436,,,kellyandpoyer1993,,,Binford_2001_Table_5.01, +13585,B67,B008,0.0288,,,clark1951,,1950,Binford_2001_Table_5.01, +13586,B68,B008,0.0385,,,fourie1927;fourie1928;tobias1962;werner1906a,,1920,Binford_2001_Table_5.01, +13587,B69,B008,0.24,,,bleek1931a;blurtonjonesetal1992;hawkesetal1989;leeanddevore1968a;oconnelletal1991;oconnellperscomm1977;oconnellperscomm1982;woodburn1968b,,1910,Binford_2001_Table_5.01, +13588,B7,B008,0.919,,,fox1952;reed1904,,1903,Binford_2001_Table_5.01, +13589,B70,B008,0.4081,,,blackburn1971;huntingford1929;huntingford1942;huntingford1951;huntingford1954;huntingford1955a;wayland1931,,1920,Binford_2001_Table_5.01, +13590,B71,B008,0.0152,,,bleek1929;decastroandalmeida1956;decastroandalmeida1957,,1928,Binford_2001_Table_5.01, +13591,B72,B008,0.066,,,bleek1929;brooksetal1984;hitchcockandebert1989;howell1979;kaufmann1910;lee1972a;lee1979;marshall1959;marshall1960;schapera1930;tobias1962;yellen1977a,,1950,Binford_2001_Table_5.01, +13592,B73,B008,0.125,,Note Binford (2001) gives density as 0.005 persons per km2,bleek1928;guenther1986;hitchcockandebert1989;schapera1930;tobias1962,,1910,Binford_2001_Table_5.01, +13593,B74,B008,0.0293,,,hitchcockperscomm1990;silberbauer1972;silberbauer1981a;silberbauer1981b;tobias1962;weissnerandhitchcockperscomm1991,,1962,Binford_2001_Table_5.01, +13594,B75,B008,0.0636,,,hitchcockandebert1989;hitchcockperscomm1990;kentandvierich1989;tobias1962;vierich1981;wyndhamandmorrison1958,,1976,Binford_2001_Table_5.01, +13595,B76,B008,0.0103,,,eibleibesfeldt1948;eibleibesfeldt1972;hitchcockandebert1989;hitchcockperscomm1990,,1968,Binford_2001_Table_5.01, +13596,B77,B008,0.0064,,,dart1937b;informantfrommoloporivernd;steyn1984,,1920,Binford_2001_Table_5.01, +13597,B78,B008,0.0357,,,potgieter1955;toerien1958,,1950,Binford_2001_Table_5.01, +13598,B79,B008,0.0243,,,bleek1924a,,,Binford_2001_Table_5.01, +13599,B8,B008,0.3338,,,man1883;radcliffebrown1948;whiting1964,,1870,Binford_2001_Table_5.01, +13600,B82,B008,0.35,,,moore1979,,1848,Binford_2001_Table_5.01, +13601,B83,B008,0.4,,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +13602,B84,B008,0.1784,,,altman1987;berndtandberndt1970;petersonandlong1986,,1978,Binford_2001_Table_5.01, +13603,B85,B008,0.385,,,long1970;macintosh1952;peterson1970;peterson1973;peterson1976;peterson1992;petersonandlong1986;petersonperscomm1992;petersonperscomm1994,,1970,Binford_2001_Table_5.01, +13604,B86,B008,0.4375,,,meehan1982;petersonandlong1986,,1973,Binford_2001_Table_5.01, +13605,B87,B008,0.7273,,,hiatt1965;long1970;peterson1972;petersonandlong1986,,1950,Binford_2001_Table_5.01, +13606,B88,B008,0.1176,,,howells1937;long1970;peterson1976;petersonandlong1986;thomson1949;tindaleperscomm1967;warner1958,,1930,Binford_2001_Table_5.01, +13607,B89,B008,0.17,,,kaberry1935;kaberry1939,,1920,Binford_2001_Table_5.01, +13608,B9,B008,0.176,,,brandt1961;evans1937;kuchikura1988;rambo1985;schebesta1954;schebesta1962a;skeatandblagden1906;whiting1964,,1920,Binford_2001_Table_5.01, +13609,B90,B008,0.193,,,petersonandlong1986;thomson1939;wills1980,,1920,Binford_2001_Table_5.01, +13610,B91,B008,0.088,,,chaloupka1981;leichhardt1847;mccarthyandmacarthur1960;spencer1966,,1920,Binford_2001_Table_5.01, +13611,B92,B008,0.23,,,biernoff1979;howells1937;mcarthur1960;thomson1949,,1960,Binford_2001_Table_5.01, +13612,B93,B008,0.31,,,thomson1933;thomson1934,,1930,Binford_2001_Table_5.01, +13613,B94,B008,0.08,,,petersonandlong1986;sharp1934;sharp1940,,1937,Binford_2001_Table_5.01, +13614,B95,B008,0.3749,,,goodale1962;hart1970;hartandpilling1960;howells1937;petersonandlong1986,,1920,Binford_2001_Table_5.01, +13615,B96,B008,0.5,,,andersonandrobins1988;roth1909,,1880,Binford_2001_Table_5.01, +13616,B97,B008,0.2288,,,petersonandlong1986;rose1960;tindaleperscomm1967,,1930,Binford_2001_Table_5.01, +13617,B98,B008,0.5769,,Note Binford (2001) gives density as 0.58 persons per km2,haleandtindale1933;roth1909,,1926,Binford_2001_Table_5.01, +13618,B99,B008,0.445,,Note Binford (2001) gives density as 0.45 persons per km2,stanner1933,,1900,Binford_2001_Table_5.01, +13619,B1,B009,Mobile,B009-1,,"brosius1986[174];harrison1949[135, 139];sellato1994[143-44];urquhart1951[515, 505]",,1970,Binford_2001_Table_5.01, +13620,B10,B009,Mobile,B009-1,,"bailey1863[296, 308];seligmannandseligmann1911[43-44]",,1900,Binford_2001_Table_5.01, +13621,B100,B009,Mobile,B009-1,,blundell1980[106-7];love1936[93],,,Binford_2001_Table_5.01, +13622,B101,B009,Mobile,B009-1,,kaberry1939,,1934,Binford_2001_Table_5.01, +13623,B102,B009,Mobile,B009-1,,memmott1983a[367],,1909,Binford_2001_Table_5.01, +13624,B103,B009,Mobile,B009-1,,tindale1962a[269],,1928,Binford_2001_Table_5.01, +13625,B104,B009,Mobile,B009-1,,,,,Binford_2001_Table_5.01, +13626,B105,B009,Mobile,B009-1,,harris1978[128],,1900,Binford_2001_Table_5.01, +13627,B106,B009,Mobile,B009-1,,radcliffebrown1912[146],,1910,Binford_2001_Table_5.01, +13628,B107,B009,Mobile,B009-1,,brayshaw1990[31];lumholtz1889[194],,1870,Binford_2001_Table_5.01, +13629,B108,B009,Mobile,B009-1,,nind1831[22],,1934,Binford_2001_Table_5.01, +13630,B109,B009,Mobile,B009-1,,"meggitt1962[47, 50, 56]",,1965,Binford_2001_Table_5.01, +13631,B11,B009,Mobile,B009-1,,"morris1982a[36-37, 174]",,1972,Binford_2001_Table_5.01, +13632,B110,B009,Mobile,B009-1,,petersonandlong1986[116-17];tonkinson1978[53],,1880,Binford_2001_Table_5.01, +13633,B111,B009,Mobile,B009-1,,harris1978[128],,1960,Binford_2001_Table_5.01, +13634,B112,B009,Mobile,B009-1,,"petersonandlong1986[112-15, 124]",,1968,Binford_2001_Table_5.01, +13635,B113,B009,Mobile,B009-1,,long1971[264-65];meggitt1962[55];petersonandlong1986[104-11],,1936,Binford_2001_Table_5.01, +13636,B114,B009,Mobile,B009-1,,colliverandwoolston1975[93],,1848,Binford_2001_Table_5.01, +13637,B115,B009,Mobile,B009-1,,morwood1987[339];winterbotham1980[41],,1840,Binford_2001_Table_5.01, +13638,B116,B009,Mobile,B009-1,,duncankemp1964,,1900,Binford_2001_Table_5.01, +13639,B117,B009,Mobile,B009-1,,binfordfieldnotes1974;denham1975[120];oconnell1987[85],,1965,Binford_2001_Table_5.01, +13640,B118,B009,Mobile,B009-1,,gould1977[21-22],,1968,Binford_2001_Table_5.01, +13641,B119,B009,Mobile,B009-1,,gardner1978[239-46],,1850,Binford_2001_Table_5.01, +13642,B12,B009,Mobile,B009-1,,headlandperscomm1993,,1965,Binford_2001_Table_5.01, +13643,B120,B009,Mobile,B009-1,,"brokensha1975[19, 33];layton1983[26];petersonandlong1986[127];tindale1972[224, 244]",,1968,Binford_2001_Table_5.01, +13644,B121,B009,Mobile,B009-1,,"gason1879[257, 264];sturt1849a[1:254, 261, 296, 316, 407, 414];sturt1849a[2:70, 74]",,1900,Binford_2001_Table_5.01, +13645,B122,B009,Mobile,B009-1,,roberts1953;schulze1891,,1870,Binford_2001_Table_5.01, +13646,B123,B009,Mobile,B009-1,,tindaleperscomm1965,,1922,Binford_2001_Table_5.01, +13647,B124,B009,Mobile,B009-1,,"spencerandgillen1927[15, 506]",,1900,Binford_2001_Table_5.01, +13648,B125,B009,Mobile,B009-1,,parker1905,,1880,Binford_2001_Table_5.01, +13649,B126,B009,Mobile,B009-1,,petersonandlong1986[129-34],,1912,Binford_2001_Table_5.01, +13650,B127,B009,Mobile,B009-1,,berndtandberndt1944;long1970,,1941,Binford_2001_Table_5.01, +13651,B128,B009,Mobile,B009-1,,,,1890,Binford_2001_Table_5.01, +13652,B129,B009,Mobile,B009-1,,cawthorne1844;draperperscomm1993,,1840,Binford_2001_Table_5.01, +13653,B13,B009,Mobile,B009-1,,"rai1982[63, 66, 119]",,1979,Binford_2001_Table_5.01, +13654,B130,B009,Mobile,B009-1,,,,1910,Binford_2001_Table_5.01, +13655,B131,B009,Sedentary,B009-2,,,,1850,Binford_2001_Table_5.01, +13656,B132,B009,Mobile,B009-1,,nind1831[28],,1850,Binford_2001_Table_5.01, +13657,B133,B009,Sedentary,B009-2,,williams1985[75],,1850,Binford_2001_Table_5.01, +13658,B134,B009,Mobile,B009-1,,"gaughwinandsullivan1984[92, 94]",,1850,Binford_2001_Table_5.01, +13659,B135,B009,Mobile,B009-1,,fisonandhowitt1880[209];howitt1904[773-77],,1850,Binford_2001_Table_5.01, +13660,B136,B009,Mobile,B009-1,,"hiatt1967[201];jones1971[278, 279]",,1830,Binford_2001_Table_5.01, +13661,B137,B009,Mobile,B009-1,,"hiatt1967[201];jones1971[278, 279]",,1830,Binford_2001_Table_5.01, +13662,B14,B009,Mobile,B009-1,,"vanoverbergh1925[195, 196-98, 432]",,1924,Binford_2001_Table_5.01, +13663,B143,B009,Mobile,B009-1,,bowen1976[24-30];griffen1959[vii],,1900,Binford_2001_Table_5.01, +13664,B144,B009,Sedentary,B009-2,,"bean1972[76];kroeber1925a[692, 706-7];strong1929a[43-56]",,1870,Binford_2001_Table_5.01, +13665,B145,B009,Sedentary,B009-2,,strong1929a[187-19],,1870,Binford_2001_Table_5.01, +13666,B146,B009,Mobile,B009-1,,meigs1939[18-20],,1880,Binford_2001_Table_5.01, +13667,B147,B009,Mobile,B009-1,,"kroeber1925a[712, 719];luomala1978[597]",,1850,Binford_2001_Table_5.01, +13668,B148,B009,Sedentary,B009-2,,cook1955[40],,1860,Binford_2001_Table_5.01, +13669,B149,B009,Sedentary,B009-2,,kroeber1925a[617-18],,1870,Binford_2001_Table_5.01, +13670,B15,B009,Sedentary,B009-2,,furerhaimendorf1943b[366],,1940,Binford_2001_Table_5.01, +13671,B150,B009,Sedentary,B009-2,,oxendine1983[50-57],,1860,Binford_2001_Table_5.01, +13672,B151,B009,Mobile,B009-1,,cook1955[40],,1860,Binford_2001_Table_5.01, +13673,B152,B009,Mobile,B009-1,,voegelin1938[39-43],,1850,Binford_2001_Table_5.01, +13674,B153,B009,Sedentary,B009-2,,goldschmidt1948[445],,1850,Binford_2001_Table_5.01, +13675,B154,B009,Mobile,B009-1,,cook1955[35],,1850,Binford_2001_Table_5.01, +13676,B155,B009,Sedentary,B009-2,,johnson1978[352],,1850,Binford_2001_Table_5.01, +13677,B156,B009,Sedentary,B009-2,,,,1770,Binford_2001_Table_5.01, +13678,B157,B009,Mobile,B009-1,,gifford1932b[42-47],,1870,Binford_2001_Table_5.01, +13679,B158,B009,Sedentary,B009-2,,barrett1908;gifford1926b;loeb1926b,,1860,Binford_2001_Table_5.01, +13680,B159,B009,Sedentary,B009-2,,cook1956[116-17],,1860,Binford_2001_Table_5.01, +13681,B16,B009,Mobile,B009-1,,"pookajorn1985[187, 207];velder1963[186-87]",,1963,Binford_2001_Table_5.01, +13682,B160,B009,Sedentary,B009-2,,"dubois1935[28, 29]",,1860,Binford_2001_Table_5.01, +13683,B161,B009,Sedentary,B009-2,,cookandheizer1965[71],,1860,Binford_2001_Table_5.01, +13684,B162,B009,Sedentary,B009-2,,dixon1910,,1860,Binford_2001_Table_5.01, +13685,B163,B009,Sedentary,B009-2,,wilsonandtowne1978[388],,1850,Binford_2001_Table_5.01, +13686,B164,B009,Sedentary,B009-2,,gifford1926b,,1805,Binford_2001_Table_5.01, +13687,B165,B009,Sedentary,B009-2,,cook1956[118],,1860,Binford_2001_Table_5.01, +13688,B166,B009,Sedentary,B009-2,,cook1956[103-5],,1860,Binford_2001_Table_5.01, +13689,B167,B009,Sedentary,B009-2,,,,,Binford_2001_Table_5.01, +13690,B168,B009,Sedentary,B009-2,,"collierandthalman1991[72, 177-78]",,1850,Binford_2001_Table_5.01, +13691,B169,B009,Sedentary,B009-2,,cook1956[102],,,Binford_2001_Table_5.01, +13692,B17,B009,Mobile,B009-1,,"gardner1965[101];gardner1988[93, 94]",,1963,Binford_2001_Table_5.01, +13693,B170,B009,Sedentary,B009-2,,cook1955[122],,,Binford_2001_Table_5.01, +13694,B171,B009,Sedentary,B009-2,,cook1956[107],,1850,Binford_2001_Table_5.01, +13695,B172,B009,Sedentary,B009-2,,cook1956[124],,1860,Binford_2001_Table_5.01, +13696,B173,B009,Sedentary,B009-2,,cook1956[114],,1860,Binford_2001_Table_5.01, +13697,B174,B009,Mobile,B009-1,,gifford1926b;waterman1918,,1860,Binford_2001_Table_5.01, +13698,B175,B009,Mobile,B009-1,,cook1955[36],,1850,Binford_2001_Table_5.01, +13699,B176,B009,Mobile,B009-1,,gray1987[37-40],,1860,Binford_2001_Table_5.01, +13700,B177,B009,Mobile,B009-1,,gifford1939;miller1978,,1860,Binford_2001_Table_5.01, +13701,B178,B009,Sedentary,B009-2,,cook1956[101];drucker1940[226-27],,1870,Binford_2001_Table_5.01, +13702,B179,B009,Mobile,B009-1,,cookandheizer1965[70],,1860,Binford_2001_Table_5.01, +13703,B18,B009,Mobile,B009-1,,senandsen1955[172];williams1974[79],,1963,Binford_2001_Table_5.01, +13704,B180,B009,Sedentary,B009-2,,cook1956[100],,1860,Binford_2001_Table_5.01, +13705,B181,B009,Sedentary,B009-2,,gray1987[56],,1870,Binford_2001_Table_5.01, +13706,B182,B009,Sedentary,B009-2,,cook1956[98],,1860,Binford_2001_Table_5.01, +13707,B183,B009,Mobile,B009-1,,gifford1926b,,1860,Binford_2001_Table_5.01, +13708,B184,B009,Sedentary,B009-2,,cook1956[97],,1860,Binford_2001_Table_5.01, +13709,B185,B009,Mobile,B009-1,,cookandheizer1965[71],,1850,Binford_2001_Table_5.01, +13710,B186,B009,Sedentary,B009-2,,cook1956[101];schalk1978[125],,1850,Binford_2001_Table_5.01, +13711,B187,B009,Mobile,B009-1,,kroeber1962[36-37],,1860,Binford_2001_Table_5.01, +13712,B188,B009,Sedentary,B009-2,,ray1963[204],,1860,Binford_2001_Table_5.01, +13713,B189,B009,Mobile,B009-1,,"spier1930[5-8, 23]",,1860,Binford_2001_Table_5.01, +13714,B19,B009,Sedentary,B009-2,,ehrenfels1952[66-67],,1946,Binford_2001_Table_5.01, +13715,B190,B009,Mobile,B009-1,,aschmann1967[122],,1760,Binford_2001_Table_5.01, +13716,B191,B009,Mobile,B009-1,,,,1570,Binford_2001_Table_5.01, +13717,B192,B009,Mobile,B009-1,,steward1938[85-91],,1860,Binford_2001_Table_5.01, +13718,B193,B009,Mobile,B009-1,,stiles1906[80-87],,1800,Binford_2001_Table_5.01, +13719,B194,B009,Mobile,B009-1,,,,1715,Binford_2001_Table_5.01, +13720,B195,B009,Mobile,B009-1,,steward1938[84],,1850,Binford_2001_Table_5.01, +13721,B196,B009,Sedentary,B009-2,,gifford1932a[180-89],,1870,Binford_2001_Table_5.01, +13722,B197,B009,Mobile,B009-1,,steward1938[80-84],,1860,Binford_2001_Table_5.01, +13723,B198,B009,Sedentary,B009-2,,"hayden1936[142, 165-68, 70];kroeber1935[45]",,1870,Binford_2001_Table_5.01, +13724,B199,B009,Mobile,B009-1,,voegelin1938[48],,1860,Binford_2001_Table_5.01, +13725,B2,B009,Sedentary,B009-2,,eder1978[56];eder1987[105],,1968,Binford_2001_Table_5.01, +13726,B20,B009,Mobile,B009-1,,bhanu1992[table 1.1],,1974,Binford_2001_Table_5.01, +13727,B200,B009,Mobile,B009-1,,"steward1938[77, 78, 80]",,1860,Binford_2001_Table_5.01, +13728,B201,B009,Mobile,B009-1,,kelly1964;kellyandfowler1986,,1860,Binford_2001_Table_5.01, +13729,B202,B009,Sedentary,B009-2,,liljebladandfowler1986[414-15];steward1938[110],,1870,Binford_2001_Table_5.01, +13730,B203,B009,Mobile,B009-1,,steward1938[110],,1860,Binford_2001_Table_5.01, +13731,B204,B009,Mobile,B009-1,,"eulerandfowler1966[35, 101];kelly1964[11-22];stoffleandevans1978[183]",,1860,Binford_2001_Table_5.01, +13732,B205,B009,Mobile,B009-1,,davis1965[36],,1870,Binford_2001_Table_5.01, +13733,B206,B009,Mobile,B009-1,,steward1938[58-59],,1860,Binford_2001_Table_5.01, +13734,B207,B009,Mobile,B009-1,,gouldperscomm1992,,1860,Binford_2001_Table_5.01, +13735,B208,B009,Mobile,B009-1,,"fowlerandliljeblad1986[443, 457]",,1860,Binford_2001_Table_5.01, +13736,B209,B009,Mobile,B009-1,,"janetski1983[53-54, 75]",,1860,Binford_2001_Table_5.01, +13737,B21,B009,Sedentary,B009-2,,bird1983[58],,1978,Binford_2001_Table_5.01, +13738,B210,B009,Mobile,B009-1,,"fowler1992[35-37, 154]",,1870,Binford_2001_Table_5.01, +13739,B211,B009,Mobile,B009-1,,steward1938[61],,1860,Binford_2001_Table_5.01, +13740,B212,B009,Mobile,B009-1,,gifford1926b;riddell1960,,1870,Binford_2001_Table_5.01, +13741,B213,B009,Mobile,B009-1,,steward1938[177],,1870,Binford_2001_Table_5.01, +13742,B214,B009,Mobile,B009-1,,steward1938[132],,1860,Binford_2001_Table_5.01, +13743,B215,B009,Mobile,B009-1,,steward1938[124-27],,1870,Binford_2001_Table_5.01, +13744,B216,B009,Mobile,B009-1,,lowie1924[284];steward1938[161],,1860,Binford_2001_Table_5.01, +13745,B217,B009,Mobile,B009-1,,steward1938[117],,1860,Binford_2001_Table_5.01, +13746,B218,B009,Mobile,B009-1,,"steward1938[101, 108]",,1860,Binford_2001_Table_5.01, +13747,B219,B009,Mobile,B009-1,,cook1955[37],,1860,Binford_2001_Table_5.01, +13748,B22,B009,Sedentary,B009-2,,"landor1893[89, 125];watanabe1964a[8-9]",,1900,Binford_2001_Table_5.01, +13749,B221,B009,Mobile,B009-1,,steward1938[174],,1860,Binford_2001_Table_5.01, +13750,B222,B009,Mobile,B009-1,,callawayetal1986[352];smith1974[123],,1860,Binford_2001_Table_5.01, +13751,B223,B009,Mobile,B009-1,,lowie1924[284],,1870,Binford_2001_Table_5.01, +13752,B224,B009,Mobile,B009-1,,steward1938[130],,1860,Binford_2001_Table_5.01, +13753,B225,B009,Mobile,B009-1,,price1962[40],,1850,Binford_2001_Table_5.01, +13754,B226,B009,Mobile,B009-1,,"kelly1932[78, 105]",,1870,Binford_2001_Table_5.01, +13755,B227,B009,Mobile,B009-1,,shimkin1947[255];steward1974a[373],,1860,Binford_2001_Table_5.01, +13756,B228,B009,Mobile,B009-1,,steward1938[145-46],,1860,Binford_2001_Table_5.01, +13757,B229,B009,Mobile,B009-1,,steward1938[209],,1860,Binford_2001_Table_5.01, +13758,B23,B009,Mobile,B009-1,"Binford noted this was an ""estimate""",qiu1983,,1900,Binford_2001_Table_5.01, +13759,B230,B009,Mobile,B009-1,,steward1974b[147],,1860,Binford_2001_Table_5.01, +13760,B231,B009,Mobile,B009-1,,whiting1950[19],,1870,Binford_2001_Table_5.01, +13761,B232,B009,Mobile,B009-1,,steward1938[186-89],,1860,Binford_2001_Table_5.01, +13762,B233,B009,Mobile,B009-1,,steward1938[113],,1860,Binford_2001_Table_5.01, +13763,B234,B009,Mobile,B009-1,,steward1974b[147],,1860,Binford_2001_Table_5.01, +13764,B24,B009,Mobile,B009-1,,lee1967[24];shimkin1939[150],,1900,Binford_2001_Table_5.01, +13765,B240,B009,Mobile,B009-1,,basehartperscomm1972;swanton1952[323],,1880,Binford_2001_Table_5.01, +13766,B241,B009,Mobile,B009-1,,wallaceandhoebel1952[23],,1870,Binford_2001_Table_5.01, +13767,B242,B009,Mobile,B009-1,,basehart1972[5];morice1906b[496];opler1937[177-82],,1880,Binford_2001_Table_5.01, +13768,B243,B009,Mobile,B009-1,,bamforth1988[106-9],,1870,Binford_2001_Table_5.01, +13769,B244,B009,Mobile,B009-1,,bamforth1988[106-9],,1860,Binford_2001_Table_5.01, +13770,B245,B009,Mobile,B009-1,,"moore1987[180-86, 194]",,1860,Binford_2001_Table_5.01, +13771,B246,B009,Mobile,B009-1,,flannery1953[54];gussowetal1974[23],,1860,Binford_2001_Table_5.01, +13772,B248,B009,Mobile,B009-1,,bamforth1988[106-9];denig1961[165],,1870,Binford_2001_Table_5.01, +13773,B249,B009,Mobile,B009-1,,culbertson1952[135],,1870,Binford_2001_Table_5.01, +13774,B25,B009,Sedentary,B009-2,,shternberg1933[385],,1920,Binford_2001_Table_5.01, +13775,B250,B009,Mobile,B009-1,,chamberlain1892[551],,1880,Binford_2001_Table_5.01, +13776,B252,B009,Mobile,B009-1,,steward1938[201-6],,1860,Binford_2001_Table_5.01, +13777,B253,B009,Mobile,B009-1,,bamforth1988[106-9];swanton1952[278],,1870,Binford_2001_Table_5.01, +13778,B254,B009,Mobile,B009-1,,skinner1914[477],,1850,Binford_2001_Table_5.01, +13779,B255,B009,Mobile,B009-1,,ewers1955[303],,1850,Binford_2001_Table_5.01, +13780,B256,B009,Mobile,B009-1,,bushnell1922[26];ewers1955[303],,1850,Binford_2001_Table_5.01, +13781,B257,B009,Mobile,B009-1,,bushnell1922[32-33];culbertson1952[107];lowrieandclarke1832,,1870,Binford_2001_Table_5.01, +13782,B258,B009,Mobile,B009-1,,"bamforth1988[106-109];bushnell1922[20, 21]",,1850,Binford_2001_Table_5.01, +13783,B259,B009,Mobile,B009-1,,bamforth1988[106-109],,1850,Binford_2001_Table_5.01, +13784,B26,B009,Mobile,B009-1,,"kreynovich1979[191-92, 196]",,1900,Binford_2001_Table_5.01, +13785,B260,B009,Mobile,B009-1,,bamforth1988[106-109];jenness1938[10-11],,1880,Binford_2001_Table_5.01, +13786,B268,B009,Sedentary,B009-2,,"suttles1990[453, 473]",,1880,Binford_2001_Table_5.01, +13787,B269,B009,Sedentary,B009-2,,boas1891a;drucker1939,,1860,Binford_2001_Table_5.01, +13788,B27,B009,Mobile,B009-1,,"popov1966[12, 103]",,1933,Binford_2001_Table_5.01, +13789,B270,B009,Sedentary,B009-2,,smith1940a[7-14],,1870,Binford_2001_Table_5.01, +13790,B271,B009,Sedentary,B009-2,,elmendorf1960[32-55],,1850,Binford_2001_Table_5.01, +13791,B272,B009,Sedentary,B009-2,,taylor1974a[187],,1880,Binford_2001_Table_5.01, +13792,B273,B009,Sedentary,B009-2,,drucker1951[222-49];koppert1930a[53],,1880,Binford_2001_Table_5.01, +13793,B274,B009,Sedentary,B009-2,,ray1938[38-41],,1850,Binford_2001_Table_5.01, +13794,B275,B009,Sedentary,B009-2,,boyd1990[136];zenk1990[572],,1860,Binford_2001_Table_5.01, +13795,B276,B009,Sedentary,B009-2,,teit1906b[199],,1860,Binford_2001_Table_5.01, +13796,B277,B009,Sedentary,B009-2,,stern1934[7],,1880,Binford_2001_Table_5.01, +13797,B278,B009,Sedentary,B009-2,,schalk1978[165],,1860,Binford_2001_Table_5.01, +13798,B279,B009,Sedentary,B009-2,,duff1952[45],,1880,Binford_2001_Table_5.01, +13799,B28,B009,Mobile,B009-1,,krupnik1983a[94-95],,1860,Binford_2001_Table_5.01, +13800,B280,B009,Sedentary,B009-2,,suttles1990[462];wilson1866[286],,1880,Binford_2001_Table_5.01, +13801,B281,B009,Sedentary,B009-2,,seaburgandmiller1990[561],,,Binford_2001_Table_5.01, +13802,B282,B009,Sedentary,B009-2,,kennedyandbouchard1990[450-51],,1860,Binford_2001_Table_5.01, +13803,B283,B009,Sedentary,B009-2,,hilton1990[313],,1880,Binford_2001_Table_5.01, +13804,B284,B009,Sedentary,B009-2,,pettitt1950[3-5],,1880,Binford_2001_Table_5.01, +13805,B285,B009,Sedentary,B009-2,,boyd1990[136];suttles1990[456],,1860,Binford_2001_Table_5.01, +13806,B286,B009,Sedentary,B009-2,,swan1870[2],,1860,Binford_2001_Table_5.01, +13807,B287,B009,Sedentary,B009-2,,schalk1978[165],,1880,Binford_2001_Table_5.01, +13808,B288,B009,Sedentary,B009-2,,schalk1978[165],,1890,Binford_2001_Table_5.01, +13809,B289,B009,Sedentary,B009-2,,"schalk1978[126, 165]",,1880,Binford_2001_Table_5.01, +13810,B290,B009,Sedentary,B009-2,,"schalk1978[126, 165]",,1890,Binford_2001_Table_5.01, +13811,B291,B009,Sedentary,B009-2,,schalk1978[165],,1880,Binford_2001_Table_5.01, +13812,B292,B009,Sedentary,B009-2,,"schalk1978[127, 165]",,1880,Binford_2001_Table_5.01, +13813,B293,B009,Sedentary,B009-2,,adams1973[8],,1880,Binford_2001_Table_5.01, +13814,B294,B009,Sedentary,B009-2,,knechtandjordan1985[21],,1840,Binford_2001_Table_5.01, +13815,B295,B009,Sedentary,B009-2,,birketsmithanddelaguna1938[19],,1890,Binford_2001_Table_5.01, +13816,B296,B009,Sedentary,B009-2,,michael1967[306],,1850,Binford_2001_Table_5.01, +13817,B297,B009,Sedentary,B009-2,,delaguna1956[256];michael1967[306],,1930,Binford_2001_Table_5.01, +13818,B298,B009,Sedentary,B009-2,,lantis1970a[178];mitchellanddonald1988[319-21],,1830,Binford_2001_Table_5.01, +13819,B299,B009,Sedentary,B009-2,,lantis1946[163-64],,1930,Binford_2001_Table_5.01, +13820,B3,B009,Mobile,B009-1,,hagen1908[25-28];persoon1989[511],,1900,Binford_2001_Table_5.01, +13821,B315,B009,Mobile,B009-1,,murdock1980[130],,1850,Binford_2001_Table_5.01, +13822,B316,B009,Mobile,B009-1,,,,1860,Binford_2001_Table_5.01, +13823,B317,B009,Sedentary,B009-2,,teit1928[93-108],,1870,Binford_2001_Table_5.01, +13824,B318,B009,Mobile,B009-1,,,,1880,Binford_2001_Table_5.01, +13825,B319,B009,Sedentary,B009-2,,spierandsapir1930[166-67],,1860,Binford_2001_Table_5.01, +13826,B320,B009,Mobile,B009-1,,"teit1930[39, 331]",,1860,Binford_2001_Table_5.01, +13827,B321,B009,Sedentary,B009-2,,clineetal1938[87],,1880,Binford_2001_Table_5.01, +13828,B322,B009,Sedentary,B009-2,,teit1930[207-11],,1860,Binford_2001_Table_5.01, +13829,B323,B009,Mobile,B009-1,,teit1930[211],,1870,Binford_2001_Table_5.01, +13830,B324,B009,Mobile,B009-1,,"spinden1908[174-75, 196, 240]",,1850,Binford_2001_Table_5.01, +13831,B325,B009,Sedentary,B009-2,,teit1900[241-48],,1860,Binford_2001_Table_5.01, +13832,B326,B009,Mobile,B009-1,,teit1930[331],,1870,Binford_2001_Table_5.01, +13833,B327,B009,Mobile,B009-1,,jenness1935[13],,1870,Binford_2001_Table_5.01, +13834,B328,B009,Sedentary,B009-2,,kinietz1947[247],,1800,Binford_2001_Table_5.01, +13835,B329,B009,Mobile,B009-1,,speck1922[143-44],,1700,Binford_2001_Table_5.01, +13836,B330,B009,Mobile,B009-1,,teit1930[331];turneyhigh1937[98],,1860,Binford_2001_Table_5.01, +13837,B331,B009,Mobile,B009-1,,hickerson1967[54-55],,1880,Binford_2001_Table_5.01, +13838,B332,B009,Mobile,B009-1,,bishop1978[222-26],,1870,Binford_2001_Table_5.01, +13839,B333,B009,Sedentary,B009-2,,teit1905[457-66],,1850,Binford_2001_Table_5.01, +13840,B334,B009,Sedentary,B009-2,,"dunning1959[57, 58, 84];rogers1969[31]",,1940,Binford_2001_Table_5.01, +13841,B335,B009,Mobile,B009-1,,"rogers1963b[67, 76, 88];rogers1969[25, 31]",,1900,Binford_2001_Table_5.01, +13842,B336,B009,Mobile,B009-1,,goldman1940[334],,1865,Binford_2001_Table_5.01, +13843,B337,B009,Mobile,B009-1,,hickerson1962[30-33],,1800,Binford_2001_Table_5.01, +13844,B338,B009,Mobile,B009-1,,rogers1963a[23];rogers1969[30],,1880,Binford_2001_Table_5.01, +13845,B339,B009,Mobile,B009-1,,rogers1969[43],,1850,Binford_2001_Table_5.01, +13846,B340,B009,Mobile,B009-1,,"morantz1983[89, 106];rogers1969[31]",,1900,Binford_2001_Table_5.01, +13847,B341,B009,Mobile,B009-1,,rogersandblack1976[19],,1890,Binford_2001_Table_5.01, +13848,B342,B009,Mobile,B009-1,,tanner1944[592-609],,1880,Binford_2001_Table_5.01, +13849,B343,B009,Mobile,B009-1,,dennison1981[434-35];jenness1937[14],,1880,Binford_2001_Table_5.01, +13850,B344,B009,Mobile,B009-1,,ives1985[166-67],,1850,Binford_2001_Table_5.01, +13851,B345,B009,Mobile,B009-1,,"helm1961[50-52, 169];ives1985[166-67];janes1983[50-51]",,1860,Binford_2001_Table_5.01, +13852,B346,B009,Mobile,B009-1,,honigmann1949[33-37],,1920,Binford_2001_Table_5.01, +13853,B347,B009,Mobile,B009-1,,maclachlan1981[460-61],,1870,Binford_2001_Table_5.01, +13854,B348,B009,Sedentary,B009-2,,boasandfarrand1899;lane1981,,1880,Binford_2001_Table_5.01, +13855,B349,B009,Sedentary,B009-2,,jenness1943[485-86],,1880,Binford_2001_Table_5.01, +13856,B35,B009,Sedentary,B009-2,,,,1950,Binford_2001_Table_5.01, +13857,B350,B009,Mobile,B009-1,,gillespie1981[334-35],,1800,Binford_2001_Table_5.01, +13858,B351,B009,Mobile,B009-1,,crowandobley1981[511],,1880,Binford_2001_Table_5.01, +13859,B352,B009,Mobile,B009-1,,"helm1961[169];savishinsky1974[47, 54]",,1860,Binford_2001_Table_5.01, +13860,B353,B009,Mobile,B009-1,,honigmann1956b[58];honigmann1981[228-29],,1900,Binford_2001_Table_5.01, +13861,B354,B009,Mobile,B009-1,,clark1974[96],,1880,Binford_2001_Table_5.01, +13862,B355,B009,Mobile,B009-1,,smith1976[19];smith1978a[81];smith1981[275],,1880,Binford_2001_Table_5.01, +13863,B356,B009,Mobile,B009-1,,"slobodin1969[58-59, 64]",,1880,Binford_2001_Table_5.01, +13864,B357,B009,Sedentary,B009-2,,michael1967[307];sullivan1942[10],,1880,Binford_2001_Table_5.01, +13865,B358,B009,Mobile,B009-1,,mackenzie1966[49-56],,1860,Binford_2001_Table_5.01, +13866,B359,B009,Sedentary,B009-2,,mckennan1959[18],,1930,Binford_2001_Table_5.01, +13867,B36,B009,Mobile,B009-1,,metraux1948[863],,1960,Binford_2001_Table_5.01, +13868,B360,B009,Mobile,B009-1,,morantz1983[106],,1900,Binford_2001_Table_5.01, +13869,B361,B009,Mobile,B009-1,,helm1968[120],,1860,Binford_2001_Table_5.01, +13870,B362,B009,Sedentary,B009-2,,michael1967[306],,1870,Binford_2001_Table_5.01, +13871,B363,B009,Mobile,B009-1,,legros1982[68-69],,1890,Binford_2001_Table_5.01, +13872,B364,B009,Sedentary,B009-2,,snow1981[615],,1860,Binford_2001_Table_5.01, +13873,B365,B009,Mobile,B009-1,,"henriksen1973[58-59, 68]",,1890,Binford_2001_Table_5.01, +13874,B369,B009,Sedentary,B009-2,,ray1992[295],,1870,Binford_2001_Table_5.01, +13875,B37,B009,Mobile,B009-1,,kloos1977[116],,1968,Binford_2001_Table_5.01, +13876,B370,B009,Mobile,B009-1,,burch1975[257-58],,1890,Binford_2001_Table_5.01, +13877,B371,B009,Sedentary,B009-2,,burch1975[269-72];burch1984[305],,1880,Binford_2001_Table_5.01, +13878,B372,B009,Mobile,B009-1,,"taylor1974[15-19, 64]",,1890,Binford_2001_Table_5.01, +13879,B373,B009,Mobile,B009-1,,"willmott1960[48, 53]",,1890,Binford_2001_Table_5.01, +13880,B374,B009,Mobile,B009-1,,birketsmith1929[67-69],,1900,Binford_2001_Table_5.01, +13881,B375,B009,Mobile,B009-1,,binfordfieldnotes1971;burch1975[255],,1900,Binford_2001_Table_5.01, +13882,B377,B009,Mobile,B009-1,,amsden1977[224];binford1991a[80],,1950,Binford_2001_Table_5.01, +13883,B378,B009,Sedentary,B009-2,,mcghee1988[11];tyrrell1897[167],,1910,Binford_2001_Table_5.01, +13884,B379,B009,Sedentary,B009-2,,moore1923[340],,1920,Binford_2001_Table_5.01, +13885,B38,B009,Mobile,B009-1,,gragson1989[289-90];greavesperscomm1993,,1989,Binford_2001_Table_5.01, +13886,B380,B009,Sedentary,B009-2,,burch1975[260-69],,1880,Binford_2001_Table_5.01, +13887,B381,B009,Mobile,B009-1,,"jenness1922[30, 55, 57];rasmussen1932[70, 78-85]",,1920,Binford_2001_Table_5.01, +13888,B382,B009,Mobile,B009-1,,"briggs1970[15, 372-74]",,1920,Binford_2001_Table_5.01, +13889,B383,B009,Mobile,B009-1,,"rae1850[40, 48, 49]",,1880,Binford_2001_Table_5.01, +13890,B384,B009,Mobile,B009-1,,mathiassen1928[32],,1920,Binford_2001_Table_5.01, +13891,B385,B009,Mobile,B009-1,,"perry1898[131, 171-72, 267-68, 336, 386, 431];york1875[179]",,1880,Binford_2001_Table_5.01, +13892,B386,B009,Mobile,B009-1,,"boas1888[426];hantzsch1977[39, 99];low1906[57-58]",,1880,Binford_2001_Table_5.01, +13893,B387,B009,Mobile,B009-1,,"mclintock1860[8, 230, 232, 235, 239, 240]",,1880,Binford_2001_Table_5.01, +13894,B388,B009,Sedentary,B009-2,,mirsky1937a[53];peterson1984[623],,1880,Binford_2001_Table_5.01, +13895,B389,B009,Sedentary,B009-2,,simpson1875[237];spencer1959[15],,1880,Binford_2001_Table_5.01, +13896,B39,B009,Sedentary,B009-2,,wilbert1957[90],,1960,Binford_2001_Table_5.01, +13897,B390,B009,Mobile,B009-1,,"ekblaw1948[3];steensby1910[266, 296, 324]",,1880,Binford_2001_Table_5.01, +13898,B4,B009,Mobile,B009-1,,rizvi1990[8],,1989,Binford_2001_Table_5.01, +13899,B40,B009,Mobile,B009-1,,politis1992[3];politisperscomm1992,,1990,Binford_2001_Table_5.01, +13900,B41,B009,Sedentary,B009-2,,baldus1937[115-23];levistrauss1936[269],,1920,Binford_2001_Table_5.01, +13901,B42,B009,Mobile,B009-1,,metraux1946guato[410],,1901,Binford_2001_Table_5.01, +13902,B43,B009,Mobile,B009-1,,holmberg1950[51],,1940,Binford_2001_Table_5.01, +13903,B44,B009,Mobile,B009-1,,"stearman1989[26, 31]",,1968,Binford_2001_Table_5.01, +13904,B45,B009,Mobile,B009-1,,levistrauss1970[288];oberg1953[86],,1938,Binford_2001_Table_5.01, +13905,B46,B009,Sedentary,B009-2,,"hann1991[42, 159, 168]",,1600,Binford_2001_Table_5.01, +13906,B47,B009,Mobile,B009-1,,"clastres1972[163];oberg1953[18, 38]",,1975,Binford_2001_Table_5.01, +13907,B48,B009,Mobile,B009-1,,metrauxandbaldus1946[534],,1880,Binford_2001_Table_5.01, +13908,B49,B009,Mobile,B009-1,,kozaketal1979[360],,1954,Binford_2001_Table_5.01, +13909,B5,B009,Mobile,B009-1,,bose1964[305],,1952,Binford_2001_Table_5.01, +13910,B50,B009,Mobile,B009-1,,"henry1964[11, 50, 159]",,1910,Binford_2001_Table_5.01, +13911,B51,B009,Mobile,B009-1,,cooper1946c[150];goni1988[145],,1870,Binford_2001_Table_5.01, +13912,B52,B009,Mobile,B009-1,,cooper1946d,,1880,Binford_2001_Table_5.01, +13913,B53,B009,Mobile,B009-1,,birdperscomm1970,,1900,Binford_2001_Table_5.01, +13914,B54,B009,Mobile,B009-1,,chapman1982[58];cooper1946b[117];gusinde1931[205],,1880,Binford_2001_Table_5.01, +13915,B55,B009,Mobile,B009-1,,"gusinde1937a[384, 387]",,1870,Binford_2001_Table_5.01, +13916,B6,B009,Mobile,B009-1,,"temple1903[62, 77, 84]",,1906,Binford_2001_Table_5.01, +13917,B60,B009,Mobile,B009-1,,"bahuchet1988[131];hudson1990[58, 63, 71]",,1980,Binford_2001_Table_5.01, +13918,B61,B009,Mobile,B009-1,,"heymer1980[178, 193-96]",,1976,Binford_2001_Table_5.01, +13919,B62,B009,Mobile,B009-1,,"terashima1980[234, 235, 262]",,1977,Binford_2001_Table_5.01, +13920,B63,B009,Mobile,B009-1,,cavallisforza1986c[32-33];valloisandmarquer1976[113],,1980,Binford_2001_Table_5.01, +13921,B64,B009,Mobile,B009-1,,baileyandpeacock1988[99-100];fisherandstrickland1989[476],,1980,Binford_2001_Table_5.01, +13922,B65,B009,Sedentary,B009-2,,"tanno1976[107, 108, 130];turnbull1965a[97, 98]",,1930,Binford_2001_Table_5.01, +13923,B66,B009,Mobile,B009-1,,kellyandpoyer1993[1],,,Binford_2001_Table_5.01, +13924,B67,B009,Mobile,B009-1,,clark1951[65],,1950,Binford_2001_Table_5.01, +13925,B68,B009,Mobile,B009-1,,fourie1927[51],,1920,Binford_2001_Table_5.01, +13926,B69,B009,Mobile,B009-1,,blurtonjonesetal1992[164];hawkesetal1989[344];woodburn1968b[104],,1910,Binford_2001_Table_5.01, +13927,B7,B009,Sedentary,B009-2,,fox1952[188];reed1904[19],,1903,Binford_2001_Table_5.01, +13928,B70,B009,Sedentary,B009-2,,huntingford1951[8];huntingford1954[128],,1920,Binford_2001_Table_5.01, +13929,B71,B009,Mobile,B009-1,,bleek1929[109];decastroandalmeida1956[9],,1928,Binford_2001_Table_5.01, +13930,B72,B009,Mobile,B009-1,,lee1972a[330];marshall1960[328],,1950,Binford_2001_Table_5.01, +13931,B73,B009,Mobile,B009-1,,guenther1986[186];schapera1930[78],,1910,Binford_2001_Table_5.01, +13932,B74,B009,Mobile,B009-1,,silberbauer1972[296];silberbauer1981a[195-98],,1962,Binford_2001_Table_5.01, +13933,B75,B009,Mobile,B009-1,,kentandvierich1989,,1976,Binford_2001_Table_5.01, +13934,B76,B009,Mobile,B009-1,,eibleibesfeldt1972[32-33],,1968,Binford_2001_Table_5.01, +13935,B77,B009,Mobile,B009-1,,dart1937b[160-65];steyn1984[118],,1920,Binford_2001_Table_5.01, +13936,B78,B009,Mobile,B009-1,,potgieter1955[8],,1950,Binford_2001_Table_5.01, +13937,B79,B009,Mobile,B009-1,,"bleek1924a[viii, ix]",,,Binford_2001_Table_5.01, +13938,B8,B009,Mobile,B009-1,,radcliffebrown1948[28],,1870,Binford_2001_Table_5.01, +13939,B82,B009,Mobile,B009-1,,moore1979[39],,1848,Binford_2001_Table_5.01, +13940,B83,B009,Mobile,B009-1,,basedow1907;howells1937;parkhouse1895,,1900,Binford_2001_Table_5.01, +13941,B84,B009,Mobile,B009-1,,altman1987[15-27];berndtandberndt1970[3-14],,1978,Binford_2001_Table_5.01, +13942,B85,B009,Mobile,B009-1,,peterson1970[11];peterson1973[185];peterson1992;petersonandlong1986[40],,1970,Binford_2001_Table_5.01, +13943,B86,B009,Mobile,B009-1,,meehan1982[31-41],,1973,Binford_2001_Table_5.01, +13944,B87,B009,Sedentary,B009-2,,peterson1972[26];petersonandlong1986[40],,1950,Binford_2001_Table_5.01, +13945,B88,B009,Mobile,B009-1,,thomson1949[16];warner1958[127-28],,1930,Binford_2001_Table_5.01, +13946,B89,B009,Mobile,B009-1,,kaberry1935[428],,1920,Binford_2001_Table_5.01, +13947,B9,B009,Mobile,B009-1,,"brandt1961[131-33];rambo1985[4, 33];schebesta1962a[17, 220]",,1920,Binford_2001_Table_5.01, +13948,B90,B009,Mobile,B009-1,Binford estimate from photos,wills1980[85],,1920,Binford_2001_Table_5.01, +13949,B91,B009,Mobile,B009-1,,leichhardt1847[507];mccarthyandmacarthur1960[90-96],,1920,Binford_2001_Table_5.01, +13950,B92,B009,Mobile,B009-1,,biernoff1979[12];mcarthur1960[95];thomson1949[4],,1960,Binford_2001_Table_5.01, +13951,B93,B009,Mobile,B009-1,,thomson1934[241],,1930,Binford_2001_Table_5.01, +13952,B94,B009,Mobile,B009-1,,"petersonandlong1986[88-89, 95-99];sharp1934[425]",,1937,Binford_2001_Table_5.01, +13953,B95,B009,Mobile,B009-1,,"hartandpilling1960[35, 36, 65, 66]",,1920,Binford_2001_Table_5.01, +13954,B96,B009,Mobile,B009-1,,"andersonandrobins1988[187, 191-92]",,1880,Binford_2001_Table_5.01, +13955,B97,B009,Mobile,B009-1,,petersonandlong1986[78-79],,1930,Binford_2001_Table_5.01, +13956,B98,B009,Mobile,B009-1,"Changed to ""1"" based on Binford (2001:279): ""The Walmbaria turned out upon reexamination (Hale and Tindale 1933) not to be stationary.""",haleandtindale1933[77-78],,1926,Binford_2001_Table_5.01,"Changed to ""1"" based on Binford (2001:279): ""The Walmbaria turned out upon reexamination (Hale and Tindale 1933) not to be stationary.""" +13957,B99,B009,Mobile,B009-1,"Binford noted this was an ""estimate""",stanner1933[393],,1900,Binford_2001_Table_5.01, diff --git a/cldf/requirements.txt b/cldf/requirements.txt new file mode 100644 index 0000000..38acbd2 --- /dev/null +++ b/cldf/requirements.txt @@ -0,0 +1,88 @@ +affine==2.4.0 +appdirs==1.4.4 +arrow==1.2.3 +Babel==2.11.0 +bs4==0.0.1 +Cartopy==0.22.0 +certifi==2022.12.7 +cffi==1.15.1 +chardet==5.1.0 +cldfbench==1.14.0 +cldfcatalog==1.5.1 +cldfviz==1.0.0 +cldfzenodo==1.1.0 +click==8.1.6 +clldutils==3.20.0 +colorama==0.4.6 +colorlog==6.7.0 +commonnexus==1.6.0 +contextily==1.3.0 +csvw==3.1.3 +cycler==0.11.0 +exceptiongroup==1.1.0 +Fiona==1.9.4.post1 +geopandas==0.13.2 +geopy==2.3.0 +gitdb==4.0.10 +greenlet==2.0.1 +html5lib==1.1 +idna==3.4 +iniconfig==2.0.0 +isodate==0.6.1 +Jinja2==3.1.2 +jmespath==1.0.1 +joblib==1.3.2 +jsonschema==4.17.3 +kiwisolver==1.4.4 +lingtreemaps==0.0.5 +lxml==4.9.2 +Markdown==3.4.1 +MarkupSafe==2.1.2 +matplotlib==3.6.3 +mercantile==1.2.1 +multipledispatch==0.6.0 +nameparser==1.1.2 +newick==1.9.0 +numpy==1.24.1 +openpyxl==3.1.2 +packaging==23.1 +pandas==2.0.3 +phlorest==1.4.0 +pluggy==1.2.0 +purl==1.6 +pybtex==0.24.0 +-e git+https://github.com/cldf/pycldf@dc811c0f61bc3df9bea10e56ec47f1fd03ed5bb4#egg=pycldf +pycountry==22.3.5 +-e git+https://github.com/d-place/pydplace@9a94a80bccd7e9d87f0aa50d40252e95fbba2a2c#egg=pydplace +pyglottolog==3.12.0 +pylatexenc==2.10 +pyparsing==3.0.9 +pyproj==3.6.0 +pyrsistent==0.19.3 +pytest==7.2.1 +python-dateutil==2.8.2 +python-frontmatter==1.0.0 +pytz==2022.7.1 +rasterio==1.3.8 +rdflib==6.2.0 +reportlab==3.6.12 +requests==2.28.2 +rfc3986==1.5.0 +scipy==1.11.2 +seaborn==0.12.2 +shapely==2.0.1 +six==1.16.0 +smmap==5.0.0 +soupsieve==2.3.2.post1 +SQLAlchemy==1.4.46 +tabulate==0.9.0 +termcolor==2.2.0 +toyplot==1.0.3 +toytree==2.0.1 +tqdm==4.64.1 +uritemplate==4.1.1 +urllib3==1.26.14 +webencodings==0.5.1 +xlrd==2.0.1 +xyzservices==2023.7.0 +zenodoclient==0.5.0 \ No newline at end of file diff --git a/cldf/societies.csv b/cldf/societies.csv new file mode 100644 index 0000000..32e4bf9 --- /dev/null +++ b/cldf/societies.csv @@ -0,0 +1,340 @@ +ID,Name,Latitude,Longitude,Glottocode,Name_and_ID_in_source,xd_id,alt_names_by_society,main_focal_year,HRAF_name_ID,HRAF_ID,origLat,origLong,comment,glottocode_comment,region +B72,!Kung,-20,21.18,juho1239,!Kung (B72),xd1,Kung Bushmen; !Kung (Was Nyae); Was Nyae,1950,San (FX10),FX10,-20,21.18,Original,,Southern Africa +B296,Kuskowagmut,61.01,-161.55,kusk1241,Kuskowagmut (B296),xd1000,,1850,,,61.01,-161.55,Original,,Subarctic America +B322,Syilx,49.46,-119.63,sout2963,Okanagan (B322),xd1001,Okanagan,1860,,,49.46,-119.63,Original,,Western Canada +B335,Round Lake Ojibwa,52.71,-90.62,seve1241,Round Lake Ojibwa (B335),xd1003,Weagamow; North Caribou Lake; Round Lake,1900,,,52.71,-90.62,Original,,Eastern Canada +B339,North Albany Ojibwa,51.22,-83.1,wini1244,North Albany Ojibwa (B339),xd1004,North Albany,1850,,,51.22,-83.1,Original,,Eastern Canada +B340,Waswanipi Cree,49.78,-76.64,sout2978,Waswanipi Cree (B340),xd1005,Waswanipi,1900,,,49.78,-76.64,Original,,Eastern Canada +B341,Wegamon Ojibwa,52.79,-90.64,seve1241,Wegamon Ojibwa (B341),xd1006,Wegamon,1890,,,52.79,-90.64,Original,,Eastern Canada +B350,Mountain Dene,63.68,-125.37,nort2942,Mountain (B350),xd1007,Mountain; Sahaptin; Sahtu; Sahtu Dene,1800,,,63.68,-125.37,Original,,Subarctic America +B351,Hän,64.79,-141.2,hann1241,Han (B351),xd1008,Han,1880,,,64.79,-141.2,Original,,Subarctic America +B352,Hare,67.47,-125,nort2942,Hare (B352),xd1009,K'ahsho Got'ine; Sahtu; Sahtu Dene,1860,,,67.47,-125,Original,,Subarctic America +B354,Koyukon,66.52,-153.78,koyu1237,Koyukon (B354),xd1010,,1880,,,66.52,-153.78,Original,,Subarctic America +B360,Waskaganish,51.08,-77.81,sout2978,Rupert House Cree (B360),xd1011,Rupert House Cree; Rupert House,1900,,,51.08,-77.81,Original,,Eastern Canada +B363,Tutchone,61.24,-138.21,nort2941,Tutchone (B363),xd1012,,1890,,,61.24,-138.21,Original,,Subarctic America +B364,Holikachuk,63.33,-157.54,holi1241,Holikachuk (B364),xd1013,,1860,,,63.33,-157.54,Original,,Subarctic America +B369,Norton Sound Inuit,63.98,-160.75,kusk1241,Norton Sound Inuit (B369),xd1014,Norton Sound Eskimo,1870,,,63.98,-160.75,Original,,Subarctic America +B370,Kobuk Inuit,66.95,-156.94,kobu1239,Kobuk Inuit (B370),xd1015,Kobuk Eskimo,1890,,,66.95,-156.94,Original,,Subarctic America +B371,Kotzebue Sound Inuit,66.77,-161.53,kotz1238,Kotzebue Sound Inuit (B371),xd1016,Kotzebue Sound,1880,,,66.77,-161.53,Original,,Subarctic America +B373,Kuujjuarapik,55.32,-77.69,queb1248,Great Whale Inuit (B373),xd1017,Great Whale Eskimo; Great Whale Inuit; Kuujjuarapik; Kuujjuaraapik,1890,,,55.32,-77.69,Original,,Eastern Canada +B375,Noatak Inuit,68.09,-160,nort2945,Noatak Inuit (B375),xd1018,Nuataaq Inupiaq; Nuataagmiut; Noatak Eskimo,1900,,,68.09,-160,Original,,Subarctic America +B378,Inuvialuit,69.67,-132.08,sigl1242,Mackenzie Inuit (B378),xd1019,Western Canadian Inuit; Mackenzie Eskimo; Mackenzie Inuit,1910,,,69.96,-132.09,Revised,,Subarctic America +B379,Sivokamiut Inuit,63.49,-170.31,cent2128,Sivokamiut Inuit (B379),xd1028,Sivokamiut Eskimo,1920,,,63.49,-170.31,Original,"4Oct2018 - Note that while EA society Na11 has always been linked to xd1028, Binford society B379 was originally linked to xd1020 (and, thus, linked to the dialect poin1245 and language nort2943. The update to Glottolog 3.3.2 forced re-mapping of xd1028 from dialect aiwa1238 (which no longer exists) to language cent2128 (always the language-level match for this xd_id).",Subarctic America +B380,Inupiat,68.41,-166.21,nort2944,Point Hope Inuit (B380),xd1021,Tikigagmiut; Inupiat; Point Hope Inuit; Point Hope Eskimo,1880,,,68.29,-166.62,Revised,"3Oct2018 - Point Hope or Tikiġaġmiut is a sub-dialect of North Slope Inupiatun (nort2944) which is a dialect of the language nort2943. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Subarctic America +B381,Copper Inuit,68.58,-106.61,copp1244,Copper Inuit (B381),xd1022,Kitlinermiut; Copper Eskimo,1920,Copper Eskimo (ND08),ND08,68.58,-106.61,Original,,Subarctic America +B382,Utkuhikhalingmiut,66.99,-95.08,nets1241,Utkuhikhalingmiut (B382),xd1023,,1920,,,66.99,-95.18,Revised,,Subarctic America +B383,Aivilingmiut Inuit,65.16,-88.12,cari1277,Aivilingmiut Inuit (B383),xd1024,Aivilingmiut Eskimo,1880,,,65.16,-88.12,Original,,Subarctic America +B384,Iglulik Inuit,69.45,-81.51,west2618,Iglulik Inuit (B384),xd1025,Igloolik; Iglulingmiut,1920,,,69.44,-81.51,Revised,,Subarctic America +B359,Nabesna,63.44,-143.12,uppe1437,Nabesna (B359),xd1026,Upper Tanana Indians,1930,,,63.44,-143.12,Original,,Subarctic America +B297,Chugach,61.21,-147.61,chug1254,Chugash (B297),xd1027,Chugachigmiut; Chugash,1930,South Alaskan Eskimo (NA10),NA10,61.21,-147.61,Original,"3Oct2018 Assigned to dialect chug1254 (language does not change) to help differentiate this society from the closely related Koniag, also now mapped to language paci1278.",Subarctic America +B377,Nunamiut,68.18,-151.71,nort2944,Nunamiut Inuit (B377),xd1029,Inland North Alaskan Eskimo; Nunamiut Eskimo,1950,,,68.18,-151.71,Original,"1Oct2018 - mapped to a new dialect (nort2944) of the same language (nort2943). HH: Belongs to language North Alaskan Inupiatun [nort2943] and more specifically to the North Slope Inupiatun [nort2944] dialect. Note that the subdialect to which it was previously mapped (Anaktuvuk Pass, anak1241) does not exist in Glottolog version 3.3.2. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Subarctic America +B386,Nunatsiarmiut,65.21,-64.65,baff1240,Baffin Island Inuit (B386),xd1030,Baffinland; Baffin Island Inuit,1880,,,65,-65,Revised,,Subarctic America +B390,Inughuit (Northern Greenland),77.53,-69.5,pola1254,Polar Inuit (B390),xd1031,Polar Eskimo; Arctic Highlanders; Smith Sound Inuit; Smith Sound Eskimo,1880,,,77.49,-69.5,Revised,"Note 8Feb2018: Glottocode changed to [ike] based on note from HH: ""The Polar Eskimo do not speak a language intelligible to Kalaalisut and had until recent times no contact or knowledge of the Kalaalisut further south. The language is intelligible to North Baffin Inuktitut so Glottolog counts Polar Eskimo as Eastern Canadian Inuktitut [ike]. Furthermore, Oswalt 1963 is listed as a reference to Polar Eskimo but concerns a completely different people in Alaska who speak Yupik-Central [esu].""",Subarctic America +B361,Tlicho,63.85,-115.61,dogr1252,Dogrib (B361),xd1032,Dogrib,1860,,,63.85,-115.61,Original,,Subarctic America +B358,Délįne,65.75,-122.89,nort2942,Satudene-Bear Lake (B358),xd1033,Bear Lake Dene; Satudene; Great Bear Lake People; Sahtu; Sahtu Dene,1860,,,65.75,-122.89,Original,,Subarctic America +B345,DeneTha,61.15,-119.5,sout2959,Slave (B345),xd1034,Slave; Deh Cho (Southern Slavey); Slavey; Dene (distinguish from speakers of the Dene language),1860,,,61.15,-119.5,Original,,Subarctic America +B349,Dakelh,53.33,-123.15,carr1249,Carrier (B349),xd1035,Carrier; Takulli,1880,,,53.33,-123.15,Original,,Western Canada +B389,Tareumiut,71.24,-156.78,nort2944,Tareumiut Inuit (B389),xd1036,Tagiumiut; Point Barrow Eskimo; Barrow,1880,,,71.32,-156.78,Revised,,Subarctic America +B356,Kutchin,65.94,-135.23,gwic1235,Kutchin (B356),xd1037,Gwich'in; Loucheux,1880,,,65.94,-135.23,Original,,Subarctic America +B374,Caribou Inuit,64.33,-96.2,cari1277,Caribou Inuit (B374),xd1038,Caribou Eskimo,1900,,,64.33,-96.2,Original,,Subarctic America +B372,Labrador Inuit,57.83,-62.32,labr1244,Labrador Inuit (B372),xd1039,Sukinninmiut; Labrador Eskimo,1890,,,57.97,-62.02,Revised,,Eastern Canada +B388,Tasiilaq,65.64,-37.64,tunu1234,Angmaksalik (B388),xd1040,Angmagsalik (East Greenland); Ammassalik; East Greenland Eskimo; Polar Eskimo,1880,,,65.63,-37.64,Revised,Note 8Feb2018: Changed based on note from HH: East Greenlandic is Tunumiisiut [tunu1234] in Glottolog.,Subarctic America +B385,Kalaallit (West Greenland),69.31,-50.21,kala1399,West Greenland (B385),xd1041,West Greenland Eskimo; West Greenland Inuit,1880,,,69.31,-50.21,Original,Note 8Feb2018: Glottocode updated from west2617 to kala1399,Subarctic America +B362,Dena'ina,61.74,-150.45,tana1289,Tanaina (B362),xd1042,Tanaina,1870,,,61.74,-150.45,Original,,Subarctic America +B347,Tahltan,57.66,-127.85,tahl1239,Tahltan (B347),xd1043,Southwestern Nahane,1870,,,57.66,-127.85,Original,,Western Canada +B343,Sekani,56.14,-120,seka1250,Sekani (B343),xd1044,Tsek'ene; Sicauni,1880,,,56.14,-120,Original,,Western Canada +B344,Beaver,58.51,-115.76,beav1236,Beaver (B344),xd1045,Denezaa; Tsattine,1850,,,58.51,-115.76,Original,,Western Canada +B355,Dene,59.47,-106.19,chip1261,Chippewyan (B355),xd1046,Chipewyan,1880,Chipewyan (ND07),ND07,59.47,-106.19,Original,,Western Canada +B342,Montagnais,52.42,-63.33,mont1268,Montagnais (B342),xd1048,Innu; Naskapi,1880,Montagnais (NH06),NH06,52.42,-63.33,Original,"Note 8Feb2018: Not changed, despite comment from HH: ""Naskapi [nsk] is a different lg from Montagnais [moe]"". KK: Decided to leave, after looking into ethnographic materials: Foci are Lake St. John Band and Mistassini band [see KK notes for geographical extent of their territories]. Speck and Heye (1921): ""[the] Pikwagami (""Flat lake,"" Lake St John), are an interior Montagnais culture intermediate between that of the coast and that of the eastern Naskapi and Mistassini. Therefore, Montagnais [moe] is more appropriate choice. ",Eastern Canada +B332,Northern Saulteaux,52.28,-96.78,alba1270,North Saulteaux (B332),xd1049,N. Saulteaux; North Sauteaux,1870,Ojibwa (NG06),NG06,52.28,-96.78,Original,,Western Canada +B334,Pekangekum,51.84,-93.85,lacs1238,Pekangekum Ojibwa (B334),xd1050,,1940,Ojibwa (NG06),NG06,51.84,-93.85,Original,,Eastern Canada +B337,Nipigon,49.34,-88.31,cent2136,Nipigon Ojibwa (B337),xd1051,Lake Nipigon Ojibway; Anishinaabek; Southern Saulteaux,1800,Ojibwa (NG06),NG06,49.34,-88.31,Original,,Eastern Canada +B331,Rainy River Ojibwe,45.21,-85.1,rain1239,Rainy River Ojibwa (B331),xd1053,Gojijiwininiwag; Rainy River; Emo,1880,Ojibwa (NG06),NG06,45.21,-85.1,Original,,Northeastern U.S.A. +B328,Katikitegon,45,-91,uppe1274,Katikitegon (B328),xd1054,Wisconsin Ojibwa,1800,,,45,-91,Original,,North-Central U.S.A. +B327,Eastern Ojibwa,45.21,-85.1,east2542,Kitchibaun Ojibwa (B327),xd1055,Kitchibuan; Kitchibuan Ojibwa; Kitchibaun Ojibwa,1870,Ojibwa (NG06),NG06,45.21,-85.1,Original,,Northeastern U.S.A. +B346,Kaska,59.73,-125,kask1239,Kaska (B346),xd1056,Nahane,1920,Kaska (ND12),ND12,59.73,-125,Original,,Western Canada +B329,Mi'kmaq,46.99,-65,mikm1235,Micmac (B329),xd1058,Micmac,1700,Mi'kmaq (NJ05),NJ05,46.99,-65,Original,,Eastern Canada +B387,Netsilik,71.46,-94.93,nets1241,Netsilik Inuit (B387),xd1060,Netsilik Inuit; Netsilik Eskimo,1880,,,71.46,-94.93,Original,,Subarctic America +B338,Mistissini Cree,51.75,-72.66,sout2978,Mistassini Cree (B338),xd1062,Mistassini Cree,1880,,,51.75,-72.66,Original,,Eastern Canada +B365,Naskapi,56.19,-68.92,nask1242,Naskapi (B365),xd1063,,1890,Montagnais (NH06),NH06,56.19,-68.92,Original,,Eastern Canada +B299,Nunivak,60.03,-166.3,kusk1241,Nunivak (B299),xd1064,Nunivak Cup'ig,1930,,,60.03,-166.3,Original,,Subarctic America +B353,Attawapiskat Cree,53.62,-83.88,swam1239,Attawapiskat Cree (B353),xd1065,Attawapiskat,1900,,,53.62,-83.88,Original,,Eastern Canada +B357,Deg Xit'an,61.82,-157.75,dege1248,Ingalik (B357),xd1066,Ingalik,1880,,,61.82,-157.75,Original,,Subarctic America +B298,Aleut,55,-162.85,east2533,Aleut (B298),xd1067,Unagan,1830,Aleut (NA06),NA06,55,-162.85,Original,,Subarctic America +B290,Haida,53.54,-132.29,nort2938,Haida (B290),xd1068,,1890,,,53.54,-132.29,Original,,Western Canada +B336,Alkatcho,51.32,-124.02,sout2958,Alkatcho (B336),xd1069,Tsuu'Tina; Alkatcho Carrier; Ilgatcho; Ilgachuz,1865,,,51.32,-124.02,Original,,Western Canada +B273,Nuu chah nulth,49.34,-125.74,nuuc1236,Nootka (B273),xd1070,Nuu-chah-nulth; Aht; Central Nootka,1880,Nuu-chah-nulth (NE11),NE11,49.34,-125.74,Original,,Western Canada +B268,Squamish,49.77,-123.19,squa1248,Squamish (B268),xd1072,,1880,,,49.77,-123.19,Original,,Western Canada +B282,Comox,50,-125.5,isla1276,Comox (B282),xd1073,K'ómoks,1860,,,50,-125.5,Original,,Western Canada +B277,Lummi,48.84,-122.34,lumm1243,Lummi (B277),xd1074,Lhaq'temish,1880,,,48.84,-122.34,Original,,Northwestern U.S.A. +B285,Klallam,47.95,-123.55,clal1241,Clallam (B285),xd1075,Clallum,1860,,,47.95,-123.55,Original,,Northwestern U.S.A. +B270,Puyallup,47.11,-122.04,sout2965,Puyallup (B270),xd1076,,1870,,,47.11,-122.04,Original,,Northwestern U.S.A. +B284,Quileute,47.77,-124.14,quil1240,Quileute (B284),xd1077,,1880,,,47.77,-124.14,Original,,Northwestern U.S.A. +B274,Lower Chinook,46.06,-123.75,chin1286,Chinook (B274),xd1078,Chinook,1850,Chinookans of the Lower Columbia River (NR06),NR06,46.06,-123.75,Original,,Northwestern U.S.A. +B271,Twana,47.55,-123.16,twan1247,Twana (B271),xd1079,,1850,,,47.55,-123.16,Original,,Northwestern U.S.A. +B281,Tillamook,45.4,-123.82,till1254,Tillamook (B281),xd1080,Nehalem,1880,,,45.4,-123.82,Original,,Northwestern U.S.A. +B275,Coos,43.43,-124.11,coos1249,Coos (B275),xd1081,,1860,,,43.43,-124.11,Original,,Northwestern U.S.A. +B292,South Tlingit,57,-133.59,tlin1245,Tlingit (B292),xd1082,Kolosh; Southern Tlingit,1880,Tlingit (NA12),NA12,57,-133.59,Original,"Note northern and southern tlingit considered distinct dialects of tli by some, but no codes available in Glottolog.",Subarctic America +B283,Heiltsuk,52.87,-127.87,bell1263,Bella-Bella (B283),xd1083,Bellabella; Bella Bella,1880,,,52.87,-127.87,Original,,Western Canada +B286,Makah,48.22,-124.58,maka1318,Makah (B286),xd1084,,1860,Nootka (NE11),NE11,48.22,-124.58,Original,,Northwestern U.S.A. +B278,Quinault,47.38,-123.82,quin1251,Quinault (B278),xd1085,,1860,Quinault (NR17),NR17,47.38,-123.82,Original,,Northwestern U.S.A. +B280,Cowichan,48.41,-123.64,cowi1241,Cowichan (B280),xd1086,Hul'q'umi'num Mustimuhw,1880,,,48.41,-123.64,Original,,Western Canada +B279,Stó:lō,49.23,-122.7,chil1281,Stalo (B279),xd1087,Stalo; Halkomelem; Fraser River Cowichan,1880,,,49.23,-122.7,Original,,Western Canada +B269,Alsea,44.42,-123.84,alse1251,Alsea (B269),xd1088,,1860,,,44.42,-123.84,Original,,Northwestern U.S.A. +B288,Kwakwaka'wakw,50.42,-126.67,kwak1269,Kwakiutl (B288),xd1090,Southern Kwakiutl; Kwagu'ł; Kwagyewlth,1890,,,50.42,-126.67,Original,,Western Canada +B176,Takelma,42.44,-123.48,take1257,Tekelma (B176),xd1091,Rogue River Indians; Tekelma,1860,,,42.44,-123.48,Original,,Northwestern U.S.A. +B181,Tututni,42.61,-124.04,tutu1242,Tututni (B181),xd1092,,1870,,,42.61,-124.04,Original,,Northwestern U.S.A. +B179,Shasta,41.62,-122.7,shas1239,Shasta (B179),xd1093,,1860,,,41.62,-122.7,Original,,Southwestern U.S.A. +B162,Chimariko,40.85,-123.3,chim1301,Chimariko (B162),xd1094,,1860,,,40.85,-123.3,Original,,Southwestern U.S.A. +B182,Karuk,41.58,-123.47,karo1304,Karok (B182),xd1095,Karok,1860,,,41.58,-123.47,Original,,Southwestern U.S.A. +B180,Hupa,40.93,-123.61,hupa1239,Hupa (B180),xd1096,,1860,,,40.93,-123.61,Original,,Southwestern U.S.A. +B184,Wiyot,40.75,-124.14,wiyo1248,Wiyot (B184),xd1097,,1860,,,40.75,-124.14,Original,,Southwestern U.S.A. +B167,Lassik,40.18,-123.16,wail1244,Lassik (B167),xd1098,,1870,,,40.18,-123.16,Original,"Note, Nongatl, Sinkyone and Lassik considered distinct dialects of wlk by some, but glottolog does not provide dialect identifiers",Southwestern U.S.A. +B169,Mattole-Bear River,40.17,-124.04,matt1238,Mattole (B169),xd1099,Mattole; Bear River,1920,,,40.17,-124.04,Original,,Southwestern U.S.A. +B166,Sinkyone,40.1,-123.96,wail1244,Sinkyone (B166),xd1100,,1860,,,40.1,-123.96,Original,"Note, Nongatl, Sinkyone and Lassik considered distinct dialects of wlk by some, but glottolog does not provide dialect identifiers",Southwestern U.S.A. +B186,Yurok,41.4,-123.89,yuro1248,Yurok (B186),xd1101,,1850,Yurok (NS31),NS31,41.4,-123.89,Original,,Southwestern U.S.A. +B295,Eyak,60.48,-144,eyak1241,Eyak (B295),xd1102,dAXunhyuu,1890,,,60.48,-144,Original,,Subarctic America +B178,Tolowa,41.87,-123.92,tolo1259,Tolowa (B178),xd1103,,1870,,,41.87,-123.92,Original,,Southwestern U.S.A. +B289,Tsimshian,54,-129.58,nucl1649,Tsimshim (B289),xd1104,Ts’msyan,1880,,,54,-129.58,Original,,Western Canada +B287,Haisla,53.5,-128.42,hais1244,Haisla (B287),xd1105,Kitimat,1880,,,53.5,-128.42,Original,,Western Canada +B291,Nuxalk,52.32,-126.58,bell1243,Bella-Coola (B291),xd1106,Nuxalkmc; Bellacoola; Bilqula; Bella Coola,1880,Nuxalk (NE06),NE06,52.32,-126.58,Original,,Western Canada +B153,Nomlaki,40,-122.56,noml1242,Nomlaki (B153),xd1107,Central Wintun,1850,,,40,-122.56,Original,Changed 15Nov2016 to differentiate Nomlaki from Wintu,Southwestern U.S.A. +B187,Achumawi,41.32,-121.19,achu1247,Achomawi (B187),xd1108,Achomawi,1860,,,41.32,-121.19,Original,,Southwestern U.S.A. +B174,Yana,40.38,-122.89,yana1271,Northern Yana (B174),xd1109,Nozi,1860,,,40.38,-122.89,Original,,Southwestern U.S.A. +B185,Maidu,40.28,-120.56,nort2952,Mountain Maidu (B185),xd1110,Pujunan,1850,,,40.28,-120.56,Original,,Southwestern U.S.A. +B163,Nisenan,39.03,-121.15,nise1244,Nisenan (B163),xd1111,Southern Maidu; Nisenan Southern Maidu,1850,,,39.03,-121.15,Original,,Southwestern U.S.A. +B160,Wintu,40.9,-122.35,nucl1651,Wintu (B160),xd1112,Northern Wintu,1860,,,40.9,-122.35,Original,Changed 15Nov2016 to differentiate Nomlaki from Wintu,Southwestern U.S.A. +B177,Coast Yuki,39.64,-123.74,yuki1243,Coast Yuki (B177),xd1113,,1860,Yuki (NS30),NS30,39.64,-123.74,Original,,Southwestern U.S.A. +B173,Northern Pomo,39.34,-123.29,nort2966,Nothern Pomo (B173),xd1115,,1860,Pomo (NS18),NS18,39.34,-123.29,Original,,Southwestern U.S.A. +B158,Eastern Pomo,39.03,-122.94,east2545,Eastern Pomo (B158),xd1116,,1860,Pomo (NS18),NS18,39.03,-122.94,Original,,Southwestern U.S.A. +B159,Clear Lake Pomo,39.12,-122.94,east2545,Clear Lake Pomo (B159),xd1116,Eastern Pomo,1860,Pomo (NS18),NS18,39.12,-122.94,Original,,Southwestern U.S.A. +B152,Tübalulabal,36,-118.32,tuba1278,Tubatulabal (B152),xd1118,Tubatulabal,1850,Tubatulabal (NS22),NS22,36,-118.32,Original,,Southwestern U.S.A. +B172,Wappo,38.59,-122.54,wapp1239,Wappo (B172),xd1119,,1860,,,38.59,-122.54,Original,,Southwestern U.S.A. +B170,Lake Miwok,38.79,-122.48,lake1258,Lake Miwok (B170),xd1120,,1900,,,38.79,-122.48,Original,,Southwestern U.S.A. +B155,Patwin,39.08,-122.05,patw1250,Patwin (B155),xd1121,Southern Wintun,1850,,,39.08,-122.05,Original,,Southwestern U.S.A. +B157,Western Mono,36.6,-117.08,mono1275,Monache (B157),xd1122,Monachi; Western Mono; Monache,1870,,,36.6,-117.08,Original,,Southwestern U.S.A. +B148,Southern Valley Yokuts,36,-119.83,vall1251,Lake Yokuts (B148),xd1123,Lake Yokuts; Tachi Yokuts; Chunut Yokuts,1860,Yokuts (NS29),NS29,36,-119.83,Original,,Southwestern U.S.A. +B151,Wukchumni,36.45,-118.96,tule1245,Wukchumi (B151),xd1124,Central Foothills Yokuts,1860,Yokuts (NS29),NS29,36.45,-118.96,Original,,Southwestern U.S.A. +B164,Salinan,35.47,-120.84,sali1253,Salinan (B164),xd1125,,1805,,,35.47,-120.84,Original,,Southwestern U.S.A. +B199,Kawaiisu,35.37,-118,kawa1283,Kawaiisu Shoshoni (B199),xd1126,Kawaiisu Shoshoni,1860,,,35.37,-118,Original,,Southwestern U.S.A. +B161,Chumash,34.63,-119.6,cruz1243,Chumash (B161),xd1127,,1860,,,34.63,-119.6,Original,,Southwestern U.S.A. +B156,Tongva,34,-118,tong1329,Gabrieleno (B156),xd1128,Gabrielo; Gabrielino; Gabrieleno,1770,,,34,-118,Original,,Southwestern U.S.A. +B154,Northern Foothills Yokuts,37.44,-120.44,nort2937,Yokuts (northern foothill) (B154),xd1129,Northern Foothill Yokuts,1850,Yokuts (NS29),NS29,37.44,-120.44,Original,,Southwestern U.S.A. +B149,Serrano,34.52,-117,serr1255,Serrano (B149),xd1130,,1870,,,34.52,-117,Original,,Southwestern U.S.A. +B144,Cahuilla (Desert),33.59,-116.24,cahu1264,Cahuilla (B144),xd1131,Desert Cahuilla,1870,,,33.59,-116.24,Original,"Note, three Cahuilla Dialects (Mountain, Pass, Desert) are recognized by some, but Glottolog does not list any dialects",Southwestern U.S.A. +B145,Cupeño,33.26,-116.59,cupe1243,Cupeno (B145),xd1132,Kuupangaxwichem; Cupeno,1870,,,33.26,-116.59,Original,,Southwestern U.S.A. +B150,Luiseño,33.42,-117.3,luis1253,Luiseno (B150),xd1133,Payómkawichum; Luiseno,1860,,,33.42,-117.3,Original,,Southwestern U.S.A. +B146,Kiliwa,31.44,-115.25,kili1268,Kiliwa (B146),xd1134,K'olew,1880,,,31.44,-115.25,Original,,Mexico +B183,Atsugewi,40.75,-121.12,atsu1245,Atsugewi (B183),xd1135,,1860,,,40.75,-121.12,Original,,Southwestern U.S.A. +B175,Central Sierra Miwok,38,-119.77,cent2140,Sierra Miwok (B175),xd1136,Miwok,1850,,,38,-119.77,Original,,Southwestern U.S.A. +B147,Kumeyaay,32.44,-116.49,kumi1248,Diegueno (B147),xd1137,Diegueño; Diegueno,1850,,,32.44,-116.49,Original,"Note, previously tipa1240 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)",Mexico +B171,Yuki,39.7,-123.15,yuki1243,Yuki (B171),xd1138,,1850,Yuki (NS30),NS30,39.7,-123.15,Original,,Southwestern U.S.A. +B189,Klamath,42.62,-121.5,klam1254,Klamath (B189),xd1139,,1860,Klamath (NR10),NR10,42.62,-121.5,Original,,Northwestern U.S.A. +B188,Modoc,42,-121.31,klam1254,Modoc (B188),xd1140,,1860,,,42,-121.31,Original,,Northwestern U.S.A. +B315,Tenino,45.59,-120.45,teni1238,Tenino (B315),xd1141,Warmsprings Sahaptin; Yenino,1850,,,45.59,-120.45,Original,,Northwestern U.S.A. +B325,Nlaka'pamux,51.26,-121.75,thom1243,Thompson (B325),xd1142,Thompson; Nitlakapamuk; Thompson River Salish,1860,,,51.26,-121.75,Original,,Western Canada +B333,Shuswap,53.41,-119.53,shus1248,Shuswap (B333),xd1143,Secwepemc,1850,,,53.41,-119.53,Original,,Western Canada +B330,Bitterroot Salish,46.28,-113.26,kali1309,Flathead (B330),xd1144,Salish; Flathead,1860,Southeast (NR19),NR19,46.28,-113.26,Original,,Northwestern U.S.A. +B326,Kalispel,47.94,-115.67,kali1309,Kalispel (B326),xd1145,,1870,Southeast (NR19),NR19,47.94,-115.67,Original,,Northwestern U.S.A. +B320,Coeur d’Alene,47.42,-116.34,coeu1236,Coeur d'Alene (B320),xd1146,Schitsu'umsh; Skitswish,1860,Southeast (NR19),NR19,47.42,-116.34,Original,,Northwestern U.S.A. +B321,Sinkaitk,48.78,-119.56,sout2963,Sinkaietk (B321),xd1147,Southern Okanagon,1880,Southeast (NR19),NR19,48.78,-119.56,Original,,Northwestern U.S.A. +B317,Wenatchi,47.41,-120.31,wena1241,Wenatchi (B317),xd1148,,1870,,,47.41,-120.31,Original,,Northwestern U.S.A. +B318,Klikitat,46.33,-120.27,nucl1237,Yakima (B318),xd1149,Yakima,1880,,,46.33,-120.27,Original,,Northwestern U.S.A. +B319,Wishram,45.72,-121.13,wasc1239,Wishram (B319),xd1150,,1860,,,45.72,-121.13,Original,,Northwestern U.S.A. +B316,Umatilla,45.49,-119.94,umat1237,Umatilla (B316),xd1151,,1860,,,45.49,-119.94,Original,,Northwestern U.S.A. +B222,Southern Ute,37.67,-109,utee1244,Southern Ute (Wimonantci Ute) (B222),xd1152,Wimonuntci; Weminute; Wimonantci Ute,1860,Ute (NT19),NT19,37.67,-109,Original,,Northwestern U.S.A. +B324,Nez Perce,46.25,-116.46,nezp1238,Nez Perce (B324),xd1153,Nimi'ipuu; Sahaptin,1850,,,46.25,-116.46,Original,,Northwestern U.S.A. +B231,Wadadokado,43.25,-119.14,nort1551,Wadadokado Paiute (B231),xd1155,Paiute; Northern Paiute,1870,Northern Paiute (NR13),NR13,43.25,-119.14,Original,,Northwestern U.S.A. +B226,Kidutokado,41.5,-120.06,nort1551,Kidutokado (Surprise Valley Paiute) (B226),xd1157,Gididika; Surprise Valley Paiute,1870,Northern Paiute (NR13),NR13,41.5,-120.06,Original,,Southwestern U.S.A. +B208,Kuyuidokado,40,-119.6,sout2967,Kuyuidokado (Pyramid Lake Paiute) (B208),xd1160,Pyramid Lake Paiute,1860,Northern Paiute (NR13),NR13,40,-119.6,Original,,Southwestern U.S.A. +B210,Toedokado,40.12,-118.37,sout2967,Cattail Paiute (B210),xd1161,Stillwater Paiute; Cattail Paiute,1870,,,40.12,-118.37,Original,,Southwestern U.S.A. +B206,Tunava (Deep Springs),37.28,-118,mono1275,Deep Springs Paiute (B206),xd1162,Deep Springs Valley Paiute,1860,,,37.28,-118,Original,,Southwestern U.S.A. +B211,Tunava (Fish Lake),37.69,-118.14,mono1275,Fish Lake Paiute (B211),xd1162,Fish Lake Valley Paiute,1860,,,37.69,-118.14,Original,,Southwestern U.S.A. +B202,Eastern Mono,36.88,-118.18,mono1275,Owens Valley Paiute (Eastern Mono) (B202),xd1164,Owens Valley Paiute; Eastern Mono,1870,,,36.88,-118.18,Original,,Southwestern U.S.A. +B197,Koso,36.12,-117.7,pana1305,Koso Mountain Shoshoni (B197),xd1165,Western Panamint; Koso Mountain Shoshoni; Little Lake Shoshoni,1860,Western (NT22),NT22,36.12,-117.7,Original,,Southwestern U.S.A. +B192,Tümpisa Shoshone (Death Valley),36.52,-116.81,pana1305,Death Valley Shoshoni (B192),xd1166,Death Valley Shoshoni,1860,Western (NT22),NT22,36.52,-116.81,Original,,Southwestern U.S.A. +B195,Tümpisa Shoshone (Panamint),36.37,-117.33,pana1305,Panamint Shoshoni (B195),xd1166,Panamint Shoshoni,1850,Western (NT22),NT22,36.37,-117.33,Original,,Southwestern U.S.A. +B200,Tümpisa Shoshone (Saline),36.65,-117.79,pana1305,Saline Valley Shoshoni (B200),xd1166,Saline Valley Shoshoni,1860,Western (NT22),NT22,36.65,-117.79,Original,,Southwestern U.S.A. +B218,Mahaguaduka,39.25,-117.32,west2622,Reese River Shoshoni (B218),xd1169,Reese River Shoshoni,1860,Western (NT22),NT22,39.25,-117.32,Original,,Southwestern U.S.A. +B233,Wiyambituka,39.33,-115.84,west2622,Little Smokey Shoshoni (B233),xd1170,Morey Shoshoni; Great Smokey Valley Shoshoni; Little Smokey Valley Shoshoni,1860,Western (NT22),NT22,39.33,-115.84,Original,,Southwestern U.S.A. +B217,Railroad Valley Shoshoni,38.33,-115.78,west2622,Railroad Valley Shoshoni (B217),xd1171,Hamilton,1860,Western (NT22),NT22,38.33,-115.78,Original,,Southwestern U.S.A. +B323,Sanpoil,47.94,-118.44,sanp1257,Sanpoil (B323),xd1174,,1870,Southeast (NR19),NR19,47.94,-118.44,Original,,Northwestern U.S.A. +B221,Tubaduka,41.59,-113.94,west2622,Grouse Creek Shoshoni (B221),xd1175,Grouse Creek Shoshoni,1860,,,41.59,-113.94,Original,,Southwestern U.S.A. +B228,Wadaduka,40.36,-115.39,west2622,Wadaduica (Ruby Valley Shoshoni) (B228),xd1176,Ruby Valley Shoshoni; Pine Creek Shoshoni; Diamond Valley Shoshoni; Egan Canyon Shoshoni,1860,,,40.36,-115.39,Original,,Southwestern U.S.A. +B216,White Knife Shoshoni,41,-117.31,west2622,White Knife Shoshoni (B216),xd1178,Battle Mountain Shoshoni; Tosawihi,1860,,,41,-117.31,Original,,Southwestern U.S.A. +B229,Bohogue,43,-112,nort2955,Bohogue (Northern Shoshoni) (B229),xd1180,Fort Hall Shoshoni,1860,,,43,-112,Original,,Northwestern U.S.A. +B232,Tukudika,45.17,-113.84,nort2955,Sheep Eater Shoshoni (B232),xd1181,Sheep-Eater Shoshoni; Lemhi Mountain Shoshoni,1860,,,45.17,-113.84,Original,,Northwestern U.S.A. +B207,Agaiduka,42.94,-115.3,nort2955,Salmon Eater Shoshoni (B207),xd1182,Salmon-Eater Shoshoni; Lemhi River Shoshoni,1860,,,42.94,-115.3,Original,,Northwestern U.S.A. +B214,Gosiute,39.88,-114,gosi1242,Gosiute Shoshoni (B214),xd1183,Gosiute Shoshoni; Deep Creek Shoshoni,1860,Western (NT22),NT22,39.88,-114,Original,,Southwestern U.S.A. +B201,Antarianunts,37.86,-110.72,utee1244,Antarianunts Southern Paiute (B201),xd1184,Henry Mountains Paiute; Kaiparowits,1860,,,37.86,-110.72,Original,,Southwestern U.S.A. +B213,Hukundika,41.55,-112.22,nort2955,Hukundika Shoshoni (B213),xd1185,Seed-Eaters; Northern Shoshoni; Hukunduka; Hukuniduica,1870,,,41.55,-112.22,Original,,Southwestern U.S.A. +B204,Southern Paiute (Kaibab and Las Vegas),36.9,-112.55,sout2969,Kaibab Southern Paiute (B204),xd1189,Kaivavwits; Southern Paiute; Las Vegas; Southern Paiute,1860,,,36.9,-112.55,Original,,Southwestern U.S.A. +B230,Uintah Ute,40.47,-110.22,utee1244,Uintah Ute (B230),xd1194,Tompanowots; Yampa,1860,,,40.47,-110.22,Original,,Southwestern U.S.A. +B225,Washo,39.08,-119.82,wash1253,Washo (B225),xd1196,,1850,Washo (NT20),NT20,39.08,-119.82,Original,,Southwestern U.S.A. +B234,Uncompahgre Ute,38.14,-107.8,utee1244,Uncompahgre Ute (B234),xd1199,Mowataviwatsiu,1860,,,38.14,-107.8,Original,,Northwestern U.S.A. +B252,Bannock,43.66,-112.32,bann1248,Bannock (B252),xd1200,Eastern Bannock,1860,,,43.66,-112.32,Original,,Northwestern U.S.A. +B227,Wind River Eastern Shoshone,43.19,-108.86,nort2955,Wind River Shoshoni (B227),xd1201,Wind River; Eastern Shoshoni; Kucundika; Buffalo Hunters; Buffalo-Eater,1860,,,43.19,-108.86,Original,,Northwestern U.S.A. +B198,Hualapai,35.95,-114.5,wala1270,Walapai (B198),xd1202,Walapai,1870,,,35.95,-114.5,Original,,Southwestern U.S.A. +B196,Yavapai,33.37,-110.5,yava1252,Yavapai (B196),xd1203,Apache-Mojave,1870,,,33.37,-110.5,Original,,Southwestern U.S.A. +B250,Kutenai,47.48,-114.08,kute1249,Kutenai (B250),xd1205,Ktunaxa; Kootenay; Kootenai,1880,,,47.48,-114.08,Original,,Northwestern U.S.A. +B348,Chilcotin,51.68,-124,chil1280,Chilcotin (B348),xd1206,Tsilhqot'in,1880,,,51.68,-124,Original,,Western Canada +B276,Lillooet,50.46,-123,lill1248,Lillooet (B276),xd1207,St'at'imc; Stlatlum,1860,,,50.46,-123,Original,,Western Canada +B253,Gros Ventre,48.12,-105.6,gros1243,Gros-Ventre (B253),xd1208,A'ani; A'aninin; Haaninin,1870,Gros Ventre (NQ13),NQ13,48.12,-105.6,Original,,Northwestern U.S.A. +B257,Assiniboine,49.49,-102.43,assi1247,Assiniboine (B257),xd1210,Hohe; Nakota; Stoney,1870,Assiniboine (NF04),NF04,49.49,-102.43,Original,,Western Canada +B256,Blackfoot,51.01,-110.76,pieg1239,Blackfoot (B256),xd1211,Siksika,1850,Blackfoot (NF06),NF06,51.01,-110.76,Original,,Western Canada +B259,Kainai,52.79,-113.86,bloo1239,Blood (B259),xd1212,Blood; Kainah; Blood Tribe,1850,Blackfoot (NF06),NF06,52.79,-113.86,Original,,Western Canada +B254,Bungi,47.6,-97.25,west1510,Bungi (Plains Ojibwa) (B254),xd1213,Plains Ojibwa; Bungee; Manitoba Saulteaux; Ojibway; Ojibwe,1850,Ojibwa (NG06),NG06,47.6,-97.25,Original,,North-Central U.S.A. +B193,Karankawa,28.44,-96.91,kara1289,Karankawa (B193),xd1215,,1800,,,28.44,-96.91,Original,,South-Central U.S.A. +B243,Kiowa,36.9,-99.1,kiow1266,Kiowa (B243),xd1216,,1870,,,36.9,-99.1,Original,,North-Central U.S.A. +B255,Piegan,49.34,-111.21,pieg1239,Piegan (B255),xd1217,Pikuni,1850,Blackfoot (NF06),NF06,49.34,-111.21,Original,,Western Canada +B258,Plains Cree,51.86,-102.67,plai1258,Plains Cree (B258),xd1218,,1850,,,51.86,-102.67,Original,,Western Canada +B244,Kiowa Apache,35.83,-98.9,kiow1264,Kiowa Apache (B244),xd1219,Naisha Dene; Na'isha,1860,,,35.83,-98.9,Original,,North-Central U.S.A. +B194,Coahuilteco,26,-102.07,coah1252,Coahuilenos (B194),xd1221,,1715,,,26,-102.07,Original,,Mexico +B241,Comanche,36.83,-100.5,coma1245,Comanche (B241),xd1222,,1870,Comanche (NO06),NO06,36.83,-100.5,Original,,North-Central U.S.A. +B248,Crow,45.83,-108.48,crow1244,Crow (B248),xd1223,Apsaalooké,1870,Crow (NQ10),NQ10,45.83,-108.48,Original,,Northwestern U.S.A. +B245,Cheyenne,38.83,-102.35,chey1247,Cheyenne (B245),xd1224,,1860,,,38.83,-102.35,Original,,Northwestern U.S.A. +B260,Sarcee,53.15,-111.04,sars1236,Sarsi (B260),xd1226,Tsuu; Sarci,1880,,,53.15,-111.04,Original,,Western Canada +B249,Teton,44.5,-102.27,lako1247,Teton Sioux (Lakota) (B249),xd1227,,1870,,,44.5,-102.27,Original,,North-Central U.S.A. +B246,Arapaho,40.13,-102.72,arap1274,Arapaho (B246),xd1228,Hinono'eiteen; Arapahoe,1860,Arapaho (NQ06),NQ06,40.13,-102.72,Original,,Northwestern U.S.A. +B242,Chiricahua,32.52,-101.76,mesc1238,Chiricahua Apache (B242),xd1259,Chiricahua Apache; Eastern Apache,1880,Eastern Apache (NT08),NT08,32.52,-101.76,Original,,South-Central U.S.A. +B240,Lipan Apache,28.96,-98.48,lipa1241,Lipan Apache (B240),xd1275,Lipan,1880,,,28.96,-98.48,Original,,South-Central U.S.A. +B143,Seri,29.59,-112.18,seri1257,Seri (B143),xd1289,Comcaac,1900,Seri (NU31),NU31,29.59,-112.18,Original,,Mexico +B191,Chichimeca,22,-100,chic1272,Chichimec (B191),xd1290,Chichimec,1570,,,22,-100,Original,,Mexico +B35,Paraujano,9.9,-72.41,para1316,Paraujano (B35),xd1330,Onoto,1950,,,9.9,-72.41,Original,,Northern South America +B38,Pumé,6.85,-68.77,pume1238,Yaruro-Pume (B38),xd1345,Yaruro,1989,Pumé (SS19),SS19,6.85,-68.77,Original,,Northern South America +B39,Guahibo,5.38,-68.31,guah1255,Guahibo (B39),xd1347,,1960,,,5.38,-68.31,Original,,Western South America +B36,Shiriana,3.86,-66.17,nina1238,Shiriana (B36),xd1358,Kirishana; Xiriana,1960,Yanoama (SQ18),SQ18,3.86,-66.17,Original,,Northern South America +B43,Sirionó,-15,-63.58,siri1273,Siriono (B43),xd1362,Miá; Siriono,1940,Siriono (SF21),SF21,-15,-63.58,Original,,Western South America +B55,Yahgan,-55.02,-68.98,yama1264,Yaghan (B55),xd1383,,1870,Yahgan (SH06),SH06,-60,-68.66,Revised,,Southern South America +B54,Ona,-53.9,-68.62,onaa1245,Ona (B54),xd1385,,1880,Ona (SH04),SH04,-53.9,-68.62,Original,,Southern South America +B51,Tehuelche,-46,-68.7,tehu1242,Tehuelche (B51),xd1386,Patagon,1870,Tehuelche (SH05),SH05,-46,-68.7,Original,,Southern South America +B53,Alacaluf,-49.55,-74.52,qawa1238,Alacaluf (B53),xd1387,Kawésqar,1900,,,-49.55,-74.52,Original,,Southern South America +B41,Bororo,-16,-55,boro1282,Bororo (B41),xd1397,,1920,Bororo (SP08),SP08,16.52,-55,Revised,,Brazil +B45,Nambikwara,-12.73,-59.55,sout2994,Nambikwara (B45),xd1401,Nambicura,1938,Nambicuara (SP17),SP17,-12.73,-59.55,Original,,Brazil +B42,Guató,-18,-57.5,guat1253,Guato (B42),xd1403,Guato,1901,,,-18,-57.5,Original,,Brazil +B50,Aweikoma,-28,-50,xokl1240,Aweikomo (B50),xd1411,Xokleng; Shokleng; Botocudo of Santa Catarina; Bugre; Kaingang of Santa Catarina (though Aweikoma and Kaingang today considered separate groups),1910,Xokleng (SM03),SM03,-28,-50,Original,,Brazil +B48,Aimoré,-18.71,-41.86,kren1239,Botocudo (B48),xd1413,Nac-nanuk; Nac-poruk; Botocudo,1880,,,-18.71,-41.86,Original,,Brazil +B165,Kashaya Pomo,38.54,-122.88,kash1280,Southern Pomo (B165),xd1418,Southwest dialect; Southern Pomo,1860,,,38.54,-122.88,Original,,Southwestern U.S.A. +B70,Dorobo,0,36,okie1245,Dorobo (B70),xd2,Andorobo; Okiek; Wandorobbo,1920,Okiek (FL20),FL20,0,36,Original,,East Tropical Africa +B65,Mbuti,1.54,28.61,bila1255,Mbuti (B65),xd5,Sua; BaSua; Kango; BaKango; Bambuti; BaMbuti Pygmies,1930,Mbuti (FO04),FO04,1.54,28.61,Original,"Note 8Feb2018: Changed. Focus is ""Epulu net-hunters, Ituri forest"". From White pinpointing sheets: ""The Pygmies and Pygmoid peoples of the Congo have been pushed into smaller and smaller areas of the tropical forest since the invasions of Bantu and Sudanic tribes in the 16-17th centuries, and most of the groups have adopted the languages of invading tribes with whom they allied themselves. Mbuti pygmies have adopted the languages of the Bira to the south of them, the Lese to the east, the Mangbetu and Azande to the northwest, and the Mamvu-Mangutu to the north. The [...] Epulu group studied by Turnbull situated to the north of the Ituri and Epulu Rivers, and the majority of the other groups to the south of the Ituri River [...] are net-hunters, and speak a language largely influenced by the Forest Bira."" Note, though, that Ember concordance lists the language as Lese.",West-Central Tropical Africa +B25,Nivkh,51.54,140,gily1242,Gilyak (B25),xd617,Gilyak,1920,Nivkh (RX02),RX02,51.54,140,Original,,Russian Far East +B27,Nganasan,73.83,90,ngan1291,Nganasan (B27),xd620,Tavgi Samoyed,1933,Samoyed_with_notes_on_Nganasan (RU04),RU04,73.83,90,Original,,Siberia +B28,Ungazikmit,65.96,-170.08,cent2128,Siberian Eskimo (B28),xd622,Eskaleut; Asian Eskimo,1860,,,65.96,170.08,Revised,9May2019 - Longitude for society was corrected to western hemisphere from eastern hemisphere through addition of - sign. 1Oct2018 - the update to Glottolog 3.3.2 forced re-mapping from dialect chap1266 (which no longer exists) to language (cent2128) (always the language-level match for this society).,Russian Far East +B26,Yukaghir,70,145,nort2745,Yukaghir (B26),xd634,,1900,,,70,145,Original,,Siberia +B22,Ainu,44.01,144.17,ainu1240,Ainu (B22),xd635,Ainu (Hokkaido); Hokkaido,1900,Ainu (AB06),AB06,44.01,144.17,Original,,Eastern Asia +B24,Ket,62,90,kett1243,Ket (B24),xd636,Yenisei Ostyak; Yeniseians,1900,,,62,90,Original,,Siberia +B15,Chenchu,16.25,78.97,chen1255,Chenchu (B15),xd672,,1940,,,16.25,78.97,Original,,Indian Subcontinent +B8,Andamanese,13.32,92.89,akab1249,Big Andaman Island (B8),xd686,Big Andaman Island; Andamese,1870,Andamans (AZ02),AZ02,13.32,92.89,Original,Changed to abj from apq on 8 April 2017 based on comments from H. Hammarström: Man (1885) worked most with (and whose variety he spoke best) Bojingya or Aka-Bea [abj],Indo-China +B10,Vedda,8.59,81.19,vedd1240,Vedda (B10),xd690,Wanniyalaeto; Veddah,1900,Vedda (AX05),AX05,8.58,81.25,Revised,,Indian Subcontinent +B73,Naron,-21.64,21.61,naro1249,Nharo (B73),xd7,Aikwe,1910,,,-21.64,21.61,Original,,Southern Africa +B9,Semang,5.86,101,kens1248,Semang (B9),xd725,,1920,Semang (AN07),AN07,5.86,101,Original,,Malesia +B3,Anak Dalam,-3.04,102.69,kubu1239,Kubu (B3),xd757,Orang Batin Sembilan; Orang Rimba; Kubu,1900,,,-3.04,102.69,Original,,Malesia +B1,Punan,3,114,west2563,Punan (B1),xd1442,Penan Gang; Punan Busang,1970,,,3,114,Original,"Note, previously this language was associated with xd758, and with both Binford and EA ""Punan"" societies. This xd_id now refers only to the Binford ""Punan"" society, with the EA ""Punan"" society linked to xd758 and language iso ""pna"" (3 Mar 2016). In May 2016 received this further comment from H. Hammarström: ""The references here reference different hunting and gathering populations of Borneo, not all of which speak the [same] language"" ""[...] if you have to put one [language] for all of these then a better match is Penan-Western [pne] because e.g Urquhart 1951 is on Penan Gang and Penan Lusong and Brosius is on Penan Gang. Both Penan Gang and Penan Lusong speak varieties of Penan-Western [pne].""",Malesia +B124,Northern Aranda,-23.7,133.76,east2379,Northern Arenda (B124),xd772,Aranda (Northern); Northern Arenda; Arunta,1900,Aranda (OI08),OI08,-23.7,133.76,Original,"Note 8Feb2018: Not changed, despite note from HH: ""Why is Strehlow not associated rather with Western Arrarnta [are]"". According to White SCCS Pinpointing sheets, focus is ""The Arunta Mbainda of Alice Springs: [...] closely studied by Spencer and Gillen in 1896, restudied in 1901, and visited by Spencer in 1926 for some follow-up reconstruction work with several informants."" [So, Strehlow was perhaps used for supporting materials?]",Australia +B109,Walbiri,-20,130.57,warl1254,Walbiri (B109),xd773,Warlpiri,1965,,,-20,130.57,Original,,Australia +B87,Gidjingali,-12.18,134.4,gunn1248,Gidjingali (B87),xd774,Burarra; Gun-nartpa,1950,,,-12.18,134.4,Original,,Australia +B94,Yir Yoront,-15,142.17,jirj1239,Yir-yoront (B94),xd775,,1937,,,-15,142.17,Original,"Note, previously yiy and yiry1245, however both codes have been retired",Australia +B97,Anindilyagwa,-14,136.62,anin1240,Groote Eylandt (B97),xd776,Enindilywakwa; Groote Eylandt; Groote Eyelandt,1930,,,-14,136.62,Original,,Australia +B88,"Yolngu, Dhuwal",-12.93,135.84,dhuw1249,Murngin (B88),xd777,Murngin; Wulamba; Dhuwal,1930,Murngin (OI17),OI17,-12.93,135.84,Original,,Australia +B95,Tiwi,-11.59,130.87,tiwi1244,Tiwi (B95),xd778,,1920,Tiwi (OI20),OI20,-11.59,130.87,Original,,Australia +B121,Diyari,-28.54,139.09,dier1241,Dieri (B121),xd779,Dieri; Dieri,1900,,,-28.54,139.09,Original,,Australia +B106,Kariyarra,-20.88,118.27,kari1304,Kariera (B106),xd780,Kariera,1910,,,-20.88,118.27,Original,,Australia +B90,Wikmunkan,-13.47,142,wikm1247,Wikmunkan (B90),xd781,Wikmunkun,1920,,,-13.47,142,Original,,Australia +B137,Tasmanians (northwestern),-41.38,145.21,port1278,Tasmanians (western) (B137),xd783,Palawa; Tasmanians (northwestern); Tasmanians (Western); Tasmanians (West Coast),1830,Tasmanians (OI19),OI19,-41.38,145.21,Original,"Note, previously tasm1247, but languages difficult to assign with certainty, so chose another western tasmanian language not considered a ""bookkeeping"" language by glottolog",Australia +B130,Ngiyambaa,-32.14,146.09,wang1291,Wongaibon (B130),xd784,Wongaibon,1910,,,-32.14,146.09,Original,,Australia +B79,/Xam,-31.47,19.77,xamm1241,/Xam (B79),xd8,Xam; Cape Bushman,1970,,,-31.47,19.77,Original,,Southern Africa +B69,Hadza,-3.82,35.32,hadz1240,Hadza (B69),xd9,Hadzabe; Hatsa Kindiga; Hadza; Kindiga,1910,,,-3.82,35.32,Original,,East Tropical Africa +B2,Palawan Batak,10.03,119.09,bata1301,Batek (B2),xd900,Batek; Batak; Batek (Palawan); Palawan,1968,,,10,119.11,Revised,"Changed from plw (broo1239) on 26 May 2016 based on feedback from H. Hammarström: ""The Batak in Cadeliña, Warren and Eder is Batak [bya] bata1301 not [plw] broo1239""",Malesia +B4,Shompen,7,93.77,shom1245,Shompen (B4),xd901,Shamhap,1989,,,7,93.77,Original,,Indo-China +B5,Onge,10.7,92.47,onge1236,Onge (B5),xd902,Andaman Islands (Onge); Onge Andamanese,1952,,,10.7,92.47,Original,,Indo-China +B6,Jarawa,12.17,92.65,jara1245,Jarwa (B6),xd903,Andaman Islands (Jarwa); Jarawa Andamanese,1906,,,12.19,92.37,Revised,,Indo-China +B7,Ayta (Pinatubo),15.5,120.33,boto1242,Ayta (Pinatubo) (B7),xd904,,1903,,,15.5,120.33,Original,,Malesia +B11,Hill Pandaram,9.25,77.25,mala1468,Hill Pandaran (B11),xd905,Hill Pandaran; Malapantāram; Malapandaram,1972,,,9.25,77.25,Original,,Indian Subcontinent +B12,Agta (Casiguran),17.33,122.13,casi1235,Agta (Casiguran) (B12),xd906,,1965,,,17.33,122.13,Original,,Malesia +B13,Agta (Isabela),17.48,122.05,agta1234,Agta (Isabela) (B13),xd907,,1979,,,17.48,122.05,Original,,Malesia +B14,Agta (Cagayan),17.82,121.8,cent2084,Agta (Cagayan) (B14),xd908,,1924,,,17.82,121.8,Original,,Malesia +B16,Mlabri,18.41,100.47,mlab1235,Mrabri (B16),xd909,Mrabri,1963,,,18.41,100.47,Original,,Indo-China +B17,Paliyans,9.75,77.5,pali1274,Paliyans (B17),xd910,,1963,,,9.75,77.5,Original,,Indian Subcontinent +B18,Birhor,23.41,84.38,birh1242,Birhor (B18),xd911,,1963,,,23.41,84.38,Original,,Indian Subcontinent +B19,Kadar,10.25,77.17,kada1242,Kadar (B19),xd912,,1946,,,10.25,77.17,Original,,Indian Subcontinent +B20,Cholanaikkan,10.18,76.4,jenn1240,Cholanaickan (B20),xd913,Malanaikan; Sholanaikan; Cholanaickan,1974,,,10.18,76.4,Original,"Changed to xuj (jenn1240) from mal (sout2708) on 26 May 2016 based on feedback from H. Hammarström: ""The people Bhanu studied natively speak a variety of Kurumba-Jennu [xuj]""; previously matched to language ""mal"" based on KK note: ""lat/long coordinates for society place it in Central Kerala state, much closer to lat/long for mal than for xuj (which is in neighbouring Tamil Nadu state). I couldn't access the sources, though",Indian Subcontinent +B21,Nayaka,11.9,77.21,jenn1240,Nayaka (B21),xd914,,1978,,,11.9,77.21,Original,,Indian Subcontinent +B23,Orogens,51.91,122.5,oroq1238,Orogens (B23),xd915,,1900,,,51.91,122.5,Original,,China +B37,Akurio,3,-55,akur1238,Akuriyo (B37),xd916,Akuriyo,1968,,,3,-55,Original,,Northern South America +B40,Nukak,2.56,-71.81,nuka1242,Nukak (B40),xd917,Macu Nukak,1990,,,2.56,-71.81,Original,,Western South America +B44,Yuqui,-16.46,-64.97,yuqu1240,Yuqui (B44),xd918,Mbia,1968,,,-16.46,-64.97,Original,,Western South America +B46,Calusa,26.48,-81.96,calu1239,Calusa (B46),xd919,,1600,,,-26.5,-82,Revised,,Southeastern U.S.A. +B47,Aché,-25.7,-55.38,ache1246,Guayaki (Ache) (B47),xd920,Guayaki (Ache); Guayaki; Ache,1975,,,-25.7,-55.38,Original,,Southern South America +B49,Héta,-23.52,-53.68,xeta1241,Heta (B49),xd921,Heta,1954,,,-23.52,-53.68,Original,,Brazil +B52,Chono,-45,-73.83,chon1248,Chono (B52),xd922,Chona,1880,,,-45,-73.83,Original,,Southern South America +B60,Aka,2,17,base1242,Aka (B60),xd923,Eastern Aka; Bayaka; BaAka; Ba'aka; Bayaka; Aka Pygmies; Pygmées Aka; BaBinga; BaMbenga,1980,,,2,17,Original,"Note 22Jul2021 - dialect match changed by KK from bamb1264 to base1242. Research notes relevant to Aka (society in Binford, GJB datasets), Bayaka (Binford dataset), and Mbendjele (GJB dataset) all speak varieties of yaka1272 'Yaka (Central African Republic)'. The re-assignment of dialect bamb1264 from society 'Aka' to 'Mbendjele' is well supported (c.f. Bahuchet, who mentions it is the dialect spoken in Western Aka areas). The dialect 'base1242' (Basese), now assigned to societies B60 (Aka) and GJB 'Aka', is mentioned on Wikipedia's Aka language page as being spoken in the East (and the Lobaye region, where work with the Aka was carried out, is North East of the Ouesso region, where work with the Mbendjele was carried out). This is the only evidence I have used to link 'base1242' to the Aka societies. Society B61 (Bayaka) is assigned yet another dialect (beka1240), mainly as a way to distinguish the group from Aka and Mbendjele (no additional evidence links this glottolog dialect to B61 Bayaka - match was done through a process of elimination). ",West-Central Tropical Africa +B61,Bayaka,3.58,17.76,beka1240,Bayaka (B61),xd924,,1976,,,3.58,17.76,Original,"Note 22Jul2021 - Language research notes relevant to Aka (society B60 in Binford, 'Aka' in GJB ), Bayaka (B61 in Binford dataset), and Mbendjele (GJB dataset) all of whom speak varieties of yaka1272 'Yaka (Central African Republic)'. The re-assignment of dialect bamb1264 from society 'Aka' to 'Mbendjele' is well supported (c.f. Bahuchet, who mentions it is the dialect spoken in Western Aka areas). The dialect 'base1242' (Basese), now assigned to societies B60 (Aka) and GJB 'Aka', is mentioned on Wikipedia's Aka language page as being spoken in the East (and the Lobaye region, where work with the Aka was carried out, is North East of the Ouesso region, where work with the Mbendjele was carried out). This is the only evidence I have used to link 'base1242' to the Aka societies. Society B61 (Bayaka) is assigned yet another dialect (beka1240), mainly as a way to distinguish the group from Aka and Mbendjele (no additional evidence links this glottolog dialect to B61 Bayaka - match was done through a process of elimination).",West-Central Tropical Africa +B62,Bambote,-6.64,28.26,holo1240,Bambote (B62),xd925,Bambote of Lake Tanganyika,1977,,,-6.64,28.26,Original,"Note that Terashima (1980), the main source of cultural data for this group, says further research is needed to confirm whether Bambote speak language of a neighbouring group, or their own language. Both the Bambote and their neighbours say the group speaks a distinct language, ""Kimbote."" Rebecca Grollemund said this society should NOT be matched to iso ""tap""; she said ""Bambote is a pygmy language related to D20 languages""",West-Central Tropical Africa +B63,Baka,2.39,15.31,baka1272,Baka (B63),xd926,Baka BaNgombe; Baka; BaBinga; BaMbenga; Baka Pygmies,1980,,,2.39,15.31,Original,,West-Central Tropical Africa +B64,Efe,2.7,27.64,efee1239,Efe (B64),xd927,BaMbuti; Mbuti; Bambuti Pygmies,1980,,,2.7,27.64,Original,,West-Central Tropical Africa +B66,Mikea,-22.32,43.81,masi1268,Mikea (B66),xd928,Vezo-Mikea; Masikoro-Mikea,1970,,,-22.32,43.81,Original,,Western Indian Ocean +B67,Hukwe,-16.93,24.32,kxoe1243,Hukwe (B67),xd929,,1950,,,-16.93,24.32,Original,,South Tropical Africa +B68,Hai//om,-18.65,16.12,haio1238,Hai//om (B68),xd930,Hai//om,1920,,,-18.65,16.12,Original,,Southern Africa +B71,Sekele,-16.42,19.53,vase1234,Sekele (B71),xd931,,1928,,,-16.42,19.53,Original,,South Tropical Africa +B74,G/wi,-22.46,23.39,gwii1239,G/wi (B74),xd932,,1962,,,-22.46,23.39,Original,,Southern Africa +B75,Kua,-22.88,24.41,kuaa1238,Kua (B75),xd933,,1976,,,-22.88,24.41,Original,,Southern Africa +B76,!Ko,-23.86,22.2,huaa1248,!Ko (B76),xd934,,1968,,,-23.86,22.2,Original,,Southern Africa +B77,/'Auni-Khomani,-27.37,19.82,nuuu1241,/Auni-Khomani (B77),xd935,/Auni-Khomani,1920,,,-27.37,19.82,Original,,Southern Africa +B78,//Xegwi,-26.28,30.23,xegw1238,//Xegwi (B78),xd936,Batwa (Lake Chrissie),1950,,,-26.28,30.23,Original,,Southern Africa +B82,Kaurareg,-10.73,142.15,kala1377,Kaurareg (B82),xd937,,1848,,,-10.77,142.12,Revised,,Australia +B83,Larikia,-12.6,130.79,lara1258,Larikia (B83),xd938,,1900,,,-12.6,130.78,Revised,,Australia +B84,Gunwinygu,-12.43,134.12,gunw1252,Gunwinggu (B84),xd939,Gunwinggu,1978,,,-12.43,134.12,Original,,Australia +B85,Mirrngadja,-12.31,135.2,djin1252,Mirrngadja (B85),xd940,,1970,,,-12.31,135.2,Original,,Australia +B86,Burarra,-12.2,134.73,gunn1247,Anbarra (B86),xd941,Anbarra; Gun-nartpa,1973,,,-12.2,134.73,Original,,Australia +B89,Yiiji,-15.55,128.19,wuna1249,Jeidji (B89),xd942,Jeidji,1920,,,-15.55,128.19,Original,,Australia +B91,Kaakutju,-13.13,132.95,gaga1251,Kakadu (B91),xd943,Kakadu,1920,,,-13.13,132.95,Original,,Australia +B92,Nunggubuyu,-13.76,135.98,nung1290,Nunggubuyu (B92),xd944,Wubuy,1960,,,-13.76,135.98,Original,,Australia +B93,Yintjingga,-14,143.5,ayab1239,Yintjingga (B93),xd945,,1930,,,-14,143.5,Original,"Note 8Feb2018: Glottocode changed based on comment by HH: ""Yintjingga (specifically) in the Glottolog inventory falls under Ayabadhu [ayd].""",Australia +B96,Kuku (Yalanji),-15.92,145.32,kuku1273,Kuku (Yalanji) (B96),xd946,Yuku,1880,,,-15.92,145.32,Original,,Australia +B98,Walmbaria,-14.34,144.22,flin1247,Walmbaria (B98),xd947,,1926,,,-14.34,144.22,Original,,Australia +B99,Mulluk,-13.58,130.58,mull1237,Mulluk (B99),xd948,Malakmalak,1900,,,-13.58,130.58,Original,,Australia +B100,Worrorra,-15.32,124.72,worr1237,Worora (B100),xd949,Worora,1930,,,-15.32,124.72,Original,,Australia +B101,Kija,-16.91,127.83,kitj1240,Lungga (B101),xd950,Kija; Lungga; Kija; Lungka,1934,,,-16.91,127.83,Original,,Australia +B102,Lardil,-16.48,139.32,lard1243,Lardil (B102),xd951,,1909,,,-16.3,139.3,Revised,,Australia +B103,Kaiadilt,-16.94,139.03,kaya1319,Kaiadilt (B103),xd952,Kayardild,1928,,,-16.94,139.28,Revised,,Australia +B104,Karajarri,-18.94,121.68,kara1476,Karadjeri (B104),xd953,Karadjeri,1925,,,-18.92,121.21,Revised,,Australia +B105,Mamu,-17.64,145.84,mamu1253,Mamu (B105),xd954,,1900,,,-17.64,145.84,Original,,Australia +B107,Warunggu,-18.41,145.61,waru1264,Warunggu (B107),xd955,Woronggo,1870,,,-18.41,145.61,Original,,Australia +B108,Djaru,-19.16,130,jaru1254,Djaru (B108),xd956,Jaru,1934,,,-19.16,130,Original,,Australia +B110,Ngatjan,-17.36,145.56,ngad1260,Ngatjan (B110),xd957,,1880,,,-17.36,145.56,Original,,Australia +B111,Mardudjara,-22.79,125.06,mart1256,Mardudjara (B111),xd958,Ngatjan,1960,,,-22.79,125.06,Original,,Australia +B112,Ildawongga,-22.93,127.18,wanm1242,Ildawongga (B112),xd959,,1968,,,-22.93,127.18,Original,"Note 8Feb2018: Note from HH: ""I thought Ildawongga were a late contacted band of Pintupi but I may be misremembering and I don't know the reference."" KK: leaving for now as Australian languages checked by C. Bowern.",Australia +B113,Pintubi,-22.86,129.44,pint1250,Pintubi (B113),xd960,,1936,,,-22.86,129.44,Original,,Australia +B114,Undanbi,-27.27,153.02,waka1274,Undanbi (B114),xd961,Undambi,1848,,,-27.28,153.24,Revised,,Australia +B115,Jinibarra,-27.25,152.87,yaga1256,Jinibarra (B115),xd962,,1840,,,-27.25,152.87,Original,Assigned Glottolog id on 26 May 2016 based on feedback from H. Hammarström,Australia +B116,Karuwali,-24.41,141.64,karr1236,Karuwali (B116),xd963,,1900,,,-24.41,141.64,Original,,Australia +B117,Alyawara,-22.27,135.17,alya1239,Alyawara (B117),xd964,,1965,,,-22.27,135.17,Original,,Australia +B118,Ngatatjara,-25.32,127.27,ngaa1240,Ngatatjara (B118),xd965,,1968,,,-25.32,127.27,Original,,Australia +B119,Badjalang,-29.59,152.78,midd1357,Badjalang (B119),xd966,,1850,,,-29.59,152.78,Original,Note 8Feb2018: KK: Updated Glottocode as the previous one (band1339) was a family-level code.,Australia +B120,Pitjandjara,-26,130,pitj1243,Pitjandjara (B120),xd967,Pitjantjatjara,1968,,,-26,130,Original,,Australia +B122,Southern Aranda,-26.09,135.52,lowe1436,Southern Arenda (B122),xd968,Aranda (Southern); Southern Arenda,1870,,,-26.09,135.52,Original,,Australia +B123,Jankundjara,-27,131.95,yank1247,Jankundjara (B123),xd969,Yankunytjatjara,1922,,,-27,131.95,Original,,Australia +B125,Yuwaalaraay,-29.3,147.25,gami1243,Ualarai (B125),xd970,Ualarai,1880,,,-29.3,147.25,Original,,Australia +B126,Nakako,-27.31,128.19,pitj1243,Nakako (B126),xd971,,1912,,,-27.31,128.19,Original,"KK: Language match uncertain: H. Hammarström suggests closest match is [ntj], when I discussed with Claire Bowern in 2015, she was not confident it should be matched to [ntj]. Therefore, left with a DPLACE placeholder for now [x03] (26 May 2016)",Australia +B127,Ooldea,-30.38,131.81,anta1253,Ooldea (B127),xd972,,1941,,,-30.38,131.81,Original,"Note 8Feb2018: Changed to anta1253, based on comment by HH (""Speech at Ooldea (a station) was a mix of dialects from people from different dialects and multidialectal people mainly Pitjantjatjara [pjt], but also Antakarinya [ant]. Very strange to attribute Berndt & Berndt to Wirangu"") and after looking into maps of Berndts research location. Some uncertainty remains.",Australia +B128,Paakintji,-32.4,142.25,darl1243,Barkindji (B128),xd973,Barkindji,1890,,,-32.4,142.25,Original,,Australia +B129,Kaurna,-34.56,138.4,kaur1267,Kaurna (B129),xd974,Karuna,1840,,,-34.56,138.4,Original,,Australia +B131,Yaraldi,-35.06,139.29,narr1259,Jaralde (B131),xd975,Jaralde,1850,,,-35.06,139.29,Original,,Australia +B132,Mirniny,-34.95,117.81,ngad1258,Mineng (B132),xd976,Mirniny; Mineng; Mount Barker Tribe; Minang; Noongar,1850,,,-34.95,117.81,Original,"Note 8Feb2018: Leaving for now, despite HH comment: ""HH: The vocabulary (""Minang"") is usually attributed to the language Nyungar [nys]. Have no idea why the paper is connected to Ngadjunmaya."". KK looked into this case in depth, checked with C. Bowern before settling on this language match. Certainly still some uncertainty, though, so with more evidence could be changed.",Australia +B133,Tjapwurong,-35.86,141.38,djab1234,Tjapwurong (B133),xd977,,1850,,,-35.86,141.38,Original,,Australia +B134,Bunurong,-38.48,145.23,woiw1237,Bunurong (B134),xd978,,1850,,,-38.93,145.07,Revised,,Australia +B135,Kurnai,-37.59,147.42,gana1278,Kurnai (B135),xd979,,1850,,,-37.59,147.42,Original,,Australia +B136,Tasmanians (southeastern),-42.62,147.49,sout1439,Tasmanians (eastern) (B136),xd980,Palawa; Tasmanians (southern); Tasmanians (eastern); Tasmanians (East Coast),1830,,,-42.62,147.49,Original,,Australia +B168,Coast Miwok,38.24,-122.88,coas1301,Coast Miwok (B168),xd983,,1850,,,38.24,-122.88,Original,,Southwestern U.S.A. +B190,Guaicura,25,-111.54,guai1237,Guaicura (B190),xd985,Guaycura,1760,,,25,-111.54,Original,,Mexico +B203,Kawich Mountain Shoshoni,37.92,-116.45,west2622,Kawich Mountain Shoshoni (B203),xd988,,1860,,,37.92,-116.45,Original,,Southwestern U.S.A. +B205,Mono Lake Northern Paiute,38.11,-118.45,sout2967,Mono Lake Paiute (B205),xd989,Kutzadika'a; Mono Lake Paiute; Kutzadika,1870,,,38.11,-118.45,Original,,Southwestern U.S.A. +B209,Timponogas,40.22,-111.81,utee1244,Ute-timanogas (B209),xd991,Timponogas Ute; Ute-timanogas; Ute-timpanogas; Ute-timinogas,1860,,,40.22,-111.81,Original,,Southwestern U.S.A. +B212,Wadatkuht,40.27,-120.44,sout2967,Honey Lake Paiute (B212),xd992,Honey Lake Paiute,1870,Northern Paiute (NR13),NR13,40.27,-120.44,Original,,Southwestern U.S.A. +B219,North Fork Mono,37,-119.07,mono1275,North Fork Mono Paiute (B219),xd993,Mono (North Fork); Mono-North Fork Paiute; Norfolk Mono,1860,,,37,-119.07,Original,,Southwestern U.S.A. +B223,Bear Creek Northern Paiute,43.94,-120.49,nort1551,Bear Creek Paiute (B223),xd994,Bear Creek Paiute,1870,,,43.94,-120.49,Original,,Northwestern U.S.A. +B215,Spring Valley Shoshoni,39.19,-114.48,west2622,Spring Valley Shoshoni (B215),xd995,Spring Valley,1870,,,39.19,-114.48,Original,,Southwestern U.S.A. +B224,Antelope Valley Shoshoni,40.19,-114.24,west2622,Antelope Valley Shoshoni (B224),xd995,Spring Valley; Antelope Valley Shoshoni,1860,,,40.19,-114.24,Original,,Southwestern U.S.A. +B272,Chehalis,46.87,-123.67,lowe1427,Chehalis (B272),xd997,,1880,,,46.87,-123.67,Original,,Northwestern U.S.A. +B293,Gitxsan,55.65,-128.06,gitx1241,Gitksan (B293),xd998,Gitksan,1880,,,55.65,-128.06,Original,,Western Canada +B294,Koniag,57.93,-153.16,koni1262,Koniag (B294),xd999,,1840,,,57.93,-153.16,Original,"1Oct2018 - change to dialect and language mapping from beri1255 (no longer exists) to koni1262 (dialect of language paci1278) following update to Glottolog version 3.3.2. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction.",Subarctic America diff --git a/cldf/sources.bib b/cldf/sources.bib new file mode 100644 index 0000000..96f7bc3 --- /dev/null +++ b/cldf/sources.bib @@ -0,0 +1,8403 @@ +@article{avadhani1975, + author = {P.N., Avadhani}, + journal = {Malayan Nature Journal}, + key = {Avadhani (1975)}, + lgcode = {Punan [west2563]}, + number = {3-4}, + pages = {121-172}, + title = {A study of the Punan Busang}, + volume = {28}, + year = {1975} +} + +@article{brosius1986, + author = {Brosius, J. P.}, + journal = {Sarawak Museum Journal}, + key = {Brosius (1986)}, + lgcode = {Punan [west2563]}, + number = {57}, + pages = {173-184}, + title = {River, Forest and Mountain: the Penan Gang Landscape}, + volume = {36}, + year = {1986} +} + +@article{harrison1949, + author = {Harrison, T.}, + journal = {Sarawak Museum Journal}, + key = {Harrison (1949)}, + lgcode = {Punan [west2563]}, + number = {1}, + pages = {130-146}, + title = {Notes on Some Nomadic Punans}, + volume = {5}, + year = {1949} +} + +@article{kedit1982, + author = {Kedit, P.M.}, + journal = {Sarawak Museum Journal}, + key = {Kedit (1982)}, + lgcode = {Punan [west2563]}, + number = {51}, + pages = {226-279}, + title = {An Ecological Survey of the Penan}, + volume = {30}, + year = {1982} +} + +@article{oldrey1975, + author = {Oldrey, T. B. N.}, + journal = {Malay Nature Journal}, + key = {Oldrey (1975)}, + lgcode = {Punan [west2563]}, + number = {3-4}, + pages = {152-159}, + title = {A Study of the Punan Busang IV. Medical Report}, + volume = {28}, + year = {1975} +} + +@book{sellato1994, + author = {Sellato, B.}, + address = {Honolulu}, + glottolog_ref = {hh:e:Sellato:Bukat-Kereho}, + key = {Sellato (1994)}, + lgcode = {Punan [west2563]}, + pages = {280}, + publisher = {University of Hawaii Press}, + title = {Nomads of the Borneo rainforest: The Economics, Politics, and Ideology of Settling Down}, + year = {1994} +} + +@article{urquhart1951, + author = {Urquhart, I.}, + glottolog_ref = {hh:e:Urquhart:Jungle-Punans}, + journal = {Sarawak Museum Journal (n.s. 3)}, + key = {Urquhart (1951)}, + lgcode = {Punan [west2563]}, + pages = {495-533}, + title = {Some Notes on Jungle Punans in Kapit district}, + volume = {5}, + year = {1951} +} + +@article{bailey1863, + author = {Bailey, J.}, + journal = {Transactions of the Ethnological Society of London}, + key = {Bailey (1863)}, + lgcode = {Vedda [vedd1240]}, + pages = {278-320}, + title = {An Account of the Wild Tribes of the Veddahs of Ceylon: Their Habits, Customs and Superstitions}, + volume = {2}, + year = {1863} +} + +@book{seligmannandseligmann1911, + author = {Seligman, C. S. and Seligman, B. Z.}, + address = {Cambridge}, + key = {Seligmann and Seligmann (1911)}, + lgcode = {Vedda [vedd1240]}, + publisher = {Cambridge University Press}, + title = {The Veddas}, + year = {1911} +} + +@book{skeatandblagden1906, + author = {Skeat, W. W. and Blagden, C. 0.}, + address = {New York}, + glottolog_ref = {stampe:686}, + key = {Skeat and Blagden (1906)}, + lgcode = {Bambote [holo1240], Semang [kens1248], Vedda [vedd1240]}, + publisher = {Barnes and Noble}, + title = {Pagan races of the Malay Peninsula}, + year = {1906} +} + +@book{spittel1945, + author = {Spittel, R. L.}, + address = {Colombo, Ceylon}, + key = {Spittel (1945)}, + lgcode = {Vedda [vedd1240]}, + note = {3rd edit.}, + publisher = {General Publishers}, + title = {Wild Ceylon: Describing in Particular the Lives of the Present-Day Veddahs}, + year = {1945} +} + +@phdthesis{blundell1975, + author = {Blundell, V. J.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Blundell (1975)}, + lgcode = {Worrorra [worr1237]}, + school = {Department of Anthropology, University of Wisconsin, Madison}, + title = {Aboriginal Adaptation in Northwest Australia}, + year = {1975} +} + +@article{blundell1980, + author = {Blundell, V. J.}, + journal = {Ethnohistory}, + key = {Blundell (1980)}, + lgcode = {Worrorra [worr1237]}, + number = {2}, + pages = {103-117}, + title = {Hunter-Gatherer Territoriality: Ideology and Behavior in Northwest Australia}, + volume = {27}, + year = {1980} +} + +@article{love1917, + author = {Love, J.R. B.}, + journal = {Transactions of the Royal Society of South Australia}, + key = {Love (1917)}, + lgcode = {Worrorra [worr1237]}, + pages = {21-38}, + title = {Notes on the Wororra Tribe of North-Western Australia}, + volume = {41}, + year = {1917} +} + +@book{love1936, + author = {Love, J.R. B.}, + address = {London}, + key = {Love (1936)}, + lgcode = {Worrorra [worr1237]}, + publisher = {Blackie and Son}, + title = {Stone-Age Bushmen of To-day: Life and Adventure among a Tribe of Savages in North-Western Australia}, + year = {1936} +} + +@book{kaberry1939, + author = {Kaberry, P. M.}, + address = {London}, + key = {Kaberry (1939)}, + lgcode = {Djaru [jaru1254], Kija [kitj1240], Yiiji [wuna1249]}, + publisher = {George Routledge and Sons}, + title = {Aboriginal Woman: Sacred and Profane}, + year = {1939} +} + +@incollection{memmott1983a, + author = {Memmott, P.}, + editor = {Peterson, N. and Langton, M.}, + address = {Canberra}, + booktitle = {Aborigines, Land and Land Rights}, + key = {Memmott (1983a)}, + lgcode = {Lardil [lard1243]}, + pages = {107-142}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Lardil Artifacts and Shelters}, + year = {1983} +} + +@misc{memmott1983b, + author = {Memmott, P.}, + editor = {Peterson, N. and Langton, M.}, + address = {Canberra}, + booktitle = {Aborigines, Land and Land Rights}, + key = {Memmott (1983b)}, + lgcode = {Lardil [lard1243]}, + pages = {33-65}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Social Structure and Use of Space amongst the Lardil}, + year = {1983} +} + +@article{tindale1962a, + author = {Tindale, N. B.}, + journal = {Records of the South Australian Museum}, + key = {Tindale (1962a)}, + lgcode = {Kaiadilt [kaya1319]}, + number = {2}, + pages = {259-296}, + title = {Geographical Knowledge of the Kaiadilt People of Bentinck Island, Queensland}, + volume = {14}, + year = {1962} +} + +@article{tindale1962b, + author = {Tindale, N. B.}, + journal = {Records of the South Australian Museum}, + key = {Tindale (1962b)}, + lgcode = {Kaiadilt [kaya1319]}, + number = {2}, + pages = {297-336}, + title = {Some Population Chart:oes among the Kaiadilt People of Bentinck Island, Queensland}, + volume = {14}, + year = {1962} +} + +@article{birdsell1967, + author = {Birdsell, J. B.}, + journal = {Archaeology and Physical Anthropology in Oceania}, + key = {Birdsell (1967)}, + lgcode = {Mamu [mamu1253]}, + pages = {100-155}, + title = {Preliminary Data on the Trihybrid Origin of the Australian Aborigines}, + volume = {2}, + year = {1967} +} + +@incollection{harris1978, + author = {Harris, D. R.}, + editor = {Blurton-Jones, N. and Reynolds, V.}, + address = {London}, + booktitle = {Human Behavior and Adaptation}, + key = {Harris (1978)}, + lgcode = {Mamu [mamu1253], Mardudjara [mart1256]}, + pages = {113-133}, + publisher = {Taylor and Francis}, + title = {Adaptation to a Tropical Rain-Forest Environment: Aboriginal Subsistence in Northeastern Queensland}, + year = {1978} +} + +@incollection{harris1982, + author = {Harris, D. R.}, + editor = {Harris, M. and Ross, E. B.}, + address = {Philadelphia}, + booktitle = {Food and Evolution: Toward a Theory of Human Food Habits}, + key = {Harris (1982)}, + lgcode = {Mamu [mamu1253]}, + pages = {357-385}, + publisher = {Temple University Press}, + title = {Aboriginal Subsistence in a Tropical Rain Forest Environment: Food Procurement, Cannibalism, and Population Regulation in Northeastern Australia}, + year = {1982} +} + +@book{roth1909, + author = {Roth, H.L.}, + address = {Sydney}, + key = {Roth (1909)}, + lgcode = {Kuku (Yalanji) [kuku1273], Mamu [mamu1253], Walmbaria [flin1247]}, + publisher = {G. A. Vaughan}, + series = {North Queensland Ethnography Bulletin No. 10, Records of the Australian Museum}, + title = {Marriage Ceremonies and Infant Life}, + year = {1909} +} + +@article{clement1903, + author = {Clement, E.}, + glottolog_ref = {ozbib:1161}, + journal = {Internationales Archive for Ethnographic}, + key = {Clement (1903)}, + lgcode = {Kariyarra [kari1304]}, + number = {I/II}, + pages = {1-29}, + title = {Ethographical notes on the Western Australian Aborigines}, + volume = {16}, + year = {1903} +} + +@article{radcliffebrown1912, + author = {Radcliffe-Brown, A. R.}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Radcliffe-Brown (1912)}, + lgcode = {Kariyarra [kari1304]}, + pages = {143-194}, + title = {Three Tribes of Western Australia}, + volume = {43}, + year = {1912} +} + +@book{brayshaw1990, + author = {Brayshaw, H.}, + address = {Cairns}, + key = {Brayshaw (1990)}, + lgcode = {Warunggu [waru1264]}, + number = {10}, + publisher = {Department of History, James Cook University of North Queensland}, + series = {Studies in North Queensland History}, + title = {Well Beaten Paths}, + year = {1990} +} + +@book{lumholtz1889, + author = {Lumholtz, C.}, + address = {London}, + key = {Lumholtz (1889)}, + lgcode = {Warunggu [waru1264]}, + publisher = {John Murray}, + title = {Among Cannibals: Four Years' Travels in Australia and of the Camp Life with the Aborigines of Queensland}, + year = {1889} +} + +@article{nind1831, + author = {Nind, S.}, + journal = {Journal of the Royal Geographical Society of London}, + key = {Nind (1831)}, + lgcode = {Djaru [jaru1254], Mirniny [ngad1258]}, + pages = {21-51}, + title = {Description of the Natives of King George's Sound (Swan River Colony) and Adjoining Country}, + volume = {1}, + year = {1831} +} + +@article{abbie1957, + author = {Abbie, A. A.}, + doi = {10.1002/j.1834-4461.1957.tb00207.x}, + issn = {1834-4461}, + journal = {Oceania}, + key = {Abbie (1957)}, + lgcode = {Walbiri [warl1254]}, + number = {3}, + pages = {220-243}, + publisher = {Blackwell Publishing Ltd}, + title = {Metrical Characters of a Central Australian Tribe}, + url = {https://doi.org/10.1002/j.1834-4461.1957.tb00207.x}, + volume = {27}, + year = {1957} +} + +@book{meggitt1962, + author = {Meggitt, M. J.}, + address = {Chicago}, + key = {Meggitt (1962)}, + lgcode = {Pintubi [pint1250], Walbiri [warl1254]}, + publisher = {University of Chicago Press}, + title = {A Study of the Walbiri Aborigines of Central Australia}, + year = {1962} +} + +@misc{meggittperscomm1973, + author = {Meggitt, M. J.}, + howpublished = {Personal communication}, + key = {Meggitt pers. comm. (1973)}, + lgcode = {Walbiri [warl1254]}, + year = {1973} +} + +@book{morris1982a, + author = {Morris, B.}, + address = {London}, + glottolog_ref = {hh:e:Morris:Hill-Pandaram:1982:Book}, + key = {Morris (1982a)}, + lgcode = {Hill Pandaram [mala1468]}, + number = {55}, + pages = {230}, + publisher = {Athlone Press}, + series = {London School of Economics Monographs on Social Anthropology}, + title = {Forest traders: a socio-economic study of the Hill Pandaram}, + year = {1982} +} + +@book{petersonandlong1986, + author = {Peterson, N. and Long, J.}, + address = {Sydney}, + key = {Peterson and Long (1986)}, + lgcode = {Anindilyagwa [anin1240], Burarra [gunn1247], Gidjingali [gunn1248], Gunwinygu [gunw1252], Ildawongga [wanm1242], Mardudjara [mart1256], Mirrngadja [djin1252], Nakako [pitj1243], Ngatjan [ngad1260], Pintubi [pint1250], Pitjandjara [pitj1243], Tiwi [tiwi1244], Wikmunkan [wikm1247], Yir Yoront [jirj1239], Yolngu, Dhuwal [dhuw1249]}, + publisher = {University of Sydney}, + series = {Oceania Monograph}, + title = {Australian Territorial Organization}, + volume = {30}, + year = {1986} +} + +@book{tonkinson1978, + author = {Tonkinson, R.}, + address = {New York}, + key = {Tonkinson (1978)}, + lgcode = {Ngatjan [ngad1260]}, + publisher = {Holt, Rinehart and Winston}, + title = {The Mardudjara Aborigines: Living the Dream in Australia's Desert}, + year = {1978} +} + +@article{campbelletal1936, + author = {Campbell, T. D. and Gray, J. H. and Hackett, C. J.}, + journal = {Oceania}, + key = {Campbell et al. (1936)}, + lgcode = {Alyawara [alya1239], Pintubi [pint1250], Pitjandjara [pitj1243]}, + pages = {106-139, 246-261}, + title = {Physical Anthropology of the Aborigines of CentralAustralia}, + volume = {7}, + year = {1936} +} + +@incollection{gargettandhayden1991, + author = {Gargett, R. and Hayden, B.}, + editor = {Kroll, E. and Price, D.}, + address = {New York}, + booktitle = {The Interpretation of Archaeological Spatial Patterning}, + key = {Gargett and Hayden (1991)}, + lgcode = {Pintubi [pint1250]}, + pages = {11-32}, + publisher = {Plenum Press}, + title = {Site Structure, Kinship and Sharing in Aboriginal Australia: Implications for Archaeology}, + year = {1991} +} + +@article{haydenperscomm1990, + author = {Hayden, B.}, + journal = {Journal of Anthropological Archaeology}, + key = {Hayden pers. comm. (1990)}, + lgcode = {Pintubi [pint1250]}, + pages = {31-69}, + title = {Nimrods, Piscators, Pluckers, and Planters: The Emergence of Food Production}, + volume = {9}, + year = {1990} +} + +@incollection{haydenperscomm1992, + author = {Hayden, B.}, + editor = {Gebauer, A. B. and Price, T. C.}, + address = {Madison, Wisc.}, + booktitle = {Transitions to Agriculture in Prehistory}, + key = {Hayden pers. comm. (1992)}, + lgcode = {Pintubi [pint1250]}, + pages = {11-19}, + publisher = {Prehistory Press}, + title = {Models of Domestication}, + year = {1992} +} + +@incollection{long1970, + author = {Long, J.P. M.}, + editor = {Berndt, R. M.}, + address = {Perth}, + booktitle = {Australian Aboriginal Anthropology: Modern Studies of the Social Anthropology of the Australian Aborigines}, + key = {Long (1970)}, + lgcode = {Gidjingali [gunn1248], Mirrngadja [djin1252], Northern Aranda [east2379], Ooldea [anta1253], Pintubi [pint1250], Pitjandjara [pitj1243], Yolngu, Dhuwal [dhuw1249]}, + pages = {292-304}, + publisher = {University of Western Australia Press}, + title = {Polygyny, Acculturation and Contact: Aspects of Aboriginal Marriage in Central Australia}, + year = {1970} +} + +@incollection{long1971, + author = {Long, J.P. M.}, + editor = {Mulvaney, D. J. and Golson, J.}, + address = {Canberra}, + booktitle = {Aboriginal Man and Environment in Australia}, + key = {Long (1971)}, + lgcode = {Pintubi [pint1250]}, + pages = {262-270}, + publisher = {Australian National University Press}, + title = {Arid egion Aborigines: The Pintubi}, + year = {1971} +} + +@book{myers1986, + author = {Myers, F.}, + address = {Washington, D.C.}, + key = {Myers (1986)}, + lgcode = {Pintubi [pint1250]}, + publisher = {Smithsonian Institution and Australian Institute of Aboriginal Studies}, + title = {Pintupi Country, Pintupi Self: Sentiment, Place and Politics among Western Desert Aborigines}, + year = {1986} +} + +@article{colliverandwoolston1975, + author = {Colliver, F. S. and Woolston., F. P.}, + glottolog_ref = {ozbib:1211}, + journal = {Proceedings of the Royal Society of Queensland}, + key = {Colliver and Woolston (1975)}, + lgcode = {Undanbi [waka1274]}, + number = {16}, + pages = {91-104}, + title = {The Aborigines of Stradbroke Island}, + volume = {86}, + year = {1975} +} + +@article{morwood1987, + author = {Morwood, M. J.}, + journal = {Proceedings of the Prehistoric Society}, + key = {Morwood (1987)}, + lgcode = {Jinibarra [yaga1256]}, + pages = {337-350}, + title = {The Archaeology of Social Complexity in South-East Queensland}, + volume = {53}, + year = {1987} +} + +@misc{winterbotham1980, + author = {Winterbotham, L. P.}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Winterbotham (1980)}, + lgcode = {Jinibarra [yaga1256]}, + title = {The Jinibara Tribe of Southeast Queensland (with Some Reference to Neighboring Tribes)}, + year = {1980} +} + +@book{duncankemp1964, + author = {Duncan-Kemp, A. M.}, + address = {Brisbane}, + key = {Duncan-Kemp (1964)}, + lgcode = {Karuwali [karr1236]}, + publisher = {W. R. Smith and Paterson}, + title = {Where Strange Paths Go Down}, + year = {1964} +} + +@misc{binfordfieldnotes1974, + author = {Binford, L. R.}, + howpublished = {Field notes (Alyawara, July) on file, Department of Anthropology, Southern Methodist University, Dal-las, Texas.}, + key = {Binford field notes (1974)}, + lgcode = {Alyawara [alya1239]}, + year = {1974} +} + +@article{denham1975, + author = {Denham, W. W.}, + journal = {Archaeology and Physical Anthropology in Oceania}, + key = {Denham (1975)}, + lgcode = {Alyawara [alya1239]}, + pages = {115-159}, + title = {Population Properties of Physical Groups among the Alyawara Tribe of Central Australia}, + volume = {10}, + year = {1975} +} + +@article{oconnell1987, + author = {O'Connell, J. F.}, + journal = {American Antiquity}, + key = {O'Connell (1987)}, + lgcode = {Alyawara [alya1239]}, + number = {1}, + pages = {74-108}, + title = {Alyawara Site Structure and Its Archaeological Implications}, + volume = {52}, + year = {1987} +} + +@article{gould1968, + author = {Gould, R. A.}, + journal = {Southwestern Journal of Anthropology}, + key = {Gould (1968)}, + lgcode = {Ngatatjara [ngaa1240]}, + pages = {101-122}, + title = {Living Archaeology: The Ngatatjara of Western Australia}, + volume = {24}, + year = {1968} +} + +@book{gould1969, + author = {Gould, R. A.}, + address = {New York}, + glottolog_ref = {hh:lde:Gould:Yiwara}, + key = {Gould (1969)}, + lgcode = {Ngatatjara [ngaa1240]}, + publisher = {Charles Scribner's Sons}, + title = {Yiwara: foragers of the Australian desert}, + year = {1969} +} + +@article{gould1971, + author = {Gould, R. A.}, + journal = {World Archaeology}, + key = {Gould (1971)}, + lgcode = {Ngatatjara [ngaa1240]}, + pages = {143-177}, + title = {The Archaeologist as Ethnographer: A Case Study from the Western DeSert of Australia}, + volume = {3}, + year = {1971} +} + +@book{gould1977, + author = {Gould, R. A.}, + address = {New York}, + key = {Gould (1977)}, + lgcode = {Ngatatjara [ngaa1240]}, + series = {Anthropological Papers, American Museum of Natural History}, + title = {Puntutjarpa Rockshelter and the Australian Desert Culture}, + volume = {54}, + year = {1977} +} + +@incollection{belshaw1978, + author = {Belshaw, J.}, + editor = {McBryde, I.}, + address = {Canberra}, + booktitle = {Records of Times Past: Ethnohistorical Essays on the Culture and Ecology of the New England Tribes}, + key = {Belshaw (1978)}, + lgcode = {Badjalang [midd1357]}, + pages = {65-81}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Population Distribution and the Pattern of Seasonal Movement in Northern New South Wales}, + year = {1978} +} + +@incollection{debertrodano1978, + author = {De Bertrodano, R. E.}, + editor = {McBryde, I.}, + address = {Canberra}, + booktitle = {Records of Times Past}, + key = {de Bertrodano (1978)}, + lgcode = {Badjalang [midd1357]}, + pages = {281-286}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Description of an Aboriginal Tribe}, + year = {1978} +} + +@incollection{gardner1978, + author = {Gardner, W.}, + editor = {McBryde, I.}, + address = {Canberra}, + booktitle = {Records of Past Times: Ethnohistorical Essays on the Culture and Ecology of the New England Tribes}, + key = {Gardner (1978)}, + lgcode = {Badjalang [midd1357]}, + pages = {49-246}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Productions and Resources of the Northern and Western Districts of New South Wales (1842-54)}, + year = {1978} +} + +@phdthesis{headland1986, + author = {Headland, T. N.}, + glottolog_ref = {guldemann:1973}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Headland (1986)}, + lgcode = {Agta (Casiguran) [casi1235]}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + title = {Why foragers do not become farmers: a historical study of a changing ecosystem and its effect on a negrito hunter-gatherer group in the Philippines}, + year = {1986} +} + +@misc{headlandperscomm1992, + author = {Headland}, + howpublished = {pers. comm.}, + key = {Headland pers. comm. (1992)}, + lgcode = {Agta (Casiguran) [casi1235]}, + year = {1992} +} + +@misc{headlandperscomm1993, + author = {Headland}, + howpublished = {pers. comm.}, + key = {Headland pers. comm. (1993)}, + lgcode = {Agta (Casiguran) [casi1235]}, + year = {1993} +} + +@book{brokensha1975, + author = {Brokensha, P.}, + address = {North Sydney}, + key = {Brokensha (1975)}, + lgcode = {Pitjandjara [pitj1243]}, + publisher = {Aboriginal ArtsBoard}, + title = {The Pitjantlatjara and Their Crafts}, + year = {1975} +} + +@incollection{layton1983, + author = {Layton, R.}, + editor = {Peterson, N. and Langton, M.}, + address = {Canberra}, + booktitle = {Aborigines, Land and Land Rights}, + key = {Layton (1983)}, + lgcode = {Pitjandjara [pitj1243]}, + pages = {15-32}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Ambilineal Descent and Traditional Pitjantjatjara Rights to Land}, + year = {1983} +} + +@incollection{tindale1972, + author = {Tindale, N. B.}, + editor = {Bicchieri, M. G.}, + address = {New York}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + glottolog_ref = {ozbib:5709}, + key = {Tindale (1972)}, + lgcode = {Pitjandjara [pitj1243]}, + pages = {217-268}, + publisher = {Holt, Rinehart and Winston}, + title = {The Pitjandjara}, + year = {1972} +} + +@incollection{yengoyan1970, + author = {Yengoyan, A. A.}, + editor = {Berndt, R. M.}, + address = {Perth}, + booktitle = {Australian Aboriginal Anthropology: Modern Studies in the Social Anthropology of the Australian Aborigines}, + key = {Yengoyan (1970)}, + lgcode = {Pitjandjara [pitj1243]}, + pages = {70-91}, + publisher = {University of Western Australia Press}, + title = {Demographic Factors in Pitjandjara Social Organization}, + year = {1970} +} + +@incollection{gason1879, + author = {Gason, S.}, + editor = {Woods, J. D.}, + address = {Adelaide}, + booktitle = {The Native Tribes of South Australia}, + key = {Gason (1879)}, + lgcode = {Diyari [dier1241]}, + pages = {257-286}, + publisher = {E. S. Wigg and Son}, + title = {The Dieyerie Tribe}, + year = {1879} +} + +@article{howitt1891, + author = {Howitt, A. W.}, + glottolog_ref = {hh:e:Howitt:Dieri}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Howitt (1891)}, + lgcode = {Diyari [dier1241]}, + pages = {30-104}, + title = {The Dieri and Other Kindred Tribes of Central Australia}, + volume = {20}, + year = {1891} +} + +@book{sturt1849a, + author = {Sturt, C.}, + address = {London}, + key = {Sturt (1849a)}, + lgcode = {Diyari [dier1241]}, + publisher = {T. and W. Boone}, + title = {Narrative of an Expedition into Australia}, + volume = {1}, + year = {1849} +} + +@article{roberts1953, + author = {Roberts, D. F.}, + journal = {American Journal of Physical Anthropology}, + key = {Roberts (1953)}, + lgcode = {Baffin Island Inuit [baff1240], Inughuit (Northern Greenland) [pola1254], Mbuti [bila1255], Northern Aranda [east2379], Southern Aranda [lowe1436], Tareumiut [nort2944]}, + pages = {533-558}, + title = {Body Weight, Race and Climate}, + volume = {11}, + year = {1953} +} + +@article{schulze1891, + author = {Schulze, L.}, + journal = {Transactions and Proceedings and Report of the Royal Society of South Australia}, + key = {Schulze (1891)}, + lgcode = {Southern Aranda [lowe1436]}, + pages = {210-243}, + title = {The Aborigines of the Upper and Middle Finke River: Their Habits and Customs, with Introductory Notes on the Physical and Natural-History Features of the Country}, + volume = {14}, + year = {1891} +} + +@misc{tindaleperscomm1965, + author = {Tindale, N. B.}, + howpublished = {pers. comm.}, + key = {Tindale pers. comm. (1965)}, + lgcode = {Jankundjara [yank1247]}, + year = {1965} +} + +@misc{tindaleperscomm1966, + author = {Tindale, N. B.}, + howpublished = {pers. comm.}, + key = {Tindale pers. comm. (1966)}, + lgcode = {Jankundjara [yank1247], Nakako [pitj1243]}, + year = {1966} +} + +@misc{tindaleperscomm196668, + author = {Tindale, N. B.}, + howpublished = {pers. comm.}, + key = {Tindale pers. comm. (1966-68)}, + lgcode = {Jankundjara [yank1247]}, + year = {1966-68} +} + +@article{white1915, + author = {White, S. A.}, + journal = {Transactions of the Royal Society of South Australia}, + key = {White (1915)}, + lgcode = {Jankundjara [yank1247]}, + pages = {725-732}, + title = {The Aborigines of the Everard Range}, + volume = {39}, + year = {1915} +} + +@misc{binfordfieldnotes1993, + key = {Binford field notes (1993)}, + lgcode = {Northern Aranda [east2379]}, + title = {Binford field notes 1993} +} + +@book{spencerandgillen1899, + author = {Spencer, B. and Gillen, F. J.}, + address = {New York}, + glottolog_ref = {hh:e:SpencerGillen:NCAustralia:1899}, + key = {Spencer and Gillen (1899)}, + lgcode = {Northern Aranda [east2379]}, + pages = {784}, + publisher = {MacMillan}, + title = {The Northern Tribes of Central Australia}, + url = {https://archive.org/details/northerntribesc00gillgoog}, + year = {1899} +} + +@misc{spencerandgillen1927, + author = {Spencer, B. and Gillen, F. J.}, + address = {London}, + key = {Spencer and Gillen (1927)}, + lgcode = {Northern Aranda [east2379]}, + publisher = {MacMillan}, + title = {The Aruntas: A Study of Stone Age People}, + year = {1927} +} + +@book{parker1905, + author = {Parker, K. L.}, + address = {Edinburgh}, + glottolog_ref = {hh:e:Parker:Euahlayi}, + key = {Parker (1905)}, + lgcode = {Yuwaalaraay [gami1243]}, + pages = {256}, + publisher = {T. and A. Constable}, + title = {The Euahlayi Tribe: A Study of Aboriginal Life in Australia}, + year = {1905} +} + +@article{berndtandberndt1944, + author = {Berndt, R. M. and Berndt, C. H.}, + journal = {Oceania}, + key = {Berndt and Berndt (1944)}, + lgcode = {Ooldea [anta1253]}, + pages = {220-249}, + title = {A Preliminary Report of Field Work in the Ooldea Region, Western South Australia: Women's Life}, + volume = {14}, + year = {1944} +} + +@article{cawthorne1844, + author = {Cawthorne, W. A.}, + glottolog_ref = {hh:e:Cawthorne:Manners-Customs}, + journal = {Reprinted in Proceedings of the Royal Geographical Society of South Australia}, + key = {Cawthorne (1844)}, + lgcode = {Kaurna [kaur1267]}, + pages = {47-77}, + title = {Rough Notes on the Manners and Customs of the Natives}, + volume = {27}, + year = {1844} +} + +@misc{draperperscomm1993, + author = {Draper, Patricia}, + howpublished = {pers. comm.}, + key = {Draper pers. comm. (1993)}, + lgcode = {Kaurna [kaur1267]}, + year = {1993} +} + +@phdthesis{rai1982, + author = {Rai, N.K.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Rai (1982)}, + lgcode = {Agta (Isabela) [agta1234]}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + title = {From Forest to Field: A Study of Philippine Negrito Foragers in Transition}, + year = {1982} +} + +@article{wastl1957, + author = {Wastl, J.}, + glottolog_ref = {hh:e:Wastl:Negrito}, + journal = {Anthropos}, + key = {Wastl (1957)}, + lgcode = {Agta (Isabela) [agta1234]}, + pages = {769-812}, + title = {Beitrag zur Anthropologic der Negrito von OstLuzon}, + volume = {52}, + year = {1957} +} + +@article{williams1985, + author = {Williams, E.}, + journal = {Archaeology in Oceania}, + key = {Williams (1985)}, + lgcode = {Tjapwurong [djab1234]}, + pages = {73-89}, + title = {Estimation of Prehistoric Populations of Archaeological Sites in Southwestern Victoria: Some Problems}, + volume = {20}, + year = {1985} +} + +@book{cannon1983, + editor = {Cannon, M.}, + address = {Melbourne}, + key = {Cannon (1983)}, + lgcode = {Bunurong [woiw1237]}, + publisher = {Victorian Government Printing Office}, + series = {Foundation Series}, + title = {Historical Records of Victoria}, + volume = {2B: Aborigines and Protectors 1838-1839}, + year = {1983} +} + +@article{gaughwinandsullivan1984, + author = {Gaughwin, D. and Sullivan, H.}, + journal = {Aboriginal History}, + key = {Gaughwin and Sullivan (1984)}, + lgcode = {Bunurong [woiw1237]}, + pages = {80-98}, + title = {Aboriginal Boundaries and Movements in Western Port, Victoria}, + volume = {8}, + year = {1984} +} + +@book{fisonandhowitt1880, + author = {Fison, L. and Howitt, A. W.}, + address = {Melbourne}, + key = {Fison and Howitt (1880)}, + lgcode = {Kurnai [gana1278]}, + publisher = {George Robertson}, + title = {Kamilaroi and Kurnai}, + year = {1880} +} + +@book{howitt1904, + author = {Howitt, A. W.}, + address = {London}, + key = {Howitt (1904)}, + lgcode = {Diyari [dier1241], Kurnai [gana1278], Ngiyambaa [wang1291]}, + publisher = {MacMillan}, + title = {The Native Tribes of Sout-East Australia}, + year = {1904} +} + +@article{hiatt1967, + author = {Hiatt, B.}, + journal = {Oceania}, + key = {Hiatt (1967)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]}, + number = {2; 3}, + pages = {99-133; 190-219}, + title = {The Food Quest and the Economy of the Tasmanian Aborigines}, + volume = {38}, + year = {1967} +} + +@incollection{jones1971, + author = {Jones, R.}, + editor = {Mulvaney, D. J. and Golson, J.}, + address = {Canberra}, + booktitle = {Aboriginal Man and Environment in Australia}, + key = {Jones (1971)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]}, + pages = {271-287}, + publisher = {Australian National University Press}, + title = {The Demography of Hunters and Farmers in Tasmania}, + year = {1971} +} + +@misc{jones1972, + author = {Jones, R.}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Jones (1972)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]}, + note = {Prepared for the Australian Association of Social Anthropologists Annual Conference, Symposium on Space and Territory, Monash University}, + title = {A Hunting Landscape}, + year = {1972} +} + +@book{plomley1983, + author = {Plomley, N. J. B.}, + address = {Hobart, Australia}, + key = {Plomley (1983)}, + lgcode = {Tasmanians (southeastern) [sout1439]}, + publisher = {Blubber Head Press}, + title = {The Baudin Expedition and the Tasmanian Aborigines 1802}, + year = {1983} +} + +@book{roth1899, + author = {Roth, H.L.}, + address = {Hobart}, + key = {Roth (1899)}, + lgcode = {Tasmanians (southeastern) [sout1439]}, + publisher = {Fullers Bookshop}, + title = {The Aborigines of Tasmania}, + year = {1899} +} + +@article{goodmanetal1985, + author = {Goodman, M. J. and Estioko-Griffin, A. and Griffin, P. B. and Grove, J. S.}, + journal = {Sex Roles}, + key = {Goodman et al. (1985)}, + lgcode = {Agta (Cagayan) [cent2084]}, + number = {11-12}, + pages = {1199-1209}, + title = {The Compatibility of Hunting and Mothering among Agta Hunter Gatherers of the Philippines}, + volume = {12}, + year = {1985} +} + +@article{vanoverbergh1925, + author = {Vanoverbergh, M.}, + glottolog_ref = {hh:et:Vanoverbergh:NLuzon}, + journal = {Anthropos}, + key = {Vanoverbergh (1925)}, + lgcode = {Agta (Cagayan) [cent2084]}, + pages = {148-199, 399-443}, + title = {Negritos of Northern Luzon}, + volume = {20}, + year = {1925} +} + +@book{bowen1976, + author = {Bowen, T.}, + address = {Tucson}, + key = {Bowen (1976)}, + lgcode = {Seri [seri1257]}, + number = {27}, + publisher = {University of Arizona Press}, + series = {Anthropological Papers of the University of Arizona}, + title = {Seri Prehistory: The Archaeology of the Central Coast of Sonora, Mexico}, + year = {1976} +} + +@article{gilg1965, + author = {Gilg, A.}, + journal = {Arizona and the West}, + key = {Gilg (1965)}, + lgcode = {Seri [seri1257]}, + note = {translated and edited by C. C. DiPeso and D. S. Matson}, + number = {1}, + pages = {33-56}, + title = {The Seri Indians in 1692}, + volume = {7}, + year = {1965} +} + +@book{griffen1959, + author = {Griffen, B.}, + address = {Gainesville}, + key = {Griffen (1959)}, + lgcode = {Seri [seri1257]}, + number = {10}, + publisher = {University of Florida Press}, + series = {Latin American Monograph Series}, + title = {Notes on Seri Indian Culture, Sonora, Mexico}, + year = {1959} +} + +@book{kroeber1931, + author = {Kroeber, A. L.}, + address = {Los Angeles}, + key = {Kroeber (1931)}, + lgcode = {Seri [seri1257]}, + number = {6}, + pages = {1-60}, + publisher = {Southwest Museum}, + series = {Southwest Museum Papers}, + title = {The Seri}, + year = {1931} +} + +@incollection{mcgee1898, + author = {McGee, M. J.}, + address = {Washington, D.C.}, + booktitle = {Seventeenth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1895-1896}, + key = {McGee (1898)}, + lgcode = {Seri [seri1257]}, + pages = {1-344}, + publisher = {Smithsonian Institution}, + title = {The Seri Indians}, + year = {1898} +} + +@book{bean1972, + author = {Bean, L. J.}, + address = {Berkeley}, + key = {Bean (1972)}, + lgcode = {Cahuilla (Desert) [cahu1264]}, + publisher = {University of California Press}, + title = {Mukat's People: The Cahuilla Indians of Southern California}, + year = {1972} +} + +@book{gifford1926b, + author = {Gifford, E. W.}, + address = {Berkeley}, + key = {Gifford (1926b)}, + lgcode = {Achumawi [achu1247], Atsugewi [atsu1245], Cahuilla (Desert) [cahu1264], Central Sierra Miwok [cent2140], Cupeño [cupe1243], Eastern Mono [mono1275], Eastern Pomo [east2545], Hupa [hupa1239], Klamath [klam1254], Luiseño [luis1253], Maidu [nort2952], Modoc [klam1254], Nomlaki [noml1242], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Pomo [nort2966], Patwin [patw1250], Salinan [sali1253], Serrano [serr1255], Southern Valley Yokuts [vall1251], Wadatkuht [sout2967], Washo [wash1253], Wiyot [wiyo1248], Yana [yana1271], Yuki [yuki1243], Yurok [yuro1248]}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {California Anthropometry}, + volume = {22}, + year = {1926} +} + +@book{kroeber1925a, + author = {Kroeber, A. L.}, + address = {Washington, D.C.}, + key = {Kroeber (1925a)}, + lgcode = {Cahuilla (Desert) [cahu1264], Hupa [hupa1239], Kumeyaay [kumi1248], Serrano [serr1255], Southern Valley Yokuts [vall1251], Wiyot [wiyo1248], Yurok [yuro1248]}, + number = {78}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Handbook of the Indians of California}, + year = {1925} +} + +@book{strong1929a, + author = {Strong, W. D.}, + address = {Berkeley}, + key = {Strong (1929a)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Cupeño [cupe1243], Luiseño [luis1253], Serrano [serr1255]}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Aboriginal Society in Southern California}, + volume = {26}, + year = {1929} +} + +@book{meigs1939, + author = {Meigs, P.}, + address = {Berkeley}, + key = {Meigs (1939)}, + lgcode = {Kiliwa [kili1268]}, + pages = {1-113}, + publisher = {University of California Press}, + series = {Ibero-Americana}, + title = {The Kiliwa Indians of Lower California}, + volume = {15}, + year = {1939} +} + +@incollection{luomala1978, + author = {Luomala, K.}, + editor = {Heizer, R.}, + address = {Washington, D.C.}, + booktitle = {California}, + key = {Luomala (1978)}, + lgcode = {Kumeyaay [kumi1248]}, + pages = {592-609}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Tipai and Ipai}, + volume = {8}, + year = {1978} +} + +@article{cook1955, + author = {Cook, S. F.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Cook (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Lake Miwok [lake1258], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Wukchumni [tule1245]}, + number = {2}, + pages = {31-81}, + publisher = {University of California Press}, + title = {The Aboriginal Population of the San Joaquin Valley, California}, + volume = {16}, + year = {1955} +} + +@book{gayton1948a, + author = {Gayton, Ann H.}, + address = {Berkeley}, + key = {Gayton (1948a)}, + lgcode = {Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]}, + note = {The years 1885 to 1860 cover the youth span of my older informants, the years 1860 to 1830 the mid-span of their parents' lives, and 1830 to 1800 the mid-span of their grandparents' lives. The bulk of cultural detail recalled was seen, experienced, or heard about in the years 1840 to 1890 approximately; fieldwork 1925-28}, + number = {1}, + pages = {1-302}, + publisher = {University of California Press}, + series = {Anthropological Records}, + title = {Yokuts and Western Mono Ethnography. I. Tulare Lake, Southern Valley, and Central Foothill Yokuts}, + volume = {10}, + year = {1948} +} + +@incollection{wallace1978b, + author = {Wallace, W. J.}, + editor = {Heizer, Robert F.}, + address = {Washington, D.C.}, + booktitle = {California}, + key = {Wallace (1978b)}, + lgcode = {Southern Valley Yokuts [vall1251]}, + pages = {448-470}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Southern Valley Yokuts}, + volume = {8}, + year = {1978} +} + +@article{benedict1924, + author = {Benedict, R. F.}, + journal = {American Anthropologist}, + key = {Benedict (1924)}, + lgcode = {Serrano [serr1255]}, + pages = {366-392}, + title = {A Brief Sketch of Serrano Culture}, + volume = {26}, + year = {1924} +} + +@book{furerhaimendorf1943b, + author = {Fürer-Haimendorf, C. von.}, + address = {London}, + key = {Fürer-Haimendorf (1943b)}, + lgcode = {Chenchu [chen1255]}, + publisher = {Macmillan}, + series = {The Aboriginal Tribes of Hyderabad}, + title = {The Chenchus}, + volume = {1}, + year = {1943} +} + +@phdthesis{oxendine1983, + author = {Oxendine, J.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Oxendine (1983)}, + lgcode = {Luiseño [luis1253]}, + school = {Department of Anthropology, University of California, Riverside}, + title = {The Luiseno Village during the Late Prehistoric Era}, + year = {1983} +} + +@book{sparkman1908, + author = {Sparkman, P. S.}, + address = {Berkeley}, + key = {Sparkman (1908)}, + lgcode = {Luiseño [luis1253]}, + pages = {187-234}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {The Culture of the Luiseno Indians}, + volume = {8}, + year = {1908} +} + +@misc{gayton1948b, + author = {Gayton, Ann H.}, + address = {Berkeley}, + key = {Gayton (1948b)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245], Yakut [yaku1245]}, + number = {2}, + pages = {1-302}, + publisher = {University of California Press}, + series = {Anthropological Records}, + title = {Yokuts and Western Mono Ethnography. II. Northern Foothill Yokuts and Western Mono}, + volume = {10}, + year = {1948} +} + +@book{voegelin1938, + author = {Voegelin, E. W.}, + address = {Berkeley}, + key = {Voegelin (1938)}, + lgcode = {Kawaiisu [kawa1283], Tübatulabal [tuba1278]}, + number = {1}, + pages = {1-84}, + publisher = {University of California Press}, + series = {Anthropological Records}, + title = {Tübatulabal Ethnography}, + volume = {2}, + year = {1938} +} + +@article{goldschmidt1948, + author = {Goldschmidt, Walter R.}, + journal = {American Anthropologist}, + key = {Goldschmidt (1948)}, + lgcode = {Nomlaki [noml1242]}, + pages = {444-456}, + title = {Social Organization in Native California and the Origin of Clans}, + volume = {50}, + year = {1948} +} + +@misc{goldschmidtperscomm1966, + author = {Goldschmidt, Walter R.}, + howpublished = {pers. comm.}, + key = {Goldschmidt pers. comm. (1966)}, + lgcode = {Nomlaki [noml1242]}, + year = {1966} +} + +@incollection{spier1978, + author = {Spier, R.F. G.}, + editor = {Heizer, R.}, + address = {Washington, D.C.}, + booktitle = {California}, + key = {Spier (1978)}, + lgcode = {Northern Foothills Yokuts [nort2937]}, + pages = {471-484}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Foothill Yokuts}, + volume = {8}, + year = {1978} +} + +@book{barrett1908, + author = {Barrett, S. A.}, + key = {Barrett (1908)}, + lgcode = {Central Sierra Miwok [cent2140], Eastern Pomo [east2545], Kashaya Pomo [kash1280], Northern Pomo [nort2966], Patwin [patw1250], Wappo [wapp1239], Wintu [nucl1651]}, + pages = {1-332}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {The Ethno-geography of the Pomo and Neighboring Indians}, + url = {https://archive.org/details/ethnogeographyp02barrgoog}, + volume = {6}, + year = {1908} +} + +@incollection{johnson1978, + author = {Johnson, P. J.}, + editor = {Heizer, Robert F.}, + address = {Washington, D.C.}, + booktitle = {California}, + glottolog_ref = {hh:e:Johnson:Patwin}, + key = {Johnson (1978)}, + lgcode = {Patwin [patw1250]}, + pages = {350-360}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Patwin}, + volume = {8}, + year = {1978} +} + +@misc{kroeber1932, + author = {Kroeber, A. L.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Kroeber (1932)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Patwin [patw1250], Southern Pomo [sout2984]}, + number = {4}, + pages = {253-391}, + publisher = {University of California Press}, + title = {The Patwin and Their Neighbors}, + volume = {29}, + year = {1929} +} + +@article{gifford1932b, + author = {Gifford, E. W.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1932b)}, + lgcode = {Kings River Western Mono [mono1275], North Fork Mono [mono1275], Western Mono [mono1275]}, + number = {2}, + pages = {15-65}, + publisher = {University of California Press}, + title = {The Northfork Mono}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-003.pdf}, + volume = {31}, + year = {1932} +} + +@article{loeb1926b, + author = {Loeb, E. M.}, + address = {Berkeley and Los Angeles}, + glottolog_ref = {hh:e:Loeb:Pomo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Loeb (1926b)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]}, + pages = {149-405}, + publisher = {Berkeley and Los Angeles: University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Pomo Folkways}, + volume = {19}, + year = {1926} +} + +@article{cook1956, + author = {Cook, S. F.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Cook (1956)}, + lgcode = {Clear Lake Pomo [east2545], Hupa [hupa1239], Karuk [karo1304], Kashaya Pomo [kash1280], Mattole-Bear River [matt1238], Northern Pomo [nort2966], Sinkyone [wail1244], Tolowa [tolo1259], Wappo [wapp1239], Wiyot [wiyo1248], Yuki [yuki1243], Yurok [yuro1248]}, + number = {3}, + publisher = {University of California Press}, + title = {The Aboriginal Population of the North Coast of California}, + volume = {16}, + year = {1956} +} + +@article{gifford1926a, + author = {Gifford, E. W.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1926a)}, + lgcode = {Clear Lake Pomo [east2545], Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]}, + number = {2}, + pages = {287-390}, + publisher = {Univ.of California Press}, + title = {Clear Lake Pomo Society}, + volume = {18}, + year = {1926} +} + +@book{bernatzik1951, + author = {Bernatzik, H. A.}, + address = {London}, + key = {Bernatzik (1951)}, + lgcode = {Mlabri [mlab1235]}, + note = {In collaboration with E. Bernatzik}, + publisher = {Robert Hale}, + title = {The Spirits of the Yellow Leaves}, + year = {1951} +} + +@article{flatz1963, + author = {Flatz, G.}, + journal = {Journal of the Siam Society}, + key = {Flatz (1963)}, + lgcode = {Mlabri [mlab1235]}, + number = {2}, + pages = {161-170}, + title = {3 The Mrabri: Anthropometric, Genetic, and Medical Examinatiigns}, + volume = {51}, + year = {1963} +} + +@article{nimmanahaemindaandhartlandswam1962, + author = {Nimmanahaeminda, K. and Hartland-Swann, J.}, + glottolog_ref = {hh:e:NimmanahaemindaHartland:Phi-Tong}, + journal = {Journal of the Siam Society}, + key = {Nimmanahaeminda and Hartland-Swam (1962)}, + lgcode = {Mlabri [mlab1235]}, + number = {2}, + pages = {165-186}, + title = {Expedition to the "Khon Pa" (or Phi Tong Luang)}, + volume = {50}, + year = {1962} +} + +@article{pookajorn1985, + author = {Pookajorn, S.}, + journal = {World Archaeology}, + key = {Pookajorn (1985)}, + lgcode = {Mlabri [mlab1235]}, + pages = {206-221}, + title = {Ethnoarchaeology with the Phi Tong Luang: Forest Hunters of Northern Thailand}, + volume = {17}, + year = {1985} +} + +@book{pookajorn1988, + author = {Pookajorn, S.}, + address = {Tübingen}, + key = {Pookajorn (1988)}, + lgcode = {Mlabri [mlab1235]}, + publisher = {Archaeologica Venatoria}, + title = {Archaeological Research of the Hoabinhian Culture or Technocomplex and Its Comparison with Ethnoarchaeology of the Phi Tong Luang, a HunterGatherer Group of Thailand}, + year = {1988} +} + +@article{trier1981, + author = {Trier, R.}, + journal = {Current Anthropology}, + key = {Trier (1981)}, + lgcode = {Mlabri [mlab1235]}, + number = {3}, + pages = {291-293}, + title = {The Khon Pa of Northern Thailand: An Enigma}, + volume = {22}, + year = {1981} +} + +@article{velder1963, + author = {Velder, C.}, + journal = {Journal of the Siam Society}, + key = {Velder (1963)}, + lgcode = {Mlabri [mlab1235]}, + number = {2}, + pages = {185-188}, + title = {A Description of the IVIlabri Camp}, + volume = {51}, + year = {1963} +} + +@book{cookandheizer1965, + author = {Cook, S. F. and Heizer, R. F.}, + address = {Berkeley}, + key = {Cook and Heizer (1965)}, + lgcode = {Central Sierra Miwok [cent2140], Chumash [cruz1243], Karuk [karo1304], Maidu [nort2952], Nisenan [nise1244], Shasta [shas1239], Wappo [wapp1239], Wintu [nucl1651]}, + number = {64}, + publisher = {University of California Press}, + series = {Contributions of the University of the California Archaeological Research Facility}, + title = {The Quantitative Approach to the Relation between Population and Settlement Size}, + year = {1965} +} + +@book{dubois1935, + author = {Du Bois, C. A.}, + address = {Berkeley}, + key = {Du Bois (1935)}, + lgcode = {Wintu [nucl1651], Wintu (McCloud River) [nucl1651], Wintu (Sacramento River) [nucl1651], Wintu (Trinity River) [nucl1651]}, + number = {1}, + pages = {1-148}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Wintu Ethnography}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-002.pdf}, + volume = {36}, + year = {1935} +} + +@article{dixon1910, + author = {Dixon, R. B.}, + journal = {Univ. Calif. Publ. Amer. Arch. Ethn.}, + key = {Dixon (1910)}, + lgcode = {Chimariko [chim1301]}, + number = {5}, + pages = {293-380}, + title = {The Chimariko Indians and Language}, + url = {https://archive.org/details/chimarikoindians00dixorich}, + volume = {5}, + year = {1910} +} + +@incollection{faye1923, + author = {Faye, P.L.}, + editor = {Kroeber, A. L.}, + address = {Berkeley}, + booktitle = {Phoebe Apperson Hearst Memorial Volume}, + key = {Faye (1923)}, + lgcode = {Nisenan [nise1244]}, + pages = {35-53}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Notes on the Southern Maidu}, + volume = {20}, + year = {1923} +} + +@article{kroeber1929, + author = {Kroeber, A. L.}, + address = {Berkeley}, + glottolog_ref = {hh:ew:Kroeber:Valley-Nisenan}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Kroeber (1929)}, + lgcode = {Nisenan [nise1244], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244]}, + number = {4}, + pages = {253-290}, + publisher = {University of California Press}, + title = {The Valley Nisenan}, + volume = {24}, + year = {1929} +} + +@incollection{wilsonandtowne1978, + author = {Wilson, N. L. and Towne, A. H.}, + editor = {Heizer, Robert F.}, + address = {Washington}, + glottolog_ref = {hh:e:WilsonTowne:Nisenan}, + key = {Wilson and Towne (1978)}, + lgcode = {Nisenan [nise1244]}, + pages = {387-397}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Nisenan}, + volume = {8}, + year = {1978} +} + +@article{goddard1923, + author = {Goddard, P. E.}, + address = {Berkeley and Los Angeles}, + glottolog_ref = {hh:e:Goddard:Wailaki}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Goddard (1923)}, + lgcode = {Sinkyone [wail1244]}, + pages = {95-109}, + publisher = {Berkeley and Los Angeles: University of California Press}, + title = {Habitat of the Wailaki}, + volume = {20}, + year = {1923} +} + +@article{nomland1935, + author = {Nomland, G. A.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Nomland (1935)}, + lgcode = {Sinkyone [wail1244]}, + pages = {149-178}, + publisher = {University of California Press}, + title = {Sinkyone Notes}, + volume = {36}, + year = {1935} +} + +@book{collierandthalman1991, + author = {Collier, E. T. and Thalman, S. B.}, + key = {Collier and Thalman (1991)}, + lgcode = {Coast Miwok [coas1301]}, + series = {MAPOM Occasional Papers}, + title = {Interviews with Tom Smith and Maria Copa: Isabel Kelley's Ethnographic Notes on the Coast Miwok Indians of Marin and Southern Sonoma Counties California}, + volume = {6}, + year = {1991} +} + +@article{nomland1938, + author = {Nomland, G. A.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Nomland (1938)}, + lgcode = {Mattole-Bear River [matt1238]}, + number = {2}, + pages = {91-125}, + publisher = {University of California Press}, + title = {Bear River Ethnography}, + volume = {2}, + year = {1938} +} + +@phdthesis{gardner1965, + author = {Gardner, P. M.}, + glottolog_ref = {hh:e:Gardner:Paliyans:1965}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Gardner (1965)}, + lgcode = {Paliyans [pali1274]}, + pages = {174}, + school = {Department of Anthropology, University of Pennsylvania, Philadelphia}, + title = {Ecology and social structure in refugee populations: The Paliyans of South India}, + year = {1965} +} + +@incollection{gardner1972, + author = {Gardner, P. M.}, + editor = {Bicchieri, M.}, + address = {New York}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + glottolog_ref = {hh:e:Gardner:Paliyans:1972}, + key = {Gardner (1972)}, + lgcode = {Paliyans [pali1274]}, + pages = {404-447}, + publisher = {Holt, Rinehart & Winston}, + title = {The Paliyans}, + year = {1972} +} + +@incollection{gardner1988, + author = {Gardner, P. M.}, + editor = {T. Ingold, D. Riches and Woodburn, J.}, + address = {Oxford}, + booktitle = {History, Evolution and Social Change}, + key = {Gardner (1988)}, + lgcode = {Paliyans [pali1274]}, + pages = {91-106}, + publisher = {Berg}, + series = {Hunters and Gatherers}, + title = {Pressures for Tamil Propriety in Paliyan Social Organization}, + volume = {1}, + year = {1988} +} + +@article{foster1944, + author = {Foster, G. M.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Foster (1944)}, + lgcode = {Huchnom [yuki1243], Yuki [yuki1243]}, + number = {3}, + pages = {155-244}, + publisher = {University of California Press}, + title = {A Summary of Yuki Culture}, + volume = {5}, + year = {1944} +} + +@article{driver1936, + author = {Driver, H. E.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Driver (1936)}, + lgcode = {Wappo [wapp1239]}, + pages = {179-220}, + publisher = {University of California Press}, + title = {Wappo Ethnography}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-004.pdf}, + volume = {36}, + year = {1936} +} + +@book{waterman1918, + author = {Waterman, T. T.}, + address = {Berkeley}, + key = {Waterman (1918)}, + lgcode = {Yana [yana1271]}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {The Yana Indians}, + volume = {13}, + year = {1918} +} + +@article{barrettandgifford1933, + author = {Barrett, Samuel A. and Gifford, Edward W.}, + journal = {Bulletin of the Milwaukee Public Museum}, + key = {Barrett and Gifford (1933)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]}, + number = {4}, + pages = {117-276}, + title = {Miwok Material Culture: Indian Life of the Yosemite Region}, + url = {http://www.yosemite.ca.us/library/miwok_material_culture/miwok_material_culture.pdf}, + volume = {2}, + year = {1933} +} + +@article{gifford1916, + author = {Gifford, E. W.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1916)}, + lgcode = {Central Sierra Miwok [cent2140]}, + number = {4}, + pages = {139-194}, + publisher = {University of California Press}, + title = {Miwok Moieties}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp012-006.pdf}, + volume = {12}, + year = {1916} +} + +@book{gray1987, + author = {Gray, D.J.}, + address = {Eugene}, + key = {Gray (1987)}, + lgcode = {Takelma [take1257], Tututni [tutu1242]}, + number = {37}, + publisher = {University of Oregon}, + series = {Anthropological Papers}, + title = {The Takelma and Their Athapascan Neighbors}, + year = {1987} +} + +@article{gifford1939, + author = {Gifford, E. W.}, + journal = {Anthropos}, + key = {Gifford (1939)}, + lgcode = {Coast Yuki [yuki1243]}, + pages = {292-375}, + title = {The Coast Yuki}, + volume = {34}, + year = {1939} +} + +@incollection{miller1978, + author = {Miller, V. P.}, + editor = {Heizer, Robert F.}, + address = {Washington}, + booktitle = {California}, + glottolog_ref = {hh:e:Miller:Yuki}, + key = {Miller (1978)}, + lgcode = {Coast Yuki [yuki1243]}, + pages = {249-255}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Yuki, Huchnom, and Coast Yuki}, + volume = {8}, + year = {1978} +} + +@article{drucker1940, + author = {Drucker, P.}, + address = {Berkeley}, + key = {Drucker (1940)}, + lgcode = {Haida (Northern) [nort2938], Haida (Southern) [sout2956], Haihais [oowe1239], Haisla [hais1244], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], Makah [maka1318], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Quileute [quil1240], Tolowa [tolo1259], Tsimshian [nucl1649]}, + number = {4}, + pages = {221-300}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {The Tolowa and Their Southwest Oregon Kin}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-005.pdf}, + volume = {36}, + year = {1940} +} + +@article{dixon1907, + author = {Dixon, R. B.}, + journal = {Bulletin of the American Museum of Natural History}, + key = {Dixon (1907)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]}, + pages = {381-498}, + title = {The Shasta}, + volume = {17}, + year = {1907} +} + +@article{senandsen1955, + author = {Sen, B. K. and Sen, J.}, + glottolog_ref = {stampe:669}, + journal = {Man in India}, + key = {Sen and Sen (1955)}, + lgcode = {Birhor [birh1242]}, + number = {3}, + pages = {169-175}, + title = {Notes on the Birhors}, + volume = {35}, + year = {1955} +} + +@book{williams1974, + author = {Williams, B. J.}, + address = {Washington, D.C.}, + key = {Williams (1974)}, + lgcode = {Birhor [birh1242]}, + publisher = {Society for American Archaeology}, + series = {Memoirs of the Society for American Archaeology}, + title = {A Model of Band Society}, + volume = {29}, + year = {1974} +} + +@article{goddard1904, + author = {Goddard, P. E.}, + address = {Berkeley}, + glottolog_ref = {wals:2151}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Goddard (1904)}, + lgcode = {Hupa [hupa1239]}, + number = {2}, + pages = {89-378}, + publisher = {University of California Press}, + title = {Hupa Texts}, + volume = {1}, + year = {1904} +} + +@incollection{wallace1978a, + author = {Wallace, W. J.}, + editor = {Heizer, Robert F.}, + address = {Washington, D.C.}, + booktitle = {California}, + key = {Wallace (1978a)}, + lgcode = {Hupa [hupa1239]}, + pages = {164-179}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Hupa, Chilula, and Whilkut}, + volume = {8}, + year = {1978} +} + +@article{schenckandgifford1952, + author = {Schenck, S. M. and Gifford, E. W.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Schenck and Gifford (1952)}, + lgcode = {Karuk [karo1304]}, + pages = {377-392}, + publisher = {University of California Press}, + title = {Karok Ethnobotany}, + volume = {13}, + year = {1952} +} + +@book{loud1918, + author = {Loud, L. L.}, + address = {Berkeley}, + key = {Loud (1918)}, + lgcode = {Wiyot [wiyo1248]}, + number = {3}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Ethnogeography and Archaeology of the Wiyot}, + volume = {14}, + year = {1918} +} + +@phdthesis{schalk1978, + author = {Schalk, R. F.}, + howpublished = {University Microiflms, Ann Arbor, Mich.}, + key = {Schalk (1978)}, + lgcode = {Chehalis [lowe1427], Haida [nort2938], Haisla [hais1244], Klallam [clal1241], Kwakwaka'wakw [kwak1269], Makah [maka1318], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Quinault [quin1251], South Tlingit [tlin1245], Stó:lō [chil1281], Tsimshian [nucl1649], Wiyot [wiyo1248], Yurok [yuro1248]}, + school = {Department of Anthropology, University of New Mexico, Albuquerque}, + title = {Foragers of the Northwest Coast of North America: The Ecology of Aboriginal Land Use Systems}, + year = {1978} +} + +@article{dixon1905, + author = {Dixon, R. B.}, + journal = {Bulletin of the American Museum of Natural History}, + key = {Dixon (1905)}, + lgcode = {Foothill Maidu [nort2951], Maidu [nort2952], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244], Valley Maidu [vall1252]}, + pages = {119-346}, + title = {The Northern Maidu}, + volume = {17}, + year = {1905} +} + +@book{heizerandmills1952, + author = {Heizer, R. F. and Mills, J. E.}, + address = {Berkeley}, + key = {Heizer and Mills (1952)}, + lgcode = {Yurok [yuro1248]}, + publisher = {University of California Press}, + title = {The Four Ages of Tsurai: A Documentary History of the Indian Village on Trinidad Bay}, + year = {1952} +} + +@article{kniffen1926, + author = {Kniffen, Fred B.}, + address = {Berkeley}, + journal = {University of California Pubilcations in American Archaeology and Ethnology}, + key = {Kniffen (1926)}, + lgcode = {Achumawi [achu1247], Achumawi (East) [achu1247], Achumawi (West) [achu1247]}, + number = {5}, + pages = {297-332}, + publisher = {University of California Press}, + title = {Achomawi Geography}, + volume = {23}, + year = {1926} +} + +@article{kroeber1962, + author = {Kroeber, A. L.}, + journal = {Reports of the University of California Archaeological Survey}, + key = {Kroeber (1962)}, + lgcode = {Achumawi [achu1247]}, + number = {2}, + pages = {19-58}, + title = {The Nature of Land-Holding Groups in Aboriginal California}, + volume = {56}, + year = {1962} +} + +@book{ray1963, + author = {Ray, V.F.}, + address = {Seattle}, + key = {Ray (1963)}, + lgcode = {Modoc [klam1254]}, + publisher = {University of Washington Press}, + title = {Primitive Pragmatists: The Modoc Indians of Northern California}, + year = {1963} +} + +@book{spier1930, + author = {Spier, L.}, + address = {Berkeley}, + key = {Spier (1930)}, + lgcode = {Klamath [klam1254]}, + pages = {1-338}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnography}, + title = {Klamath Ethnography}, + volume = {30}, + year = {1930} +} + +@book{ehrenfels1952, + author = {Ehrenfels, U. R.}, + address = {Madras}, + glottolog_ref = {hh:e:Ehrenfels:Kadar}, + key = {Ehrenfels (1952)}, + lgcode = {Kadar [kada1242]}, + pages = {319}, + publisher = {Madras: University of Madras}, + series = {Anthropological series}, + title = {Kadar of Cochin}, + volume = {1}, + year = {1952} +} + +@book{aschmann1967, + author = {Aschmann, H.}, + address = {Riverside, Calif.}, + key = {Aschmann (1967)}, + lgcode = {Guaicura [guai1237]}, + publisher = {Manessier}, + title = {The Central Desert of Baja California: Demography and Ecology}, + year = {1967} +} + +@incollection{baegert1863, + author = {Baegert, J.}, + address = {Washington, D.C.}, + booktitle = {Smithsonian Institution Annual Report, 1863}, + key = {Baegert (1863)}, + lgcode = {Guaicura [guai1237]}, + pages = {352-369}, + publisher = {Smithsonian Institution}, + title = {An Account of the Aboriginal Inhabitants of the California Peninsula}, + year = {1863} +} + +@incollection{baegert1865, + author = {Baegert, J.}, + address = {Washington, D.C.}, + booktitle = {Smithsonian Institution Annual Report, 1864}, + key = {Baegert (1865)}, + lgcode = {Guaicura [guai1237]}, + note = {Continued from the Smithsonian report for 1863.}, + pages = {378-399}, + publisher = {Smithsonian Institution}, + title = {An Account of the Aboriginal Inhabitants of the California Peninsula}, + url = {https://archive.org/details/accountofaborigi00baeg}, + year = {1865} +} + +@incollection{smith1978a, + author = {Smith, C. R.}, + editor = {Heizer, R.}, + address = {Washington, D.C.}, + booktitle = {California}, + key = {Smith (1978a)}, + lgcode = {Dene [chip1261], Tümpisa Shoshone (Death Valley) [pana1305]}, + pages = {437-445}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Tubatulabal}, + volume = {8}, + year = {1978} +} + +@book{steward1938, + author = {Steward, J. H.}, + address = {Washington, D.C.}, + key = {Steward (1938)}, + lgcode = {Agaiduka [nort2955], Antelope Valley Shoshoni [west2622], Bannock [bann1248], Beatty [pana1305], Bohogue [nort2955], Eastern Mono [mono1275], Elko Shoshoni [west2622], Ely Shoshoni [west2622], Gosiute [gosi1242], Hukundika [nort2955], Kawaiisu [kawa1283], Kawich Mountain Shoshoni [west2622], Koso [pana1305], Lida Shoshoni [west2622], Mahaguaduka [west2622], Pahvant [utee1244], Railroad Valley Shoshoni [west2622], Southern Paiute (Las Vegas) [sout2969], Spring Valley Shoshoni [west2622], Tubaduka [west2622], Tukudika [nort2955], Tunava (Deep Springs and Fish Lake) [mono1275], Tunava (Deep Springs) [mono1275], Tunava (Fish Lake) [mono1275], Tümpisa Shoshone (Death Valley) [pana1305], Tümpisa Shoshone (Panamint) [pana1305], Tümpisa Shoshone (Saline and Panamint) [pana1305], Tümpisa Shoshone (Saline) [pana1305], Wadaduka [west2622], White Knife Shoshoni [west2622], Wiyambituka [west2622], Yahanduka [west2622]}, + number = {120}, + pages = {1-346}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Basin-Plateau Aboriginal Sociopolitical Groups}, + year = {1938} +} + +@book{bolton1916, + author = {Bolton, H. E. (editor).}, + address = {New York}, + key = {Bolton (1916)}, + lgcode = {Karankawa [kara1289]}, + publisher = {Charles Scribner's Sons}, + title = {Spanish Exploration in the Southwest, 1542-1706}, + year = {1916} +} + +@article{schaedel1949, + author = {Schaedel, R. P.}, + journal = {Southwestern Journal of Anthropology}, + key = {Schaedel (1949)}, + lgcode = {Karankawa [kara1289]}, + pages = {117-137}, + title = {The Karankawa of the Texas Gulf Coast}, + volume = {5}, + year = {1949} +} + +@book{stiles1906, + author = {Stiles, H.}, + address = {Albany, New York}, + key = {Stiles (1906)}, + lgcode = {Karankawa [kara1289]}, + publisher = {J. McDonough}, + title = {Joutel's Journal of La Salle's Last Voyage, 1684-1687}, + year = {1906} +} + +@article{corbusier1886, + author = {Corbusier, Wm. F.}, + journal = {American Antiquarian}, + key = {Corbusier (1886)}, + lgcode = {Yavapai [yava1252]}, + pages = {276-284, 325-339}, + title = {The Apache-Yumas and Apache-Mojaves}, + volume = {8}, + year = {1886} +} + +@article{gifford1932a, + author = {Gifford, E. W.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Gifford (1932a)}, + lgcode = {Kewyipaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]}, + pages = {177-252}, + publisher = {University of California Press}, + title = {The Southeastern Yavapai}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp029-004.pdf}, + volume = {29}, + year = {1932} +} + +@incollection{steward1936, + author = {Steward, J. H.}, + editor = {Lowie, R. H.}, + address = {Berkeley}, + booktitle = {Essays in Anthropology Presented to Alfred Louis Kroeber}, + glottolog_ref = {fabreall2009ann:9325}, + key = {Steward (1936)}, + lgcode = {Koso [pana1305], Tümpisa Shoshone (Saline) [pana1305]}, + pages = {331-350}, + publisher = {University of California Press}, + title = {The economic and social basis of primitive bands}, + year = {1936} +} + +@book{hayden1936, + author = {Hayden, C. (compiler)}, + address = {Washington, D.C.}, + key = {Hayden (1936)}, + lgcode = {Hualapai [wala1270]}, + number = {273}, + publisher = {U.S. Government Printing Office}, + series = {Seventy-Fourth Congress, Second Session, Senate Document}, + title = {Walapai Papers: Historical Reports, Documents, and Extracts from Publications Relating to the Walapai Indians of Arizona}, + year = {1936} +} + +@incollection{hrdlicka1909, + author = {Hrdlička, A.}, + editor = {Williams, S.}, + address = {New York}, + booktitle = {Putnam Anniversary Volume: Anthropological Essays Presented to Fredric Ward Putnam in Honor of His Seventieth Birthday, April 16, 1909}, + key = {Hrdlička (1909)}, + lgcode = {Hualapai [wala1270], Lipan Apache [lipa1241], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Ute [utee1244]}, + pages = {405-426}, + publisher = {AMS Press}, + title = {On the Stature of the Indians of the Southwest and of Northern Mexico}, + year = {1909} +} + +@incollection{kniffen1935, + author = {Kniffen, Fred B.}, + editor = {Kroeber, A. L.}, + address = {Menasha, Wisc.}, + booktitle = {Walapai Ethnography}, + key = {Kniffen (1935)}, + lgcode = {Hualapai [wala1270]}, + number = {42}, + pages = {27-47}, + publisher = {American Anthropological Association}, + series = {American Anthropological Association Memoir}, + title = {Geography}, + year = {1935} +} + +@book{kroeber1935, + editor = {Kroeber, A. L.}, + address = {Menasha, Wisc.}, + key = {Kroeber (1935)}, + lgcode = {Hualapai [wala1270]}, + number = {42, 1}, + publisher = {American Anthropological Association}, + series = {Memoirs of the American Anthropological Association, Contributions from the Laboratory of Anthropology}, + title = {Walapai Ethnography}, + year = {1935} +} + +@incollection{zigmond1986, + author = {Zigmond, M.}, + editor = {d'Azevedo, W. L.}, + address = {Washington, D.C.}, + booktitle = {Great Basin}, + key = {Zigmond (1986)}, + lgcode = {Kawaiisu [kawa1283]}, + pages = {398-411}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Kawaiisu}, + volume = {11}, + year = {1986} +} + +@phdthesis{cadelina1982, + author = {Cadelina, R. V.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Cadelina (1982)}, + lgcode = {Palawan Batak [bata1301]}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + title = {Batak Interhousehold Food Sharing: A Systematic Analysis of Food Management of Marginal Agriculturalists in the Philippines}, + year = {1982} +} + +@article{eder1978, + author = {Eder, J.F.}, + journal = {Human Ecology}, + key = {Eder (1978)}, + lgcode = {Palawan Batak [bata1301]}, + number = {1}, + pages = {55-69}, + title = {The Caloric Returns to Food Collecting: Disruption and Change among the Batak of the Philippine Tropical Forest}, + volume = {6}, + year = {1978} +} + +@article{eder1984, + author = {Eder, J.F.}, + journal = {American Anthropologist}, + key = {Eder (1984)}, + lgcode = {Palawan Batak [bata1301]}, + pages = {837-853}, + title = {The Impact of Subsistence Change on Mobility and Settlement Pattern in a Tropical Forest Foraging Economy: Some Implications for Archeology}, + volume = {86}, + year = {1984} +} + +@book{eder1987, + author = {Eder, J.F.}, + address = {Berkeley}, + key = {Eder (1987)}, + lgcode = {Palawan Batak [bata1301]}, + publisher = {University of California Press}, + title = {On the Road to Tribal Extinction: Depopulation, Deculturation, and Adaptive Well-Being among the Batak of the Philippines}, + year = {1987} +} + +@book{warren1964, + author = {Warren, C. P.}, + address = {Chicago}, + glottolog_ref = {hh:ew:Warren:Batak-Palawan}, + key = {Warren (1964)}, + lgcode = {Palawan Batak [bata1301]}, + number = {3}, + pages = {iv+130}, + publisher = {Philippine Studies Program, Department of Anthropology, University of Chicago}, + series = {Research Series}, + title = {The Batak of Palawan}, + year = {1964} +} + +@incollection{bhanu1982, + author = {Bhanu, B. A.}, + editor = {Misra, P. K. and Malhotra, K. C.}, + address = {Calcutta}, + booktitle = {Nomads in India}, + key = {Bhanu (1982)}, + lgcode = {Cholanaikkan [jenn1240]}, + pages = {215-226}, + publisher = {Anthropological Survey of India}, + title = {The Nomadic Cholanaickans of Kerala: An Analysis of Their Movements}, + year = {1982} +} + +@incollection{bhanu1992, + author = {Bhanu, B. A.}, + editor = {Casimir, M. J. and Rao, A.}, + address = {Oxford}, + booktitle = {Mobility and territoriality: social and spatial boundaries among foragers, fishers, pastoralists and peripatetics}, + key = {Bhanu (1992)}, + lgcode = {Cholanaikkan [jenn1240]}, + pages = {29-54}, + publisher = {Berg}, + title = {Boundaries, obligations and reciprocity: levels of territoriality among the Cholanaickan of south India}, + year = {1992} +} + +@book{kelly1964, + author = {Kelly, I. T.}, + address = {Salt Lake City}, + key = {Kelly (1964)}, + lgcode = {Antarianunts [utee1244], Chemehuevi [chem1251], Panguitch [utee1244], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]}, + number = {69}, + publisher = {University of Utah Press}, + series = {Glen Canyon Series No. 21. University of Utah Anthropological Papers}, + title = {Southern Paiute Ethnography}, + year = {1964} +} + +@incollection{kellyandfowler1986, + author = {Kelly, I.T. and Fowler, C. S.}, + editor = {d'Azevedo, W. L.}, + address = {Washington, D.C.}, + booktitle = {Great Basin}, + key = {Kelly and Fowler (1986)}, + lgcode = {Antarianunts [utee1244], Southern Paiute (Kaibab and Las Vegas) [sout2969]}, + pages = {368-397}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Southern Paiute}, + volume = {11}, + year = {1986} +} + +@incollection{liljebladandfowler1986, + author = {Liljeblad, S. and Fowler, C.}, + editor = {d'Azevedo, W. L.}, + address = {Washington, D.C.}, + booktitle = {Great Basin}, + key = {Liljeblad and Fowler (1986)}, + lgcode = {Eastern Mono [mono1275]}, + pages = {412-434}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Owens Valley Paiute}, + volume = {11}, + year = {1986} +} + +@article{lowie1909, + author = {Lowie, R. H.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Lowie (1909)}, + lgcode = {Agaiduka [nort2955], Eastern Mono [mono1275], Tukudika [nort2955]}, + number = {2}, + pages = {169-306}, + title = {The Northern Shoshone}, + volume = {2}, + year = {1909} +} + +@book{steward1933, + author = {Steward, J. H.}, + address = {Berkeley}, + key = {Steward (1933)}, + lgcode = {Eastern Mono [mono1275]}, + number = {3}, + pages = {233-350}, + publisher = {University of California Press}, + series = {University of California Publications in American Archaeology and Ethnology}, + title = {Ethnography of the Owens Valley Paiute}, + volume = {33}, + year = {1933} +} + +@inbook{thomas1983, + author = {Thomas, D. H.}, + address = {New York}, + chapter = {1. Epistemology}, + key = {Thomas (1983)}, + lgcode = {Kawich Mountain Shoshoni [west2622]}, + number = {1}, + publisher = {American Museum of Natural History}, + series = {Anthropological Papers}, + title = {The Archaeology of Monitor Valley}, + volume = {58}, + year = {1983} +} + +@book{euler1972, + author = {Euler, R.C.}, + address = {Phoenix}, + key = {Euler (1972)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]}, + series = {Indian Tribal Series}, + title = {The Paiute People}, + year = {1972} +} + +@book{eulerandfowler1966, + author = {Euler, R.C. and Fowler, C.}, + address = {Salt Lake City}, + key = {Euler and Fowler (1966)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]}, + publisher = {University of Utah Press}, + series = {Glen Canyon Series No. 28., University of Utah Anthropological Papers No. 78.}, + title = {Southern Paiute Ethnohistory}, + year = {1966} +} + +@phdthesis{knack1975, + author = {Knack, M. C.}, + howpublished = {University Microfilms, Ann Arbor}, + key = {Knack (1975)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]}, + school = {Department of Anthropology, University of Michigan, Ann Arbor}, + title = {Contemporary Southern Paiute Household Structure and Bilateral Kinship Clusters}, + year = {1975} +} + +@article{stoffleandevans1978, + author = {Stoffle, R. W. and Evans, M. J.}, + journal = {Ethnohistory}, + key = {Stoffle and Evans (1978)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]}, + pages = {173-197}, + title = {Resource Competition and Population Change: A Kaibab Paiute Ethnohistorical Case}, + volume = {23}, + year = {1978} +} + +@book{davis1965, + author = {Davis, E. L.}, + address = {Salt Lake City}, + key = {Davis (1965)}, + lgcode = {Mono Lake Northern Paiute [sout2967]}, + number = {75}, + publisher = {University of Utah Press}, + series = {University of Utah Anthropological Papers}, + title = {An Ethnography of the Kuzedika Paiute of Mono Lake, Mono County, California}, + year = {1965} +} + +@incollection{fowlerandliljeblad1986, + author = {Fowler, C. S. and Liljeblad, S.}, + editor = {d'Azevedo, W. L.}, + address = {Washington, D.C.}, + booktitle = {Great Basin}, + key = {Fowler and Liljeblad (1986)}, + lgcode = {Kuyuidokado [sout2967], Tunava (Deep Springs) [mono1275]}, + pages = {435-465}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Northern Paiute}, + volume = {11}, + year = {1986} +} + +@incollection{gouldandplew1996, + author = {Gould, R. T. and Plew, M. G.}, + editor = {Plew, M. G.}, + address = {Boise, Idaho}, + booktitle = {Prehistoric Hunter-Gatherer Fishing Strategies}, + key = {Gould and Plew (1996)}, + lgcode = {Agaiduka [nort2955]}, + pages = {64-83}, + publisher = {Department of Anthropology, Boise State University}, + title = {Late Archaic Fishing along the Middle Snake River, Southwestern Idaho}, + year = {1996} +} + +@misc{gouldperscomm1992, + author = {Gould, R. A.}, + howpublished = {pers. comm.}, + key = {Gould pers. comm. (1992)}, + lgcode = {Agaiduka [nort2955]} +} + +@article{murphyandmurphy1960, + author = {Murphy, R. F. and Murphy, Y.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Murphy and Murphy (1960)}, + lgcode = {Agaiduka [nort2955], Bannock [bann1248], Bohogue [nort2955], Wind River Eastern Shoshone [nort2955]}, + number = {7}, + pages = {293-338}, + publisher = {University of California Press}, + title = {Shoshone-Bannock Subsistence and Society}, + volume = {16}, + year = {1960} +} + +@article{boas1899, + author = {Boas, F.}, + journal = {American Anthropologist}, + key = {Boas (1899)}, + lgcode = {Bannock [bann1248], Kuyuidokado [sout2967], Timponogas [utee1244], Tukudika [nort2955], Uintah Ute [utee1244], Uncompahgre Ute [utee1244], White Knife Shoshoni [west2622]}, + pages = {751-758}, + title = {Anthropometry of the Shoshonean Tribes}, + volume = {1}, + year = {1899} +} + +@incollection{fowler1966, + author = {Fowler, D.}, + editor = {d'Azevedo, W. L.}, + address = {Reno}, + booktitle = {The Current Status of Anthropological Research in the Great Basin: 1964}, + key = {Fowler (1966)}, + lgcode = {Kuyuidokado [sout2967]}, + pages = {57-73}, + publisher = {Desert Research Institute, University of Nevada}, + series = {Publications in the Social Sciences}, + title = {Great Basin Social Organization}, + volume = {1}, + year = {1966} +} + +@incollectin{callawayetal1986, + author = {Callaway, D. G. and Janetski, J. C. and Stewart., 0. C.}, + editor = {d'Azevedo, W. L.}, + address = {Washington, D.C.}, + booktitle = {Great Basin}, + key = {Callaway et al. (1986)}, + lgcode = {Southern Ute [utee1244], Timponogas [utee1244]}, + pages = {336-367}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Ute}, + volume = {11}, + year = {1986} +} + +@phdthesis{janetski1983, + author = {Janetski, J. C.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Janetski (1983)}, + lgcode = {Timponogas [utee1244]}, + school = {Department of Anthropology, University of Utah, Salt Lake City}, + title = {The Western Ute of Utah Valley: An Ethnohistoric Model of Lakeside Adaptation}, + year = {1983} +} + +@incollection{bird1983, + author = {Bird, N.}, + editor = {Robb, P.}, + address = {London}, + booktitle = {Rural South Asia: Linkages, Change and Develop-ment}, + key = {Bird (1983)}, + lgcode = {Nayaka [jenn1240]}, + pages = {57-88}, + publisher = {Curzon Press}, + title = {Wage-Gathering: SocioPOThoomic Changes and the Case of the Food-Gatheier Naikens of South India}, + year = {1983} +} + +@incollection{birddavid1987, + author = {Bird-David, N.}, + editor = {Hockings, P.}, + address = {Berlin}, + booktitle = {Dimensions of Social Life: Essays in Honor of David G. Mandelbaum}, + key = {Bird-David (1987)}, + lgcode = {Nayaka [jenn1240]}, + pages = {151-166}, + publisher = {Mouton de Gruyter}, + title = {Single Persons and Social Cohesion in a HunterGatherer Society}, + year = {1987} +} + +@book{fowler1992, + author = {Fowler, C. S.}, + address = {Washington, D.C.}, + key = {Fowler (1992)}, + lgcode = {Toedokado [sout2967]}, + number = {5}, + publisher = {U.S. Department of Interior, Fish and Wildlife Service, Region 1. U.S. Government Printing Office}, + series = {Cultural Resource Series}, + title = {In the Shadow of Fox Peak: An Ethnography of the Cattail-Eater Northern Paiute People of Stillwater Marsh}, + year = {1992} +} + +@book{riddell1960, + author = {Riddell, F. A.}, + address = {Carson City}, + key = {Riddell (1960)}, + lgcode = {Wadatkuht [sout2967]}, + number = {4}, + pages = {1-87}, + publisher = {Nevada State Museum}, + series = {Nevada State Museum Anthropological Papers}, + title = {Honey Lake Paiute Ethnography}, + year = {1960} +} + +@book{ewers1955, + author = {Ewers, John C.}, + address = {Washington, D.C.}, + key = {Ewers (1955)}, + lgcode = {Bitterroot Salish [kali1309], Blackfoot [pieg1239], Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa Apache [kiow1264], Piegan [pieg1239], White Knife Shoshoni [west2622]}, + number = {159}, + pages = {1-374}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Horse in Blackfoot Indian Culture}, + year = {1955} +} + +@incollection{harris1940, + author = {Harris, J.}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Harris (1940)}, + lgcode = {White Knife Shoshoni [west2622]}, + pages = {39-166}, + publisher = {D. Appleton-Century}, + title = {The White Knife Shoshoni of Nevada}, + year = {1940} +} + +@book{lowie1924, + author = {Lowie, R. H.}, + address = {New York}, + key = {Lowie (1924)}, + lgcode = {Bear Creek Northern Paiute [nort1551], Chemehuevi [chem1251], Kuyuidokado [sout2967], Moapa [sout2969], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Ute [utee1244], Uintah Ute [utee1244], Uncompahgre Ute [utee1244], White Knife Shoshoni [west2622], Wind River Eastern Shoshone [nort2955]}, + number = {3}, + pages = {185-314}, + publisher = {American Museum of Natural History}, + series = {Anthropological Papers}, + title = {Notes on Shoshonean Ethnography}, + volume = {20}, + year = {1924} +} + +@incollection{whiting1964, + author = {Whiting, J. W. M.}, + editor = {Goodenough, W. H.}, + address = {New York}, + booktitle = {Explorations in Cultural Anthropology}, + key = {Whiting (1964)}, + lgcode = {Andamanese [akab1249], Hare [nort2942], North Fork Mono [mono1275], Semang [kens1248]}, + pages = {511-544}, + publisher = {McGraw-Hill}, + title = {Effects of Climate on Certain Cultural Practices}, + year = {1964} +} + +@book{batchelor1927, + author = {Batchelor, J.}, + address = {Tokyo}, + key = {Batchelor (1927)}, + lgcode = {Ainu [ainu1240]}, + publisher = {Kyobunkwan}, + title = {Ainu Life and Lore: Echos of a Departing Race}, + year = {1927} +} + +@incollection{hitchcock1891, + author = {Hitchcock, R.}, + address = {Washington}, + booktitle = {Report of the U.S. National Museum for 1889-1890}, + key = {Hitchcock (1891)}, + lgcode = {Ainu [ainu1240]}, + pages = {428-502}, + publisher = {U.S. Government Printing Office}, + title = {The Ainos of Yezo, Japan}, + year = {1891} +} + +@book{landor1893, + author = {Landor, A. H. S.}, + address = {London}, + key = {Landor (1893)}, + lgcode = {Ainu [ainu1240]}, + publisher = {John Murray}, + title = {Alone with the Hairy Ainu, or 3800 Miles on a Pack Saddle in Yezo and a Cruise to the Kurile Islands}, + year = {1893} +} + +@book{watanabe1964a, + author = {Watanabe, H.}, + address = {Tokyo}, + key = {Watanabe (1964a)}, + lgcode = {Ainu [ainu1240]}, + publisher = {University of Tokyo Press}, + title = {The Ainu: A Study of Ecology and the System-of Social Solidarity between Man and Nature in Relation to Group Structure}, + year = {1964} +} + +@book{watanabe1972, + author = {Watanabe, H.}, + address = {Seattle}, + key = {Watanabe (1972)}, + lgcode = {Ainu [ainu1240]}, + number = {54}, + publisher = {University of Washington Press}, + series = {Monographs of the American Ethnological Society}, + title = {The Ainu Ecosystem, Environment and Group Structure}, + year = {1972} +} + +@book{smith1974, + author = {Smith, A. M.}, + address = {Sante Fe}, + key = {Smith (1974)}, + lgcode = {Southern Ute [utee1244], Uintah Ute [utee1244], Uncompahgre Ute [utee1244]}, + number = {17}, + publisher = {Museum of New Mexico Press}, + series = {Papers in Anthropology}, + title = {Ethnography of the Northern Utes}, + year = {1974} +} + +@book{dazevedo1963, + editor = {D'Azevedo, W. L.}, + address = {Salt Lake City}, + key = {d'Azevedo (1963)}, + lgcode = {Washo [wash1253]}, + number = {67}, + publisher = {University of Utah Press}, + series = {University of Utah Anthropological Papers}, + title = {The Washo Indians of California and Nevada}, + year = {1963} +} + +@book{downs1966, + author = {Downs, J. F.}, + address = {New York}, + key = {Downs (1966)}, + lgcode = {Washo [wash1253]}, + publisher = {Holt, Rinehart and Winston}, + title = {The Two Worlds of the Washo: An Indian tribe of California and Nevada}, + year = {1966} +} + +@book{price1962, + author = {Price, J.A.}, + address = {Carson City}, + key = {Price (1962)}, + lgcode = {Washo [wash1253]}, + number = {6}, + publisher = {Nevada State Museum}, + series = {Nevada State Museum Anthropological Papers}, + title = {Washo Economy}, + year = {1962} +} + +@phdthesis{brink1969, + author = {Brink, P. J.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Brink (1969)}, + lgcode = {Kidutokado [nort1551]}, + school = {Department of Anthropology, Boston University, Boston}, + title = {The Pyramid Lake Paiute of Nevada}, + year = {1969} +} + +@article{kelly1932, + author = {Kelly, I.T.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Kelly (1932)}, + lgcode = {Kidutokado [nort1551]}, + number = {3}, + pages = {67-210}, + publisher = {University of California Press}, + title = {Ethnography of the Surprise Valley Paiute}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-004.pdf}, + volume = {31}, + year = {1932} +} + +@book{shimkin1947, + author = {Shimkin, D. B.}, + address = {Berkeley}, + key = {Shimkin (1947)}, + lgcode = {Wind River Eastern Shoshone [nort2955]}, + number = {4}, + publisher = {University of California Press}, + series = {Anthropological Records}, + title = {Wind River Shoshone Ethnogeography}, + volume = {5}, + year = {1947} +} + +@incollection{steward1974a, + author = {Steward, J. H.}, + address = {New York}, + booktitle = {Ute Indians}, + key = {Steward (1974a)}, + lgcode = {Wind River Eastern Shoshone [nort2955]}, + pages = {366-406}, + publisher = {Garland}, + series = {American Indian Ethnohistory: California and Basin Plateau Indians}, + title = {Aboriginal and Historical Groups of the Ute Indians of Utah: An Analysis}, + volume = {I}, + year = {1974} +} + +@book{qiu1983, + author = {Qiu, P}, + address = {Beijing}, + key = {Qiu (1983)}, + lgcode = {Orogens [oroq1238]}, + publisher = {Foreign Languages Press}, + title = {The Ormens—China's Nomadic Hunters}, + year = {1983} +} + +@misc{steward1974b, + author = {Steward, J. H.}, + address = {New York}, + booktitle = {Ute Indians}, + key = {Steward (1974b)}, + lgcode = {Uintah Ute [utee1244], Uncompahgre Ute [utee1244]}, + note = {Supplement to Aboriginal and Historic Groups of the Ute Indians of Utah: An Analysis}, + pages = {105-159}, + publisher = {Garland}, + series = {American Indian Ethnohistory: California and Basin Plateau Indians}, + title = {Native Components of the White River Ute Indians}, + volume = {I}, + year = {1974} +} + +@article{stewart1941, + author = {Stewart, Omer C.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Stewart (1941)}, + lgcode = {Atsakudokwa [nort1551], Kidutokado [nort1551], Kuyuidokado [sout2967], Sawakudokwa [nort1551], Tagotoka [nort1551], Toedokado [sout2967], Uintah Ute [utee1244], Wadadokado [nort1551], Washo [wash1253]}, + number = {3}, + pages = {361-446}, + publisher = {University of California Press}, + title = {Culture Element Distributions. XIV: Northern Paiute}, + volume = {4}, + year = {1941} +} + +@book{whiting1950, + author = {Whiting, B. B.}, + address = {New York}, + key = {Whiting (1950)}, + lgcode = {Wadadokado [nort1551]}, + number = {15}, + pages = {1-110}, + publisher = {Viking Fund}, + series = {Viking Fund Publications in Anthropology}, + title = {Paiute Sorcery}, + year = {1950} +} + +@phdthesis{lee1967, + author = {Lee, P. T.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Lee (1967)}, + lgcode = {Ket [kett1243]}, + school = {Department of Anthropology, Stanford University}, + title = {The Ket: A Contribution to the Ethnography of a Central Siberian Tribe}, + year = {1967} +} + +@article{shimkin1939, + author = {Shimkin, D. B.}, + journal = {Ethnos}, + key = {Shimkin (1939)}, + lgcode = {Ket [kett1243]}, + pages = {147-176}, + title = {A Sketch of the Ket, or Yenisei "Ostyak"}, + volume = {4}, + year = {1939} +} + +@misc{basehartperscomm1972, + author = {Basehart, H. W.}, + howpublished = {Personal communication}, + key = {Basehart pers. comm. (1972)}, + lgcode = {Lipan Apache [lipa1241]}, + year = {1972} +} + +@book{swanton1952, + author = {Swanton, J. R.}, + address = {Washington, D.C.}, + key = {Swanton (1952)}, + lgcode = {Gros Ventre [gros1243], Lipan Apache [lipa1241]}, + number = {145}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Indian Tribes of North America}, + year = {1952} +} + +@article{goldstein1934, + author = {Goldstein, M. S.}, + journal = {American Journal of Physical Anthropology}, + key = {Goldstein (1934)}, + lgcode = {Comanche [coma1245]}, + pages = {289-319}, + title = {Anthropometry of the Comanches}, + volume = {19}, + year = {1934} +} + +@book{wallaceandhoebel1952, + author = {Wallace, E. and Hoebel, E. A.}, + address = {Norman}, + key = {Wallace and Hoebel (1952)}, + lgcode = {Comanche [coma1245]}, + publisher = {University of Oklahoma Press}, + title = {The Comanches, Lords of the South Plains}, + year = {1952} +} + +@misc{basehart1972, + author = {Basehart, H. W.}, + howpublished = {Manuscript, Department of Anthropology, Southern Methodist University, Dallas}, + key = {Basehart (1972)}, + lgcode = {Chiricahua [mesc1238]}, + title = {Band Organization and Leadership among the Mescalero Apache}, + year = {1972} +} + +@article{morice1906b, + author = {Morice, A. G.}, + glottolog_ref = {anla:CA891M1906}, + journal = {Anthropos}, + key = {Morice (1906b)}, + lgcode = {Chiricahua [mesc1238]}, + pages = {483-508}, + title = {The Great Dene Race: The Southern Denes}, + volume = {1}, + year = {1906} +} + +@incollection{opler1937, + author = {Opler, M.}, + editor = {Eggan, F.}, + address = {Chicago}, + booktitle = {Social Anthropology of North American Tribes: Essays in Social Organization, Law and Religion}, + key = {Opler (1937)}, + lgcode = {Chiricahua [mesc1238], Chiricahua (Huachuca) [mesc1238], Chiricahua (Warm Springs) [mesc1238]}, + note = {Second Edition 1955}, + pages = {173-242}, + publisher = {University of Chicago Press}, + title = {An Outline of Chiricahua Apache Social Organization}, + year = {1937} +} + +@book{bamforth1988, + author = {Bamforth, D. B.}, + address = {New York}, + key = {Bamforth (1988)}, + lgcode = {Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa [kiow1266], Kiowa Apache [kiow1264], Plains Cree [plai1258], Sarcee [sars1236]}, + publisher = {Plenum Press}, + title = {Ecology and Human Organization on the Great Plains}, + year = {1988} +} + +@book{mishkin1940, + author = {Mishkin, B.}, + address = {New York}, + key = {Mishkin (1940)}, + lgcode = {Kiowa [kiow1266]}, + publisher = {J. J. Augustine}, + series = {Monographs of the American Ethnological Society}, + title = {Rank and Warfare among the Plains Indians}, + volume = {3}, + year = {1940} +} + +@book{newcomb1961, + author = {Newcomb, W. W.}, + address = {Austin}, + key = {Newcomb (1961)}, + lgcode = {Kiowa [kiow1266]}, + publisher = {University of Texas Press}, + title = {The Indians of Texas}, + year = {1961} +} + +@book{bushnell1922, + author = {Bushnell and I., D. and Jr.}, + address = {Washington, D.C.}, + key = {Bushnell (1922)}, + lgcode = {Assiniboine [assi1247], Blackfoot [pieg1239], Cheyenne [chey1247], Plains Cree [plai1258], Teton [lako1247]}, + number = {77}, + publisher = {Smithsonian Institution}, + series = {Bureau American Ethnology Bulletin}, + title = {Villages of the Algonquian, iauian and Caddoan Tribes West of the Mississippi}, + year = {1922} +} + +@incollection{gussow1954, + author = {Gussow, Z.}, + editor = {Horr, D.}, + address = {New York}, + booktitle = {American Indian Ethnohistory: Plains Indians}, + key = {Gussow (1954)}, + lgcode = {Cheyenne [chey1247]}, + pages = {27-96}, + publisher = {Garland}, + title = {Cheyenne and Arapaho: Aboriginal Occupations}, + year = {1954} +} + +@book{moore1987, + author = {Moore, J. H.}, + address = {Lincoln}, + key = {Moore (1987)}, + lgcode = {Cheyenne [chey1247]}, + publisher = {University of Nebraska Press}, + title = {The Cheyenne Nation: A Social and Demographic History}, + year = {1987} +} + +@article{moore1991, + author = {Moore, J. H.}, + journal = {American Indian Quarterly}, + key = {Moore (1991)}, + lgcode = {Cheyenne [chey1247]}, + pages = {312-328}, + title = {The Developmental Cycle of Cheyenne Polygyny}, + volume = {15}, + year = {1991} +} + +@incollection{eggan1937, + author = {Eggan, F.}, + editor = {Eggan, F.}, + address = {Chicago}, + booktitle = {Social Anthropology of North American Tribes: Essays in Social Organization, Law and Religion}, + key = {Eggan (1937)}, + lgcode = {Arapaho [arap1274]}, + pages = {35-98}, + publisher = {University of Chicago Press}, + title = {The Cheyenne and Arapaho Kinship System}, + year = {1937} +} + +@book{flannery1953, + author = {Flannery, R.}, + address = {Washington, D.C.}, + key = {Flannery (1953)}, + lgcode = {Arapaho [arap1274], Gros Ventre [gros1243]}, + pages = {1-221}, + publisher = {Catholic University of America Press}, + series = {Catholic University of America Anthropological Series}, + title = {The Gros Ventres of Montana, Pt. I: Social Life}, + url = {https://hdl.handle.net/2027/uc1.32106008103498}, + volume = {15}, + year = {1953} +} + +@book{gussowetal1974, + author = {Gussow, Z. and Hafen, L. R. and Ekireli, A. A.}, + address = {New York}, + key = {Gussow et al. (1974)}, + lgcode = {Arapaho [arap1274]}, + publisher = {Garland}, + series = {American Indian Ethnohistory: Plains Indians Series}, + title = {Cheyenne and Arapaho: Commission Findings, Indian Claims Commission}, + year = {1974} +} + +@book{hilger1952, + author = {Hilger, M. I.}, + address = {Washington, D.C.}, + key = {Hilger (1952)}, + lgcode = {Arapaho [arap1274]}, + number = {148}, + pages = {1-253}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Arapaho Child Life and Its Cultural Background}, + year = {1952} +} + +@incollection{denig1953, + author = {Denig, E. T.}, + editor = {Ewers, J. C.}, + address = {Washington, D.C.}, + booktitle = {Smithsonian Anthropological Papers No. 33. Bureau of Amerian Ethnology Bulletin No. 151}, + key = {Denig (1953)}, + lgcode = {Crow [crow1244]}, + pages = {1-74}, + publisher = {Smithsonian Institution}, + title = {Of the Crow Nation}, + year = {1953} +} + +@book{denig1961, + author = {Denig, E. T.}, + editor = {Ewers, J. C.}, + address = {Norman}, + key = {Denig (1961)}, + lgcode = {Crow [crow1244]}, + publisher = {University of Oklahoma Press}, + title = {Five Indian Tribes of the Upper Missouri: Sioux, Arickaras, Assiniboines, Crees, Crows}, + year = {1961} +} + +@book{kelly1995, + author = {Kelly, R.L.}, + address = {Washington, D.C.}, + key = {Kelly (1995)}, + lgcode = {Crow [crow1244], Sanpoil [sanp1257], Squamish [squa1248], Twana [twan1247]}, + publisher = {Smithsonian Institution}, + title = {The Foraging Spectrum: Diversity in Hunter-Gatherer Lifeways}, + year = {1995} +} + +@book{culbertson1952, + author = {Culbertson, T. A.}, + editor = {McDermott, J. F.}, + address = {Washington, D.C.}, + key = {Culbertson (1952)}, + lgcode = {Assiniboine [assi1247], Gros Ventre [gros1243], Teton [lako1247]}, + number = {147}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {Journal of an Expedition to the Mauvaises Terres and the Upper Missouri in 1850}, + year = {1952} +} + +@book{sullivan1920, + author = {Sullivan, L. R.}, + address = {New York}, + key = {Sullivan (1920)}, + lgcode = {Teton [lako1247]}, + number = {3}, + publisher = {American Museum of Natural History}, + series = {Anthropological Papers}, + title = {Anthropometry of the Siouan Tribes}, + volume = {23}, + year = {1920} +} + +@misc{shternberg1933, + author = {Shternberg, L. I.}, + address = {New Haven, Conn.}, + key = {Shternberg (1933)}, + lgcode = {Nivkh [gily1242]}, + note = {translated by L. Bromwich and N. Ward}, + publisher = {Human Relations Area Files}, + title = {The Gilyak, Orochi, Negidal, Ainu: Articles and Materials}, + year = {1933} +} + +@article{chamberlain1892, + author = {Chamberlain, A. F.}, + journal = {Reports of the British Association forthe Advancement of Science}, + key = {Chamberlain (1892)}, + lgcode = {Kutenai [kute1249], Shuswap [shus1248]}, + pages = {539-617}, + title = {Report on the Kootenay Indians of South-Eastern British Columbia}, + volume = {62}, + year = {1892} +} + +@book{turneyhigh1941, + author = {Turney-High, H. H.}, + address = {Menasha, Wisc.}, + key = {Turney-High (1941)}, + lgcode = {Kutenai [kute1249]}, + number = {56}, + pages = {1-202}, + publisher = {American Anthropological Association}, + series = {Memoirs of the American Anthropological Association}, + title = {Ethnography of the Kutenai}, + year = {1941} +} + +@article{skinner1914, + author = {Skinner, A.}, + address = {New York}, + journal = {Anthropological Papers}, + key = {Skinner (1914)}, + lgcode = {Bungi [west1510]}, + number = {6}, + pages = {475-511}, + publisher = {American Museum of Natural History}, + title = {Political Organization, Cults, and Ceremonies of the Plains-Ojibway and Plains-Cree Indians}, + url = {http://hdl.handle.net/2246/190}, + volume = {11}, + year = {1914} +} + +@article{dejong1912, + author = {DeJong, J.}, + journal = {Internationales Archiv Ethnographie}, + key = {DeJong (1912)}, + lgcode = {Piegan [pieg1239]}, + pages = {191-197}, + title = {Social Organization of the Southern Peigans}, + volume = {20}, + year = {1912} +} + +@article{kehoe1993, + author = {Kehoe, A. B.}, + journal = {Research in Economic Anthropology}, + key = {Kehoe (1993)}, + lgcode = {Piegan [pieg1239]}, + pages = {87-105}, + title = {How the Ancient Peians Lived}, + volume = {14}, + year = {1993} +} + +@book{ewers1971, + author = {Ewers, John C.}, + address = {Norman}, + key = {Ewers (1971)}, + lgcode = {Blackfoot [pieg1239]}, + publisher = {University of Oklahoma Press}, + title = {The Blackfeet: Raiders on The Northwestern Plains}, + year = {1971} +} + +@book{lewis1973, + author = {Lewis, 0}, + address = {Seattle}, + key = {Lewis (1973)}, + lgcode = {Blackfoot [pieg1239]}, + publisher = {University of Washington Press}, + series = {Monographs of the American Ethnological Society}, + title = {The Effects of White Contact upon Blackfoot Culture with Special Reference to the Role of the Fur Trade}, + volume = {6}, + year = {1973} +} + +@phdthesis{robbins1971, + author = {Robbins, L. A.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Robbins (1971)}, + lgcode = {Blackfoot [pieg1239]}, + school = {Department of Anthropology, University of Oregon, Eugene}, + title = {Blackfeet Families and Households}, + year = {1971} +} + +@article{wissler1911, + author = {Wissler, C.}, + address = {New York}, + journal = {Anthropological Papers}, + key = {Wissler (1911)}, + lgcode = {Blackfoot [pieg1239], Kainai [bloo1239], Piegan [pieg1239]}, + number = {1}, + pages = {1-64}, + publisher = {American Museum of Natural History}, + title = {The Social Life of the Blackfoot Indians}, + volume = {7}, + year = {1911} +} + +@incollection{denig1930, + author = {Denig, E. T.}, + editor = {Hewitt, J. N. B.}, + address = {Washington, D.C.}, + booktitle = {Forty-Sixth Annual Report of the Bureau of American Ethnology}, + key = {Denig (1930)}, + lgcode = {Assiniboine [assi1247]}, + pages = {375-628}, + publisher = {Smithsonian Institution}, + title = {Indian Tribes of the Upper Missouri}, + year = {1930} +} + +@incollection{lowrieandclarke1832, + editor = {Lowrie, W and Clarke, M. St. C.}, + address = {Washington, D.C.}, + booktitle = {American State Papers: Documents, Legislative and Executive, of the Congress of the United States. Commencing March 3, 1789, and ending March 3, 1815, Vol. IV}, + key = {Lowrie and Clarke (1832)}, + lgcode = {Assiniboine [assi1247]}, + pages = {705-743}, + publisher = {Gales and Seaton}, + title = {Indian Affairs—Lewis and Clarke's Expedition Communicated to Congress, Feb. 19, 1806-9th Congress 1st Session}, + year = {1832} +} + +@article{mandelbaum1940, + author = {Mandelbaum, D. G.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Mandelbaum (1940)}, + lgcode = {Plains Cree [plai1258]}, + number = {2}, + pages = {155-316}, + title = {The Plains Cree}, + volume = {37}, + year = {1940} +} + +@book{jochelson191926, + author = {Jochelson, W.}, + key = {Jochelson (1919-26)}, + lgcode = {Yukaghir [nort2745]}, + pages = {1-469}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Yukaghir and Yukaghirized Tungus}, + url = {http://hdl.handle.net/2246/26}, + volume = {13}, + year = {1919-26} +} + +@article{kreynovich1979, + author = {Kreynovich, E. A.}, + journal = {Arctic Anthropology}, + key = {Kreynovich (1979)}, + lgcode = {Yukaghir [nort2745]}, + pages = {187-216}, + title = {The Tundra Yukagirs at the Turn of the Century}, + volume = {16}, + year = {1979} +} + +@book{jenness1938, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1938)}, + lgcode = {Sarcee [sars1236]}, + number = {90}, + pages = {1-98}, + publisher = {Canada Department of Mines and Resources}, + series = {National Museums of Canada Bulletin}, + title = {The Sarcee Indians of Alberta}, + year = {1938} +} + +@incollection{drucker1990, + author = {Drucker, P.}, + editor = {Suttles, W.}, + address = {Washington, D.C.}, + booktitle = {Northwest Coast}, + key = {Drucker (1990)}, + lgcode = {Squamish [squa1248]}, + pages = {453-475}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Central Coast Salish}, + volume = {7}, + year = {1990} +} + +@incollection{suttles1990, + author = {Suttles, Wayne}, + editor = {Suttles, Wayne}, + address = {Washington D.C.}, + booktitle = {Northwest Coast}, + glottolog_ref = {hh:e:Suttles:Central-Coast-Salish}, + key = {Suttles (1990)}, + lgcode = {Cowichan [cowi1241], Klallam [clal1241], Squamish [squa1248]}, + pages = {453-476}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Central Coast Salish}, + volume = {7}, + year = {1990} +} + +@article{boas1891a, + author = {Boas, F.}, + journal = {Annual Report of the British Association for the Advancement of Science}, + key = {Boas (1891a)}, + lgcode = {Alsea [alse1251]}, + pages = {424-449}, + title = {Physical Characteristics of the Tribes of the North Pacific Coast}, + volume = {61}, + year = {1891} +} + +@article{drucker1939, + author = {Drucker, P.}, + address = {Berkeley}, + journal = {University of California Publications in American Archaeology and Ethnology}, + key = {Drucker (1939)}, + lgcode = {Alsea [alse1251]}, + number = {7}, + pages = {81-101}, + publisher = {University of California Press}, + title = {Contributions to Alsea Ethnography}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp035-009.pdf}, + volume = {35}, + year = {1939} +} + +@article{chard1963, + author = {Chard, C. S.}, + journal = {Arctic Anthropology}, + key = {Chard (1963)}, + lgcode = {Nganasan [ngan1291]}, + pages = {105-121}, + title = {The Nganasan—Wild Reindeer Hunters of the Taimyr Peninsula}, + volume = {1}, + year = {1963} +} + +@book{popov1966, + author = {Popov, A. A.}, + address = {Bloomington and the Hague.}, + key = {Popov (1966)}, + lgcode = {Nganasan [ngan1291]}, + note = {translated by E. K. Ristinen}, + publisher = {Indiana University Press and Mouton}, + series = {The Uralic and Altaic Series}, + title = {The Nganasan: The Material Culture of the Tavgi Samoyeds}, + volume = {56}, + year = {1966} +} + +@incollection{smith1940a, + author = {Smith, M. W.}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Smith (1940a)}, + lgcode = {Puyallup [sout2965]}, + pages = {3-36}, + publisher = {D. Appleton—Century}, + title = {The Puyallup of Washington}, + year = {1940} +} + +@article{smith1940b, + author = {Smith, N. W.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Smith (1940b)}, + lgcode = {Puyallup [sout2965]}, + pages = {1-336}, + title = {The Puyallup-Nisqually}, + volume = {32}, + year = {1940} +} + +@article{eells1884, + author = {Eells, M.}, + journal = {American Antiquarian and Oriental Journal}, + key = {Eells (1884)}, + lgcode = {Klallam [clal1241], Twana [twan1247]}, + pages = {35-38}, + title = {Census of the Challam and Twana Indians of Washington}, + volume = {6}, + year = {1884} +} + +@article{eells1887a, + author = {Eells, M.}, + journal = {American Antiquarian and Oriental Journal}, + key = {Eells (1887a)}, + lgcode = {Twana [twan1247]}, + pages = {271-276}, + title = {Decrease of Population among the Indians of Puget Sound}, + volume = {9}, + year = {1887} +} + +@book{elmendorf1960, + author = {Elmendorf, W. W.}, + address = {Pullman}, + key = {Elmendorf (1960)}, + lgcode = {Twana [twan1247], Yurok [yuro1248]}, + pages = {1-576}, + publisher = {Washington State University}, + series = {Research Studies Monographic Supplement}, + title = {The Structure of Twana Culture with Comparative Notes on the Structure of Yurok Culture}, + volume = {28}, + year = {1960} +} + +@incollection{taylor1974a, + author = {Taylor, H. C.}, + editor = {Taylor, H. C.}, + address = {New York}, + booktitle = {Oregon Indians}, + key = {Taylor (1974a)}, + lgcode = {Chehalis [lowe1427], Tillamook [till1254]}, + publisher = {Garland}, + title = {Anthropological Investigation of the Tillamook Indians}, + volume = {I}, + year = {1974} +} + +@incollection{taylor1974b, + author = {Taylor, H. C.}, + editor = {Taylor, H. C.}, + address = {New York}, + booktitle = {Coast Salish and Western Washington Indians}, + key = {Taylor (1974b)}, + lgcode = {Chehalis [lowe1427]}, + pages = {401-473}, + publisher = {Garland}, + title = {Anthropological Investigation of the Medicine Creek Tribes, Relative to Tribal Identity and Aboriginal Possession of Lands}, + volume = {II}, + year = {1974} +} + +@incollection{cybulski1990b, + author = {Cybulski, J. S.}, + editor = {Suttles, W.}, + address = {Washington, D. C.}, + booktitle = {Northwest Coast}, + key = {Cybulski (1990b)}, + lgcode = {Gitxsan [gitx1241], Haida [nort2938], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Stó:lō [chil1281]}, + pages = {52-59}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Human Biology}, + volume = {7}, + year = {1990} +} + +@book{drucker1951, + author = {Drucker, P.}, + address = {Washington, D.C.}, + key = {Drucker (1951)}, + lgcode = {Nuu chah nulth [nuuc1236]}, + number = {144}, + pages = {1-480}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Northern and Central Nootkan Tribes}, + year = {1951} +} + +@article{koppert1930a, + author = {Koppert, V. A.}, + journal = {Primitive Man}, + key = {Koppert (1930a)}, + lgcode = {Nuu chah nulth [nuuc1236]}, + number = {3/4}, + pages = {49-55}, + title = {The Nootka Family}, + volume = {3}, + year = {1930} +} + +@article{ray1937, + author = {Ray, V.F.}, + journal = {Pacific Northwest Quarterly}, + key = {Ray (1937)}, + lgcode = {Lower Chinook [chin1286]}, + pages = {363-372}, + title = {The Historical Position of the Lower Chinook in the Native Culture of the Northwest}, + volume = {28}, + year = {1937} +} + +@book{ray1938, + author = {Ray, V.F.}, + address = {Seattle}, + key = {Ray (1938)}, + lgcode = {Lower Chinook [chin1286]}, + number = {2}, + pages = {29-165}, + publisher = {University of Washington Press}, + series = {University of Washington Publications in Anthropology}, + title = {Lower Chinook Ethnographic Notes}, + volume = {7}, + year = {1938} +} + +@incollection{silverstein1990, + author = {Silverstein, M.}, + editor = {Suttles, Wayne}, + address = {Washington}, + booktitle = {Northwest Coast}, + glottolog_ref = {hh:e:Silverstein:Chinookans}, + key = {Silverstein (1990)}, + lgcode = {Lower Chinook [chin1286]}, + pages = {533-546}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Chinookans of the Lower Columbia}, + volume = {7}, + year = {1990} +} + +@incollection{boyd1990, + author = {Boyd, R.T.}, + editor = {Suttles, W.}, + address = {Washington, D.C.}, + booktitle = {Northwest Coast}, + key = {Boyd (1990)}, + lgcode = {Coos [coos1249], Klallam [clal1241]}, + pages = {135-148}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Demographic History, 1774-1874}, + volume = {7}, + year = {1990} +} + +@incollection{zenk1990, + author = {Zenk, H.B.}, + editor = {Suttles, W.}, + address = {Washington, D.C.}, + booktitle = {Northwest Coast}, + key = {Zenk (1990)}, + lgcode = {Coos [coos1249]}, + pages = {572-579}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Siuslawans and Coosans}, + volume = {7}, + year = {1990} +} + +@article{boasandfarrand1899, + author = {Boas, F.}, + journal = {American Anthropologist}, + key = {Boas and Farrand (1899)}, + lgcode = {Chilcotin [chil1280], Gitxsan [gitx1241], Kwakwaka'wakw [kwak1269], Lillooet [lill1248], Nlaka'pamux [thom1243], Nuxalk [bell1243], Tsimshian [nucl1649]}, + pages = {751-758}, + title = {Anthropometry of the Shoshonean Tribes}, + volume = {1}, + year = {1899} +} + +@book{hayden1997, + author = {Hayden, B.}, + address = {Orlando, Fla.}, + key = {Hayden (1997)}, + lgcode = {Lillooet [lill1248]}, + publisher = {Harcourt Brace College Publishers}, + title = {The Pitshouses of Idatley Creek}, + year = {1997} +} + +@book{teit1906b, + author = {Teit, J. A.}, + address = {New York}, + booktitle = {Publications of the Jessup North Pacific Expedition}, + glottolog_ref = {hh:e:Teit:Lillooet}, + key = {Teit (1906b)}, + lgcode = {Lillooet [lill1248]}, + pages = {193-300}, + publisher = {American Museum of Natural History}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Lillooet Indians}, + volume = {II:V}, + year = {1906} +} + +@book{stern1934, + author = {Stern, B. J.}, + address = {New York}, + key = {Stern (1934)}, + lgcode = {Lummi [lumm1243]}, + pages = {1-127}, + publisher = {Columbia University Press}, + series = {Columbia Univ. Contr. Anth.}, + title = {The Lummi Indians of Northwestern Washington}, + volume = {17}, + year = {1934} +} + +@book{olson1936a, + author = {Olson, R. L.}, + address = {Seattle}, + key = {Olson (1936a)}, + lgcode = {Quinault [quin1251]}, + number = {1}, + pages = {1-190}, + publisher = {University of Washington Press}, + series = {University of Washington Publications in Anthropology}, + title = {The Quinault Indians}, + volume = {6}, + year = {1936} +} + +@misc{duff1952, + author = {Duff, Wilson}, + address = {Victoria}, + key = {Duff (1952)}, + lgcode = {Stó:lō [chil1281]}, + number = {1}, + pages = {1-136}, + publisher = {British Columbia Provincial Museum}, + series = {Anthropology in British Columbia Memoir}, + title = {The Upper Stalo Indians of the Fraser River of B. C.}, + year = {1952} +} + +@book{bogoras1904, + author = {Bogoras, W.}, + address = {Leiden, the Netherlands}, + key = {Bogoras (1904)}, + lgcode = {Ungazikmit [cent2128]}, + publisher = {E. J. Brill}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Chukchee. The Jesup North Pacific Expedition, Vol. 7}, + volume = {11}, + year = {1904} +} + +@incollection{haydenetal1996, + author = {Hayden, B. and Reinhardt, G. A. and MacDonald, R. and Holmberg, D. and Crellin, D.}, + editor = {Coupland, G. and Banning, E. B.}, + address = {Madison, Wisc.}, + booktitle = {People Who Lived in Big Houses: Archaeological Perspectives on Large Domestic Structures}, + key = {Hayden et al. (1996)}, + lgcode = {Caribou Inuit [cari1277], Copper Inuit [copp1244], Inuvialuit [sigl1242], Nlaka'pamux [thom1243], Tasiilaq [tunu1234], Ungazikmit [cent2128]}, + number = {27}, + pages = {151-164}, + publisher = {Prehistory Press}, + series = {Monographs in World Archaeology}, + title = {Space per Capita and the Optimal Size of Housepits}, + year = {1996} +} + +@incollection{krupnik1983a, + author = {Krupnik, I. I.}, + editor = {Michael, H. N. and Stone, J. W. Van}, + address = {New York}, + booktitle = {Cultures of the Bering Sea Region: Papers from an International Symposium}, + key = {Krupnik (1983a)}, + lgcode = {Ungazikmit [cent2128]}, + pages = {84-111}, + publisher = {International Research and Exchange Board}, + title = {Early Settlements and the Demographic History of Asian Eskimos of Southeastern Chukotka (Including St. Lawrence Island)}, + year = {1983} +} + +@article{moore1923, + author = {Moore, R. D.}, + journal = {American Anthropologist}, + key = {Moore (1923)}, + lgcode = {Sivokakmeit [cent2128], Sivokamiut Inuit [cent2128], Ungazikmit [cent2128]}, + pages = {339-375}, + title = {Social Life of the Eskimo of St. Lawrence Island}, + volume = {25}, + year = {1923} +} + +@incollection{szathmary1984, + author = {Szathmary, E. J. E.}, + editor = {Damas, D.}, + address = {Washington, D.C.}, + booktitle = {Arctic}, + key = {Szathmary (1984)}, + lgcode = {Iglulik Inuit [west2618], Tlicho [dogr1252], Ungazikmit [cent2128]}, + pages = {64-71}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Human Biology of the Arctic}, + volume = {5}, + year = {1984} +} + +@article{hilltout1904, + author = {Hill-Tout, C.}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Hill-Tout (1904)}, + lgcode = {Cowichan [cowi1241], Stó:lō [chil1281]}, + pages = {311-376}, + title = {Ethnological Report on the Stseelis and Skaulits Tribes of the Halokmelem Division of the Salish of British Columbia}, + volume = {34}, + year = {1904} +} + +@article{wilson1866, + author = {Wilson, Capt.}, + address = {London}, + journal = {Transactions of the Ethnological Society of London (n.s.)}, + key = {Wilson (1866)}, + lgcode = {Cowichan [cowi1241]}, + pages = {275-304}, + title = {Report on the Indian Tribes Inhabiting the Country in the Vicinity of the 49th Parallel of North Latitude}, + volume = {4}, + year = {1866} +} + +@incollection{seaburgandmiller1990, + author = {Seaburg, W. R. and Miller, J.}, + editor = {Suttles, Wayne}, + address = {Washington}, + booktitle = {Northwest Coast}, + glottolog_ref = {hh:e:SeaburgMiller:Tillamook}, + key = {Seaburg and Miller (1990)}, + lgcode = {Tillamook [till1254]}, + pages = {560-567}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Tillamook}, + volume = {7}, + year = {1990} +} + +@incollection{kennedyandbouchard1990, + author = {Kennedy, D. I. D. and Bouchard, R. T.}, + editor = {Suttles, W.}, + address = {Washington, D.C.}, + booktitle = {Northwest Coast}, + key = {Kennedy and Bouchard (1990)}, + lgcode = {Comox [isla1276]}, + pages = {441-452}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Northcoast Salish}, + volume = {7}, + year = {1990} +} + +@incollection{hilton1990, + author = {Hilton, S.}, + editor = {Suttles, Wayne}, + address = {Washington}, + booktitle = {Northwest Coast}, + glottolog_ref = {hh:e:Hilton:Haihais}, + key = {Hilton (1990)}, + lgcode = {Heiltsuk [bell1263]}, + pages = {312-322}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Haihais, Bella Bella, and Ooweekeeno}, + volume = {7}, + year = {1990} +} + +@article{pettitt1950, + author = {Pettitt, G. A.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Pettitt (1950)}, + lgcode = {Quileute [quil1240]}, + number = {1}, + pages = {1-128}, + publisher = {University of California Press}, + title = {The Quileute of La Push: 1775-1945}, + volume = {14}, + year = {1950} +} + +@inproceedings{gunther1962, + author = {Gunther, E.}, + address = {Vienna}, + booktitle = {Akten des 34th Internationalen Amerikanisten Kongress}, + key = {Gunther (1962)}, + lgcode = {Makah [maka1318]}, + pages = {538-545}, + publisher = {Verlag Ferdinand Berger}, + title = {Makah Marriage Patterns and Population Stability}, + year = {1962} +} + +@misc{swan1870, + author = {Swan, J.G.}, + address = {Washington, D.C.}, + key = {Swan (1870)}, + lgcode = {Makah [maka1318]}, + number = {220}, + publisher = {Smithsonian Institution}, + series = {Smithsonian Contributions to Knowledge}, + title = {The Indians of Cape Flattery at the Entrance to the Strait of Fuca, Washington Territtory}, + year = {1870} +} + +@article{olson1940, + author = {Olson, R. L.}, + address = {Berkeley}, + journal = {Anthropological Records}, + key = {Olson (1940)}, + lgcode = {Haisla [hais1244]}, + number = {5}, + pages = {169-200}, + publisher = {University of California Press}, + title = {The Social Organization of the Haisla of British Columbia}, + volume = {2}, + year = {1940} +} + +@book{kane1859, + author = {Kane, P.}, + address = {London}, + key = {Kane (1859)}, + lgcode = {Gitxsan [gitx1241], Haida [nort2938], Kwakwaka'wakw [kwak1269], South Tlingit [tlin1245], Tsimshian [nucl1649]}, + publisher = {Longman, Brown, Green, Longmans and Roberts}, + title = {Wanderings of an Artist among the Indians of North America}, + year = {1859} +} + +@incollection{halpinandseguin1990, + author = {Halpin, M. M. and Seguin, M.}, + editor = {Suttles, Wayne}, + address = {Washington}, + booktitle = {Northwest Coast}, + glottolog_ref = {hh:e:HalpinSeguin:Tsimshian}, + key = {Halpin and Seguin (1990)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]}, + pages = {267-284}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Tsimshian Peoples: Southern Tsimshian, Coast Tsimshian, Nishga, and Gitksan}, + volume = {7}, + year = {1990} +} + +@book{mcilwraith1948, + author = {McIlwraith, T. F.}, + address = {Toronto}, + key = {McIlwraith (1948)}, + lgcode = {Nuxalk [bell1243]}, + title = {The Bella Coola Indians. 2 vols}, + year = {1948} +} + +@article{mitchellanddonald1988, + author = {Mitchell, D. and Donald, L.}, + journal = {Research in Economic Anthropology, Supplement}, + key = {Mitchell and Donald (1988)}, + lgcode = {Aleut [east2533], South Tlingit [tlin1245]}, + pages = {293-351}, + title = {Archaeology and the Study of Northwest Coast Economics}, + volume = {3}, + year = {1988} +} + +@book{adams1973, + author = {Adams, J. W.}, + address = {Toronto}, + key = {Adams (1973)}, + lgcode = {Gitxsan [gitx1241]}, + publisher = {Holt, Rinehart and Winston of Canada}, + title = {The Gitksan Potlatch Population Flux, Resource Ownership and Reciprocity}, + year = {1973} +} + +@book{holmberg1985, + author = {Holmberg, H. J.}, + editor = {Falk, M. W.}, + address = {Fairbanks}, + key = {Holmberg (1985)}, + lgcode = {Koniag [koni1262]}, + note = {translated by F. Jaensch}, + publisher = {University of Alaska Press}, + title = {Holmberg's Ethnographic Sketches}, + year = {1985} +} + +@article{knechtandjordan1985, + author = {Knecht, R. A. and Jordan, R. H.}, + journal = {Arctic Anthropology}, + key = {Knecht and Jordan (1985)}, + lgcode = {Koniag [koni1262]}, + pages = {17-35}, + title = {Nunakakhnak, an Historic Period Koniag Village in Karluk, Kodiak Island, Alaska}, + volume = {22}, + year = {1985} +} + +@book{birketsmithanddelaguna1938, + author = {Birket-Smith, K. and Laguna, F. De}, + address = {Copenhagen}, + key = {Birket-Smith and De Laguna (1938)}, + lgcode = {Eyak [eyak1241]}, + publisher = {Levin and Munksgaard}, + title = {The Eyak Indians of the Copper River Delta, Alaska}, + year = {1938} +} + +@incollection{delaguna1990, + author = {de Laguna, F.}, + editor = {Suttles, Wayne}, + address = {Washington, D.C.}, + booktitle = {Northwest Coast}, + glottolog_ref = {hh:e:DeLaguna:Eyak}, + key = {de Laguna (1990)}, + lgcode = {Eyak [eyak1241]}, + pages = {189-198}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Eyak}, + volume = {7}, + year = {1990} +} + +@incollection{hrdlicka1930, + author = {Hrdlička, A.}, + address = {Washington, D.C.}, + booktitle = {46th Annual Report of the Bureau of American Ethnology, 1928-1929}, + key = {Hrdlička (1930)}, + lgcode = {Aivilingmiut Inuit [cari1277], Kuskowagmut [kusk1241], Nunivak [kusk1241], Sivokamiut Inuit [cent2128]}, + pages = {228-253}, + publisher = {Smithsonian Institution}, + title = {Older Anthropometric Data on the Western Eskimo: Stature and Other Measurements}, + year = {1930} +} + +@book{michael1967, + editor = {Michael, H. N.}, + address = {Toronto}, + key = {Michael (1967)}, + lgcode = {Chugach [chug1254], Deg Xit'an [dege1248], Dena'ina [tana1289], Holikachuk [holi1241], Koyukon [koyu1237], Kuskowagmut [kusk1241]}, + publisher = {University of Toronto Press}, + title = {Lieutenant Zagoskin's Travels in Russian America, 1842-1844: The First Ethnographic and Geographic Investigations in the Yukon and Kuskokwim Valleys of Alaska}, + year = {1967} +} + +@incollection{nelson1899, + author = {Nelson, E. W.}, + address = {Washington, D.C.}, + booktitle = {18th Annual Report of the Bureau of American Ethnology for the Years 1896-1897}, + key = {Nelson (1899)}, + lgcode = {Kuskowagmut [kusk1241]}, + pages = {3-518}, + publisher = {U.S. Government Printing Office}, + title = {The Eskimo about Bering Strait}, + year = {1899} +} + +@book{oswalt1966, + author = {Oswalt, W. H.}, + address = {New York}, + key = {Oswalt (1966)}, + lgcode = {Kuskowagmut [kusk1241]}, + publisher = {John Wiley and Sons}, + title = {This Land Was Theirs}, + year = {1966} +} + +@book{oswaltandvanstone1967, + author = {Oswalt, W. H. and Stone, J. W. Van}, + address = {Washington, D.C.}, + key = {Oswalt and Van Stone (1967)}, + lgcode = {Deg Xit'an [dege1248], Kuskowagmut [kusk1241]}, + number = {199}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Ethnoarchaeology of Crow Village, Alaska}, + year = {1967} +} + +@misc{oswaltperscomm1966, + author = {Oswalt, W. H.}, + howpublished = {Personal communication}, + key = {Oswalt pers. comm. (1966)}, + lgcode = {Kuskowagmut [kusk1241]}, + year = {1966} +} + +@techreport{porter1893, + author = {Porter, R. P.}, + address = {Washington, D.C.}, + key = {Porter (1893)}, + lgcode = {Deg Xit'an [dege1248], Kuskowagmut [kusk1241]}, + publisher = {Department of the Interior Census Office}, + title = {Report on Population and Resources of Alaska at the Eleventh Census: 1890}, + year = {1893} +} + +@book{birketsmith1953, + author = {Birket-Smith, K.}, + address = {Copenhagen}, + key = {Birket-Smith (1953)}, + lgcode = {Chugach [chug1254]}, + pages = {1-262}, + series = {Nationalmuseets Skrifter, Etnografisk Raekkee}, + title = {The Chugach Eskimo}, + volume = {6}, + year = {1953} +} + +@book{delaguna1956, + author = {de Laguna, F.}, + address = {Seattle}, + key = {de Laguna (1956)}, + lgcode = {Chugach [chug1254]}, + publisher = {University of Washington Press}, + title = {Chugash Prehistory: The Archaeology of Prince William Sound, Alaska}, + year = {1956} +} + +@incollection{lantis1970a, + author = {Lantis, M.}, + editor = {Lantis, M.}, + address = {Lexington}, + booktitle = {Ethnohistory in Southwestern Alaska and the Southern Yukon: Method and Content}, + key = {Lantis (1970a)}, + lgcode = {Aleut [east2533]}, + pages = {139-302}, + publisher = {University Press of Kentucky}, + title = {The Aleut Social System, 1750 to 1810, from Early Historical Sources}, + year = {1970} +} + +@incollection{lantis1984, + author = {Lantis, M.}, + editor = {Damas, D.}, + address = {Washington, D.C.}, + booktitle = {Arctic}, + glottolog_ref = {anla:AL984LW1984}, + key = {Lantis (1984)}, + lgcode = {Aleut [east2533]}, + pages = {161-184}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Aleut}, + volume = {5}, + year = {1984} +} + +@article{mickey1955, + author = {Mickey, B. H.}, + journal = {Anthropological Papers of the University of Alaska}, + key = {Mickey (1955)}, + lgcode = {Aleut [east2533]}, + pages = {13-22}, + title = {The Family among the Western Eskimo}, + volume = {4}, + year = {1955} +} + +@article{newman1960, + author = {Newman, M. T.}, + journal = {Human Biology}, + key = {Newman (1960)}, + lgcode = {Aleut [east2533]}, + pages = {288-312}, + title = {Adaptations in the Physique of American Aborig- ines to Nutritional Factors}, + volume = {32}, + year = {1960} +} + +@article{lantis1946, + author = {Lantis, M.}, + journal = {Transactions of the American Philosophical Society (Philadelphia)}, + key = {Lantis (1946)}, + lgcode = {Nunivak [kusk1241]}, + number = {3}, + pages = {29-328}, + title = {The Social Culture of the Nunivak Eskimo}, + volume = {35}, + year = {1946} +} + +@book{lantis1960, + author = {Lantis, M.}, + address = {Seattle}, + key = {Lantis (1960)}, + lgcode = {Nunivak [kusk1241]}, + number = {33}, + publisher = {University of Washington Press}, + series = {Monographs of the American Ethnological Society}, + title = {Eskimo Childhood and Interpersonal Relationships: Nunivak Biographies and Genealogies}, + year = {1960} +} + +@book{hagen1908, + author = {Hagen, B.}, + address = {Frankfurt}, + key = {Hagen (1908)}, + lgcode = {Anak Dalam [kubu1239]}, + number = {2}, + pages = {1-269}, + publisher = {Joseph Baer}, + series = {Veröffentlichungen aus dem Städtischen Völker-Museum}, + title = {Die Orang Kubu auf Sumatra}, + year = {1908} +} + +@article{persoon1989, + author = {Persoon, G.}, + glottolog_ref = {hh:e:Persoon:Kubus}, + journal = {Anthropos}, + key = {Persoon (1989)}, + lgcode = {Anak Dalam [kubu1239]}, + pages = {507-519}, + title = {The Kubu and the outside World (South Sumatra, Indonesia): The Modification of Hunting and Gathering}, + volume = {84}, + year = {1989} +} + +@article{volz1909, + author = {Volz, W.}, + glottolog_ref = {hh:ew:Volz:Kubus}, + journal = {III. Zur Kenntnis der Kubus in Siidsumatra. Archiv ftir Anthropologie}, + key = {Volz (1909)}, + lgcode = {Anak Dalam [kubu1239]}, + pages = {89-109}, + title = {Beitrage zur Anthropologie and Ethnographie von Indonesien}, + volume = {8}, + year = {1909} +} + +@article{murdock1980, + author = {Murdock, G. P.}, + journal = {Ethnography}, + key = {Murdock (1980)}, + lgcode = {Tenino [teni1238]}, + pages = {129-149}, + title = {The Tenino Indians}, + volume = {19}, + year = {1980} +} + +@article{teit1928, + author = {Teit, J. A.}, + editor = {Boas, F.}, + journal = {University of Washington Publications in Anthropology}, + key = {Teit (1928)}, + lgcode = {Sinkiuse-Columbia [colu1250], Wenatchi [wena1241]}, + number = {4}, + pages = {83-128}, + title = {The Middle Columbia Salish}, + volume = {2}, + year = {1928} +} + +@book{spierandsapir1930, + author = {Spier, L. and Sapir, E.}, + key = {Spier and Sapir (1930)}, + lgcode = {Wishram [wasc1239]}, + pages = {151-300}, + series = {Univ. Wash. Publ. Anth.}, + title = {Wishram Ethnography}, + volume = {3}, + year = {1930} +} + +@incollection{teit1930, + author = {Teit, J. A.}, + address = {Washington, D.C.}, + booktitle = {FortyFifth Annual Report of the Bureau of American Ethnology to the Secretary of the Smithsonian Institution, 1927-1928}, + key = {Teit (1930)}, + lgcode = {Bitterroot Salish [kali1309], Coeur d’Alene [coeu1236], Kalispel [kali1309], Sanpoil [sanp1257], Syilx [sout2963]}, + pages = {23-395}, + publisher = {Smithsonian Institution}, + title = {The Salishan Tribes of the Western Plateaus}, + year = {1930} +} + +@incollection{clineetal1938, + author = {Cline, W. and Commons, R. S. and Mandelbaum, M. and and. L. V. W. Walters, R. H. Post}, + editor = {Spier, L.}, + address = {Menasha, Wisconsin}, + booktitle = {Contributions from the Laboratory of Anthropology, No. 2}, + key = {Cline et al. (1938)}, + lgcode = {Sinkaitk [sout2963], Syilx [sout2963]}, + number = {6}, + pages = {1-262}, + publisher = {George Banta}, + series = {General Series in Anthro-pology}, + title = {The Sinkaietk or Southern Okanagon of Washington}, + year = {1938} +} + +@article{grabert1974, + author = {Grabert, G. F.}, + journal = {Syesis}, + key = {Grabert (1974)}, + lgcode = {Syilx [sout2963]}, + number = {2}, + pages = {1-83}, + title = {Okanagan Archaeology: 1966-67}, + volume = {7}, + year = {1974} +} + +@book{ray1932, + author = {Ray, V.F.}, + address = {Seattle}, + key = {Ray (1932)}, + lgcode = {Sanpoil [sanp1257]}, + pages = {1-237}, + publisher = {University of Washington Press}, + series = {University of Washington Publications in Anthropology}, + title = {The Sanpoil and Nespelem: Salishan Peoples of Northeastern Washington}, + volume = {5}, + year = {1932} +} + +@book{spinden1908, + author = {Spinden, H. J.}, + address = {Lancaster, Penn.}, + key = {Spinden (1908)}, + lgcode = {Nez Perce [nezp1238]}, + publisher = {American Anthropological Association}, + series = {Memoirs of the American Anthropological Association}, + title = {The Nez Perce Indians}, + volume = {2}, + year = {1908} +} + +@incollection{teit1900, + author = {Teit, J. A.}, + address = {New York}, + booktitle = {Publications of the Jessup North Pacific Expedition}, + key = {Teit (1900)}, + lgcode = {Nlaka'pamux [thom1243], Shuswap [shus1248]}, + number = {2}, + pages = {163-392}, + publisher = {American Museum of Natural History}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Thompson Indians of British Columbia}, + volume = {1}, + year = {1900} +} + +@book{jenness1935, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1935)}, + lgcode = {Eastern Ojibwa [east2542]}, + number = {78}, + pages = {1-115}, + publisher = {Canada Department of Mines and Resources}, + series = {National Museums of Canada Bulletin}, + title = {The Ojibwa Indians of Parry Island: Their Social and Religious Life}, + year = {1935} +} + +@article{quimby1962, + author = {Quimby, G. I.}, + journal = {Ethnohistory}, + key = {Quimby (1962)}, + lgcode = {Eastern Ojibwa [east2542]}, + pages = {217-239}, + title = {A Year with a Chippewa Family, 1763-1764}, + volume = {9}, + year = {1962} +} + +@book{kinietz1947, + author = {Kinietz, W. V.}, + address = {Bloomfield Hills, Mich.}, + key = {Kinietz (1947)}, + lgcode = {Katikitegon [uppe1274], Minnesota Ojibwa [redl1238]}, + number = {25}, + publisher = {Cranbrook Institute of Science}, + series = {Cranbrook Institute of Science Bulletin}, + title = {Chippewa Village: The Story of Kitikitegon}, + year = {1947} +} + +@article{boas1895a, + author = {Boas, F.}, + journal = {Annual Report of the British Association for the Advancement of Science}, + key = {Boas (1895a)}, + lgcode = {Mi'kmaq [mikm1235], Wegamon Ojibwa [seve1241]}, + pages = {523-592}, + title = {The Indians of British Columbia: Physical Characteristics of the Tribes of the North Pacific Coast, the Tinnch Tribe of Nicola Valley, the Ts'ets'a'ut, theNisk'a', Linguistics of Nisk'a' and Ts'ets'a'ut and Vocabulary of the Tinnch Tribes of Canada}, + volume = {65}, + year = {1895} +} + +@book{speck1922, + author = {Speck, F. G.}, + address = {New York}, + key = {Speck (1922)}, + lgcode = {Mi'kmaq [mikm1235]}, + number = {22}, + publisher = {Museum of the American Indian, Heye Foundation}, + series = {Indian Notes and Monographs, Miscellaneous Series}, + title = {Beothuk and Micmac}, + year = {1922} +} + +@article{speckanddexter1951, + author = {Speck, F. G. and Dexter, R. W.}, + journal = {Journal of the Washington Academy of Sciences}, + key = {Speck and Dexter (1951)}, + lgcode = {Mi'kmaq [mikm1235]}, + number = {8}, + pages = {250-259}, + title = {Utilization of Animals and Plants by the Micmac Indians of New Brunwick}, + volume = {41}, + year = {1951} +} + +@book{wallisandwallis1955, + author = {Wallis, W. D. and Wallis, R. S.}, + address = {Minneapolis}, + key = {Wallis and Wallis (1955)}, + lgcode = {Mi'kmaq [mikm1235]}, + publisher = {University of Minnesota Press}, + title = {The Micmac Indians of Eastern Canada}, + year = {1955} +} + +@book{turneyhigh1937, + author = {Turney-High, H. H.}, + address = {Menasha, Wisc.}, + key = {Turney-High (1937)}, + lgcode = {Bitterroot Salish [kali1309]}, + number = {48}, + pages = {1-161}, + publisher = {American Anthropological Association}, + series = {Memoirs of the American Anthropological Association}, + title = {The Flathead Indians of Montana}, + year = {1937} +} + +@book{hickerson1967, + author = {Hickerson, H.}, + address = {Washington, D.C.}, + key = {Hickerson (1967)}, + lgcode = {Rainy River Ojibwe [rain1239]}, + number = {4}, + publisher = {Smithsonian Institution}, + series = {Smithsonian Contributions to Anthroprology}, + title = {Land Tenure of the Rainy Lake Chippewa at the Beginning of the 19th Century}, + volume = {2}, + year = {1967} +} + +@article{landes1937a, + author = {Landes, R.}, + journal = {Columbia University Contributions to Anthropology}, + key = {Landes (1937a)}, + lgcode = {Rainy River Ojibwe [rain1239]}, + pages = {1-144}, + title = {Ojibwa Sociology}, + volume = {29}, + year = {1937} +} + +@phdthesis{bishop1969, + author = {Bishop, C. A.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Bishop (1969)}, + lgcode = {Northern Saulteaux [alba1270]}, + school = {Department of Anthropology, State University of New York, Buffalo}, + title = {The Northern Chippewa: An Ethnohistorical Study}, + year = {1969} +} + +@incollection{bishop1978, + author = {Bishop, C. A.}, + editor = {C. D. Laughlin, Jr. and Brady, I. A.}, + address = {New York}, + booktitle = {Extinction and Survival in Human Populations}, + key = {Bishop (1978)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {208-230}, + publisher = {Columbia University Press}, + title = {Cultural and Biological Adaptations to Deprivation: The Northern Ojibwa Case}, + year = {1978} +} + +@article{grant1924, + author = {Grant, J.C. B.}, + journal = {American Journal of Physical Anthropology}, + key = {Grant (1924)}, + lgcode = {Northern Saulteaux [alba1270], Pekangekum [lacs1238], Round Lake Ojibwa [seve1241]}, + pages = {299-315}, + title = {Anthropometry of the Lake Winnipeg Indians}, + volume = {7}, + year = {1924} +} + +@article{hallowell1938, + author = {Hallowell, A. I.}, + journal = {American Anthropologist}, + key = {Hallowell (1938)}, + lgcode = {Northern Saulteaux [alba1270]}, + pages = {235-256}, + title = {The Incidence, Character, and Decline of Polygyny among the Lake Winnipeg Cree and Saulteaux}, + volume = {40}, + year = {1938} +} + +@book{hallowell1955, + author = {Hallowell, A. I.}, + address = {Philadelphia}, + key = {Hallowell (1955)}, + lgcode = {Northern Saulteaux [alba1270]}, + publisher = {University of Pennsylvania Press}, + title = {Culture and Experience}, + year = {1955} +} + +@book{skinner1911, + author = {Skinner, A.}, + address = {New York}, + key = {Skinner (1911)}, + lgcode = {Northern Saulteaux [alba1270], Waskaganish [sout2978]}, + number = {1}, + publisher = {American Museum of Natural History}, + series = {Anthropological Papers}, + title = {Notes on the Eastern Cree and Northern Saulteaux}, + volume = {9}, + year = {1911} +} + +@article{dawson1891, + author = {Dawson, G. M.}, + journal = {Proceedings and Transactions of the Royal Society of Canada}, + key = {Dawson (1891)}, + lgcode = {Shuswap [shus1248]}, + number = {2}, + pages = {3-44}, + title = {Notes on the Shuswap People of British Columbia}, + volume = {9}, + year = {1891} +} + +@incollection{teit1905, + author = {Teit, J. A.}, + address = {New York}, + booktitle = {Publications of the Jessup North Pacific Expedition}, + key = {Teit (1905)}, + lgcode = {Shuswap [shus1248]}, + number = {7}, + pages = {447-594}, + publisher = {American Museum of Natural History}, + series = {Memoirs of the American Museum of Natural History}, + title = {The Shushwap}, + volume = {2}, + year = {1905} +} + +@book{dunning1959, + author = {Dunning, R. W.}, + address = {Toronto}, + key = {Dunning (1959)}, + lgcode = {North Albany Ojibwa [wini1244], Pekangekum [lacs1238]}, + publisher = {University of Toronto Press}, + title = {Social and Economic Change among the Northern Ojibwa}, + year = {1959} +} + +@incollection{rogers1969, + author = {Rogers, E. S.}, + editor = {Damas, D.}, + address = {Ottawa}, + booktitle = {Contributions to Anthropology: Band Societies}, + key = {Rogers (1969)}, + lgcode = {Mistissini Cree [sout2978], North Albany Ojibwa [wini1244], Pekangekum [lacs1238], Round Lake Ojibwa [seve1241], Waswanipi Cree [sout2978]}, + number = {84}, + pages = {21-50}, + publisher = {National Museums of Canada}, + series = {National Museums of Canada Bulletin No. 228. Anthropological Series}, + title = {Band Organization among the Indians of Eastern Subarctic Canada}, + volume = {228}, + year = {1969} +} + +@article{rogers1963a, + author = {Rogers, E. S.}, + journal = {Bull. Nat. Mus. Canada}, + key = {Rogers (1963a)}, + lgcode = {Mistissini Cree [sout2978], Round Lake Ojibwa [seve1241]}, + pages = {1-95}, + title = {The Hunting Group-Hunting Territory Complex Among the Mistassini Indians}, + volume = {195}, + year = {1963} +} + +@article{rogers1963b, + author = {Rogers, E. S.}, + journal = {Southwestern Journal of Anthropology}, + key = {Rogers (1963b)}, + lgcode = {Round Lake Ojibwa [seve1241]}, + number = {1}, + pages = {64-88}, + title = {Changing Settlement Pattern of the Cree-Ojibwa of Northern Ontario}, + volume = {19}, + year = {1963} +} + +@incollection{goldman1940, + author = {Goldman, Irving}, + editor = {Linton, R.}, + address = {New York}, + booktitle = {Acculturation in Seven American Indian Tribes}, + key = {Goldman (1940)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]}, + pages = {333-386}, + publisher = {D. Appleton-Century}, + title = {The Alkatcho Carrier of British Columbia}, + year = {1940} +} + +@incollection{jenness1943, + author = {Jenness, D.}, + address = {Washington, D.C.}, + booktitle = {Smithsonian Institution Anthropological Papers, No. 19-26}, + key = {Jenness (1943)}, + lgcode = {Alkatcho [sout2958], Dakelh [carr1249], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]}, + number = {133}, + pages = {469-586}, + publisher = {U.S. Government Printing Office}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Carrier Indians of the Bulkley River: Their Social and Religious Life}, + year = {1943} +} + +@misc{smithnd, + author = {Smith}, + howpublished = {on file, National Museum of Canada}, + key = {Smith (n.d.)}, + lgcode = {Alkatcho [sout2958]}, + title = {Field notes} +} + +@incollection{cameron1890, + author = {Cameron, D.}, + editor = {Masson, L. F. R.}, + address = {Quebec}, + booktitle = {Les Bourgeois de la Compagnie du Nord-Ouest}, + key = {Cameron (1890)}, + lgcode = {Nipigon [cent2136]}, + pages = {229-300}, + title = {A sketch of the customs, manners, and way of living of the natives in the barren country about Nipigon}, + volume = {2}, + year = {1890} +} + +@incollection{grant1890, + author = {Grant, P.}, + editor = {Masson, L. F. R.}, + address = {Quebec}, + booktitle = {Les Bouregeois de la Compagnie du Nord-Ouest}, + key = {Grant (1890)}, + lgcode = {Katikitegon [uppe1274], Nipigon [cent2136]}, + pages = {303-366}, + title = {The Saulteaux Indians About 1804}, + volume = {2}, + year = {1890} +} + +@book{hickerson1962, + author = {Hickerson, H.}, + address = {Menasha, Wisc.}, + key = {Hickerson (1962)}, + lgcode = {Nipigon [cent2136]}, + number = {92}, + publisher = {American Anthropological Association}, + series = {Memoirs of the American Anthropological Association}, + title = {The Southwestern Chippewa: An Ethnohistorical Study}, + year = {1962} +} + +@article{lips1947a, + author = {Lips, J. E.}, + journal = {Transactions of the American Philosophical Society (Philadelphia)}, + key = {Lips (1947a)}, + lgcode = {Mistissini Cree [sout2978], Montagnais [mont1268], Naskapi [nask1242]}, + number = {4}, + pages = {379-492}, + title = {Naskapi Law: Law and Order in a Hunting Society}, + volume = {37}, + year = {1947} +} + +@book{morantz1983, + author = {Morantz, T.}, + address = {Ottawa}, + key = {Morantz (1983)}, + lgcode = {Mistissini Cree [sout2978], Waskaganish [sout2978], Waswanipi Cree [sout2978]}, + publisher = {National Museums of Canada}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper No. 88.}, + title = {An Ethnohistoric Study of Eastern James Bay Cree Social Organization}, + year = {1983} +} + +@incollection{rogers1972, + author = {Rogers, E. S.}, + editor = {Bicchieri, M.}, + address = {New York}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + key = {Rogers (1972)}, + lgcode = {Mistissini Cree [sout2978]}, + pages = {90-137}, + publisher = {Holt, Rinehart and Winston}, + title = {The Mistassini Cree}, + year = {1972} +} + +@book{rogers1973, + author = {Rogers, E. S.}, + address = {Ottawa}, + key = {Rogers (1973)}, + lgcode = {Mistissini Cree [sout2978]}, + number = {5}, + publisher = {National Museums of Canada}, + series = {National Museum of Canada Publications in Ethnology}, + title = {The Quest for Food and Furs: The Mistassini Cree, 1953-1954}, + year = {1973} +} + +@article{speck1923, + author = {Speck, F. G.}, + journal = {American Anthropologist}, + key = {Speck (1923)}, + lgcode = {Mistissini Cree [sout2978]}, + pages = {425-471}, + title = {Mistassini Hunting Territories in the Labrador Peninsula}, + volume = {25}, + year = {1923} +} + +@article{rogersandblack1976, + author = {Rogers, E. S. and Black, M. B.}, + journal = {Journal of Anthropological Research}, + key = {Rogers and Black (1976)}, + lgcode = {Wegamon Ojibwa [seve1241]}, + pages = {1-43}, + title = {6 Subsistence Strategy in the Fish and Hare Period, Northern Ontario: The Weagamon Ojibwa, 1880-1920}, + volume = {32}, + year = {1976} +} + +@book{lane1952, + author = {Lane, K. S.}, + address = {Berkeley, Calif.}, + key = {Lane (1952)}, + lgcode = {Montagnais [mont1268]}, + number = {7}, + pages = {1-62}, + publisher = {Kroeber Anthropological Society}, + series = {Kroeber Anthropological Society Papers}, + title = {The Montagnais Indians 1600-1640}, + year = {1952} +} + +@book{tanner1944, + author = {Tanner, V.}, + address = {Helsinki}, + key = {Tanner (1944)}, + lgcode = {Montagnais [mont1268], Naskapi [nask1242]}, + number = {1}, + publisher = {Societas Geographica Fenniae}, + series = {Acta Geographica}, + title = {The Indians of Newfoundland Labrador}, + volume = {8}, + year = {1944} +} + +@incollection{dennison1981, + author = {Dennison, G.}, + editor = {Helm, J.}, + address = {Washington, D.C.}, + booktitle = {Subarctic}, + key = {Dennison (1981)}, + lgcode = {Sekani [seka1250]}, + pages = {433-441}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Sekani}, + volume = {6}, + year = {1981} +} + +@book{grant1936, + author = {Grant, J.C. B.}, + address = {Ottawa}, + key = {Grant (1936)}, + lgcode = {Beaver [beav1236], Dakelh [carr1249], Dene [chip1261], Sekani [seka1250]}, + number = {18}, + series = {National Museum of Canada Bulletin No. 81, Anthropological Series}, + title = {Anthropometry of the Beaver, Sekani, and Carrier Indians}, + year = {1936} +} + +@book{jenness1937, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1937)}, + lgcode = {Dakelh [carr1249], Sekani [seka1250]}, + number = {84}, + pages = {1-82}, + publisher = {Canada Department of Mines and Resources}, + series = {National Museums of Canada Bulletin}, + title = {The Sekani Indians of British Columbia}, + year = {1937} +} + +@article{goddard1916, + author = {Goddard, P. E.}, + address = {New York}, + journal = {Anthropological Papers}, + key = {Goddard (1916)}, + lgcode = {Beaver [beav1236]}, + number = {4}, + pages = {201-293}, + publisher = {American Museum of Natural History}, + title = {The Beaver Indians}, + volume = {10}, + year = {1916} +} + +@phdthesis{ives1985, + author = {Ives, J.W.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Ives (1985)}, + lgcode = {Beaver [beav1236], DeneTha [sout2959]}, + school = {University of Michigan, Ann Arbor}, + title = {Northern Athapaskan Social and Economic Variability}, + year = {1985} +} + +@incollection{keith1960, + author = {Keith, G.}, + editor = {Mashn, L. R.}, + address = {New York}, + booktitle = {Les Bourgeois de la Compagnie du Nord Ouest}, + key = {Keith (1960)}, + lgcode = {Beaver [beav1236], Tlicho [dogr1252]}, + pages = {65-132}, + publisher = {Antiquarian Press}, + title = {Letters to Mr. Roderic McKenzie, 1807-1817}, + volume = {2}, + year = {1960} +} + +@phdthesis{nicks1980, + author = {Nicks, G. C.}, + key = {Nicks (1980)}, + lgcode = {Beaver [beav1236]}, + school = {Department of Anthropology, University of Alberta}, + title = {Demographic Anthropology of Native Populations in Western Canada, 1800-1975}, + year = {1980} +} + +@article{ridington1982, + author = {Ridington, R.}, + journal = {Canadian Review of Sociology and Anthropology}, + key = {Ridington (1982)}, + lgcode = {Beaver [beav1236]}, + pages = {469-481}, + title = {Technology, World View, and Adaptive Strategy in a Northern Hunting Society}, + volume = {19}, + year = {1982} +} + +@book{helm1961, + author = {Helm, J.}, + address = {Ottawa}, + key = {Helm (1961)}, + lgcode = {DeneTha [sout2959], Hare [nort2942]}, + number = {53}, + pages = {1-193}, + publisher = {Department of Northern Affairs and National Resources}, + series = {National Museums of Canada Bulletin No. 176. Anthropological Series}, + title = {The Lynx Point People: The Dynamics of a Northern Athapaskan Band}, + year = {1961} +} + +@book{janes1983, + author = {Janes, R.R.}, + address = {Calgary}, + key = {Janes (1983)}, + lgcode = {DeneTha [sout2959]}, + number = {28}, + publisher = {University of Calgary}, + series = {Arctic Institute of North America Technical Paper}, + title = {Archaeological Ethnography among Mackenzie Basin Deng, Canada}, + year = {1983} +} + +@book{mackenzie1966, + author = {MacKenzie, A.}, + editor = {McDonald, T. H.}, + address = {Norman}, + key = {MacKenzie (1966)}, + lgcode = {DeneTha [sout2959], Délįne [nort2942], Hare [nort2942], Tlicho [dogr1252]}, + publisher = {University of Oklahoma Press}, + title = {Exploring the Northwest Territory: Sir Alexander Mackenzie's Journal of a Voyage by Bark Canoe from Lake Athabaska to the Pacific Ocean in the Summer of 1789}, + year = {1966} +} + +@book{honigmann1949, + author = {Honigmann, J. J.}, + address = {New Haven, Conn.}, + key = {Honigmann (1949)}, + lgcode = {Attawapiskat Cree [swam1239], Kaska [kask1239]}, + number = {40}, + pages = {1-368}, + publisher = {Yale University Press}, + series = {Yale University Publications in Anthropology}, + title = {Culture and Ethos of Kaska Society}, + year = {1949} +} + +@book{honigmann1954, + author = {Honigmann, J. J.}, + journal = {Yale University Publications in Anthropology}, + key = {Honigmann (1954)}, + lgcode = {Kaska [kask1239]}, + pages = {1-163}, + title = {The Kaska Indians: An Ethnographic Reconstruction}, + volume = {51}, + year = {1954} +} + +@article{boas1901, + author = {Boas, F.}, + journal = {J. Stone's Measurementso f the Natives of Northwestern Territories. Bulletin of the American Museum of Natural History}, + key = {Boas (1901)}, + lgcode = {Kutchin [gwic1235], Noatak Inuit [nort2945], Tahltan [tahl1239]}, + pages = {53-68}, + title = {A}, + volume = {14}, + year = {1901} +} + +@book{emmons1911, + author = {Emmons, G. T.}, + address = {Philadelphia}, + key = {Emmons (1911)}, + lgcode = {Tahltan [tahl1239]}, + number = {1}, + pages = {1-120}, + publisher = {University of Pennsylvania Museum}, + series = {University of Pennsylvania Museum Anthropological Publications}, + title = {The Tahltan Indians}, + volume = {4}, + year = {1911} +} + +@incollection{maclachlan1981, + author = {MacLachlan, B. B.}, + editor = {Helm, J.}, + address = {Washinton D. C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:MacLachlan:Tahltan}, + key = {MacLachlan (1981)}, + lgcode = {Tahltan [tahl1239]}, + pages = {458-468}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Tahltan}, + volume = {6}, + year = {1981} +} + +@incollection{lane1981, + author = {Lane, R. B.}, + editor = {Helm, J.}, + address = {Washinton D. C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:Lane:Chilcotin}, + key = {Lane (1981)}, + lgcode = {Chilcotin [chil1280]}, + pages = {402-412}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Chilcotin}, + volume = {6}, + year = {1981} +} + +@incollection{gillespie1981, + author = {Gillespie, B. C.}, + editor = {Helm, J.}, + address = {Washinton D. C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:Gillespie:Mountain-Indians}, + key = {Gillespie (1981)}, + lgcode = {Mountain Dene [nort2942]}, + pages = {326-337}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Mountain Indians}, + volume = {6}, + year = {1981} +} + +@article{adney1900, + author = {Adney, T.}, + journal = {Harpers Magazine}, + key = {Adney (1900)}, + lgcode = {Hän [hann1241]}, + number = {100}, + pages = {495-507}, + title = {Moose Hunting with the Tro-Kutchin}, + year = {1900} +} + +@incollection{crowandobley1981, + author = {Crow, J. R. and Obley, P. R.}, + editor = {Helm, J.}, + address = {Washinton D. C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:CrowObley:Han}, + key = {Crow and Obley (1981)}, + lgcode = {Hän [hann1241]}, + pages = {506-513}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Han}, + volume = {6}, + year = {1981} +} + +@book{savishinsky1974, + author = {Savishinsky, J. S.}, + address = {New York}, + key = {Savishinsky (1974)}, + lgcode = {Hare [nort2942]}, + publisher = {Gordon and Breach}, + title = {The Trail of the Hare: Life and Stress in an Arctic Community}, + year = {1974} +} + +@incollection{savishinskyandhara1981, + author = {Savishinsky, J. S. and Hara, H. S.}, + editor = {Helm, J.}, + address = {Washinton D. C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:SavishinskyHara:Hare}, + key = {Savishinsky and Hara (1981)}, + lgcode = {Hare [nort2942]}, + pages = {314-325}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Hare}, + volume = {6}, + year = {1981} +} + +@article{honigmann1956b, + author = {Honigmann, J. J.}, + journal = {Anthropological Papers of the University of Alaska}, + key = {Honigmann (1956b)}, + lgcode = {Attawapiskat Cree [swam1239]}, + pages = {23-82}, + title = {The Attawapiskat Swampy Cree: An Ethnographic Reconstruction}, + volume = {5}, + year = {1956} +} + +@incollection{honigmann1981, + author = {Honigmann, J. J.}, + editor = {Helm, J.}, + address = {Washington, D.C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:Honigmann:West-Main-Cree}, + key = {Honigmann (1981)}, + lgcode = {Attawapiskat Cree [swam1239]}, + pages = {217-230}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {West Main Cree}, + volume = {6}, + year = {1981} +} + +@book{mason1967, + author = {Mason, L.}, + address = {Ottawa}, + key = {Mason (1967)}, + lgcode = {Attawapiskat Cree [swam1239]}, + number = {13}, + publisher = {Department of the Secretary of State}, + series = {Anthropology Papers of the National Museum of Canada}, + title = {The Swampu Cree: A Study in Acculturation}, + year = {1967} +} + +@book{clark1974, + author = {Clark, A. McF.}, + address = {Ottawa}, + key = {Clark (1974)}, + lgcode = {Koyukon [koyu1237]}, + number = {18}, + publisher = {National Museums of Canada}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper}, + title = {Koyukuk River Culture}, + year = {1974} +} + +@inproceedings{clark1975, + author = {Clark, A. McF.}, + editor = {McF.Clark, A.}, + address = {Ottawa}, + booktitle = {Northern Athapaskan Conference, 1971}, + key = {Clark (1975)}, + lgcode = {Koyukon [koyu1237]}, + number = {27}, + pages = {147-180}, + publisher = {National Museums of Canada}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper}, + title = {Upper Koyukon River Koyukon Athapaskan Social Culture: An Overview}, + volume = {1}, + year = {1975} +} + +@incollection{mcfaydenclark1981, + author = {McFayden-Clark, A.}, + editor = {Helm, J.}, + address = {Washington, D. C.}, + booktitle = {Subarctic}, + key = {McFayden-Clark (1981)}, + lgcode = {Koyukon [koyu1237]}, + pages = {582-601}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Koyukon}, + volume = {6}, + year = {1981} +} + +@book{sullivan1942, + author = {Sullivan, R. J.}, + address = {Washington, D.C.}, + key = {Sullivan (1942)}, + lgcode = {Deg Xit'an [dege1248], Koyukon [koyu1237]}, + number = {IM}, + publisher = {Catholic University of America Press}, + series = {Catholic University Anthropological Series}, + title = {The Ten'a Food Quest}, + year = {1942} +} + +@book{brumbachandjarvenpa1989, + author = {Brumbach, H. J. and Jarvenpa., R.}, + address = {New York}, + key = {Brumbach and Jarvenpa (1989)}, + lgcode = {Dene [chip1261]}, + publisher = {Peter Lang}, + title = {Ethnoarchaeological and Cultural Frontiers}, + year = {1989} +} + +@incollection{fidler1934, + author = {Fidler, P.}, + address = {Toronto}, + booktitle = {Publications}, + key = {Fidler (1934)}, + lgcode = {Dene [chip1261]}, + pages = {495-555}, + publisher = {Champlain Society}, + title = {Journal of a Journey with the Chepawyans, or Northern Indians, to the Slave Lake, and to the East and West of the Slave River in 1791 & 2}, + volume = {21}, + year = {1934} +} + +@book{irimoto1981, + author = {Irimoto, T.}, + address = {Osaka}, + key = {Irimoto (1981)}, + lgcode = {Dene [chip1261]}, + number = {8}, + publisher = {National Museum of Ethnology}, + series = {Senri Ethnological Studies}, + title = {Chipewyan Ecology: Group Structure and Caribou Hunting System}, + year = {1981} +} + +@article{mullerwille1974, + author = {Muller-Wille, L.}, + journal = {Musk Ox}, + key = {Muller-Wille (1974)}, + lgcode = {Dene [chip1261]}, + number = {1}, + pages = {7-19}, + title = {Caribou Never Die! Modern Caribou Hunting Economy of the Dene (Chipewyan) of the Fond du Lac, Saskatchewan and N.W.T}, + volume = {14}, + year = {1974} +} + +@article{smith1976, + author = {Smith, J.G. E.}, + journal = {Arctic Anthropology}, + key = {Smith (1976)}, + lgcode = {Dene [chip1261]}, + pages = {12-24}, + title = {Band Organization of the Caribou Eater Chipewyan}, + volume = {13}, + year = {1976} +} + +@incollection{smith1981, + author = {Smith, J.G. E.}, + editor = {Helm, J.}, + address = {Washington, D.C.}, + booktitle = {Subarctic}, + key = {Smith (1981)}, + lgcode = {Dene [chip1261]}, + pages = {271-284}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Chipewyan}, + volume = {6}, + year = {1981} +} + +@article{mckennan1964, + author = {McKennan, R. A.}, + journal = {American Journal of Physical Anthropology}, + key = {McKennan (1964)}, + lgcode = {Kutchin [gwic1235], Nabesna [uppe1437]}, + pages = {43-52}, + title = {The Physical Anthropology of Two Alaskan Athapaskan Groups}, + volume = {22}, + year = {1964} +} + +@book{mckennan1965, + author = {McKennan, R. A.}, + address = {Montreal}, + glottolog_ref = {anla:KU933M1965a}, + key = {McKennan (1965)}, + lgcode = {Kutchin [gwic1235]}, + number = {17}, + publisher = {Arctic Institute of North America}, + series = {Arctic Institute of North America Technical Paper}, + title = {The Chandalar Kutchin}, + year = {1965} +} + +@book{osgood1936, + author = {Osgood, C.}, + address = {New Haven}, + key = {Osgood (1936)}, + lgcode = {Kutchin [gwic1235]}, + number = {14}, + pages = {1-189}, + publisher = {Yale University Press}, + series = {Yale University Publications in Anthropology}, + title = {Contributions to the Ethnography of the Kutchin}, + year = {1936} +} + +@incollection{slobodin1969, + author = {Slobodin, R.}, + editor = {Damas, D.}, + address = {Ottawa}, + booktitle = {Contributions to Anthropology: Band Societies}, + key = {Slobodin (1969)}, + lgcode = {Kutchin [gwic1235]}, + number = {84}, + pages = {56-89}, + publisher = {National Museums of Canada}, + series = {National Museums of Canada Bulletin No. 228. Anthropological Series}, + title = {Leadership and Participation in a Kutchin Trapping Party}, + year = {1969} +} + +@incollection{slobodin1981, + author = {Slobodin, R.}, + editor = {Helm, J.}, + address = {Washinton D. C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:Slobodin:Kutchin}, + key = {Slobodin (1981)}, + lgcode = {Kutchin [gwic1235]}, + pages = {514-531}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Kutchin}, + volume = {6}, + year = {1981} +} + +@book{osgood1958, + author = {Osgood, C.}, + address = {New Haven}, + key = {Osgood (1958)}, + lgcode = {Deg Xit'an [dege1248]}, + number = {53}, + pages = {1-289}, + publisher = {Yale University Press}, + series = {Yale University Publications in Anthropology}, + title = {Ingalik Social Culture}, + year = {1958} +} + +@incollection{snow1981, + author = {Snow, J.H.}, + editor = {Helm, J.}, + address = {Washington, D.C.}, + booktitle = {Subarctic}, + key = {Snow (1981)}, + lgcode = {Deg Xit'an [dege1248], Holikachuk [holi1241]}, + pages = {602-617}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Ingalik}, + volume = {6}, + year = {1981} +} + +@book{hooper1853, + author = {Hooper, W. H.}, + address = {London}, + key = {Hooper (1853)}, + lgcode = {Délįne [nort2942]}, + publisher = {John Murray}, + title = {Ten Months among the Tents of the Tuski: With Incidents of an Arctic Boat Expedition in Search of Sir John Franklin, as Far as the Mackenzie River, and Cape Bathurst}, + year = {1853} +} + +@phdthesis{rushforth1977, + author = {Rushforth, E. S.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Rushforth (1977)}, + lgcode = {Délįne [nort2942]}, + school = {Department of Anthropology, University of Arizqa}, + title = {Kinship and Social Organization among the Great Bear Lake Indians: A Cultural Decision-Making Model}, + year = {1977} +} + +@book{mckennan1959, + author = {McKennan, R. A.}, + key = {McKennan (1959)}, + lgcode = {Nabesna [uppe1437]}, + number = {55}, + pages = {1-223}, + series = {Yale University Publications in Anthropology}, + title = {The Upper Tanana Indians}, + year = {1959} +} + +@mastersthesis{pitts1972, + author = {Pitts, R.S.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Pitts (1972)}, + lgcode = {Nabesna [uppe1437]}, + school = {Department of Anthropology, University of Alaska, Fairbanks}, + title = {The Changing Settlement Patterns and Housing Types of the Upper Tanana Indians}, + year = {1972} +} + +@incollection{metraux1948, + author = {Metraux, A}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Tropical Forest Tribes}, + key = {Metraux (1948)}, + lgcode = {Shiriana [nina1238]}, + pages = {861-864}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Vol. 3, Bureau of American Ethnology Bulletin No. 143}, + title = {The Shiriand, Waica, and Guaharibo}, + year = {1948} +} + +@incollection{helm1968, + author = {Helm, J.}, + editor = {Lee, R. B. and DeVore, I.}, + address = {Chicago}, + booktitle = {Man the Hunter}, + key = {Helm (1968)}, + lgcode = {Tlicho [dogr1252]}, + pages = {118-125}, + publisher = {Aldine}, + title = {The Nature of Dogrib Socioterritorial Groups}, + year = {1968} +} + +@incollection{helm1972, + author = {Helm, J.}, + editor = {Bicchieri, M. G.}, + address = {New York}, + booktitle = {Hunters and Gatherers Today}, + key = {Helm (1972)}, + lgcode = {Tlicho [dogr1252]}, + pages = {51-89}, + publisher = {Holt, Rinehart and Winston}, + title = {The Dogrib Indians}, + year = {1972} +} + +@book{osgood1937, + author = {Osgood, C.}, + address = {New Haven}, + key = {Osgood (1937)}, + lgcode = {Dena'ina [tana1289]}, + number = {16}, + pages = {1-229}, + publisher = {Yale University Press}, + series = {Yale University Publications in Anthropology}, + title = {The Ethnography of the Tanaina}, + year = {1937} +} + +@article{townsend1963, + author = {Townsend, J. B.}, + journal = {Anthropologica (n.s.)}, + key = {Townsend (1963)}, + lgcode = {Dena'ina [tana1289]}, + pages = {209-223}, + title = {Ethnographic Notes on the Pedro Bay Tanaina}, + volume = {1}, + year = {1963} +} + +@incollection{townsend1981, + author = {Townsend, J. B.}, + editor = {Helm, J.}, + address = {Washinton D. C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:Townsend:Tanaina}, + key = {Townsend (1981)}, + lgcode = {Dena'ina [tana1289]}, + pages = {623-640}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Tanaina}, + volume = {6}, + year = {1981} +} + +@article{legros1982, + author = {Legros, D.}, + journal = {Culture}, + key = {Legros (1982)}, + lgcode = {Tutchone [nort2941]}, + number = {3}, + pages = {65-84}, + title = {Reflexions sur l'Origine des Inegalites Sociales a Partir du Cas des Athapaskan Tutchone}, + volume = {2}, + year = {1982} +} + +@incollection{mcclellan1981, + author = {McClellan, C.}, + editor = {Helm, J.}, + address = {Washinton D. C.}, + booktitle = {Subarctic}, + glottolog_ref = {hh:e:McClellan:Tutchone}, + key = {McClellan (1981)}, + lgcode = {Tutchone [nort2941]}, + pages = {493-505}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Tutchone}, + volume = {6}, + year = {1981} +} + +@phdthesis{oleary1985, + author = {O'Leary, B.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {O'Leary (1985)}, + lgcode = {Tutchone [nort2941]}, + school = {Department of Anthropology, University of New Mexico, Albuquerque}, + title = {Salmon and Storage': Southern Tutchone Use of an "Abundant" Resource}, + year = {1985} +} + +@article{hallowell1929, + author = {Hallowell, A. I.}, + journal = {Journal de la Societe des Americanistes de Paris (n.s.)}, + key = {Hallowell (1929)}, + lgcode = {Iglulik Inuit [west2618], Naskapi [nask1242]}, + pages = {337-371}, + title = {The Physical Characteristics of the Indians of Labrador}, + volume = {21}, + year = {1929} +} + +@book{henriksen1973, + author = {Henriksen, G.}, + address = {St. Johns}, + key = {Henriksen (1973)}, + lgcode = {Naskapi [nask1242]}, + nunber = {12}, + publisher = {Memorial University of Newfoundland and University of Toronto Press}, + series = {Newfoundland Social and Economic Studies}, + title = {Hunters in the Barrens: The Naskapi on the Edge of the White Man's World}, + year = {1973} +} + +@book{ray1992, + author = {Ray, D.J.}, + address = {Seattle}, + key = {Ray (1992)}, + lgcode = {Norton Sound Inuit [kusk1241]}, + publisher = {University of Washington Press}, + title = {The Eskimos of Bering Strait, 1650-1898}, + year = {1992} +} + +@article{seltzer1933, + author = {Seltzer, C. C.}, + journal = {Human Biology}, + key = {Seltzer (1933)}, + lgcode = {Inupiat [nort2944], Inuvialuit [sigl1242], Labrador Inuit [labr1244], Norton Sound Inuit [kusk1241], Tareumiut [nort2944]}, + number = {3}, + pages = {313-370}, + title = {The Anthropometry of the Western and Copper Eskimos, Based on Data of Vilhjalmur Stefansson}, + volume = {5}, + year = {1933} +} + +@incollection{kloos1977, + author = {Kloos, P.}, + editor = {Basso, E.}, + address = {Tucson}, + booktitle = {Carib-Speaking Indians: Culture, Society, and Language}, + glottolog_ref = {fabreall2009ann:Caribe_akuriyo20}, + key = {Kloos (1977)}, + lgcode = {Akurio [akur1238]}, + pages = {114-122}, + publisher = {University of Arizona Press}, + title = {The Akuriyo way of death}, + year = {1977} +} + +@misc{kloos1982, + author = {Kloos, P.}, + howpublished = {pers. comm.}, + key = {Kloos (1982)}, + lgcode = {Akurio [akur1238]}, + year = {1982} +} + +@book{burch1975, + author = {Burch, E. S. Jr. and Burch and E.S. and Jr.}, + address = {St. Paul}, + key = {Burch (1975)}, + lgcode = {Inupiat [nort2944], Kobuk Inuit [kobu1239], Kotzebue Sound Inuit [kotz1238], Noatak Inuit [nort2945], Tareumiut [nort2944]}, + number = {59}, + publisher = {West Publishing Company}, + series = {American Ethnological Society Monograph}, + title = {Eskimo kinsmen: Changing family relationships in Northwest Alaska}, + year = {1975} +} + +@book{foote1966, + author = {Foote, D. C.}, + address = {New York}, + key = {Foote (1966)}, + lgcode = {Kobuk Inuit [kobu1239]}, + title = {Human Biographical Studies in Northwestern Arctic Alaska: The Upper Kobuk River Project, 1965. Final Report to the Association on American Indian Affairs}, + year = {1966} +} + +@article{giddings1956, + author = {Giddings, J. L.}, + journal = {University Museum Bulletin (Philadelphia)}, + key = {Giddings (1956)}, + lgcode = {Kobuk Inuit [kobu1239]}, + number = {2}, + pages = {1-55}, + title = {Forest Eskimos: An Ethnographic Sketch of Kobuk River People in the 1880's}, + volume = {20}, + year = {1956} +} + +@misc{giddingsperscomm1963, + author = {Giddings, J. L.}, + howpublished = {pers. conmm.}, + key = {Giddings pers. comm. (1963)}, + lgcode = {Kobuk Inuit [kobu1239]}, + year = {1963} +} + +@incollection{burch1984, + author = {Burch, E. S.}, + editor = {Damas, D.}, + booktitle = {Arctic}, + key = {Burch (1984)}, + lgcode = {Kotzebue Sound Inuit [kotz1238]}, + pages = {303-319}, + series = {Handbook of North American Indians}, + title = {Kotzebue Sound Eskimo}, + volume = {5}, + year = {1984} +} + +@article{rodahlandedwards1952, + author = {Rodahl, K. and Edwards, J.}, + journal = {Journal of Applied Physiology}, + key = {Rodahl and Edwards (1952)}, + lgcode = {Kotzebue Sound Inuit [kotz1238], Sivokamiut Inuit [cent2128]}, + pages = {242-246}, + title = {The Body Surface Area of the Eskimo}, + volume = {5}, + year = {1952} +} + +@book{graburn1969, + author = {Graburn, N. H. H.}, + address = {Boston}, + key = {Graburn (1969)}, + lgcode = {Labrador Inuit [labr1244]}, + publisher = {Little, Brown}, + title = {Eskimos without Igloos: Social and Economic Development in Sugluk}, + year = {1969} +} + +@book{taylor1974, + author = {Taylor, J. G.}, + address = {Ottawa}, + key = {Taylor (1974)}, + lgcode = {Labrador Inuit [labr1244]}, + number = {9}, + publisher = {National Museums of Canada}, + series = {National Museum of Man Publications in Ethnology}, + title = {Labrador Eskimo Settlements of the Early Contact Period}, + year = {1974} +} + +@incollection{turner1894, + author = {Turner, L. M.}, + editor = {Powell, J. W.}, + address = {Washington, D.C.}, + booktitle = {Eleventh Annual Report of the Bureau of American Eshnology}, + key = {Turner (1894)}, + lgcode = {Labrador Inuit [labr1244]}, + pages = {159-350}, + publisher = {Smithsonian Institution}, + title = {Ethnology of the Ungava District, Hudson Bay Territory}, + year = {1894} +} + +@incollection{barger1981, + author = {Barger, W. K.}, + editor = {Helm, J.}, + address = {Washington, D.C.}, + booktitle = {SubArctic}, + key = {Barger (1981)}, + lgcode = {Great Whale Inuit [queb1248]}, + pages = {673-682}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Great Whale River, Quebec}, + volume = {6}, + year = {1981} +} + +@incollection{saladindanglure1984, + author = {Saladind'Anglure, B. S.}, + editor = {Damas, D.}, + address = {Washington, D.C.}, + booktitle = {Arctic}, + key = {Saladin d'Anglure (1984)}, + lgcode = {Great Whale Inuit [queb1248]}, + pages = {476-507}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Inuit of Quebec}, + volume = {5}, + year = {1984} +} + +@article{willmott1960, + author = {Willmott, W. E.}, + journal = {Anthropologica}, + key = {Willmott (1960)}, + lgcode = {Great Whale Inuit [queb1248]}, + pages = {48-59}, + title = {The Flexibility of Eskimo Social Organization}, + volume = {2}, + year = {1960} +} + +@incollection{arima1984, + author = {Arima, E. Y.}, + editor = {Damas, D.}, + address = {Washington, D.C.}, + booktitle = {Arctic}, + key = {Arima (1984)}, + lgcode = {Caribou Inuit [cari1277]}, + pages = {447-462}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Caribou Eskimo}, + volume = {5}, + year = {1984} +} + +@book{birketsmith1929, + address = {Copenhagen}, + key = {Birket-Smith (1929)}, + lgcode = {Caribou Inuit [cari1277]}, + number = {i; ii}, + pages = {1-306; 1-419}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {The Caribou Eskimos}, + volume = {5} +} + +@book{harper1964, + author = {Harper, F.}, + address = {Lawrence, Kansas}, + key = {Harper (1964)}, + lgcode = {Caribou Inuit [cari1277]}, + number = {36}, + publisher = {Allen Press}, + series = {University of Kansas Museum of Natural History Miscellaneous Publication}, + title = {Caribou Eskimos of the Upper Kazan River, Keewatin}, + year = {1964} +} + +@book{rasmussen1930, + author = {Rasmussen, K.}, + address = {Copenhagen}, + key = {Rasmussen (1930)}, + lgcode = {Caribou Inuit [cari1277]}, + number = {ii}, + pages = {1-114}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {Observations on the Intellectual Culture of the Caribou Eskimo}, + volume = {7}, + year = {1930} +} + +@article{tyrrell1897, + author = {Tyrrell, J. B.}, + journal = {Annual Report, Geological Survey of Canada, Report F (n.s.)}, + key = {Tyrrell (1897)}, + lgcode = {Caribou Inuit [cari1277], Inuvialuit [sigl1242]}, + pages = {1-218}, + title = {Report on the Doobaunt, Kazan, and Ferguson Rivers on the North-west Coast of Hudson Bay, and on Two Overland Routes from Hudson Bay to Lake Winnipeg}, + volume = {9}, + year = {1897} +} + +@book{vallee1967, + author = {Vallee, F. G.}, + address = {Ottawa}, + key = {Vallee (1967)}, + lgcode = {Caribou Inuit [cari1277]}, + publisher = {Canadian Research Center for Anthropology and Northern Coordination and Research Center}, + title = {Kabloona and Eskimo in the Central Kawatin}, + year = {1967} +} + +@misc{binford1969, + author = {Binford}, + howpublished = {field notes 1969 (July)}, + key = {Binford (1969)}, + lgcode = {Noatak Inuit [nort2945]}, + year = {1969} +} + +@misc{binfordfieldnotes1971, + author = {Binford, L. R.}, + howpublished = {Field notes (Book 3) on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Binford field notes (1971)}, + lgcode = {Noatak Inuit [nort2945]}, + year = {1971} +} + +@book{binfordfieldnotes1972, + author = {Binford, L. R.}, + address = {New York}, + key = {Binford field notes (1972)}, + lgcode = {Noatak Inuit [nort2945]}, + publisher = {Seminar Press}, + title = {An Archaeological Perspective}, + year = {1972} +} + +@phdthesis{amsden1977, + author = {Amsden, C. W.}, + address = {Albuerque}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Amsden (1977)}, + lgcode = {Nunamiut [nort2944]}, + school = {Department of Anthropology, University of New Mexico}, + title = {A Quantitative Analysis of Nunamiut Eskimo Settlement Dynamics: 1898 to 1969}, + year = {1977} +} + +@misc{binford1971, + author = {Binford, L. R.}, + howpublished = {Field notes (Book 3) on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Binford (1971)}, + lgcode = {Nunamiut [nort2944]}, + year = {1971} +} + +@incollection{binford1991a, + author = {Binford, L. R.}, + editor = {Bois-mier, W. A. and Gamble, C. S.}, + address = {Ann Arbor, Mich.}, + booktitle = {Ethnoarchaeological Approaches to Mobile Campsites: Hunter-Gatherer and Pastoralist Case Studies}, + key = {Binford (1991a)}, + lgcode = {Nunamiut [nort2944]}, + pages = {25-137}, + publisher = {International Monographs in Prehistory}, + series = {Ethnoarchaeology Series}, + title = {When the Going Gets Tough, the Tough Get Going: Nunamiut Local Groups, Camping Patterns, and Economic Organization}, + volume = {1}, + year = {1991} +} + +@incollection{binfordandchasko1976, + author = {Binford, L. R. and Chasko, W. J.}, + editor = {Zubrow, E. B.}, + address = {Albuquerque}, + booktitle = {Demographic Anthropology: Quantitative Approaches}, + key = {Binford and Chasko (1976)}, + lgcode = {Nunamiut [nort2944]}, + pages = {63-143}, + publisher = {University of New Mexico Press}, + title = {Nunamiut Demographic History}, + year = {1976} +} + +@incollection{jamison1978, + author = {Jamison, P. L.}, + editor = {P. L. Jamison, S. L. Zegura and Milan, F. A.}, + address = {Stroudsburg, Penn.}, + booktitle = {Eskimos of Northwestern Alaska: A Biological Perspective}, + key = {Jamison (1978)}, + lgcode = {Nunamiut [nort2944]}, + pages = {40-78}, + publisher = {Dowden, Hutchison and Ross}, + title = {Anthropometric Variation}, + year = {1978} +} + +@book{mcghee1988, + author = {McGhee, R.}, + address = {Hull, Quebec}, + key = {McGhee (1988)}, + lgcode = {Inuvialuit [sigl1242]}, + publisher = {Canadian Museum of Civilization}, + title = {Baluga Hunters: An Archaeological Reconstruction of the History and Culture of the Mackenzie Delta Kittegaryumiut}, + year = {1988} +} + +@misc{smith1984, + author = {Smith, D. G.}, + editor = {Damas, D.}, + address = {Washington, D.C.}, + booktitle = {Arctic}, + key = {Smith (1984)}, + lgcode = {Inuvialuit [sigl1242]}, + pages = {347-358}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Mackenzie Delta Eskimo}, + volume = {5}, + year = {1984} +} + +@book{hughes1960, + author = {Hughes, C. C.}, + address = {Ithaca, New York}, + key = {Hughes (1960)}, + lgcode = {Sivokakmeit [cent2128], Sivokamiut Inuit [cent2128]}, + publisher = {Cornell University Press}, + title = {The Eskimo Village in the Modern World}, + year = {1960} +} + +@phdthesis{gragson1989, + author = {Gragson, T.}, + glottolog_ref = {fabreall2009ann:Yaruro5}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Gragson (1989)}, + lgcode = {Pumé [pume1238]}, + school = {Department of Anthropology, Pennsylvania State University, College Station}, + title = {Allocation of time to subsistence and settlement in a Ciri Khonome Pume village of the Llanos of Apure, Venezuela}, + year = {1989} +} + +@misc{greavesperscomm1993, + author = {Greaves}, + howpublished = {pers. comm.}, + key = {Greaves pers. comm. (1993)}, + lgcode = {Pumé [pume1238]}, + year = {1993} +} + +@article{petrullo1939, + author = {Petrullo, V.}, + address = {Washington, D.C.}, + glottolog_ref = {fabreall2009ann:Yaruro41}, + journal = {Smithsonian Anthropological Papers}, + key = {Petrullo (1939)}, + lgcode = {Pumé [pume1238]}, + pages = {161-290}, + publisher = {Smithsonian Institution}, + title = {The Yaruro of the Capanaparo River, Venezuela}, + volume = {11}, + year = {1939} +} + +@book{jenness1922, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1922)}, + lgcode = {Copper Inuit [copp1244], Inupiat [nort2944]}, + pages = {5-277}, + publisher = {Voliza}, + series = {Report of the Canadian Arctic Expedition 1913-1918}, + title = {The Life of the Copper Eskimo}, + volume = {12}, + year = {192} +} + +@article{rainey1947, + author = {Rainey, F. G.}, + journal = {Anthropological Papers of the American Museum of Natural History}, + key = {Rainey (1947)}, + lgcode = {Inupiat [nort2944]}, + number = {2}, + pages = {231-283}, + title = {The Whale Hunters of Tigara}, + volume = {41}, + year = {1947} +} + +@incollection{damas1972, + author = {Damas, D.}, + editor = {Bicchieri, M. G.}, + address = {New York}, + booktitle = {Hunters and Gatherers Today A Socioeconomic Study of Eleven Such Cultures in th Twentieth Century}, + key = {Damas (1972)}, + lgcode = {Copper Inuit [copp1244]}, + pages = {3-50}, + publisher = {Holt, Rinehart and Winston}, + title = {The Copper Eskimo}, + year = {1972} +} + +@incollection{damas1984, + author = {Damas, D. (editor)}, + editor = {Damas, D.}, + address = {Washington, D.C.}, + booktitle = {Arctic}, + key = {Damas (1984)}, + lgcode = {Copper Inuit [copp1244]}, + pages = {397-414}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Copper Eskimo}, + volume = {5}, + year = {1984} +} + +@book{jenness1932, + author = {Jenness, D.}, + address = {Ottawa}, + key = {Jenness (1932)}, + lgcode = {Copper Inuit [copp1244]}, + number = {65}, + publisher = {Canada Department of Mines and Resources}, + series = {National Museums of Canada Bulletin}, + title = {The Indians of Canada}, + year = {1932} +} + +@misc{rasmussen1932, + author = {Rasmussen, K.}, + address = {Copenhagen}, + key = {Rasmussen (1932)}, + lgcode = {Copper Inuit [copp1244]}, + pages = {1-350}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {Intellectual Culture of the Copper Eskimos}, + volume = {9}, + year = {1932} +} + +@book{amundsen1908, + author = {Amundsen, R. E. G.}, + address = {New York}, + key = {Amundsen (1908)}, + lgcode = {Utkuhikhalingmiut [nets1241]}, + publisher = {E. P. Dutton}, + title = {Roald Amundsen's "The Northwest Passage." Being the Record of a Voyage of Exploration of the Ship "Gjoa, " 1903-1907. 2 vols}, + year = {1908} +} + +@book{briggs1970, + author = {Briggs, J.}, + address = {Cambridge, Mass.}, + key = {Briggs (1970)}, + lgcode = {Utkuhikhalingmiut [nets1241]}, + publisher = {Harvard University Press}, + title = {Never in Anger: Portrait of an Eskimo Family}, + year = {1970} +} + +@misc{rasmussen1931, + author = {Rasmussen, K.}, + address = {Copenhagen}, + key = {Rasmussen (1931)}, + lgcode = {Netsilik [nets1241], Utkuhikhalingmiut [nets1241]}, + number = {i-ii}, + pages = {1-542}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {The Netsilik Eskimos: Social Life and Spirital Culture}, + volume = {8}, + year = {1931} +} + +@book{mathiassen1928, + author = {Mathiassen, T.}, + address = {Copenhagen}, + key = {Mathiassen (1928)}, + lgcode = {Aivilingmiut Inuit [cari1277], Iglulik Inuit [west2618]}, + number = {i}, + pages = {1-242}, + publisher = {Nordisk Forlag}, + series = {Rep. Fifth Thule Exp.}, + title = {Material Culture of the Iglulik Eskimos}, + volume = {6}, + year = {1928} +} + +@article{oetteking1931, + author = {Oetteking, B.}, + journal = {American Journal of Physical Anthropology}, + key = {Oetteking (1931)}, + lgcode = {Aivilingmiut Inuit [cari1277], Baffin Island Inuit [baff1240]}, + number = {3}, + pages = {421-468}, + title = {A Contribution to the Physical Anthropology of Baffin Island, Based on Somatometrical Data and Skeletal Material Collected by the Putnam Baffin Island Expedition of 1927}, + volume = {15}, + year = {1931} +} + +@book{rae1850, + author = {Rae, J.}, + address = {London}, + key = {Rae (1850)}, + lgcode = {Aivilingmiut Inuit [cari1277], Netsilik [nets1241]}, + publisher = {T. and W. Boone}, + title = {Narrative of an Expedition to the Shores of the Arctic Sea in 1846 and 1847}, + year = {1850} +} + +@misc{vandeveldeetal1992, + author = {Van de Velde, F. and Constandse-Westermann, T. S. and Remie, C. H. W. and Newell, R. R.}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Van de Velde et al. (1992)}, + lgcode = {Aivilingmiut Inuit [cari1277]}, + title = {One hundred and fifteen years of demography of the Arviligjuarmiut, Central Canadian Arctic}, + year = {1992} +} + +@article{vanstone1960, + author = {Van Stone, J. W.}, + journal = {Anthropological Papers of the University of Alaska}, + key = {Van Stone (1960)}, + lgcode = {Aivilingmiut Inuit [cari1277]}, + number = {2}, + pages = {81-88}, + title = {Notes on the Economy and Population Shifts of the Eskimos of Southampton Island}, + volume = {8}, + year = {1960} +} + +@misc{damas1992, + author = {Damas}, + howpublished = {letter 7/6/92}, + key = {Damas (1992)}, + lgcode = {Iglulik Inuit [west2618]}, + year = {1992} +} + +@book{lyon1924, + author = {Lyon, G. F.}, + address = {Barre, Vermont}, + key = {Lyon (1924)}, + lgcode = {Iglulik Inuit [west2618]}, + publisher = {Imprint Society}, + title = {The Private Journal of G. F. Lyon of H.M.S. Hecla during the Recent Voyage of Discovery under Captain Parry, 1821-1823}, + year = {1924} +} + +@book{birketsmith1928a, + author = {Birket-Smith, Kaj}, + key = {Birket-Smith (1928a)}, + lgcode = {Kalaallit (West Greenland) [kala1399], Tasiilaq [tunu1234]}, + pages = {1-207}, + series = {Greenlan}, + title = {The Greenlanders of the Present Day}, + volume = {2}, + year = {1928} +} + +@book{grnnowetal1983, + author = {Grønnow, B. and Melgaard, M. and Nielsen, J. B.}, + address = {Odense}, + key = {Grønnow et al. (1983)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {Commission for Scientific Research in Greenland}, + series = {Meddelelser om Gronland, Man and Society}, + title = {Aasiyissuit - The Great Summer Camp: Archaeological, Ethnographical and Zoo-Archaeological Studies of a Caribou-Hunting Site in West Greenland}, + volume = {5}, + year = {1983} +} + +@book{hansen1914, + author = {Hansen, S.}, + key = {Hansen (1914)}, + lgcode = {Kalaallit (West Greenland) [kala1399], Tasiilaq [tunu1234]}, + number = {2}, + series = {Meddelelser om Gronland}, + title = {Contributions to the Anthropology of the East Greenlanders}, + volume = {39}, + year = {1914} +} + +@book{perry1898, + author = {Perry, R.E.}, + address = {London}, + key = {Perry (1898)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {Methuen}, + title = {Northward over the "Great Ice."}, + year = {1898} +} + +@book{rink1875, + author = {Rink, H.}, + editor = {Brown, R.}, + address = {Edinburgh}, + key = {Rink (1875)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {William Blackwood and Sons}, + title = {Tales and Traditions of the Eskimo with a Sketch of Their Habits, Religion, Language and Other Peculiarities}, + year = {1875} +} + +@book{rink1877, + author = {Rink, H.}, + editor = {Brown, R.}, + address = {London}, + key = {Rink (1877)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + publisher = {H. S. King}, + title = {Danish Greenland: Its People and Its Products}, + year = {1877} +} + +@incollection{york1875, + author = {York, E.}, + address = {London}, + booktitle = {Arctic Geography and Ethnology: A Selection of Papers on Arctic Geography and Ethnology}, + key = {York (1875)}, + lgcode = {Kalaallit (West Greenland) [kala1399]}, + pages = {175-189}, + publisher = {John Murray}, + title = {On the Arctic Highlanders}, + year = {1875} +} + +@inbook{boas1888, + author = {Boas, F.}, + address = {Washington, D.C.}, + key = {Boas (1888)}, + lgcode = {Baffin Island Inuit [baff1240]}, + pages = {390-669}, + publisher = {Smithsonian Institution}, + series = {Annual Reports of the Bureau of American Ethnology}, + title = {The Central Eskimo}, + volume = {6}, + year = {1888} +} + +@book{boas1964, + author = {Boas, F.}, + address = {Lincoln}, + key = {Boas (1964)}, + lgcode = {Baffin Island Inuit [baff1240]}, + publisher = {University of Nebraska Press}, + title = {The Central Eskimo}, + year = {1964} +} + +@book{christy1894, + author = {Christy, M. (editor).}, + address = {London}, + key = {Christy (1894)}, + lgcode = {Baffin Island Inuit [baff1240]}, + publisher = {Hakluyt Society}, + title = {The Voyages of Captain Luke Fox of Hull and Captain Thomas James of Bristol in Search of a Northwest Pas-sage, in 1631-1632}, + year = {1894} +} + +@book{hantzsch1977, + author = {Hantzsch, B.}, + address = {Saskatoon}, + key = {Hantzsch (1977)}, + lgcode = {Baffin Island Inuit [baff1240]}, + number = {3}, + publisher = {University of Saskatchewan}, + series = {Institute for Northern Studies Mawdsley Memoir Series}, + title = {My Life among the Eskimos: Baffin Island Journeys in the Years 1909-1911}, + year = {1977} +} + +@book{low1906, + author = {Low, A.P.}, + address = {Ottawa}, + key = {Low (1906)}, + lgcode = {Baffin Island Inuit [baff1240]}, + publisher = {Government Printing Bureau}, + title = {The Cruise of the Neptune: Report of the Dominion Government Expedition to the Hudson Bay and the Arctic Islands on Board the D.G.S. Neptune, 1903-1904}, + year = {1906} +} + +@book{balikci1970, + author = {Balikci, A.}, + address = {Garden City, N.Y.}, + key = {Balikci (1970)}, + lgcode = {Netsilik [nets1241]}, + publisher = {Natural History Press}, + title = {The Netsilik Eskimo}, + year = {1970} +} + +@article{boas1907, + author = {Boas, F.}, + journal = {Bulletin of the American Museum of Natural History}, + key = {Boas (1907)}, + lgcode = {Netsilik [nets1241]}, + title = {The Eskimo of Baffin Land and Hudson Bay}, + volume = {15}, + year = {1907} +} + +@book{mclintock1860, + author = {M'Clintock, R. N.}, + address = {Boston}, + key = {M'Clintock (1860)}, + lgcode = {Netsilik [nets1241]}, + publisher = {Ticknor and Fields}, + title = {A Narrative of the Discovery of the Fate of Sir John Franklin and His Companions}, + year = {1860} +} + +@book{ross1835, + author = {Ross, J.}, + address = {London}, + key = {Ross (1835)}, + lgcode = {Netsilik [nets1241]}, + publisher = {A. W. Webster}, + title = {Narrative of a Second Voyage in Search of a North-West Passage, and of a Residence in the Arctic Regions during the Years 1829, 1830, 1831, 1832, 1833}, + year = {1835} +} + +@book{savelle1987, + author = {Savelle, J. M.}, + address = {Oxford}, + key = {Savelle (1987)}, + lgcode = {Netsilik [nets1241]}, + number = {358}, + publisher = {British Archaeological Reports}, + series = {BAR International Series}, + title = {Collectors and Foragers: Subsistence-Settlement System Change in the Central Canadian Arctic, A.D. 1000-1960}, + year = {1987} +} + +@book{vandersteenhoven1959, + author = {Van der Steenhoven, G.}, + address = {Ottawa}, + key = {Van der Steenhoven (1959)}, + lgcode = {Netsilik [nets1241]}, + publisher = {Department of Northern Affairs and National Resources}, + series = {Northern Coordination and Research Center, Report}, + title = {Legal Concepts among the Netsilik Eskimos of Pelly Bay}, + volume = {2}, + year = {1959} +} + +@article{holm1914, + author = {Holm, G.}, + journal = {Meddelelser om Gronland}, + key = {Holm (1914)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {1-147}, + title = {Ethnological Sketch of the Angmagsalik Eskimo}, + volume = {39}, + year = {1914} +} + +@incollection{mirsky1937a, + author = {Mirsky, Jeannette}, + editor = {Mead, Margaret}, + address = {New York}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + key = {Mirsky (1937a)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {51-85}, + publisher = {McGraw-Hill}, + title = {The Eskimo of Greenland}, + year = {1937} +} + +@incollection{peterson1984, + author = {Peterson, R.}, + editor = {Damas, D.}, + address = {Washington, D.C.}, + booktitle = {Arctic}, + key = {Peterson (1984)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {622-639}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {East Greenland before 1950}, + volume = {5}, + year = {1984} +} + +@article{poulsen1909, + author = {Poulsen, K.}, + journal = {Meddelelser om Gronland}, + key = {Poulsen (1909)}, + lgcode = {Tasiilaq [tunu1234]}, + number = {4}, + pages = {133-150}, + title = {Contributions to the Anthropology and Nosology of the East-Greenlanders}, + volume = {28}, + year = {1909} +} + +@book{thalbitzer1914, + author = {Thalbitzer, W.}, + key = {Thalbitzer (1914)}, + lgcode = {Tasiilaq [tunu1234]}, + pages = {319-741}, + series = {Meddelelser om Gronland}, + title = {Ethnographical Collections from East Greenland}, + volume = {39}, + year = {1914} +} + +@incollection{ray1885, + author = {Ray, P.H.}, + address = {Washington, D.C.}, + booktitle = {Report of the International Polar Expedition to Point Barrow, Alaska, Pt. 3}, + key = {Ray (1885)}, + lgcode = {Tareumiut [nort2944]}, + pages = {35-87}, + publisher = {U.S. Government Printing Office}, + title = {Ethnographic Sketch of the Natives of Point Barrow}, + year = {1885} +} + +@article{simpson1875, + author = {Simpson, J.}, + address = {London}, + booktitle = {Arctic Geography and Ethnology: A Selection of Papers on Arctic Geography and Ethnology}, + key = {Simpson (1875)}, + lgcode = {Tareumiut [nort2944]}, + pages = {233-275}, + publisher = {John Murray}, + title = {The Western Eskimo}, + year = {1875} +} + +@book{spencer1959, + author = {Spencer, R. F.}, + address = {Washington, D.C.}, + key = {Spencer (1959)}, + lgcode = {Nunamiut [nort2944], Tareumiut [nort2944]}, + number = {171}, + pages = {1-490}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The North Alaskan Eskimo: A Study in Ecology and Society}, + year = {1959} +} + +@article{hurtadoandhill1986, + author = {Hurtado, A. M. and Hill, K. R.}, + journal = {Anthroquest}, + key = {Hurtado and Hill (1986)}, + lgcode = {Guahibo [guah1255]}, + number = {1}, + pages = {14-22}, + title = {The Cuiva: Hunter-Gatherers of Western Venezuela}, + volume = {36}, + year = {1986} +} + +@article{hurtadoandhill1990, + author = {Hurtado, A. M. and Hill, K. R.}, + address = {Albuquerque}, + glottolog_ref = {fabreall2009ann:Guahib0_cuiba18}, + journal = {Journal of Anthropological Research}, + key = {Hurtado and Hill (1990)}, + lgcode = {Guahibo [guah1255]}, + pages = {293-346}, + title = {Seasonality in a foraging society: variation in diet, work effort, fertility and sexual division of labor among the Hiwi of Venezuela}, + volume = {46}, + year = {1990} +} + +@incollection{kirchhoff1945, + author = {Kirchhoff, P.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Circum-Caribbean Tribes}, + key = {Kirchhoff (1945)}, + lgcode = {Guahibo [guah1255]}, + pages = {445-468}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Bureau of American Ethnology Bulletin No. 143}, + title = {Food Gathering Tribes of the Vectezuelan Llanos}, + volume = {4}, + year = {1945} +} + +@phdthesis{metzger1968, + author = {Metzger, D. J.}, + glottolog_ref = {fabreall2009ann:Guahib0_sikuani041}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Metzger (1968)}, + lgcode = {Guahibo [guah1255]}, + school = {Department of Anthropology, University of Pittsburgh}, + title = {Social organization of the Guahibo Indians}, + year = {1968} +} + +@article{wilbert1957, + author = {Wilbert, J.}, + address = {Albuquerque}, + glottolog_ref = {fabreall2009ann:Guahib039}, + journal = {Southwestern Journal of Anthropology}, + key = {Wilbert (1957)}, + lgcode = {Guahibo [guah1255]}, + pages = {88-98}, + title = {Notes on Guahibo Kinship and Social Organization}, + volume = {13}, + year = {1957} +} + +@article{ekblaw1928, + author = {Ekblaw, W. E.}, + journal = {Annals of the Association of American Geographers}, + key = {Ekblaw (1928)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + number = {1}, + pages = {1-44}, + title = {The Material Response of the Polar Eskimo to Their Far Arctic Environment (Continued)}, + volume = {18}, + year = {1928} +} + +@article{ekblaw1948, + author = {Ekblaw, W. E.}, + journal = {Bulletin of the Massachusetts Archaeological Society}, + key = {Ekblaw (1948)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + pages = {1-4}, + title = {Significance of Movement among the Polar Eskimo}, + volume = {10}, + year = {1948} +} + +@incollection{gilberg1984, + author = {Gilberg, R.}, + editor = {Damas, D.}, + address = {Washington}, + booktitle = {Arctic,}, + glottolog_ref = {hh:e:Gilberg:Polar-Eskimo}, + key = {Gilberg (1984)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + pages = {577-594}, + publisher = {Smithsonian Institution}, + series = {Handbook of North American Indians}, + title = {Polar Eskimo}, + volume = {5}, + year = {1984} +} + +@book{steensby1910, + author = {Steensby, H. P.}, + address = {Copenhagen}, + key = {Steensby (1910)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]}, + pages = {253-405}, + publisher = {Bianco Luno}, + series = {Meddelelser om Gronland}, + title = {Contributions to the Ethnology and Anthropogeography of the Polar Eskimos}, + volume = {34}, + year = {1910} +} + +@article{agrawal1967, + author = {Agrawal, H. N.}, + journal = {Bulletin of the Anthropological Survey of India}, + key = {Agrawal (1967)}, + lgcode = {Shompen [shom1245]}, + number = {1-2}, + pages = {83-97}, + title = {Physical Characteristics of the Shompen of Great Nicobar}, + volume = {16}, + year = {1967} +} + +@book{rizvi1990, + author = {Rizvi, S. N. H.}, + address = {Calcutta}, + glottolog_ref = {hh:e:Rizvi:Shompen}, + key = {Rizvi (1990)}, + lgcode = {Shompen [shom1245]}, + pages = {54}, + publisher = {Seagull Books}, + title = {The Shompen: A Vanishing Tribe of the Great Nicobar Island}, + year = {1990} +} + +@article{politis1992, + author = {Politis, G.}, + address = {Bogotá}, + glottolog_ref = {fabreall2009ann:Puinave-Maku_nukak02}, + journal = {Revista Universidad Nacional}, + key = {Politis (1992)}, + lgcode = {Nukak [nuka1242]}, + pages = {3-6}, + title = {La Situaci6n Actual de los Nukak}, + volume = {26}, + year = {1992} +} + +@article{politisperscomm1992, + author = {Politis, G.}, + address = {Bogotá}, + glottolog_ref = {fabreall2009ann:Puinave-Maku_nukak02}, + journal = {Revista Universidad Nacional}, + key = {Politis pers. comm. (1992)}, + lgcode = {Nukak [nuka1242]}, + pages = {3-6}, + title = {La Situaci6n Actual de los Nukak}, + volume = {26}, + year = {1992} +} + +@misc{politisperscomm1993, + author = {Politis}, + howpublished = {pers. comm.}, + key = {Politis pers. comm. (1993)}, + lgcode = {Nukak [nuka1242]}, + year = {1993} +} + +@article{baldus1937, + author = {Baldus, H.}, + glottolog_ref = {fabreall2009ann:716}, + journal = {Ensaios de etnologia brasileira}, + key = {Baldus (1937)}, + lgcode = {Bororo [boro1282]}, + pages = {112-162}, + publisher = {São Paulo: Biblioteca Pedagógica Brasileira, série 5a, Brasiliana 101}, + title = {The Social Position of the Woman among the Eastern Bororo (transl. I. Lillios)}, + volume = {101}, + year = {1937} +} + +@article{cook1908, + author = {Cook, W. A.}, + journal = {Smithsonian Miscellaneous Collections}, + key = {Cook (1908)}, + lgcode = {Bororo [boro1282]}, + pages = {48-62}, + title = {The Bororo Indians of Matto Grosso, Brazil}, + volume = {50}, + year = {1908} +} + +@article{levistrauss1936, + author = {Lévi-Strauss, C.}, + journal = {Journal de la Societe des Americanistes de Paris (n.s.)}, + key = {Lévi-Strauss (1936)}, + lgcode = {Bororo [boro1282]}, + pages = {269-304}, + title = {Contribution a l'Etude de l'Organisation Sociale des Indiens Bororo}, + volume = {28}, + year = {1936} +} + +@book{levistrauss1970, + author = {Lévi-Strauss, C.}, + address = {New York}, + key = {Lévi-Strauss (1970)}, + lgcode = {Bororo [boro1282], Nambikwara [sout2994]}, + publisher = {Atheneum}, + title = {Tristes Tropiques: An Anthropological Study of Primitive Societies in Brazil}, + year = {1970} +} + +@article{newman1953, + author = {Newman, M. T.}, + journal = {American Anthropologist}, + key = {Newman (1953)}, + lgcode = {Bororo [boro1282], Nambikwara [sout2994]}, + pages = {311-327}, + title = {The Application of Ecological Rules to the Racial Anthropology of the Aboriginal New World}, + volume = {55}, + year = {1953} +} + +@incollection{metraux1946guato, + author = {Metraux, A}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Metraux (1946guato)}, + lgcode = {Guató [guat1253]}, + pages = {409-418}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Vol. 1, Bureau of American Ethnology Bulletin No. 143}, + title = {The Guato}, + year = {1946} +} + +@article{schmidt1942, + author = {Schmidt, M.}, + journal = {Revista de la Sociedad Cientifica del Paraguay}, + key = {Schmidt (1942)}, + lgcode = {Guató [guat1253]}, + number = {6}, + pages = {41-75}, + title = {Resultados de mi tercera expedicion a los Guatos efectuada en el ano de 1928}, + volume = {5}, + year = {1942} +} + +@book{holmberg1950, + author = {Holmberg, A. R.}, + address = {Washington, D.C.}, + key = {Holmberg (1950)}, + lgcode = {Sirionó [siri1273]}, + number = {10}, + pages = {1-104}, + publisher = {U.S. Government Printing Office}, + series = {Smithsonian Institution Institute of Social Anthropology Publication}, + title = {Nomads of the Long Bow: The Siriono of Eastern Bolivia}, + year = {1950} +} + +@book{stearman1989, + author = {Stearman, A. M.}, + address = {New York}, + glottolog_ref = {fabreall2009ann:Tupi_yuki24}, + key = {Stearman (1989)}, + lgcode = {Yuqui [yuqu1240]}, + publisher = {Holt, Rinehart and Wilson}, + title = {Yuquí. Forest nomads in a changing world}, + year = {1989} +} + +@article{aspelin1976, + author = {Aspelin, P. L.}, + address = {La Haya}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + key = {Aspelin (1976)}, + lgcode = {Nambikwara [sout2994]}, + pages = {1-31}, + title = {Nambicuara economic dualism: Lévi-Strauss in the garden, once again}, + volume = {132}, + year = {1976} +} + +@article{levistrauss1948a, + author = {Lévi-Strauss, C.}, + journal = {Journal de la Societe des Americanistes de Paris (n.s.)}, + key = {Lévi-Strauss (1948a)}, + lgcode = {Nambikwara [sout2994]}, + pages = {1-132}, + title = {La Vie Familiale et Sociale des Indiens Nambikwara}, + volume = {37}, + year = {1948} +} + +@incollection{levistrauss1948b, + author = {Lévi-Strauss, C.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Tropical Forest Tribes}, + key = {Lévi-Strauss (1948b)}, + lgcode = {Nambikwara [sout2994]}, + pages = {361-370}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Vol. 3. Bureau of American Ethnology Bulletin No. 143}, + title = {The Nambicuara}, + year = {1948} +} + +@article{oberg1953, + author = {Oberg, K.}, + address = {Washington, D.C.}, + glottolog_ref = {fabreall2009ann:Nambikwara_nambikwara_del_sur18}, + journal = {Smithsonian Institute of Social Anthropology Publication}, + key = {Oberg (1953)}, + lgcode = {Aché [ache1246], Aweti [awet1244], Bacairi [baka1277], Bororo [boro1282], Kamayurá [kama1373], Nambikwara [sout2994], Umotina [umot1240]}, + publisher = {Smithsonian Institution}, + title = {Indian tribes of northern Mato Grosso, Brazil}, + volume = {15}, + year = {1953} +} + +@incollection{gogginandsturtevant1964, + author = {Goggin, J. M. and Sturtevant, W. C.}, + editor = {Goodenough, W. H.}, + address = {New York}, + booktitle = {Explorations in Cultural Antirippology: Essays in Honor of George Peter Murdock}, + key = {Goggin and Sturtevant (1964)}, + lgcode = {Calusa [calu1239]}, + pages = {179-219}, + publisher = {McGraw-Hill}, + title = {The Calusa: A Stratified, Nonagricultural Society (with Notes on Sibling Marriage)}, + year = {1964} +} + +@book{hann1991, + editor = {Hann, J.H. (editor and translator)}, + address = {Gainesville}, + key = {Hann (1991)}, + lgcode = {Calusa [calu1239]}, + publisher = {Florida Museum of Natural History and University of Florida Press}, + title = {Missions to the Calusa}, + year = {1991} +} + +@phdthesis{widmer1983, + author = {Widmer, R. J.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Widmer (1983)}, + lgcode = {Calusa [calu1239]}, + school = {Department of Anthropology, Pennsylvania State University, College Station}, + title = {The Evolution of the Calusa, a Non-Agricultural Chiefdom on the Southwest Florida Coast}, + year = {1983} +} + +@article{clastres1968, + author = {Clastres, P.}, + journal = {Journal of the Societe des Americanistes}, + key = {Clastres (1968)}, + lgcode = {Aché [ache1246]}, + pages = {8-61}, + title = {Ethnographie des Indiens Guayaki}, + volume = {57}, + year = {1968} +} + +@incollection{clastres1972, + author = {Clastres, P.}, + editor = {Bicchieri, M.}, + address = {New York}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + key = {Clastres (1972)}, + lgcode = {Aché [ache1246]}, + pages = {138-174}, + publisher = {Holt, Rinehart and Winston}, + title = {The Guayaki}, + year = {1972} +} + +@article{hilletal1984, + author = {Hill, K. and Hawkes, C. and Hurtado, A. M. and Kaplan, H.}, + journal = {Human Ecology}, + key = {Hill et al. (1984)}, + lgcode = {Aché [ache1246]}, + number = {2}, + pages = {101-135}, + title = {Seasonal Variance in the Diet of Ache HunterGatherers of Eastern Paraguay}, + volume = {12}, + year = {1984} +} + +@incollection{jones1983, + author = {Jones, K. T.}, + editor = {LeMoine, G. M. and MacEachern, A. S.}, + address = {Calgary}, + booktitle = {Carnivores, Human Scavengers, and Predators: A Question of Bone Technology}, + key = {Jones (1983)}, + lgcode = {Aché [ache1246]}, + pages = {171-191}, + publisher = {University of Calgary}, + title = {Forager Archaeology: The Ache of Eastern Paraguay}, + year = {1983} +} + +@misc{metrauxandbaldus1946, + author = {Metraux, A. and Baldus, H.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Metraux and Baldus (1946)}, + lgcode = {Aché [ache1246], Aimoré [kren1239]}, + pages = {435-444}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Vol. 1, Bureau of American Ethnology Bulletin No. 143}, + title = {The Guayaki}, + year = {1946} +} + +@article{ehrenreich1887, + author = {Ehrenreich, P.}, + journal = {Zeitschrift für Ethnologie}, + key = {Ehrenreich (1887)}, + lgcode = {Aimoré [kren1239]}, + pages = {1-46, 49-82}, + title = {Über die Botocudos der Brasilianischen Provinzen Espiritu Santo and Minas Geraes}, + volume = {19}, + year = {1887} +} + +@incollection{metraux1946botocudo, + author = {Metraux, A.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Metraux (1946botocudo)}, + lgcode = {Aimoré [kren1239]}, + pages = {531-540}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians, Vol. 1, Bureau of American Ethnology Bulletin No. 143}, + title = {The Botocudo}, + year = {1946} +} + +@book{kozaketal1979, + author = {Kozak, V. and Baxter, D. and Williamson, L. and Carneiro, R. L.}, + address = {New York}, + key = {Kozak et al. (1979)}, + lgcode = {Héta [xeta1241]}, + number = {6}, + publisher = {American Museum of Natural History}, + series = {Anthropological Papers}, + title = {The Heta Indians: Fish in a Dry Pond}, + volume = {55}, + year = {1979} +} + +@article{bose1964, + author = {Bose, S.}, + glottolog_ref = {hh:e:Bose:Onge}, + journal = {Man in India}, + key = {Bose (1964)}, + lgcode = {Onge [onge1236]}, + number = {4}, + pages = {298-310}, + title = {Economy of the Onge of Little Andaman}, + volume = {44}, + year = {1964} +} + +@misc{cooper1991, + author = {Cooper, Z.}, + howpublished = {Prepared for the Symposium on Living Traditions: South Asian Ethnoarchaeology, Cambridge, U.K., September 23-25. Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Cooper (1991)}, + lgcode = {Onge [onge1236]}, + title = {Abandoned Onge Encampments and Their Relevance in Understanding the Archaeological Record in the Andaman Islands}, + year = {1991} +} + +@misc{heinegeldernandhoehngerlachstein1958, + editor = {Heine-Geldern, R. and Hoehnwart-Gerlachstein, A.}, + address = {Vienna}, + key = {Heine-Geldern and Hoehn-Gerlachstein (1958)}, + lgcode = {Onge [onge1236]}, + publisher = {International Union of Anthropological and Ethnological Sciences and UNESCO}, + title = {Bulletin of the International Committee on Urgent Anthropological and Ethnological Research, No. 1}, + year = {1958} +} + +@article{man1883, + author = {Man, E. H.}, + journal = {Journal of the Anthropological Institute of Great Britain and Ireland}, + key = {Man (1883)}, + lgcode = {Andamanese [akab1249], Onge [onge1236]}, + number = {1}, + pages = {69-116}, + title = {On the Aboriginal Inhabitants of the Andaman Islands}, + volume = {12}, + year = {1883} +} + +@book{sen1962, + author = {Sen, S.P. K.}, + address = {Calcutta}, + key = {Sen (1962)}, + lgcode = {Onge [onge1236]}, + publisher = {Post-Graduate Book Mart}, + title = {The Land and People of the Andamans: A Geographical and Sock-Economic Study with a Short Account of the Nicobal' Islands}, + year = {1962} +} + +@book{temple1903, + author = {Temple, R. C.}, + address = {Calcutta}, + key = {Temple (1903)}, + lgcode = {Jarawa [jara1245], Onge [onge1236]}, + publisher = {Office of the Superintendent of Government Printing}, + series = {Census of India, 1901}, + title = {The Andaman and Nicobar Islands: Report on the Census}, + volume = {3}, + year = {1903} +} + +@book{henry1964, + author = {Henry, J.}, + address = {New York}, + glottolog_ref = {hh:e:Henry:Kaingang}, + key = {Henry (1964)}, + lgcode = {Aweikoma [xokl1240]}, + pages = {215}, + publisher = {Vintage Books}, + title = {Jungle People: a Kaingang tribe of the highlands of Brazil}, + year = {1964} +} + +@article{boschinandmacuzzi1979, + author = {Boschin, M. T. and Macuzzi., L. R.}, + journal = {Colegio de Graduados en Antropologia, Serie Monografica (Buenos Aires)}, + key = {Boschin and Macuzzi (1979)}, + lgcode = {Tehuelche [tehu1242]}, + pages = {3-37}, + title = {Ensayo metodologico para la reconstruccion ethnohistorica: su aplicacion a la coprension del modelo Tehuelche Meridional}, + volume = {4}, + year = {1979} +} + +@incollection{cooper1946c, + author = {Cooper, J. M.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Cooper (1946c)}, + lgcode = {Tehuelche [tehu1242]}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {127-168}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians}, + title = {The Patagonian and Pampean hunters}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + volume = {1}, + year = {1946} +} + +@inproceedings{goni1988, + author = {Goni, R.A.}, + address = {Buenos Aires}, + booktitle = {Precirculados de las Ponencias Cientificas presentada a los Simposios del IX Congreso nacional de Arquelogia Argentina}, + key = {Goni (1988)}, + lgcode = {Tehuelche [tehu1242]}, + pages = {140-151}, + publisher = {Universidad de Buenos Aires}, + title = {Arqueologia de momentos tardios en el Parque Nacional Perito Moreno (Santa Cruz, Argentina)}, + year = {1988} +} + +@book{lothrop1928, + author = {Lothrop, Samuel K.}, + key = {Lothrop (1928)}, + lgcode = {Alacaluf [qawa1238], Ona [onaa1245], Tehuelche [tehu1242], Yahgan [yama1264]}, + pages = {48-105}, + series = {Contributions from the Museum of the American Indian, Heye Foundation}, + title = {The Indians of Tierra del Fuego}, + volume = {10}, + year = {1928} +} + +@incollection{cooper1946d, + author = {Cooper, J. M.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + glottolog_ref = {fabreall2009ann:Chon25}, + key = {Cooper (1946d)}, + lgcode = {Chono [chon1248]}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {47-55}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians}, + title = {The Chono}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + volume = {1}, + year = {1946} +} + +@incollection{bird1946, + author = {Bird, J. B.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Bird (1946)}, + lgcode = {Alacaluf [qawa1238]}, + number = {1}, + pages = {55-80}, + publisher = {Smithsonian Institution}, + series = {Bureau of American Ethnology Bulletin}, + title = {The Alacaluf}, + volume = {143}, + year = {1946} +} + +@book{bird1988, + author = {Bird, J. B.}, + editor = {Hyslop, J.}, + address = {Iowa City}, + key = {Bird (1988)}, + lgcode = {Alacaluf [qawa1238]}, + publisher = {University of Iowa Press}, + title = {Travels and Archaeology in South Chile}, + year = {1988} +} + +@misc{birdperscomm1970, + author = {Bird}, + howpublished = {Pers. comm.}, + key = {Bird pers. comm. (1970)}, + lgcode = {Alacaluf [qawa1238]}, + year = {1970} +} + +@book{chapman1982, + author = {Chapman, A.}, + address = {Cambridge}, + glottolog_ref = {fabreall2009ann:Chon_selknam24}, + key = {Chapman (1982)}, + lgcode = {Ona [onaa1245]}, + publisher = {Cambridge University Press}, + title = {Drama and power in a hunting society: the Selk'nam of Tierra del Fuego}, + year = {1982} +} + +@incollection{cooper1946b, + author = {Cooper, J. M.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Cooper (1946b)}, + lgcode = {Ona [onaa1245]}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {107-125}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians}, + title = {The Ona}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + volume = {1}, + year = {1946} +} + +@book{gusinde1931, + author = {Gusinde, M.}, + address = {New Haven, Conn.}, + key = {Gusinde (1931)}, + lgcode = {Ona [onaa1245]}, + publisher = {Human Relations Area Files}, + title = {The Selk'nam: On the Life and Thought of a Hunting People on the Great Land of Tierra del Fuego, translated by F. Schutze. Die Feuerland-Indianer, Vol. 1.}, + year = {1931} +} + +@incollection{cooper1946a, + author = {Cooper, J. M.}, + editor = {Steward, J. H.}, + address = {Washington, D.C.}, + booktitle = {The Marginal Tribes}, + key = {Cooper (1946a)}, + lgcode = {Yahgan [yama1264]}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {81-106}, + publisher = {Smithsonian Institution}, + series = {Handbook of South American Indians}, + title = {The Yahgan}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + volume = {1}, + year = {1946} +} + +@book{gusinde1937a, + author = {Gusinde, M.}, + address = {New Haven, Conn.}, + key = {Gusinde (1937a)}, + lgcode = {Yahgan [yama1264]}, + publisher = {Human Relations Area Files}, + title = {The Yahgan: The Life and Thought of the Water Nomads of Cape Horn, translated by F. Schutze. Die Feuerland-Indianer, Vol. 2.}, + year = {1937} +} + +@article{bahuchet1979, + author = {Bahuchet, S.}, + journal = {Information sur les sciences sociales}, + key = {Bahuchet (1979)}, + lgcode = {Aka [bamb1264]}, + number = {6}, + pages = {999-1019}, + title = {Utilisation de'Pespace forestier par les Pygmees Aka, Chasseurs-sueilleurs d'Afrique Centrale}, + volume = {18}, + year = {1979} +} + +@incollection{bahuchet1988, + author = {Bahuchet, S.}, + editor = {de Garine, I. and Harrison, G. A.}, + address = {Oxford}, + booktitle = {Coping with Uncertainty in the Food Supply}, + key = {Bahuchet (1988)}, + lgcode = {Aka [bamb1264]}, + pages = {118-149}, + publisher = {Clarendon Press}, + title = {Food Supply Uncertainty among the Aka Pygmies (Lobaye, Central African Republic)}, + year = {1988} +} + +@inbook{cavallisforza1986a, + author = {Cavalli-Sforza, L. L.}, + editor = {Cavalli-Sforza, L. L.}, + address = {New York}, + booktitle = {African pygmies}, + glottolog_ref = {eballiso2009:32705}, + key = {Cavalli-Sforza (1986a)}, + lgcode = {Aka [bamb1264], Baka [baka1272]}, + pages = {23-45}, + publisher = {Academic Press}, + title = {Demographic Data}, + year = {1986} +} + +@phdthesis{hudson1990, + author = {Hudson, J. L.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Hudson (1990)}, + lgcode = {Aka [bamb1264]}, + school = {Department of Anthropology, University of California, Santa Barbara}, + title = {Advancing Methods in Zooarchaeology: An Ethnoarchaeological Study among the Aka}, + year = {1990} +} + +@article{heymer1980, + author = {Heymer, A.}, + journal = {Mankind Quarterly}, + key = {Heymer (1980)}, + lgcode = {Bayaka [beka1240]}, + number = {3-4}, + pages = {173-204}, + title = {The Bayaka Pygmies of Central Africa in the Light of Human Ethnological Research Work}, + volume = {20}, + year = {1980} +} + +@article{hiernauxetal1975, + author = {Hiernaux, J. and Rudan, P. and Brambati, A.}, + journal = {Annals of Human Biology}, + key = {Hiernaux et al. (1975)}, + lgcode = {Baka [baka1272], Bayaka [beka1240], Mbuti [bila1255]}, + pages = {3-12}, + title = {Climate and the Weight/Height Relationship in SubSahara Atica}, + volume = {2}, + year = {1975} +} + +@article{lalouel1950, + author = {Lalouel, J.}, + journal = {Bulletins et memoires de la Societe d'Anthropologie de Paris}, + key = {Lalouel (1950)}, + lgcode = {Bayaka [beka1240]}, + number = {10}, + pages = {75-211}, + title = {Les Babinga Ethnographique des Negrilles Baka et Bayaka}, + volume = {1}, + year = {1950} +} + +@book{terashima1980, + author = {Terashima, H.}, + address = {Osaka}, + glottolog_ref = {guldemann:4355}, + key = {Terashima (1980)}, + lgcode = {Bambote [holo1240]}, + pages = {223-268}, + publisher = {National Museum of Ethnology}, + series = {Senri Ethnological Studies}, + title = {Hunting life of the Bambote: an anthropological study of hunter-gatherers in a wooded savanna}, + volume = {6}, + year = {1980} +} + +@book{cavallisforza1986c, + editor = {Cavalli-Sforza, L. L.}, + address = {New York}, + key = {Cavalli-Sforza (1986c)}, + lgcode = {Baka [baka1272], Mbuti [bila1255]}, + publisher = {Academic Press}, + title = {African Pygmies}, + year = {1986} +} + +@book{valloisandmarquer1976, + author = {Vallois, H. V. and Marquer, P.}, + address = {Paris}, + glottolog_ref = {hh:e:ValloisMarquer:Baka}, + key = {Vallois and Marquer (1976)}, + lgcode = {Baka [baka1272]}, + publisher = {Paris}, + series = {Mémoires du Muséum national d'histoire naturelle. Série A, Zoologie}, + title = {Les Pygmées Baká du Cameroun: Anthropologie et Ethnographie avec une annexe Démographique}, + volume = {100}, + year = {1976} +} + +@phdthesis{bailey1985, + author = {Bailey, R. C.}, + address = {Cambridge}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Bailey (1985)}, + lgcode = {Efe [efee1239]}, + school = {Department of Social Relations, Harvard University}, + title = {The Socioecology of the Efe Pygmy Men in the Ituri Forest, Zaire}, + year = {1985} +} + +@incollection{baileyandpeacock1988, + author = {Bailey, R. C. and Peacock, N. R.}, + editor = {Garine, Igor de and Harrison, G.A.}, + booktitle = {Coping with Uncertainty in the Food Supply}, + glottolog_ref = {eballiso2009:56046}, + key = {Bailey and Peacock (1988)}, + lgcode = {Efe [efee1239]}, + pages = {88-117}, + publisher = {Oxford Univ. Press}, + title = {Efe pygmies of northeast Zaïre: subsistence strategies in the Ituri Forest}, + year = {1988} +} + +@phdthesis{fisher1987, + author = {Fisher, J. W.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Fisher (1987)}, + lgcode = {Efe [efee1239]}, + school = {Department of Anthropology, University of California, Berkeley}, + title = {Shadows in the Forest: Ethnoarchaeology among the Efe Pygmies}, + year = {1987} +} + +@article{fisherandstrickland1989, + author = {Fisher, J. W. and Strickland, H. C.}, + journal = {American Journal of Physical Anthropology}, + key = {Fisher and Strickland (1989)}, + lgcode = {Efe [efee1239]}, + pages = {473-484}, + title = {Ethnoarchaeology among the Efe Pygmies, Zaire: Spatial Organization of Campsites}, + volume = {78}, + year = {1989} +} + +@phdthesis{peacock1985, + author = {Peacock, N. R.}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Peacock (1985)}, + lgcode = {Efe [efee1239]}, + school = {Department of Social Relations, Harvard University, Cambridge, Mass.}, + title = {Time Allocation, Work, and Fertility among Efe Pygmy Women of Northeast Zaire}, + year = {1985} +} + +@book{schebesta1962a, + author = {Schebesta, P.}, + address = {New Haven, Conn.}, + key = {Schebesta (1962a)}, + lgcode = {Efe [efee1239], Semang [kens1248]}, + note = {translated by F. Schutze}, + publisher = {Human Relations Area Files}, + title = {Ethnography of the Negritos 1: Economy and Sociology}, + year = {1962} +} + +@article{harako1976, + author = {Harako, R.}, + address = {Kyoto}, + glottolog_ref = {eballiso2009:1586}, + journal = {Kyoto University African Studies}, + key = {Harako (1976)}, + lgcode = {Mbuti [bila1255]}, + pages = {37-99}, + publisher = {Kyoto University}, + title = {The Mbuti as hunters: a study of ecological anthropology of the Mbuti Pygmies}, + volume = {10}, + year = {1976} +} + +@book{ichikawa1978, + author = {Ichikawa, M.}, + address = {Osaka}, + glottolog_ref = {hh:e:Ichikawa:Mbuti:Residential}, + key = {Ichikawa (1978)}, + lgcode = {Mbuti [bila1255]}, + number = {1}, + pages = {131-188}, + publisher = {National Museum of Ethnology}, + series = {Senri Ethnological Studies}, + title = {The residential groups of the Mbuti pygmies}, + volume = {1}, + year = {1978} +} + +@incollection{putnam1948, + author = {Putnam, P.}, + editor = {Coon, C.}, + address = {New Haven}, + booktitle = {A reader in General Anthropology}, + key = {Putnam (1948)}, + lgcode = {Mbuti [bila1255]}, + pages = {322-342}, + publisher = {Yale University Press}, + title = {The pygmies of the Ituri Forest}, + year = {1948} +} + +@article{tanno1976, + author = {Tanno, T.}, + address = {Kyoto}, + glottolog_ref = {eballiso2009:12122}, + journal = {Kyoto University African Studies}, + key = {Tanno (1976)}, + lgcode = {Mbuti [bila1255]}, + pages = {101-135}, + publisher = {Kyoto University}, + title = {The Mbuti net-hunters of the Ituri Forest, eastern Zaïre: their hunting activities and band composition}, + volume = {10}, + year = {1976} +} + +@book{turnbull1965a, + author = {Turnbull, C. M.}, + address = {Garden City NY}, + glottolog_ref = {eballiso2009:14809}, + key = {Turnbull (1965a)}, + lgcode = {Mbuti [bila1255]}, + publisher = {Natural History Press}, + title = {Wayward servants: the two worlds of the African pygmies}, + year = {1965} +} + +@misc{kellyandpoyer1993, + author = {Kelly, R.L. and Poyer, L. A.}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Kelly and Poyer (1993)}, + lgcode = {Mikea [masi1268]}, + title = {Ethnoarchaeology among the Mikea of Southwestern Madagascar: Report of Activities, July-August, 1993}, + year = {1993} +} + +@article{clark1951, + author = {Clark, J.D.}, + journal = {Northern Rhodesia Journal}, + key = {Clark (1951)}, + lgcode = {Hukwe [kxoe1243]}, + number = {3}, + pages = {56-65}, + title = {Bushman Hunters of the Barotse Forests}, + volume = {1}, + year = {1951} +} + +@article{fourie1927, + author = {Fourie, L.}, + journal = {Veroffentlichungen der Wissenschaftlichen Vereinigung in Sildwestafrika}, + key = {Fourie (1927)}, + lgcode = {Hai//om [haio1238]}, + pages = {19-63}, + title = {7 Preliminary Notes on Certain Customs of the Hei//orn Bushmen}, + volume = {1}, + year = {1927} +} + +@incollection{fourie1928, + author = {Fourie, L.}, + editor = {C. H. Hahn, H. Vedder and Fourie, L.}, + address = {London}, + booktitle = {The native tribes of South West Africa}, + glottolog_ref = {guldemann:1856}, + key = {Fourie (1928)}, + lgcode = {Hai//om [haio1238]}, + pages = {79-106}, + publisher = {Frank Cass}, + title = {The Bushmen of South West Africa}, + year = {1928} +} + +@article{tobias1962, + author = {Tobias, P. V.}, + glottolog_ref = {eballiso2009:58394}, + journal = {Anthropos}, + key = {Tobias (1962)}, + lgcode = {!Kung [juho1239], G/wi [gwii1239], Hai//om [haio1238], Kua [kuaa1238], Naron [naro1249]}, + pages = {801-810}, + title = {On the Increasing Stature of the Bushmen}, + volume = {57}, + year = {1962} +} + +@article{werner1906a, + author = {Werner, H.}, + journal = {Zeitschrift fur Ethnologie}, + key = {Werner (1906a)}, + lgcode = {Hai//om [haio1238]}, + pages = {241-268}, + title = {Anthropologische, ethnologische and ethnographische Beobachtungen über die Heikum-und Kung Buschleute}, + volume = {38}, + year = {1906} +} + +@article{bleek1931a, + author = {Bleek, D. F.}, + journal = {South African Journal of Science}, + key = {Bleek (1931a)}, + lgcode = {Hadza [hadz1240]}, + pages = {423-429}, + title = {Traces of Former Bushmen Occupation in Tanganyika Territory}, + volume = {28}, + year = {1931} +} + +@article{blurtonjonesetal1992, + author = {Blurton-Jones, N. G. and Smith, L. C. and O'Connell, J. F. and Hawkes, K. and Kamuzora, C. L.}, + glottolog_ref = {eballiso2009:34759}, + journal = {American Journal of Physical Anthropology}, + key = {Blurton-Jones et al. (1992)}, + lgcode = {Hadza [hadz1240]}, + pages = {159-181}, + title = {Demography of the Hadza: an increasing and high density population of savanna foragers}, + volume = {89}, + year = {1992} +} + +@incollection{hawkesetal1989, + author = {Hawkes, C. and O'Connell, J. F. and Jones, N. B.}, + editor = {Standen, V. and Foley, R.A.}, + address = {London}, + booktitle = {Comparative Socioecology: The Behavioral Ecology of Humans and Other Mammals}, + glottolog_ref = {eballiso2009:22617}, + key = {Hawkes et al. (1989)}, + lgcode = {Hadza [hadz1240]}, + pages = {341-366}, + publisher = {Blackwell Scientific Publ.}, + series = {Special publ. from the British Ecological Soc.}, + title = {Hardworking Hadza grandmothers}, + volume = {8}, + year = {1989} +} + +@book{leeanddevore1968a, + editor = {Lee, R.B. and DeVore, I.}, + address = {Chicago}, + key = {Lee and Devore (1968a)}, + lgcode = {Hadza [hadz1240]}, + publisher = {Aldine}, + title = {Man the Hunter}, + year = {1968} +} + +@incollection{oconnelletal1991, + author = {O'Connell, J. F. and Hawkes, K. and Blurton-Jones, N. G.}, + editor = {Kroll, Ellen M. and Price, T.D.}, + address = {New York}, + booktitle = {The Interpretation of Archaeological Spatial Patterning}, + glottolog_ref = {eballiso2009:26815}, + key = {O'Connell et al. (1991)}, + lgcode = {Hadza [hadz1240]}, + pages = {61-77}, + publisher = {Plenum Press}, + title = {Distribution of refuse-producing activities at Hadza residential base camps: implications for analyses of archaeological site structure}, + year = {1991} +} + +@misc{oconnellperscomm1977, + author = {O'Connell}, + howpublished = {pers. comm.}, + key = {O'Connell pers. comm. (1977)}, + lgcode = {Hadza [hadz1240]}, + year = {1977} +} + +@misc{oconnellperscomm1982, + author = {O'Connell}, + howpublished = {pers. comm.}, + key = {O'Connell pers. comm. (1982)}, + lgcode = {Hadza [hadz1240]}, + year = {1982} +} + +@incollection{woodburn1968b, + author = {Woodburn, J.}, + editor = {Lee, Richard B. and DeVore, Irven}, + address = {Chicago}, + booktitle = {Man the Hunter}, + glottolog_ref = {eballiso2009:15259}, + key = {Woodburn (1968b)}, + lgcode = {Hadza [hadz1240]}, + pages = {103-110}, + publisher = {Aldine Publ.}, + title = {Stability and flexibility in Hadza residential grouping}, + year = {1968} +} + +@article{fox1952, + author = {Fox, R.B.}, + journal = {Philippine Journal of Science}, + key = {Fox (1952)}, + lgcode = {Ayta (Pinatubo) [boto1242]}, + number = {3-4}, + pages = {173-394}, + title = {The Pinatubo Negritos: Their Useful Plants and Material Culture}, + volume = {81}, + year = {1952} +} + +@book{reed1904, + author = {Reed, W.}, + address = {Manila}, + glottolog_ref = {hh:hew:Reed:Negritos}, + key = {Reed (1904)}, + lgcode = {Ayta (Pinatubo) [boto1242]}, + pages = {100}, + publisher = {Bureau of Public Printing}, + series = {Ethnological Survey Publications}, + title = {Negritos of Zambales}, + volume = {2(1)}, + year = {1904} +} + +@phdthesis{blackburn1971, + author = {Blackburn, R. H.}, + glottolog_ref = {eballiso2009:33929}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Blackburn (1971)}, + lgcode = {Dorobo [okie1245]}, + school = {Department of Anthropology, Michigan State University, East Lansing}, + title = {Honey in Okiek personality, culture and society}, + year = {1971} +} + +@article{huntingford1929, + author = {Huntingford, G. W. B.}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Huntingford (1929)}, + lgcode = {Dorobo [okie1245]}, + pages = {333-378}, + title = {Modern Hunters: Some Accounts of the KameliloKapchepkendi Dorobo (Okiek) of Kenya Colony}, + volume = {59}, + year = {1929} +} + +@article{huntingford1942, + author = {Huntingford, G. W. B.}, + journal = {African Studies}, + key = {Huntingford (1942)}, + lgcode = {Dorobo [okie1245]}, + pages = {183-200}, + title = {The Social Organization of the Dorobo}, + volume = {1}, + year = {1942} +} + +@article{huntingford1951, + author = {Huntingford, G. W. B.}, + journal = {Anthropos}, + key = {Huntingford (1951)}, + lgcode = {Dorobo [okie1245]}, + pages = {1-48}, + title = {The Social Institutions of the Dorobo}, + volume = {46}, + year = {1951} +} + +@article{huntingford1954, + author = {Huntingford, G. W. B.}, + journal = {Anthropos}, + key = {Huntingford (1954)}, + lgcode = {Dorobo [okie1245]}, + pages = {123-148}, + title = {The Political Organization of the Dorobo}, + volume = {46}, + year = {1954} +} + +@article{huntingford1955a, + author = {Huntingford, G. W. B.}, + glottolog_ref = {eballiso2009:42664}, + journal = {Anthropos}, + key = {Huntingford (1955a)}, + lgcode = {Dorobo [okie1245]}, + pages = {602-634}, + title = {The Economic Life of the Dorobo}, + volume = {50}, + year = {1955} +} + +@article{wayland1931, + author = {Wayland, E. J.}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Wayland (1931)}, + lgcode = {Dorobo [okie1245], Jie [jiee1239], Labwor [labw1238]}, + pages = {187-236}, + title = {Preliminary Studies of the Tribes of Karamoja: The Labwor, the Wanderobo, the Dodotho, and Jie}, + volume = {61}, + year = {1931} +} + +@article{bleek1929, + author = {Bleek, D. F.}, + journal = {Bantu Studies}, + key = {Bleek (1929)}, + lgcode = {!Kung [juho1239], Sekele [vase1234]}, + pages = {105-125}, + title = {Bushmen of Central Angola}, + volume = {3}, + year = {1929} +} + +@article{decastroandalmeida1956, + author = {De Castro, M. E. and Alemeida, A.}, + journal = {Progresso Cien}, + key = {De Castro and Almeida (1956)}, + lgcode = {Sekele [vase1234]}, + pages = {6-16}, + title = {Canones de mulheres indigenas de Angola}, + volume = {23}, + year = {1956} +} + +@article{decastroandalmeida1957, + author = {De Castro, M. E. and Alemeida, A.}, + journal = {Ultram}, + key = {De Castro and Almeida (1957)}, + lgcode = {Sekele [vase1234]}, + pages = {1-14}, + title = {Subsidio para a estudo anthropologico dos Mucussos e mangares (Angolo)}, + volume = {6}, + year = {1957} +} + +@incollection{brooksetal1984, + author = {Brooks, A. S. and Gelburd, D. E. and Yellen, J. E.}, + editor = {Clark, J. D. and Brandt, S. A.}, + address = {Berkeley}, + booktitle = {From Hunters to Farmers: The Causes and Consequences of Food Production in Africa}, + glottolog_ref = {eballiso2009:19366}, + key = {Brooks et al. (1984)}, + lgcode = {!Kung [juho1239]}, + pages = {293-310}, + publisher = {Univ. of California Press}, + title = {Food production and culture change among the !Kung San: implications for prehistoric research}, + year = {1984} +} + +@article{hitchcockandebert1989, + author = {Hitchcock, R. K. and Ebert, J. I.}, + glottolog_ref = {eballiso2009:40535}, + journal = {Anthropos}, + key = {Hitchcock and Ebert (1989)}, + lgcode = {!Ko [huaa1248], !Kung [juho1239], Kua [kuaa1238], Naron [naro1249]}, + pages = {47-62}, + title = {Modeling Kalahari Hunter-Gatherer Subsistence and Settlement Systems: Implications for Development Policy and Land Use Planning}, + volume = {84}, + year = {1989} +} + +@book{howell1979, + author = {Howell, N.}, + address = {New York}, + key = {Howell (1979)}, + lgcode = {!Kung [juho1239]}, + publisher = {Academic Press}, + title = {Demography of the Dobe Area !Kung}, + year = {1979} +} + +@article{kaufmann1910, + author = {Kaufmann, H.}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + key = {Kaufmann (1910)}, + lgcode = {!Kung [juho1239]}, + pages = {135-160}, + title = {The Auen, a Contribution to the Study of the Bushmen}, + volume = {23}, + year = {1910} +} + +@incollection{lee1972a, + author = {Lee, R.B.}, + editor = {Bicchieri, M. G.}, + address = {New York}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + key = {Lee (1972a)}, + lgcode = {!Kung [juho1239]}, + pages = {327-368}, + publisher = {Holt, Rinehart and Winston}, + title = {The !Kung Bushmen of Botswana}, + year = {1972} +} + +@book{lee1979, + author = {Lee, R. B.}, + address = {Cambridge}, + key = {Lee (1979)}, + lgcode = {!Kung [juho1239]}, + publisher = {Cambridge University Press}, + title = {The !Kung San: Men, Women, and Work in a Foraging Society}, + year = {1979} +} + +@article{marshall1959, + author = {Marshall, Lorna}, + journal = {Africa}, + key = {Marshall (1959)}, + lgcode = {!Kung [juho1239]}, + pages = {335-365}, + title = {Marriage among !Kung Bushmen}, + volume = {29}, + year = {1959} +} + +@article{marshall1960, + author = {Marshall, Lorna}, + journal = {Africa}, + key = {Marshall (1960)}, + lgcode = {!Kung [juho1239]}, + pages = {325-355}, + title = {!Kung Bushman Bands}, + volume = {30}, + year = {1960} +} + +@book{schapera1930, + author = {Schapera, Isaac}, + address = {London}, + key = {Schapera (1930)}, + lgcode = {!Kung [juho1239], Nama [nama1265], Naron [naro1249]}, + publisher = {Routledge and Kegan Paul}, + title = {The Khoisan Peoples of South Africa Bushmen and Hottentots}, + year = {1930} +} + +@book{yellen1977a, + author = {Yellen, J.E.}, + address = {New York}, + key = {Yellen (1977a)}, + lgcode = {!Kung [juho1239]}, + publisher = {Academic Press}, + title = {Archaeological Approaches to the Present: Models for Reconstructing the Past}, + year = {1977} +} + +@book{bleek1928, + author = {Bleek, D. F.}, + address = {Cambridge}, + key = {Bleek (1928)}, + lgcode = {Naron [naro1249]}, + publisher = {Cambridge University Press}, + title = {The Naron: A BuNman Tribe of the Central Kalahari}, + year = {1928} +} + +@book{guenther1986, + author = {Guenther, M.}, + address = {Hamburg}, + glottolog_ref = {guldemann:1736}, + key = {Guenther (1986)}, + lgcode = {Naron [naro1249]}, + publisher = {Helmut Buske Verlag}, + series = {Quellen zur Khoisan-Forschung}, + title = {The Nharo Bushmen of Botswana: tradition and change}, + volume = {3}, + year = {1986} +} + +@misc{hitchcockperscomm1990, + author = {Hitchcock}, + howpublished = {pers. comm.}, + key = {Hitchcock pers. comm. (1990)}, + lgcode = {!Ko [huaa1248], G/wi [gwii1239], Kua [kuaa1238]}, + year = {1990} +} + +@incollection{silberbauer1972, + author = {Silberbauer, G. B.}, + editor = {Bicchieri, Marco Giuseppe}, + address = {New York}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + glottolog_ref = {eballiso2009:56132}, + key = {Silberbauer (1972)}, + lgcode = {G/wi [gwii1239]}, + pages = {271-326}, + publisher = {Holt, Rinehart & Winston}, + title = {The G/wi Bushmen}, + year = {1972} +} + +@book{silberbauer1981a, + author = {Silberbauer, G. B.}, + address = {Cambridge}, + glottolog_ref = {guldemann:4109}, + key = {Silberbauer (1981a)}, + lgcode = {G/wi [gwii1239]}, + publisher = {Cambridge University Press}, + title = {Hunter and habitat in the central Kalahari Desert}, + year = {1981} +} + +@incollection{silberbauer1981b, + author = {Silberbauer, G. B.}, + editor = {Harding, Robert S.O. and Teleki, Geza P.}, + address = {New York}, + booktitle = {Omnivorous Primates: Gathering and Hunting in Human Evolution}, + glottolog_ref = {eballiso2009:38621}, + key = {Silberbauer (1981b)}, + lgcode = {G/wi [gwii1239]}, + pages = {454-498}, + publisher = {Columbia Univ. Press}, + title = {Hunter-gatherers of the central Kalahari}, + year = {1981} +} + +@misc{weissnerandhitchcockperscomm1991, + author = {Weissner and Hitchcock}, + howpublished = {pers. comm.}, + key = {Weissner and Hitchcock pers. comm. (1991)}, + lgcode = {G/wi [gwii1239]}, + year = {1991} +} + +@book{kentandvierich1989, + editor = {Kent, S.}, + address = {Cambridge}, + key = {Kent and Vierich (1989)}, + lgcode = {Kua [kuaa1238]}, + publisher = {Cambridge University Press}, + title = {Farmers as Hunters: The Implications of Sedentism}, + year = {1989} +} + +@phdthesis{vierich1981, + author = {Vierich, H. I. D.}, + address = {Toronto}, + glottolog_ref = {hh:e:Vierich:Kua}, + key = {Vierich (1981)}, + lgcode = {Kua [kuaa1238]}, + school = {Department of Anthropology, University of Toronto}, + title = {The Kūa of the Southeastern Kalahari: A Study in the Socio-Ecology of Dependency}, + year = {1981} +} + +@article{wyndhamandmorrison1958, + author = {Wyndham, C. H. and Morrison, J. F.}, + journal = {Journal of Applied Physiology}, + key = {Wyndham and Morrison (1958)}, + lgcode = {Kua [kuaa1238]}, + pages = {219-225}, + title = {Adjustment to Cold of Bushmen in the Kalahari Desert}, + volume = {13}, + year = {1958} +} + +@book{eibleibesfeldt1948, + author = {Eibl-Eibesfeldt, I.}, + address = {Munich}, + key = {Eibl-Eibesfeldt (1948)}, + lgcode = {!Ko [huaa1248]}, + publisher = {R. Piper}, + title = {Die !Ko-Buschmann-Gesellschaft}, + year = {1948} +} + +@misc{eibleibesfeldt1972, + author = {Eibl-Eibesfeldt, I.}, + address = {Munich}, + key = {Eibl-Eibesfeldt (1972)}, + lgcode = {!Ko [huaa1248]}, + publisher = {R. Piper}, + title = {Die !Ko-Buschmann-Gesellschaft}, + year = {1972} +} + +@article{dart1937b, + author = {Dart, R.A.}, + journal = {Bantu Studies}, + key = {Dart (1937b)}, + lgcode = {/'Auni-Khomani [nuuu1241]}, + pages = {176-246}, + title = {The physical characters of the /?Auni=Khomani Bushmen}, + volume = {11}, + year = {1937} +} + +@misc{informantfrommoloporivernd, + author = {from Molopo River, Informant}, + howpublished = {pers. comm.}, + key = {Informant from Molopo River (n.d.)}, + lgcode = {/'Auni-Khomani [nuuu1241]} +} + +@article{steyn1984, + author = {Steyn, H. P.}, + glottolog_ref = {eballiso2009:473}, + journal = {South African Archaeological Bulletin}, + key = {Steyn (1984)}, + lgcode = {/'Auni-Khomani [nuuu1241]}, + pages = {117-124}, + title = {Southern Kalahari San Subsistence Ecology: A Reconstruction}, + volume = {39}, + year = {1984} +} + +@book{potgieter1955, + author = {Potgieter, E. F.}, + address = {Pretoria, South Africa}, + glottolog_ref = {guldemann:3633}, + key = {Potgieter (1955)}, + lgcode = {//Xegwi [xegw1238]}, + publisher = {J. L. van Schaik}, + title = {The disappearing Bushmen of Lake Chrissie - a preliminary survey}, + year = {1955} +} + +@article{toerien1958, + author = {Toerien, M. J.}, + glottolog_ref = {eballiso2009:23669}, + journal = {South African Journal of Medical Science}, + key = {Toerien (1958)}, + lgcode = {//Xegwi [xegw1238]}, + pages = {121-124}, + title = {The Physical Characters of the Lake Chrissie Bushman}, + volume = {23}, + year = {1958} +} + +@book{bleek1924a, + author = {Bleek, D. F.}, + address = {Cape Town}, + key = {Bleek (1924a)}, + lgcode = {/Xam [xamm1241]}, + publisher = {Maskew Miller}, + title = {The Mantis and His Friends}, + year = {1924} +} + +@book{radcliffebrown1948, + author = {Radcliffe-Brown, A. R.}, + address = {Glencoe, Ill.}, + glottolog_ref = {wals:4887}, + key = {Radcliffe-Brown (1948)}, + lgcode = {Andamanese [akab1249]}, + publisher = {Free Press}, + title = {The Andaman Islands}, + year = {1948} +} + +@book{moore1979, + author = {Moore, D. R.}, + address = {Canberra}, + glottolog_ref = {hh:ew:Moore:Cape-York}, + key = {Moore (1979)}, + lgcode = {Kaurareg [kala1377]}, + pages = {340}, + publisher = {A.I.A.S.}, + title = {Islanders and Aborigines at Cape York}, + year = {1979} +} + +@article{basedow1907, + author = {Basedow, H.}, + glottolog_ref = {hh:ew:Basedow:WCoastal}, + journal = {Transactions and Proceedings and Report of the Royal Society of South Australia}, + key = {Basedow (1907)}, + lgcode = {Larikia [lara1258]}, + pages = {1-62}, + title = {Anthropological Notes on the Western Coastal Tribes of the Northern Territory of South Australia}, + volume = {31}, + year = {1907} +} + +@book{howells1937, + author = {Howells, W. W.}, + address = {Cambridge, Mass.}, + key = {Howells (1937)}, + lgcode = {Larikia [lara1258], Nunggubuyu [nung1290], Tiwi [tiwi1244], Yolngu, Dhuwal [dhuw1249]}, + number = {1}, + publisher = {Peabody Museum}, + series = {Papers of the Peabody Museum of AmericAn Archaeology and Ethnology}, + title = {Anthropometry of the Natives of Arnhem Land and the Australian Race Problem}, + volume = {16}, + year = {1937} +} + +@article{parkhouse1895, + author = {Parkhouse, T. A.}, + journal = {Australian Association for the Advancement of Science}, + key = {Parkhouse (1895)}, + lgcode = {Larikia [lara1258]}, + pages = {638-646}, + title = {Native Tribes of Port Darwin and Its Neighborhood}, + volume = {6}, + year = {1895} +} + +@book{altman1987, + author = {Altman, J. C.}, + address = {Canberra}, + key = {Altman (1987)}, + lgcode = {Gunwinygu [gunw1252]}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Hunter-Gatherers Today: An Aboriginal Economy in North Australia}, + year = {1987} +} + +@book{berndtandberndt1970, + author = {Berndt, R. M. and Berndt, C. H.}, + address = {East Lansing}, + glottolog_ref = {ozbib:484}, + key = {Berndt and Berndt (1970)}, + lgcode = {Gunwinygu [gunw1252]}, + publisher = {Michigan State University Press}, + title = {Man, land & myth in north Australia: the Gunwinggu people}, + year = {1970} +} + +@article{macintosh1952, + author = {MacIntosh, N. W. G.}, + journal = {Oceania}, + key = {Macintosh (1952)}, + lgcode = {Mirrngadja [djin1252]}, + pages = {208-215}, + title = {Stature in Some Aboriginal Tribes in South-West Arnhem Land}, + volume = {22}, + year = {1952} +} + +@incollection{peterson1970, + author = {Peterson, N.}, + editor = {Gale, F.}, + address = {Canberra}, + booktitle = {Woman's Role in Aboriginal Society}, + key = {Peterson (1970)}, + lgcode = {Mirrngadja [djin1252]}, + pages = {9-16}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {The Importance of Women in Determining the Composition of Residential Groups in Aboriginal Australia}, + year = {1970} +} + +@article{peterson1973, + author = {Peterson, N.}, + journal = {Archaeology and Physical Anthropology in Oceania}, + key = {Peterson (1973)}, + lgcode = {Mirrngadja [djin1252]}, + pages = {173-193}, + title = {Camp Site Location amongst Australian HunterGatherers: Archaeological and Ethnographic Evidence for a Key Determinant}, + volume = {8}, + year = {1973} +} + +@book{peterson1976, + editor = {Peterson, Nicolas}, + address = {Canberra}, + glottolog_ref = {ozbib:4604}, + key = {Peterson (1976)}, + lgcode = {Mirrngadja [djin1252], Yolngu, Dhuwal [dhuw1249]}, + pages = {250}, + publisher = {AIAS}, + title = {Tribes and boundaries in Australia}, + year = {1976} +} + +@misc{peterson1992, + author = {Peterson, R.}, + howpublished = {pers. comm.}, + key = {Peterson (1992)}, + lgcode = {Mirrngadja [djin1252]}, + year = {1992} +} + +@misc{petersonperscomm1992, + author = {Peterson}, + howpublished = {pers. comm.}, + key = {Peterson pers. comm. (1992)}, + lgcode = {Mirrngadja [djin1252]}, + year = {1992} +} + +@misc{petersonperscomm1994, + author = {Peterson}, + howpublished = {pers. comm.}, + key = {Peterson pers. comm. (1994)}, + lgcode = {Mirrngadja [djin1252]}, + year = {1994} +} + +@book{meehan1982, + author = {Meehan, B.}, + address = {Canberra}, + glottolog_ref = {hh:e:Meehan:Burera}, + key = {Meehan (1982)}, + lgcode = {Burarra [gunn1247]}, + pages = {x+189}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Shell bed to shell midden}, + year = {1982} +} + +@book{hiatt1965, + author = {Hiatt, L.R.}, + address = {Canberra}, + key = {Hiatt (1965)}, + lgcode = {Gidjingali [gunn1248]}, + publisher = {Australian National University}, + title = {Kinship and Conflict: A Study of an Aboriginal Community in Northern Arnhem Land}, + year = {1965} +} + +@article{peterson1972, + author = {Peterson, N.}, + journal = {Man (N.S.)}, + key = {Peterson (1972)}, + lgcode = {Gidjingali [gunn1248]}, + pages = {12-32}, + title = {Totemism yesterday: sentiment and local organization among the Australian Aborigines}, + volume = {7}, + year = {1972} +} + +@article{thomson1949, + author = {Thomson, D. F}, + journal = {Geographical Journal}, + key = {Thomson (1949)}, + lgcode = {Nunggubuyu [nung1290], Yolngu, Dhuwal [dhuw1249]}, + pages = {1-28}, + title = {Arnhem Land: Explorations among an Unknown People}, + volume = {113}, + year = {1949} +} + +@misc{tindaleperscomm1967, + author = {Tindale, N. B.}, + howpublished = {pers. comm.}, + key = {Tindale pers. comm. (1967)}, + lgcode = {Anindilyagwa [anin1240], Yolngu, Dhuwal [dhuw1249]}, + year = {1967} +} + +@book{warner1958, + author = {Warner, W. L.}, + address = {New York}, + key = {Warner (1958)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]}, + publisher = {Harper and Row}, + title = {A Black Civilization: A Social Study of an Australian Tribe}, + year = {1958} +} + +@article{kaberry1935, + author = {Kaberry, P. M.}, + journal = {Oceania}, + key = {Kaberry (1935)}, + lgcode = {Yiiji [wuna1249]}, + pages = {408-435}, + title = {The Forest River and Lyne River Tribes of NorthWest Australia: A Report on Field Work}, + volume = {5}, + year = {1935} +} + +@article{brandt1961, + author = {Brandt, J. H.}, + glottolog_ref = {sala:983}, + journal = {Journal of the Siam Society}, + key = {Brandt (1961)}, + lgcode = {Semang [kens1248]}, + number = {2}, + pages = {123-160}, + title = {The Negrito of Peninsular Thailand}, + volume = {49}, + year = {1961} +} + +@book{evans1937, + author = {Evans, I. H. N.}, + address = {Cambridge}, + key = {Evans (1937)}, + lgcode = {Semang [kens1248]}, + publisher = {Cambridge University Press}, + title = {The Negritos of Malaya}, + year = {1937} +} + +@article{kuchikura1988, + author = {Kuchikura, Y.}, + journal = {Human Ecology}, + key = {Kuchikura (1988)}, + lgcode = {Semang [kens1248]}, + number = {2}, + pages = {271-305}, + title = {Efficiency and Focus of Blowpipe Hunting among Semaq Beni Hunter-Gatherers of Peninsula Malaysia}, + volume = {16}, + year = {1988} +} + +@book{rambo1985, + author = {Rambo, A. T.}, + address = {Ann Arbor}, + key = {Rambo (1985)}, + lgcode = {Semang [kens1248]}, + number = {76}, + publisher = {University of Michigan Press}, + series = {Anthropological Papers of the Museum of Anthropology}, + title = {Primitive Polluters: Semang Impact on the Malaysian Tropical Rain Forest System}, + year = {1985} +} + +@book{schebesta1954, + author = {Schebesta, P.}, + address = {Wien-Mödling}, + glottolog_ref = {hh:he:Schebesta:Negrito}, + key = {Schebesta (1954)}, + lgcode = {Semang [kens1248]}, + number = {i; ii; iii}, + publisher = {St. Gabriel-Verlag}, + series = {Studia Instituti Anthropos}, + title = {Die Negrito Asiens}, + volume = {6, 12, 13}, + year = {1954} +} + +@article{thomson1939, + author = {Thomson, D. F}, + journal = {Proceedings of the Prehistoric Society of London}, + key = {Thomson (1939)}, + lgcode = {Wikmunkan [wikm1247]}, + pages = {209-221}, + title = {The Seasonal Factor in Human Culture}, + volume = {10}, + year = {1939} +} + +@incollection{wills1980, + author = {Wills, W. H.}, + editor = {Smiley, F. E. and Singpoli, C. M. and Jackson, H. E. and Wills, W. H. and Gregg, S. A.}, + address = {Ann Arbor}, + booktitle = {The Archaeological Correlates of HunterGatherer Societies: Studies from the Ethnographic Record}, + key = {Wills (1980)}, + lgcode = {Wikmunkan [wikm1247]}, + number = {1-2}, + pages = {78-99}, + publisher = {Department of Anthropology, University of Michigan}, + series = {Michigan Discussions in Anthropology}, + title = {Ethnographic Observation and Archaeological Interpretation: The Wikmunkan of Cape York Peninsula, Australia}, + volume = {5}, + year = {1980} +} + +@incollection{chaloupka1981, + author = {Chaloupka, G.}, + editor = {Stokes, T.}, + address = {Canberra}, + booktitle = {Kakadu National Park Education Resources}, + key = {Chaloupka (1981)}, + lgcode = {Kaakutju [gaga1251]}, + pages = {162-171}, + publisher = {Australian National Parks and Wildlife Service}, + title = {The Traditional Movement of a Band of Aboriginals in Kakadu}, + year = {1981} +} + +@book{leichhardt1847, + author = {Leichhardt, L.}, + address = {London}, + key = {Leichhardt (1847)}, + lgcode = {Kaakutju [gaga1251]}, + publisher = {T. & W. Boone}, + title = {Journal of an Overland Expedition in Australia from Moreton Bay to Port Essingtory: Distance of Upwards of 3000 Miles, during the Years 1844-1845}, + year = {1847} +} + +@misc{mccarthyandmacarthur1960, + author = {McCarthy, F. D. and McArthur, M.}, + editor = {Mountford, C.}, + address = {Melbourne}, + booktitle = {Arnhem Land: Anthropology and Nutrition}, + key = {McCarthy and MacArthur (1960)}, + lgcode = {Kaakutju [gaga1251]}, + pages = {145-194}, + publisher = {University of Melbourne Press}, + series = {Records of the American-Australian Scientific Expedition}, + title = {The Food Quest and the Time Factor in Aboriginal Economic Life}, + volume = {2}, + year = {1960} +} + +@book{spencer1966, + author = {Spencer, B.}, + address = {Oosterhout, the Netherlands}, + key = {Spencer (1966)}, + lgcode = {Kaakutju [gaga1251]}, + publisher = {Anthropological Publications}, + title = {Native Tribes of the Northern Territory of Australia}, + year = {1966} +} + +@incollection{biernoff1979, + author = {Biernoff, D.}, + editor = {Heppell, M.}, + address = {Canberra}, + booktitle = {A Black Reality—Aboriginal Camps and Housing in Remote Australia}, + key = {Biernoff (1979)}, + lgcode = {Nunggubuyu [nung1290]}, + pages = {153-179}, + publisher = {Australian Institute of Aboriginal Studies}, + title = {Traditional and Contemporary Structures and Settlement in Eastern Arnhem Land with Particular Reference to the Nunggubuyu}, + year = {1979} +} + +@incollection{mcarthur1960, + author = {McArthur, M.}, + editor = {Mountford, C.}, + address = {Melbourne}, + booktitle = {Arnhem Land: Anthropology and Nutrition}, + key = {McArthur (1960)}, + lgcode = {Nunggubuyu [nung1290]}, + pages = {90-144}, + publisher = {University of Melbourne Press}, + series = {Records of the American-Australian Scientific Expedition}, + title = {Food Consumption and Dietary Levels of Groups of Aborigines Living on Naturally Occurring Foods}, + volume = {2}, + year = {1960} +} + +@article{thomson1933, + author = {Thomson, D. F}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Thomson (1933)}, + lgcode = {Yintjingga [ayab1239]}, + pages = {453-537}, + title = {The Hero Cult, Initiation and Totemism on Cape York}, + volume = {63}, + year = {1933} +} + +@article{thomson1934, + author = {Thomson, D. F}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + key = {Thomson (1934)}, + lgcode = {Yintjingga [ayab1239]}, + pages = {237-262}, + title = {The Dugong Hunters of Cape York}, + volume = {64}, + year = {1934} +} + +@article{sharp1934, + author = {Sharp, R. L.}, + journal = {Oceania}, + key = {Sharp (1934)}, + lgcode = {Yir Yoront [jirj1239]}, + pages = {404-431}, + title = {The Social Organization of the Yir-Yoront Tribe, Cape York Peninsula, Part I: Kinship and the Family}, + volume = {4}, + year = {1934} +} + +@article{sharp1940, + author = {Sharp, R. L.}, + journal = {Human Biology}, + key = {Sharp (1940)}, + lgcode = {Yir Yoront [jirj1239]}, + pages = {481-507}, + title = {An Australian Aboriginal Population}, + volume = {12}, + year = {1940} +} + +@article{goodale1962, + author = {Goodale, J. C.}, + journal = {Ethnology}, + key = {Goodale (1962)}, + lgcode = {Tiwi [tiwi1244]}, + pages = {452-466}, + title = {Marriage Contacts among the Tiwi}, + volume = {1}, + year = {1962} +} + +@article{hart1970, + author = {Hart, C. W. M.}, + journal = {Oceania}, + key = {Hart (1970)}, + lgcode = {Tiwi [tiwi1244]}, + pages = {296-303}, + title = {Some Factors Affecting Residence among the Tiwi}, + volume = {40}, + year = {1970} +} + +@book{hartandpilling1960, + author = {Hart, C. W. M. and Pilling, A. R.}, + address = {New York}, + key = {Hart and Pilling (1960)}, + lgcode = {Tiwi [tiwi1244]}, + publisher = {Holt, Rinehart and Winston}, + title = {The Tiwi of North Australia}, + year = {1960} +} + +@incollection{andersonandrobins1988, + author = {Anderson, C. and Robins., R.}, + editor = {Meenan, B. and Jones, R.}, + address = {Canberra}, + booktitle = {Archaeology with Ethnography: An Australian Perspective}, + key = {Anderson and Robins (1988)}, + lgcode = {Kuku (Yalanji) [kuku1273]}, + pages = {182-205}, + publisher = {Australian National University}, + title = {Dismissed Due to Lack of Evidence? Kuku-Yalanji Sites and the Archaeological Record}, + year = {1988} +} + +@book{rose1960, + author = {Rose, F. G. G.}, + address = {Berlin}, + key = {Rose (1960)}, + lgcode = {Anindilyagwa [anin1240]}, + publisher = {Akademie-Verlag}, + title = {Classification of Kin, Age Structure, and Marriage Amongst the Groote Eylandt Aborigines}, + year = {1960} +} + +@article{haleandtindale1933, + author = {Hale, H.M. and Tindale, N. B.}, + journal = {Records of the South Australia Museum}, + key = {Hale and Tindale (1933)}, + lgcode = {Walmbaria [flin1247]}, + pages = {63-107}, + title = {Aborigines of the Princess Charlotte Bay, North Queensland}, + volume = {5}, + year = {1933} +} + +@article{stanner1933, + author = {Stanner, W. E. H.}, + glottolog_ref = {hh:he:Stanner:Daly}, + journal = {Oceania}, + key = {Stanner (1933)}, + lgcode = {Mulluk [mull1237]}, + pages = {377-405}, + title = {The Daly River Tribes: A Report of Field Work in North Australia}, + volume = {3}, + year = {1933} +} diff --git a/cldf/variables.csv b/cldf/variables.csv new file mode 100644 index 0000000..3b7d10d --- /dev/null +++ b/cldf/variables.csv @@ -0,0 +1,41 @@ +ID,Name,Description,ColumnSpec,category,type,unit,source_comment,changes,comment +B001,Subsistence economy: Gathering,"Group's dependence upon gathering of terrestrial plants, relative to other subsistence activities.","{""datatype"": ""decimal""}","Subsistence, Economy, Property",Continuous,%,Binford (2001) Table 5.01; variable 'GATHERING',,More detail on code definitions and variable in Binford (2001) p. 117 +B002,Subsistence economy: Hunting,"Group's dependence upon hunting of terrestrial animals, relative to other subsistence activities","{""datatype"": ""decimal""}","Subsistence, Economy, Property",Continuous,%,Binford (2001) Table 5.01; variable 'HUNTING',,More detail on code definitions and variable in Binford (2001) p. 117 +B003,Subsistence economy: Fishing,"Group's dependence upon fishing of aquatic organisms, relative to other subsistence activities","{""datatype"": ""decimal""}","Subsistence, Economy, Property",Continuous,%,Binford (2001) Table 5.01; variable 'FISHING',,More detail on code definitions and variable in Binford (2001) p. 117 +B004,Subsistence economy: Most important activity,"Subsistence activity that provides the majority of a group's nutritional intake (hunting, gathering, or fishing)",,"Subsistence, Economy, Property",Categorical,,Binford (2001) Table 5.01; variable 'SUBSP',,"More detail on code definitions and variable in Binford (2001) pp. 117, 312" +B005,Subsistence economy: Deviation from HGF at documentation,"Character of a group's subsistence economy at the time of documentation (i.e., was susbsistence truly through hunting, gathering, fishing, only?). Groups are coded as either ""normal"" or ""suspect"".",,"Subsistence, Economy, Property",Categorical,,Binford (2001) Table 5.01; variable 'SUBPOP',,More detail on code definitions and variable in Binford (2001) p. 244 +B006,Population of ethnic group,Total number of persons to whom the the ethnographic description applies,"{""datatype"": ""decimal""}",Population,Continuous,individuals,Binford (2001) Table 5.01; variable 'TLPOP',,More detail on code definitions and variable in Binford (2001) p. 117 +B007,Area occupied by ethnic group (square km),"Ethnographers' estimates of the total land area occupied by the group, in square kilometers","{""datatype"": ""decimal""}","Population, Subsistence",Continuous,km2,Binford (2001) Table 5.01; variable 'AREA',"Binford provided estimates in units of '100 square km,' rather than 'square km'",More detail on code definitions and variable in Binford (2001) p. 117 +B008,Population density (persons per square km) ,Population of ethnic group divided by area occupied by ethnic group (persons per square km) ,"{""datatype"": ""decimal""}","Population, Subsistence",Continuous,individuals per km2,Binford (2001) Table 5.01; variable 'DENSITY',Binford provided estimates in 'person per 100 square km' rather than in 'persons per square km',More detail on code definitions and variable in Binford (2001) p. 117 +B009,Mobility of group,Is the population mobile or sedentary?,,"Community organization, Settlement",Categorical,,Binford (2001) Table 5.01; variable 'GRPPAT',,More detail on code definitions and variable in Binford (2001) p. 117 +B010,Size of smallest group that regularly cooperates for subsistence,"Mean size of the mobile consumer unit that camps together during the most dispersed phase of the settlement cycle. For sedentary groups, the entry indicates the size of the mobile task group operating out of a relatively permanent settlement, as in the case of family units moving together in a ‘walkabout’ strategy during some season of the year. (Binford's ""GRP1"").","{""datatype"": ""decimal""}","Population, Demography, Subsistence, Community organization, Settlement",Continuous,individuals,Binford (2001) Tables 5.01 and 8.01; variable 'GROUP1' (Table 5.01) or 'MOST DISPERSED' (Table 8.01),"In cases where tables 5.01 and 8.01 provided different values for the same society, we adopted the value from table 8.01 because data points in that table were tagged with their specific reference (including page numbers). These cases are flagged by a comment in the ""Comments"" field.","More detail on code definitions and variable in Binford (2001) pp. 117, 143, 236, 244" +B011,Size of village or camp when population most aggregated,"Mean size of the consumer group that regularly camps together during the most aggregated phase of the yearly economic cycles (applies to groups that are mobile, moving entire population from camp to camp as subsistence activities are carried out). For sedentary groups, this is village size. (Binford's ""GRP2"").","{""datatype"": ""decimal""}","Population, Demography, Community organization, Settlement",Continuous,individuals,Binford (2001) Tables 5.01 and 8.01; variable 'GROUP2' (Table 5.01) or 'MOST AGGREGATED' (Table 8.01),"In cases where tables 5.01 and 8.01 provided different values for the same society, we adopted the value from table 8.01 because data points in that table were tagged with their specific reference (including page numbers). These cases are flagged by a comment in the ""Comments"" field.","More detail on code definitions and variable in Binford (2001) pp. 117, 144, 237, 244" +B012,Size of periodic regional aggregations,"Mean size of multigroup encampments that may aggregate periodically, but not necessarily annually, for immediate subsistence-related activities. (Binford's ""GRP3"").","{""datatype"": ""decimal""}","Population, Demography, Community organization, Settlement",Continuous,individuals,Binford (2001) Tables 5.01 and 8.01; variable 'GROUP3' (Table 5.01) or 'PERIODIC REGIONAL AGGREGATIONS' (Table 8.01),"In cases where tables 5.01 and 8.01 provided different values for the same society, we adopted the value from table 8.01 because data points in that table were tagged with their specific reference (including page numbers). These cases are flagged by a comment in the ""Comments"" field.","More detail on code definitions and variable in Binford (2001) pp. 117, 145, 244" +B013,Number of moves per year,"Number of moves per year, with 0 moves indicating that society is sedentary","{""datatype"": ""decimal""}","Community organization, Settlement",Continuous,moves per year,Binford (2001) Tables 5.01 and 8.04.; variable 'NOMOV' (Table 5.01) or 'NUMBER OF MOVES PER YEAR' (Table 8.01),"In cases where tables 5.01 and 8.04 provided different values for the same society, we adopted the value from table 8.04 because data points in that table were tagged with their specific reference (including page numbers). These cases are flagged by a comment in the ""Comments"" field.",More detail on code definitions and variable in Binford (2001) p. 117 +B014,Distance moved per year (km),Total distance moved between camps/settlements in a year. A distance of 0 indicates society is sedentary.,"{""datatype"": ""decimal""}","Community organization, Settlement",Continuous,km per year,Binford (2001) Tables 5.01 and 8.04.; variable 'DISMOV' (Table 5.01) or 'DISTANCE MOVED PER YEAR' (Table 8.01),"In cases where tables 5.01 and 8.04 provided different values for the same society, we adopted the value from table 8.04 because data points in that table were tagged with their specific reference (including page numbers). These cases are flagged by a comment in the ""Comments"" field. Note that Binford's table 8.04 provides estimates in miles rather than in km.","More detail on code definitions and variable in Binford (2001) pp. 117, 150" +B015,Household size,Number of persons residing in a single structure,"{""datatype"": ""decimal""}","Kinship, Demography",Continuous,individuals,Binford (2001) Table 8.08; variable 'PERSONS PER HOUSEHOLD',, +B016,Family size,Number of persons per family,"{""datatype"": ""decimal""}","Kinship, Demography",Continuous,individuals,Binford (2001) Table 8.08; variable 'PERSONS PER FAMILY',, +B017,Domestic organization,The prevailing form of domestic or familial organization,,"Marriage, Kinship",Categorical,,Binford (2001) Table 8.08; variable 'HOUSEHOLD TYPE' (converted to numeric codes following Gray (1999)),, +B018,Marital composition: monogamy and polygamy,"Marital composition of family units, regardless of whether families live as independent nuclear units or as part of larger extended families",,"Marriage, Kinship",Categorical,,Binford (2001) Table 8.08; variable 'HOUSEHOLD TYPE' (converted to numeric codes following Gray (1999)),, +B019,Polygyny,Percentage of males with more than one wife,"{""datatype"": ""decimal""}","Marriage, Kinship",Continuous,%,Binford (2001) Table 8.07; variable 'PERCENTAGE OF POLYGYNY',, +B020,Age of males at first marriage,Mean age (in years) of males at first marriage,"{""datatype"": ""decimal""}","Marriage, Demography",Continuous,years,Binford (2001) Table 8.07; variable 'AGE AT MARRIAGE - MALE',, +B021,Age of females at first marriage,Mean age (in years) of females at first marriage,"{""datatype"": ""decimal""}","Marriage, Demography",Continuous,years,Binford (2001) Table 8.07; variable 'AGE AT MARRIAGE - FEMALE',, +B022,Mean household size (in small subsistence groups),"An estimate of mean household size based on the following calculation: number of persons in smallest group that regularly cooperates for subsistence, divided by number of households in one of these groups","{""datatype"": ""decimal""}","Marriage, Kinship, Community organization",Continuous,individuals,Binford (2001) Table 9.01; variable 'G1MHS',,Code and variable definitions from Binford and Johnson (2006) +B023,Mean family size (in small subsistence groups),"An estimate of mean family size based on the following calculation: number of persons in smallest group that regularly cooperates for subsistence, divided by number of married men in group","{""datatype"": ""decimal""}","Marriage, Kinship, Community organization",Continuous,individuals,Binford (2001) Table 9.01; variable 'G1FAMSZ',,More detail on code definitions and variable in Binford (2001) p.286 and Binford and Johnson (2006) +B024,Mean household size (in villages or large camps),"An estimate of mean household size based on the following calculation: number of persons per settlement (i.e., village or camp at time of year when population is most aggregated), divided by number of households per settlement","{""datatype"": ""decimal""}","Marriage, Kinship, Community organization",Continuous,individuals,Binford (2001) Table 9.01; variable 'G2MHS',, +B025,Mean family size (in villages or large camps),"Mean family size calculated as: number of persons per settlement (i.e., village or camp at time of year when population is most aggregated), divided by number of married men per settlement.","{""datatype"": ""decimal""}","Marriage, Kinship, Community organization",Continuous,individuals,Binford (2001) Table 9.01; variable 'G2FAMSZ',, +B027,Number of families per household,Mean number of families per household,"{""datatype"": ""decimal""}","Marriage, Kinship, Community organization",Continuous,families,Binford (2001) Table 9.01; variable 'FAMHOUS',, +B029,Jurisdictional hierarchy of local community,Political complexity at level of local community,,"Politics, Leadership",Categorical,,Binford (2001) Table 9.01; variable 'POLYSCAL',,"More detail on code definitions and variable in Binford (2001) p. 244, caption to fig. 8.02; p.338, caption to Fig 9.06" +B030,Political relationship to neighbouring groups,Political and economic position of the group relative to other groups in the region,,Politics,Categorical,,Binford (2001) Table 9.01; variable 'POLPOS',,More detail on code definitions and variable in Binford (2001) p. 404 +B031,Type of social class distinction,Type of social class distinction,,"Politics, Class",Categorical,,Binford (2001) Table 9.01; variable 'CLASS',,More detail on code definitions and variable in Binford (2001) p. 396 +B032,Perogatives of leadership,"Perogatives of leadership, regardless of the types of leadership present in the group",,"Politics, Leadership",Categorical,,Binford (2001) Table 9.01; variable 'PEROGAT',,"More detail on code definitions and variable in Binford (2001) p.338, caption to Fig 9.06" +B033,Use of money,Presence or absence of use of money within the society,,"Economy, Property, Wealth transactions",Ordinal,,Binford (2001) Table 9.01; variable 'MONEY',,Code and variable definitions from Binford and Johnson (2006) +B034,Economic specialization,Whether there is economic role specialization beyond simple age and gender differences,,"Economy, Labour",Ordinal,,Binford (2001) Table 9.01; variable 'OCCSPE',,"More detail on variable in Binford (2001) p. 333, but no code definitions; division of labor discussed briefly on p. 244; code definitions from Binford and Johnson (2006)" +B035,Community marriage organization,"The prevalence of local endogamy, agamy, and exogamy coded together with the presence or absence of localized kin groups. Can be interpreted as ordinal measure of endogamy.",,"Marriage, Kinship, Community organization",Categorical,,Binford (2001) Table 9.01; variable 'COMMUN',,Code and variable definitions from Binford and Johnson (2006) +B036,Community facilities,"The functions and properties of structures with specific community-wide functions. These are not residences, nor are they multifunctional residences.",,"Community organization, Housing, Politics",Categorical,,Binford (2001) Table 9.01; variable 'COMSTFUN',,Code and variable definitions from Binford and Johnson (2006) +B037,Ownership of resource locations ,Ownership of resource locations ,,"Subsistence, Economy, Property",Categorical,,Binford (2001) Table 9.01; variable 'OWNERS',,"Code definitions somewhat ambiguous, see Binford (2001) p. 426, caption to Fig. 11.17" +B038,System state: typology of society's political organization,"Variable represents a combination of data relating to leadership, internal differentiation of leadership status, associated roles relative to participation in decision making, and the exercise of power within the society. According to Binford (2001) these include some of the criteria used in ""more thoughtful evolutionary classifications,"" such as ones by Fried (1967) and Jonson and Earle (1987). ",,Politics,Categorical,,Binford (2001) Table 9.01; variable 'SYSSTATE',,More detail on code definitions and variable in Binford (2001) p. 345; Codes given in caption for figure 9.02. +B039,"Height (male, mm)",Stature (mm) - Male,"{""datatype"": ""decimal""}",Anthropometry,Continuous,mm,Binford (2001) Table 6.03; variable 'STATURE (CM*) - MALE' (*should be mm),, +B040,"Height (female, mm)",Stature (mm) - Female,"{""datatype"": ""decimal""}",Anthropometry,Continuous,mm,Binford (2001) Table 6.03; variable 'STATURE (CM*) - FEMALE' (*should be mm),, +B041,"Weight (male, kg)",Weight (kg) - Male,"{""datatype"": ""decimal""}",Anthropometry,Continuous,kg,Binford (2001) Table 6.03; variable 'WEIGHT (KG) - MALE',, +B042,"Weight (female, kg)",Weight (kg) - Female,"{""datatype"": ""decimal""}",Anthropometry,Continuous,kg,Binford (2001) Table 6.03; variable 'WEIGHT (KG) - FEMALE',, diff --git a/cldfbench_binford.py b/cldfbench_binford.py new file mode 100644 index 0000000..6079da2 --- /dev/null +++ b/cldfbench_binford.py @@ -0,0 +1,9 @@ +import pathlib + +from pydplace import DatasetWithSocieties + + +class Dataset(DatasetWithSocieties): + dir = pathlib.Path(__file__).parent + id = "dplace-dataset-binford" + diff --git a/etc/README.md b/etc/README.md new file mode 100644 index 0000000..337b9bc --- /dev/null +++ b/etc/README.md @@ -0,0 +1,4 @@ +# Configuration directory + +This directory contains "configuration" data, i.e. data which helps with and +guides the conversion of the raw data to CLDF. diff --git a/map.png b/map.png new file mode 100644 index 0000000000000000000000000000000000000000..2371236c7e577099b5947bb7f1d0f57a56b74de9 GIT binary patch literal 177618 zcmZ6ybyOQ)^e+k&DDGY?5Zs;O4#A4M1$QrQh2Rtk4n>N)7PsOK1&X^Bx1vQ~zQ4QP zefQlzvXV8KnKSFm*?WIvpJ+8zc}z4iG&ndoOpt<%1{~bGD>yj#a1>HK-xm5EN=`gJXa4g4tF zA#7u19mI|bKvXY~iN>Q-Okw8|5_YV2&wEke?S%DGuXlJCR#lmI2owGPpFwCyUQ^t<4}!`jcK`GeN8vA6 zsaq|zc)R|qkx@8nVnUhUaj8yQ(gaT`s+wZr%quxD@#pcpI6g6P$9ys|kxsp%J^)T% zKU$BKIS5Z*Gv{~jx%{#hO^YVKbXf%U;7wtMm{xz-?;*jFZ2wS=E*{V$R--P_pCpuJ$FBlqzGpdGI%T8U(|ML#^sg#m^ ztY(tZ@7X}L23i}U?&k5`SWO;vIz82Jm7}& zFevg zf=qHGnm!>x-2_|2e)@!w@%xJ)^J_ry$}zni)nf7J#;~L^cv;mT%ke+|*Xp^WI7ZTm z<|k}bL6nt+fZP$)Em1yj*Mx*J343YVe6VHe6QIL_NXSW@g@km7#-I*f(qsda2crSY z9}@QCXq8>63_jYq<2JBf&3&r;aOWYEQ&db>$jHs2LjZ0u92o@x=!fE2l~CZboHcd{ zwOWB`ghTnO)n(A%A0;cl2=eBmMemOPRr8k)QHcgZVI!;}y z%l~m16}E(kVnczT2~%8i&G1=4V$ZGa2N^su;}B-as4@VjVoDB3lSPzXHCC?ESf2k` zYd!+Sz{AVq{r`m8*qx?}N?PJ14ocx@ma-I{fec)#6N$UyszWXPiQv1`F^R74R-cUh zUF^7AYLD)2OwGo;cHWIAaUQJ-L_$&sbX;83jqLD#SkuOGev!C-HWl?Nnk)UpPe|ze z`sfhYe{iyxzDS`xWN{HzL(lth{?6oNC@`E;eg1BcPd2*hNZOqS-q0JN`JC~*?XW$1 zvYBE%szJW7AL3&ypx4n%&?7DrU{2ly&l1budKtm<>zi+edvd950=dkcF~qUgX8K?n zuXnRJ2#;I{t5k~7QSCVX==mjaWd=@uxyANR$--W){N{E}0*(Tdnnz5+Buz>VDiuco z1R+;F->o8R73Kg$Dp_*jrT)}=roOy`!ofdReQ*&SCT zR#qkru8C&j{_L3vC5P!eY)c+Q8Ij53{xPz?aiO!%3wva!UzAB=QK%D-#R!Y&nTs$# zNuo#!o-*J>4e~zWV4VQzhs+ww6`+vSv*81Dyblh;Cz#L_f-u%`Ep1=88KaO$3ZZ*z z?~DF8Ql8fH$CFh@9)|^12oAZMgutWsH8?$B;G;h-K7Q)fy_FClzNtn-or?G4Uw7i` zgIc7Y78i|9Zfxpa@CB-zm8JM(zZjncRUn_iX2}SGRa*Zw4383-!uNY2fzn>P*xylWAd=o^%M2%|Ug7n5q>-za5^d|Ws;4a`35`k!ga zQIPqmg~8#~^$lnkLfIBwR5FB%b>b6td9bN{=uRH7BcoBJ5EEYa-4QV1rIz8c`wS(O zg94R*=kT1nkTPtpc!BH>v88zT+#47}Z?qV;6C(tw@HkHo+o@^x1cpX7e9AeHDr`xaUz<}7w~{r!Go&N^WVY9%l0<9hD1Z^Rn;@Ka ze2n&I@~L8(UxkNE#3dZ3bsZjv%1V@4!Hiu|fkSK~4+U1~5Nc~Tcl4+?W4EkI>nzk^ z4Gvsz0>oyg5>_e9mdD)Jf>7L_=f+JA^@sj=B51+&A)%RvDoU_F;o84zBOn z4iy9NFUp;af#?0atjZ_- z%!0pUer6>89vy%Fk{U>=S&^NW9WQ>yWECzUM?2L6TNoOkX@#9wQv_T4zs=JZhBcTF zQrsa-?22tkA~2*V-+R9-Xb;Wh4PY1R=!-sTGZ6j5pq1 znZ-WV7Yq7St8hJ5{zoj~s5o|C!yonpzX^F1x-5~uo1s$gguh9{p}%bi`zT%9d{ z9TORs&O7BCGc{=eL?{qkZ-5ex3DlQUcS6J@1n_|vfAf-pVUX&z?MDfU3l3!qw;akB zVBY|Q-<-<`7al`FDb{9h#DpNt=L%VphwVWMFO}WZVM>U0g-CIz-9xA^9OIDrmx`W2 zT4>Dx--V_;rmIwb7Nw&BQb`fbJZgkaSA*mvDrbNXk$MkMl1qMdEWN4&zewYMYF_7w@L%Wayt~}5di7`b^%W)M48Avtf-1wWNm26kFH&KUi)cfNd zB~Qh%POW)+t;k)*tLDv2820mo{NXxoAO%hl(es(m@KMg<(c$f~jx@xTkUBDZsT9h5$he(feZIVkZLMH&6|z8yls;@%ef$32^)B^3ah>kH zHc?rOM3OSJnjJ6aKe)lojYr1aiw0n1DyQR`i59ml$WBbNbZI&rANsoQBLa_%aTvjR zvGGI=G20)TtTNP%VbcGVf*8=8`{uLFL*JTKZ=nHFjIq0GTcybF>`d$HW0nGZg%x>_ zYP{9!Gha&T6Q`wcgd@X8(VTqe-VZt`w#*8O*Mk9JbfqRA2?!rxwOZqo3|xz?_5fso z)`EA{Zv^nd$XJ%2pN|KR@nIpXXwOF^7l$%$svR$ktOrR21S9u#|3 z8@?l*NJB^~B753m>Y|~!OP2Lds;=bc^q7ht@JCC(A_~4NL=E^Z7ELD>vE)l!bcG!2 zY6L1cXXG2Zz*XWZl0_3vXw&%X*8P!Yc@1Nqc|DKW9ypHFpF2Jyhs6{Wh0GG9?8^6q zt?H;YAhTS5$`9Ds|9gEs%|iA{B;hm>CFdaX8&g0r#i>Zlgmov^dRVDIR5^j2-@Svr z$<@Q4t2=Gb;TbZ&*Us8}%VmQ@xR6~pm~k^GoN&GVn>dsAD4?eOk@@lVYg_+QLk&VEPEoqWE z#?l;xRI@<_@@l;vGgYcy@VtwI0J2q(s#SWV2aI! z@bec=!c-G;3k%L937uaz3bP{V3~|%M^oJfio@U6PD;>vXxlaRTYK5I^vVMLDUjF0U zPLh~G557F?4F=3KclwAi+ruTgzvz~!dFEABRk?}ARhhi*5-eL#uS)FxP70uB2NLN( zFPHsk)LsGDJ}HdC?_+g9j<%_dg=0G5d?!SCqhQs^DVCaMWwX3}*mw8O5Kq937;&W>$FUK!w{MjBxPV9?Xh#asd%}26RT35YR@Ohdih-vw5^ts-RK)9Y5U!mg%g zm$Mp4G{VETXl}Pjxm$LUdj2yx&#G4kZ|sE^a~5lf$a%{NwPyhGMc4n67d=!jaKyeP z@_8rkgCB_%>yTD1LcpKV`0G=qxES6zWnfRU>N;OTxRPrGy27Ven~977_MT^c>*?HK zXis_pV>P-JRlp^Dx+#C=U~F)aZtZzT^QLeVb9!$}Y*j{qGk{=Hq35ei@{(*cUNKv9 z6(XWj#K`GL0O?sZ{GH-pkY=&9{Lq>Z-H#>s#m1wT)dh0oClQ2E416j*$#4CZr%RF@ z9n$`yIk-E*`)_ptzPO@(mPxs}5{yN(ke}Oi{Ei%~RR}*5DIm%$3OZ%?66I8SuQS;G zDU1}7yw7zc?Cr(&H&gXno<(^0_@kUA#%ETq1>DR>5lnP^-MTaP4ky2j3lsU!^&w?t zjK$3h!&Uk{ZevWPElfY(eGB+IYV>)Za3bsW#Ds1jvR`O$a2^JsG$<8*{`l;&re`Wz zG(XWHlUL3kZITWvBtN8$ovvk?B5nwTiTE@s=B-ofR<)`sAj2*iCWY!Jgb#ga;A#_; z+VLg!(GUVRq}uxwdl%)61t)*zf^uCw;jw6Igr*-B5eL;K<6W12=dM7A<=`246sg|m zN>lO8acWzK@NL3(O{wP+l~gUA$Lzqg)KmpIId0TwRb;HO;<~ylD4ICbhEP(8zC8=4 z2}>?|mWk#fW}UInMuW|mJK1$9Rbefg>C#79`He?nWVW>CpZL|feWsNzp241XImpqh zzek}<5A^$OF6o#01P&Y$5+Pz3U${cckNmZ>6rpJPTYi z507hqUsV&b|B}b1Wo{+MyhXlR-Z%|eE)Lz8c(mVOdmIO1zn>x|=+g&WOM1|rw;gXp zc)t)7sIIQAWMF_mq-6QZjg+!@T*bD)RMniHnP$vW!^_sTAi;p)Uaj9K48%vVB|>i~pdQ8R&5sx-ELbQ6EAUr5d)bHHRg=4as5&rYZfsGOTXClQ5b}1+sid;QoU}K}4TdN2Qc(dw{Li$@{g3f9w!w@0xi0@H)hGK^MZu~@ z7@cQkUUO=`@(J}3kpxQM0(NqK6)Ul>x6_$7mLnp71A;i*jhAlYkg`$r8`Uv5?CQae zG0}7ENhGDzN(d?mmdBV8DpKGt)(RO?1?~J%B?AJWiX|?~{!eix3JIO;Bzl)f7;9qh zYFo-@WkT#3SOKm^D9HnroSs@v_Kl2c|tKX3+@>iD>xw6Gn&2~-W;6Zts zyERj$Xc4)QY5%fSqg+;7G|8pyFE5W`=4F`_gswphB*L>Rp}v)yn$1!8L>ktHE|^ z`1$qaO)lxhM`Bl6`j1h6Ej!a%|G^CHF zpqnr$_&h{8eDe!C>l>UtV}axS%Jsj%W%|dCn4`s7C9T8@xYShVKU2nYmo1wYE~TG6 zn)RbTDaZYngLMdz^^CvEQO+(bl~S!Rs(aylPA<`|wUiL3!=nZO-bKpj&jvw0Q4#4A zoHCb{{jCQ#%4I4QFDM`z#4i(t0+(L~gb5cG2j(2nY?-54^wYcJt@o|z9DSm^$9(#k z;c2<=$Qr^_*yVS-4JjOGSNZsoLJp;rZE0h+OLd79p#KSvEHPaW@~-SNZA0xLbnm?3 zKcVyFZUaf*+=em{L*d2p_`h1je@rN3AfJ>K5DB3l#QW_8Q9**N$OR)-oR`@6MF9eL z>Q>3vZcFUye2R$`?3yE0SbA$xlQwCSx&u3?$0vvXKG)E*#F))QD9FM|du`S4H&!hv z6-YCbjU)1g*V*-^WUV!-`T|a?Wf1>`u%*+{&8KMBSe<^at}QO$)i7Lj`yQwyL^n`b z5h~H=a3R~2+ZQ2@XXQL#-su6iKlIJ-LYAK|P@7$m<^;or44FL^y44PWQIbq?8;=JX9~iUWGQcXy-~ zKj-@2>2CzTiRK19QnIFr$}7x$E|d(pfYHxfQJ(1NdZ&9gOj^9~@~j|FQE=s1HZ(I+ z!P?r~_|3DTg2wr!p#TSsltfAjN)P~#nII4+4A)La2&&(jv-syhkwNqK+wcmK-Bsuh zM9H{G)q#AvI!5|0V^R%lLVjO=?jE+RZ?;|kPR;9=m^X&YfWj^`Ln%J1V4XD5Dr_?^ zI1M10&Y5z+Hl0fRF711;?)`BuQ5rR}Kj3QcK;-GvL&WVGwDzzxZ0R|=x^BGwgo_ZX zJ}w#9pM$pr!;?dW*H7+YS!z3qga|6*FT849pcc_)OYTsF z{+1!shcJ0F{f2zwZGTWwkfNPGr(r#9?c?H&mqtK`A4*V^N~44PDsxquFr-u8)g`;z zB*S$9;scl<^IGk|h^1gXgMk<<&m(ADLB+!aT=p1JF*|yDqR-I=I%mI0(94-OG8Xxg zYv-yoWE=I{hZ2TA=AR9{rH~}TvKR_3fLiQF zmIctKTT9&cP|0rR<8^1otG~yxI`z7kA%#>yUfaQ z1q>kRP#0R%Gh&dXD47@FXHSL}cm|QL)PeCCzPSQU7F~AA3ggZ9%G6tpoyDF`HDh99 z+s>LR+pech$cSj3gtqJA7e4?2y=^Ls9)?^<4`FKiNsQh~Ftxm*6R$wE?jjS+T_B%G z6>Jm=_q<>vwNPceAf7J?KEtT#FVTf&Y*EwE#ee&jf_#Akpsqrf+ExIGyZkiU-l2gM z(Wr6J@%`;6GFMEC*j!~FZ7=oNmRZie^tEr>4SgXA{;l45d$-D#l9)esnXza zGH3c~G1QV13bQY=!=54zvyy+@-hI~6^2_Y{DgP6yqB)rBhe#jvSr@u%a0Tey+CwSek#AIKXlcJs+KeBdyKN?$UheF+@OUgZ z%Egl}+jl%&bfh1c`XtG3-O-A&jCx2@J*tEFzkh=XQ4NiP+a9+`V+i6dmd_ zawD9=kU!H32vpC%1awn3TC?@E~3ow_n@)6Tfyv_XiFAjppOWFA^wY z#-WphWU0=QP9vn{9ON)I6%U|^UVxsNn6m=pZoWz;(QdG-Ao(UR{9L@|<)!n*CcUIh z)^3;|tbZ@K>PWbN@rQMR@yb~p+Tgqcg~YQNg_h8pGv4kqsId0M7Idg%VmJIs!XbBe zHDygxs9qq`jlwJrpHMMp9@8832tzJBqin(5tin^@d_w1 zjgG^sFb}IF-N+x_V(3Ond$pFB3MIlN`sLkw8W7%p z^DHb(IvFBC@(iEclkP%~g9rJ|3)Aa{Z$!t$BdAKdhSD!YhQ_oj6_k`*nkMfzgQx9E zbNhO7UqjCWBhFW_&f!TS;#pZ%%YT+t=2S15bJ<5XA%c_=N2U~MSXk;OEwW3t3iFhC z!47}CoVe^k$pUy(4zQQo)eB{UNGz&I0Wd*OSD|XdvzD3C>&a_zlSKQUl)Z!}Pq!jqe8+&sw>! zW42hNOT)aV#!1?=w6xhCQ&ZKRXLzh!SFh|dOP-%0MN$!%Co|UBY6=#ACW=WSmdy=o zO)_uJR*NSCb*q`J-M%16dnFPuBxmI(CYf7pKNrKYYpuMHPGwBZhnv&P<+>Ucrq5h1 zlBi(5%(|=?rqw&PFWpn)RW6E1w8+5itCNX;c62dOdrhMg$}%-d${F9tmGZ=v)r$c* z81^uf4YS%V{{>)BiFpm9U%h3vCsK|A{E9wUTG8{jIwJGwb)%*^L09UjVJ31hsT6fK zJONJ#O(>%^-25eHnJHOYn;mA_^uO_URjdg%_XgX?(Ebeg_JMXmTOT~4CMU_mO4F|2 zwklOHpr>W8oUvhyxXuIQC-8d+w6GA#;`ssJp|fz=GFdWPZAjMTZ_^|+(h(@c!XHsy zH4iF+WRbZvp4olA-7Gxyf38!Igl>%hkl|$a!GE6FI8*M3(h(q%p~r&`1LkT}ui8Cb zL06r!lYj2)krtDz)+dtQ|8Q<9FRiGENdD9f5q~q907R1a0V3trGJBqP&~<8zMo}4* zw{pC5oxya3Qgya7axt-$xDqgZVl&IIG%CvAPfMoGF2vic>s&PIZOse$-@3+w>zKS# zGZ#kK^K*b)yl4(S{dxnsf6J4rcKY?THx;M%qr6tCi=4XFBc^baG`*_%R$2Wjz=*fn z$+>_;Y&ORPiz+p)=0r=^pNX~N`7arHU)!XKIlGZMoju3L2{rOLAM20K;G85j*)4`9CJQ~CRG2K4=wX~*g32wd} zEshNEkHm0j+Qn+ zls#_Fjt`KtD59yE0~UO4WLB%pBt*a;+$pW^>C#ZjUb7ebOt7Z3ZJIvdQ43 z`P^9jvG#~eO;f=Lx$oW<^1inqxt#XA^#;`&fll?xL>3>N1h9TRoYd>6c9|>cPY*vRL&G$_{iqQDIEI?M zyh{SYoMtBBUu1Z{NS?dQxhi#C{u~xY!gDs{y~~~-Z;&E2c5hH3KL4B?6^F&s!T<;Le9h!Z=Rc9Y*yvd55*lMKv?&>_Wznt>L1uDGOm^On z>sS86R&8bc*(j&OX6{}l1g9vvi9Aq^lA4kIz9FbFUYHu3BqgYobISX{4#ZqvkF^%W zSUt;FxlrawYKy$|gPB#1?LFo1JTh;Rbouv#Quh&89Js4rIPmM+sB7-vJPLte?Nm>qgfA^9M?H7c6i! zG{a>Wlo(`HXX^v+yvVpep|h5}FO}^F^Kn7q7%b@+n}VtCb@~9}c6NcQPKAtUOiWA= zgl^;CmFr5|?N*(x)4&_G5T0p~FkD)>ojae0!@>lgqwZM2tuh|LgDm+L^?ch$u~8C5 zR=V$kVwuLMQu*U<8Hz$>NjB>C^>_)V96%)L=w3C0cIxaU9H^p6!fy&9hi~cC&~(gS zjg$OPMA5l0R_4<(zV77>l;zM><(SS`{_<@PxOww_?GyWZlnC(Fm0z6!tD(L)n*E-U zeHMX3v}p^;JO*51I`Nf)eouGjU~Y8uWNiyhsIF;X0z+OvDiq31Alu7{K_Cm>8KCuf zJn9%7i(v#?>Q{_A{1zf5MTK<@%`EA@Qi58cu*O$qWvXuiRy09YjZ!0Vl=FBAPH(G1z=)jbYxDVbq$qae@ zGxAj3pA3(PIW`o)U_v)HtSX(<0U3tvI!QtD(@QQPyJ%C0C_V1+2|IciC6ky2o|cGM z@>f~PIyzi}obdrtE2{4`IxQ5~5%2}yOy>+TNgYQHjUepV3PV6nzZFi_?2Krl(ywK&7q1d-1i{yD8Q zIi5*-OcT)!oA_?w!2*cKX3E}!xMfx4;@Kol{KYvdUU za&c8p-`;|$?!})4GsEJC6VJ}Rb<~(jB|6shTQA_D9l`DG73DK>!?ZCN(@jiGg=|s{ z9iVgjxH|J-L;TNup|F)4?lJW-ou#G|Dj9~nedUuObW5A-^X$e-l$ps>YF;nM#Nj!}YSdHou(K$qt4{|$#^BO1KBY@G+m|Ib|PqkQqe#|rgM;Ifw(Li3(YNMY?E6%mskKaRq12Q7qJTs#(n$RPgKNf6mDxmZ&U)BpHt zIO)0(5$vsbPF}?7^H)x|Kv-o zI11sq@0JEBUFi)5(HF$B6WTi3iR3JYN#I!)%^$++hwZ(OD$b`~=*EraUfDWtq3F(L zN3%^6IRZVCVp_Vob1k1-&by!dYC6uLs(I2VUpA@e%TNhq2c1*v^?)g=>}x9UgM>op zi{rnM3ooW>q|o2%Kb*7>)R@KtL3@9&tw)07zZ*0|e|wHw=J&~P1?t5qI47~&p|PZ~ z{i$GaF`xP*4nxj$I@s4^EF9MttIoUANIX|iNxx2N9@#-oI$q<;#aU*4U(J)w%H{%; z)pNW8;dIhDlY>}q%KeMt@sX)1=cdV?*Uu~$U2pK%U82~P)nD7}iL1S7iEIowj#l8! z-?7w_HDQoKl@@CZy*oIVm=10i#bMY+%(+e^fx@3U-Pp^S=cH_$!g5)NN_L(bz{CX& zX=$XCR4HTT*g22Iw*G6Cezjzg&_cpu%ub9SPnj@?Fjvymzvlbla>bvI*wye?YkUgi z3k|6mV$uX>49fQmNja>^J}_6^2r_?mO#e)Vh1o_Y60CDi2wUWmdeJyIFt(7GkdVvy zbUTjxW0c2K7l|=Qfm;^kJG5{GE1XeFz?l*QT zDr@#O{9ShbWOHn)bZvfozL|4hJC~?j#TZpAPnrH&in(@menSM3PxXYr;nQS>wvbQU z|9a0f#$Pum!-|TzjDc5v&q`a#+)i2l+giw;q%oM?%b%!H#|fDl&^vlK(^Y4nO~hd` z5{4}{8AI5puAOR=>l@P@c>VF;9?u6=nhhjGb3WUOT&GuE+H)s|BF|b&`@6Tv zFptayD;io1iCBP4hazNe&(iPi6eKA*!=ED!1)7^XI=Y;j>c>F(M;dzLiVap3Wi@9-hzSuUacc&omly)qFLE3`IPtkqntJ55>ZFb~u;Nl(3>^Ky zMYD5UQd6Do^nARZ2Ja5JqbZ@63zVV}gr<3hrm;dSmv@I0^y z`E&EBdnx2W6PsXQ5S3r|c*68}hyjmF_yH=ntYkYvS@WIDgkUbx-bY=9%5Ie3Qop2O zcCrpEIx?jSt3~R1Bs3hg^3r#c8(obflPdkznoR8M00xHaB-;N`4{*_B@pRV$?{9&? zf$jT9*mN?CrxS0ZR25g)(p|0J%SW}#YeEwzsY@)2!JP484u++@y+e-WwyWH}itm4^ zq*4Vl(bLXPg=~ycxQ{1Wp)L~Vv+tX2bW5ZG{`6_lE0_;ja@6yI$0B@ zen;L3{{XI6)QjwGqkrkha-{qBL>W72J$U9UzMzTnW%X>uf{3MCVx45RLVF%@X3xb= z>3fG5wwwckfxpg*!cOJVFN42Np0qf44^lX2(hBLQ_IO$4W(!ET@(9hxQVGXXm8cHa zua1S-e8Er4H1THMa1$Frb`0HmP>Oc z_tQV^L^GVrq*;;kk0?4h1qk5w4e-)}b>?euth9wT5+T}Lpr|B;sMMrl1-8F`4U*A_ z5mkgk+4}37rAJL$f}ONU-@VV>aGuK*_1|$7L~+WMcciAus}`o-#c9HrZb@8hB8JOW zGJgK+9hILoQ>27faU@G^F)~H;l3q4WtXaEsxaUDuiM&+XBI(zFq+Knnx`$}^j93RB zCgizRQ9-6EbcENw|L5-!LtYYe#kQ&ExT5l*=YI2GjHQ-ZKp@i4r3(+PR$%0Gd7M-I za`_r(fCgMZCgw@k{PhBu$mND8Kog6T1q~?yf*Dn@gzo~r)uTRNyp#(5jdIgtCBo?c z$*U59O*I6|+%Wl_-{TMK@Gi+x#>9`t4Jr!X2w>(udhmA4I77?HY~cUAyh(w^fKh}y zVHytTuKYk488&pF!az^=i002lDkIHEl04Rsb>k1;PCqSe@XwH%{}h|vGclNc1%fIl zxc(jIU`gV1wWV8X;$DjnN`iX({~}wq8K*t1v{DNqD=)ud)mI0FD{&sA`@(E>CMTV7 zxK_u%R-Laa4$qhUpUAz}k~-=Zg^4@XL)R(W-mb1xcXr5sFFYR3(venb51!q*TD(t~ zFQ32hzJ7+J=s`~5PH|I3Pt~!NVXZyvuj*WZf_>SfD-03)S;la zd>bORdSotNfnc&w)3*xhA%I2dXQO#ONWV}77?0S7frlr$sEA}|H)jxxqew~#;fr0#T0uwH9@=X*1gURG1%Jbw(wd4Ipj#L8;E)*9yJc45FE zEst@5z3i5vN074w;Y)1!7jr$Ih)>jX6mL2m-c6-3KDLUayU%ULh2o~?t)-|3~5m=Y8Hz?AOa<h=zc&*5PM{d0AJ31%DcK- z)%3ldWD4N5LW3)m$KJhN%-j2|$?547xtE2Y`~u{t_x+ht7jtLNMsfXLV6oL0+jEiFmf)`bjf|3SzK zHPuAPUZ^(oKk*Po`C{%^%d;dYG9S0|6Q|@s|jL zoR>B0@IVEtaa*p-L6zm7mb`lRs|%6{RRcNxCyLMPPgHI&8~Ot(S7_M#)hK0kdRP&2 z^UVl#Pu576%2<;7-c4Z@uG`4tVMhXj(CSaZ#~$_51PG>3>w`kSOSgX(3OIzN&)$9a z>ywo7NyG=gsgL(YL~JGljniF&do1kqTvHMKU^=l4$*;o_nk{KJ%{60~2>x|&^RD3f z;a?r{B3V6I#}$}b5GYCDA!?k+gP;!Eznq4h&x|qQL4kfVEXGnpX6x-5u)d)c@RVCtZ6%TWwX+igLt0IrVr$4XabV!Ct8HgzClQFMg3cGz zI{5K39c8))O1vvzu9O43R2Q|agd*wZ_Y{qqUDF67{%dQzp^{FqI`mxM5k%sjXkYR4xkE$!l>qN;T-e_n7ObayGz zlnPK0#FAHbz;{XMN_#xrjfg!J6zFm%FSF-{Nf|eXNpi4q|M`Td!Fk=!dh#)xrS{u^ zG`8sQ{pPgw(QM{O15Bxh+uy>xwoZBM^pV*Yw0)$K$z)rID`uLJ$cU|&Z4&BuZA`u6MiWp_q+FA zXKK$TDS@%D&IS)%mYXqd(vAL~8y_zkM4_N$)r0Lw)2-Z&i=DOuQ``F1yQi16&x<)X z$MZS$7T9YlU5@cUN!1D&Rr|e{*V{!xOe^vPkycTq*|c25+g;b|JK17qBB#W1tigpz z>8}eiDk>#K3tw>x=0c+i6g)vKGjv_P;>vURt=uD7G-2Ecd>YCA0>jSJFIN_b^xkVh z@|ByKP#}zNI*a8#;s#H=hK3~wgisM7DOQV$p2qUV>+5M7i1R0sQ{*YM9F7?FHMcsafo2z|9PSrT!lXe!K(} zNREY$C4VyAIcK-ue{b?1@ys{v30m{KRv8!?;tqZd==M2K{}cFzoELb9{PHBg;cMT- zd^6(qi?(zMe|WdJYN%-8{dq_n1NHVCYlh>IG0ps-lz`YSm@bJk`XS_)SsWxw+3x*y zm{W32l83rVnwk;iB-Bg~XBP2GA~g>86*3}65C2zuRgt8Li3$FT(Y?|1t7Dd0*9#AE zuAPu8MrgDYhq41sr3pw+#Yx^ZKEN6cwWo_qrq&%_f?THwo#_ahlFEElAhZDN@qxocPF;Cd+Bm(I9hodGg1#4jI=es90!xIK!;c{sr zKe(1vYzYMwKozjC64g+PX<6Eq?PCQH>^-2SzuZkzT~dNii1EX@;!<7C>R^!&V#KhzM*y6+ABhRP5ypP`r!!B`Kwt6$)AN%NeG#eCM z`@y+2^2@s?_p3ph&jqW7roWLwg&fes2y~=AbCx)pZw^iLW7f(atW66C27nNhfnYi0 z9jr5A{RhPipfI0(XF>gfZ4SR_D(2mZMPmB$)oHG?IDwXeBV+iA#JX9-KBAs?yyo3p zl-;nRfyTMbD>Ht2?$WPKKMhvxJ-Uwi)oQ^U{?J~|@iap7ECl^DPLFDXOx^|SMf=PlDdX)_=@FD&fm-`Nr*-;0$;$U(W%=@st-1ffac=u3=iFK!XtVL- zw^n@57XJ`sFnBJEkFv2)o6P|CP6>VS?+R^tW1AT!Y{$ar)Rgs01g0Z9dw~lqS-8I3 z!t{^?u|NY|kw8u*`E+u|hy=>$d2&t~{7({>PiV;+-iEP+@O{9U9+XORZm-jy$aKAp z)7?|B+CRBN7d%(2bRzW#i+t|DA@Xzo7aIaAmXj8??nX!C`r~=M8~bneiGVN=sL{DpR!FdQ%E4Ocv zj~3XP01TRfRkY)HgxX@ES#cb|?Y~*AFQNJL_`Hs`f@BM4UqZYOfX%TD>2uVHWH9J| zYQVG|5_!~U<8k<9ai&mSKvn!j@bqpZtn`G;VZjm3_6~uMIbrqiCM>TXya{`zv-vUyp3K8ITw*I&cUD4r(yFNrnpL#%^- zJ(rBr(lQCh@0s43-U5z75*R4+4;u{5wrx;L;iQF`bLyHMSw=VcFkp-kVvL1LD3sPI znoEwlp#2 zoam%$N@=e?RD5Rl=n%l{0(U!MN3N^Jb#ZYm#}GOQp0}dAc63=!DPvN}1eS^D?+dO9f)XU;x8gzf6-9ZaCfHgelfHFDh!XKVI8 zS@@bz5;SoMmd+HqRbubFoY0A%-MEKFB{br1M!Y!gXQA0wU|52jY6dQ%dJFW0zs#TK z7Zen%8ym3`e^8uKfXfBzLByIn&P^Tif=G_%Tlbz9Wu*adx^va?hb7_wyOQ z@}4c4^LhQ(B6ypU{BLh=It%qLjE}4}PIK?~V}HCJd%sG&WvG=@c3qZuhFGnSSiS6{ z^7W${L~Z4XBL?502i5j6@WW478@+w|G`Qdw4BzF(5)DjBcSW2L~`I)Qor_nU8VW}IsPKzAcd za57mW`P)8ZMnX?G@2um3rfyW7UmpDn1G>5SA3JQV+<-q+(}rNE~y@trS*JGP1^x>er;uH;`BHwFeqwL`Q`aNHw zzH~9i5Gxi~R{5dQVjbS4r60Mg5vi*YP<29}4N6&1@ccw<$>1XD3fuqM5TN}LUdc-u zdFAn>A)hmzom2=^uX1l2H1YMrI1_tKiD3&&leH5~6CCUAy{IJU6CxK?c3JGOaQOo( zORjyWyO}&T>?}G}lG=oF36w*>zMl;vpF3OX+t2-NDqPAzE+Xj|SegMPkvOKO7cfVM zDx&kj8{#w6OnLt@*6ghn4;Yvgx6Vg;8DOyCv|cO65ZW!ZFH*oW?x zknZl5l5UW0knZl5Zjf$}25FEk=?0PRlJ0K!#`il8`AK-)*Uap_*SXfXS&0mIUSXe~ zG}SlXtz~{}FfiOSTl3f!1z_@5!?f%D#l#h*z4+YOTv;kbK#L_y5_!gBDq4)a+Sf1g z+{{Gq-*0qDDXzEn93EBs14C{)VyFe9mA8quhPjW+hl(>}V=-L3ljXUKA!Yeb{&6N@*;H5FM{~$gqSiB=#Mg zMWnTBDFi$m=(&>t<8wt?r3PPvQzBbhyD-Jj3t*c%JEde~Hlmo?u$^{aV%PqMzlH; zR{x;P&o$rvgVavhTgA`{jTRe{if;Gsu9;ZrS4)~3*_Y9!IL_BkThC7MBK;PuAhKa^ zk~hUiog!x#~)@&DcB_5dTvb3;$e{1PVVtky-|=40QY z%K$3Qc*R4pWu1>FD?WD$H(v?^;HX$^!q(nsys_6AK09b{)&xA|ycZlTf5KLP15u7e6zjn)2F_wC?wm9L*%qeAwyEA|K>UO+2BZC^TM_ zs$h4+qbPKPbtmK?gxc{yFQCjp$MxLTFuyizfQbF4T!UHP=R*9n^GHFxLRZ?$i|_RM zp`-coM|ty6Rhy2j^F=?-MOSs#E)Wc*$}zv&wVfFJ8wk;>S6QhHpWkR0INmOrUyL&6 zaa@gJCnq*;eY(N5MbOLDxDOLAYCGZCV6Ry!TH zC5XJQmB0%JCm%&YUcYDqCY?}rT`wOlFP->&1u~SiPYY^vdx=vnU`PwgEsBd2qPf1Y z*3x_*f{3Ea8wtb>lT&DgCMPf%mPpqYAcDfeso2dcA9Nn)oWJ}PgxZ*9KVNMy87~>V zy%8jNvF1I=xx9M=L(AZ%qKzoH8X@USMuC@Uweea07#kBFQa`0p29K?68> zM1V6Uw%p7uH$SB4EIoH>7`VP?H&-x!xYR<1PvH|WjTwlGf;QZ=(QG4?Q{EvPAWmwT zrRd<~WLon+Q(5!4B9Dxctz9Cx#`nVwBXDLCctlw~d~n9J+RwqDs1Q!pFcg(1$f#*z z&4J6xgOIpsNXX2b8@a9AzJMw%yNFN0o($~o50k7gJBh<@DGKpi7nz1u+DG@NN2CWv=b{SDdv@j(fd~~vff(u>pM=6f ziSnaAMY6niSGoPyqN3q9C&Jy<9&+!`f?`OyfdfM zvKfjW5fdXf&|1ardZ=2}b*hcRe+*aEyzS{D3@;8-B9CSq_Z;0!1MqFr#~s}0eak=U zwMnT4eyPj${z>^;jKd=oD3lK>sq`mgK==l{PiyT&oGvCs!=AUl+WVtuC_nvl2~{0XZN3FAYTE@x1pNetmXI*hM2n^Y5Q=j>{~bs%Obr5NouSD|i4;m1S!>|1xR^Ka2Twj`+S2^(MY55W;|wVnjUVi8 z;Ooi-RM69kLfL(N6xa;9zcdW|z{W|J>;DSoP-ex11=7$XSNrP|mjzM0aR{q}2Fu)$vQxe{e#ONcK-=ac&i>#>_Y|8U+rsa0znw?;2@gjI6*htmFz+#0XZGg&18p%`PotaYNXZ z1Ih?1r*m05Dx$>xYv}(*_-`P6oGZ=dv7B?!HadhCG>N88MGNx_8N?IzlV$^HKNxFJ zs)%A6s)~O(jKEcfDRzxw32McyL>EBzYRJ7p6OY%C`>u3r>t&wFz?`JjEF7V|U2v=< zg;7WiM-^RrwMo!Xh20UYMlY$Z>LMy3W!1MWrF{SRQi3aBhE)A}*Tq;70tt)qH;TE- zq%VB)`L-8pqWx0XMQyVG8_`*#`y?iCMmT3Yn~Mt7VpfF5=+)Qjr8Rw!+YaQ@Cs(xknr2^;e7 z-X7T2P@U%W+?8v}z5?e~ieYakIzq@j_y&*TDao=@8so=nTE0VN?t<^%!%+p(B$Slk zQNpq>wo#3Nma|m3cyi(4dB3^Wa(p?e<3U*ZV`R}hH-#$03Zt1A?upF1&k)Mb2zeU&6|Y-}lMg ze1|F~{{y~X?|-)1lgkAsaxdc%!TdZi7@<4qV1Cz@%vD)%1Vg0wE|*yh_`S5WhQZ{2 z05p8#0EQOv@gXoCj1^VK@_V)X$lmoTgu;KxG0}P`j5XVcyk6#=y+J}sN;LI5 z*?H*2&z8bC5w1;6cODU^xTKvS5?=V67~ZmG{Q?<7BpYxzhVzjJDXF3|po%mzexQ?) z#pK*gy+yEk=IY_eq)0=nG%>WV zV5QHS=9C9J$UvN`qo*hk4-IhxgEb=xHPbz)k57hY zh>UQHw4K*AZ$zCl(0pr+#L+n${^PK5k*;U6Qk`_Wla6LB3s+t0txCqE4*||iKg~+I z1d3XdVT8GA-62t81T-x3? zuFG&xfdC=NmP@~cc66-$dvh$VW=hH2^~}`a<+^v$lxsQd`nDa{HL!Q(yy`mN z|Ajs6iUae}ub^>i9(Q|jlKZm-T^?zQZJ(s|Q)#m~UYniL*Ut}iAcik3jM(cdn60*V zM;U@)WrbFK=)ttVO~bC2lM~xy*EvKOkrRuvfBJYp7*PN-g<<_C7KYlY3Vn|_xJ!j{ zk~t=a+WD0vwXJanz(qn+Te|A z`Q^O#&cvk9b{6y3$t{cHmZz%v+~wNS8N1_FZRw9l%M1XfM`hZ##@A0|jJ===1}@nW zh}3=MgwACAnis-qia+}weL2pMyc2%yl?fKBkLSHzP`RMtg<{m= zQ-i5LWRxAbIY^YB%&|@7SXl%^GVp-M@XT`-t#Bn36i{+~9`S-;k^eS&uWyD=S4Eg4 z;2ci)5`7%HZJ9;{i8Y!?+;wo|h{(axLkXdIeN%F2)xdI{N1jQFw7AG1>rpr+@*dBT z6y`?WZ1Hk@W(EdMvkgOe+U+T1i5?AtB?7ss+iC`a#Yl{(&IUkxk!TR4ed?UqguLU2 zG5Rv)oJhkF1}Yb!Y7`X8*?z4Q*4GC_^JO}>gTzs|tVZYRPrFVJ={H9ba^@QCWbt#l zct>8+zUmL53QcGeM;MVD{6VD3CrmJVgIkCe_o6jFev{BpLa@+u1R6r#zWlYqAEoru zu43bv|ME!#Qx^Y+ASqOa*=MCqDl|A!sC|*V-|yq7X)xIsq#}E|U!ZxFx&>rl(ICLL z)U;@CEyRCxJoy_PjbZ8yXBlW&Z%sa&dzg?|TpwG2YE2&GiupqzuuG$jl|K`2K`8V3 z8cI&(yX8j%-y6uiTz^8)$wyzi!8vtVd z_)>#ViRybp?jEne zVPg9HeC0#rvrjr9_(Wi2WP~Qd;=jiK>bhK6q1BObFkQl8@p)7^jC=k0UA@`3@hh=^ zqj%0Ib6d3QQ3|`W*>d_sW?iG$R+Ac?G3=p>v?URBm!%4;@nBBu5AEjHP<-B#pVKYd zvCHY)?o9sA4;pPPx+n|&{!U)kTUC-dKV)U_YX?M)QF#2N@^yYlPmb;GaUwyIiiyGv z#DWZxs9wWWVE6CPC%#*I;;?VOAT28^`$yW&x|e+a{`KV!zn61f_gA*N{`z@KF&;qZ z^37~Z!wBxL-tv&MJ)0yNOdYIE(gCe)x0^vYktK3W2?FGpD*b_}mJ;n!Pu)A$xfPl>UG39-^AB`VaVC z9u_!HuU%1FjY7W#>)$E%Rt49+(DVdISRrZqFzRh{pDW^#E&J{Js1nt^fd^~qd+ zKUp`oT{mi&W!>GKk|GSlBBlYwG>-R$QLD9B-W0ENaO^b8lN)P#jMk?G`L`%!XtH+8Wp0p3 zf~_9ql=2+5Hz~>UAgA6NCS5NAt)^XyidLPaux;^FlTtcf^M0`h$nn` z6NE8%&AXg$E!FW&$_}&pY9=inJ|H|n*myB*&=8CSZSeVP9=h?YbnN@Tcj456f=0tK zv57n`Vi5A9n~d5&17b`u{28K5oKa!O9i>Fz0=r4LGAq*)KB6H3;7wW2r$e5eoVvfz zU{W*7?Y(s5pqcd;T25}RxRKR2LHNPTm%+(@v`VAHyrR79_RO@xHh5Klbu!|gx>-?y z^m~=OGV$?9PTzB97RH)YEFoFXqx%75VNUICuKb~K5r`#` zX-<=t?T9J1L@1Q%kG%kmvHRo4l7FU#4f z*LxpB-it{92oTA_>5Z#4xaP)oRg@eefg-M~hULNUz_=#s} zIjrmVP-r&z%`^gl^-LNRmKosaN@EQICvbt|3b914EDEEU6t!!C$lf$6aL|Zu9;5?87_jT0{3X_{`ave z)Mq}Vf+oXaDwvLuMxZR6JNGm+q?9D&G)bjmy7dC~xMi=-M>}Y65WDREc3Vaz77VQJ zdR-?n|Gef#+IboUf(=^<=Fgi@rI20%tRBOWE6F+YLIJ|+>t+5WLjZJOPTer>MfUc{ znew(*16q}I)Wq16)lua%msF%;k|O~x?6p?^%kDDdnh}HMxm_TK3lUk)a;c&noqxKw zHf9j9yIinI->f@*#nseOuV8NuA{7Yu^v%928?1h(HW42cnW)jv$PEhNXB4g|G_cp# zf6B{ayg=*#g*4ef-tY3KPUc^b6^zNHE~C-JKO_wrXxgC55qghS4(C&T{uC6C_=7D1 z_xy^6&!zeW7e=qGxREXzjWHdAyIyvp`I_6M5})r!zzze?BoDUCTN-Il0zt6;!e|)4iYJ zx-%NA52oCCPTv8~%_>BTB|5jC^bdMEdP%zFnVDvugTknXqiRavNzaL5?&MFPv42Ee zahZN;f4Ln5*$0_?{0A!&e_x;8dVwr>zs|i5{(2Us)_tQ1!6P{o{xANa$oLX&ZaC^y z+QY34)&O`SRw?QHLq^plh^{9K!O+V4585vt zHKK-$RPZP~z z3qPo{<*@Lu{IjOoTm9-icO+INPR+Y6e={P5K1UYD$1HUxr^Yll3R17&q zl=1jk@Jo6lDWofC5mdGsH!&@L%EeOJUesSGHdS)xzHE_Bol;JfC1&O&#K(VSkhNLU z9k1KTB&7=Ko00RnA@0YF6H<_qL)y#oW)clWDk?6{pe6Pj`ezfrFNoW1GVtHo^6&V~ zlABRSm@7a`eq5*#`@Xku(-TMJ`;nO*PgY+ryd)r!a7_4$(ZTNuNriHXVibQW)Luc4~iPU{iVZY*DwsM`ApzBBC! zo)?bWWqTn7{sW3*H$I`4YfJ;b3upl^7t^Jm^X|<@w_si#C(G1QRCT;Wo8=>eZ9QML z^ZInQT~?A~bU0HMy;$w}r+hn>FLpFMDR@aaT&00W(iG&=Z)Gy*;T)!tus=%y)a^tWNJ$H}b5g8kb|JVk_k*Gnk7f>1WG z|8qQ0-ha$)zkv3-LZ>Zd)UGoZikf0DgMtUzF?KFh3#?m6>v?Pz5T5|>>9z9*XdL~a zb^o{V2x@}KmOcGZ_w|l0jU?lnhiA~elmG*VXAu3>Mt6`_vjyuv{wCM|g11T=M=d!S zJunNP_Ty>DPW&frD}ub5&`Ep~6=A%D-%4ul$G<8CsSJ%t{o?TEEVo@(qJST`Zeo|?ez1-i z$WTU1U?{MBRKJ_$Ahgt&6RZO7LW&&9N1AeluhnK(yH;~mjD~&TIeeUD7m@G#lVCC7 z7g`|#1w~QC)UkkGQ990+3v%~>J9EnZK98@`0IaZ>fg9End0ie8bgD1ohNsWS1m0tf zZIbtpAH;V)Lcd3#%=vgSlp{oSB0}~6w-s3aSzc(6fSsU4dg)J#GY)7eM8oX-JrTkw zI1|T7LRWI4l0RX1>PfY;{UW))tC?cNd+S>|lWs9oRVZ2ui~ zKp|QR1`VpHr>2p7gGA2{gg;v@fEGWzd?ySn03k=IY*yD6;0ZOSyY5BOSN%O{TH9(p zs-om;;_gM|FMim|@?Y7A((-)0 zykw)wb|(Vj6oSypGopYO2f`7k$`95uX8%|hXU;!rpL~wD-cgBIaafAnc1atd6hIy9X2mj~V@Tr33 z*t1oYdq7P(v$sfloXJyi}pbK|n^jByw>KR$>eX|lhS8k|lW`R3fz z3MCN1tgevq?5vddB5qraE|BG86>5eyqjbQQPg5Khp;NKP7pWHV@oc$8rQRdljwpJXX`w5@LwWpF^rRL&rS%g+T>4P&*jAu(^jR0$TH8 z>v=30?%9xW84T$%EhIc=3c%q}U{VoGTS3R+7<`n0zsM-arS$cIDzLYK3O|Qq?eR?YpjTPgH##+Fji`=2 zI%ZJ7Vwk3&Eiyw!Y&9q9!Lv3fbSU(+(7bhG;iE&qksHpJtyedlI0yTV?ofuKFR>3jZuF!gO;+Gwl=?~CthJ;U!zsJL2YZ6H?c=L@3hcf zoX{H?U)#=&Yl|*{!>?D99pvp~oYMluxD<(!amoe;-S>U=9}iOBQ?OD-tfw}^ml6&a zugNqNFg9`j-e;ssH{43rhPkf!O*tOgTWhPI@8|zjzXQdjCpe=0as93Fv0~l*tb_k* zjGg~}&Yq&!#(&7xJOaL|yI6zsiGiHlvHZPABXpNg-&ndV`qxojTot=9LM0uo5tXK# zK)TEouOr5PX=#9PuCrNW)Aza%{}%%m`|$=rq4m6xaIJc7A;xu!95v#bs_sPhm?pY} z{;nuGX{&1lAT3Bq)v4xCiqUN7W*0Ouddm5x#Pza83?rT^{5SG3)CuEpR`Tb+-m>8RSuGp@ zr!_sp63LajaG{^GS;8;Nm>D%U&4TFxA!zA@4^a1yU72RQu~E+7mMMpR$Qxo~4?ysJ zte!}*yTiCL_ZtCN&l=$HSRU#|J@&Gjv|9ExV50eL@D=FMQDBGVmc5WHon#R3bdqAq z2dx^Mmb>it`Y>bnK$OMbUyzcVyy8#u((|qS*(x;9lUgIZGGvCvB~A z?uMpz+)bxWNLzUAX)btveKP3l?+3u?f_js=sp-Xbbb6NCVVMulj_8`-lkGb;_UV?> z)~M#^OKC#=tE7~a=_dPiw_ZHpjx^|cO-f2~eQY~MsjDXs+^#c~1rcnGddaDbdNRt& z5NMwB^mHqX{0;;t^q!vSHa}vDzH=o8DYmAp`{#56A!)N=-T*|5$0OTnRO$}D*U%SM zb7jO?^UI|){^m7 zZz;02v%zGH#DtzHe!%{SQqw%ambu8kYKeiPCFc{#SkqN6lo-RRv21*gokaA0z_?lW zfy;RxraPl?9b8{Ln5`=2#`=w(}bh$Rcos*m|UXmsAjJ->M($bO! znIgtVZFZ0fB{7gF`@PS}AIzFPF9$(oZs)bd4h&9AcAW=QcI}%ms%ql%t_jNQJTG~F{185hg&?{&mN1A5RwDQ)r*3crcZ{lqvvQ4#S^?(PYv^dTo zalEX|5efGjAXQ4h<7U?PK7sFieayBM)bk8UHHC)hKW(k!tAsnlfCvs?{~6zoB&@Ih z5gvXy7yYJoP#@GSC0jRD2R}ns%mP+ihUDG9WPq@LA$^=>48#&h zc$v1Wgnse?kU`6Us=luI!tZZ!`qbxdG{`{U3GyndSpNKVIiYEKQbR>eqU+Umz6ECA zplMaDiIdhj^wa0j${;=vN9a`(v2B_@I; z7B-i*BV+(el={quqgfEt#qfdd(|K6C(_4SEz%vUB$_Kf#wFfK^6adE93Ce8Ey8(B@ z$4gO>HQ(K`5z7UJmXy;9*R?|{z+8J+^K$rw$mQ5l6eJMhP8*3rRL2%H65`RFz+>To5U28Ie-^KtB( zvR-X^GNQi(VwjY|naJB_m`!HW43p6wAKBdemYuV=s)fC@v1XunHI>2-!_Q|P$|~M9 zhN2+mEv>H)myI10U;nTqrxicbcA1?T8_V7$ z!&)hcGz;BZuEx^n_JtF$1b=Dxs9EEnRF6Bxch(-23dV-Z_HW$j>6W^_Hz94cB}(tI zxNxVYO+0d>KSTP%jaZQ{<|ER}w-&vy3rOdSu^?ggvf$SZEAmhzR{NFrF&CZAun1(X zN{fq&x7pIs)05j05{?bjnfixpe03~2zXA^E@weAO$3f!tLpx9x(1Mv(miJnVEs=JL zDVAD4OQYcK)60MV48I_n2;Dr}727<^kxF`48dzt--#Q-=FsT)`W;KYn|4pj~@QHze z$Ox(T%df9%x-L`cNO*rrS4s`4Jv!FhCJ!#eMvx4=4k(`=N11sD++NS#a`t|U-Wd-> z8+dHTplWscAV=o2n2mh~4$CYz#%sO=aBY&Zp58dviSbyzpEysXvu7q9>wAa+m{x~4 zH5hFy=Y?y2aaM!nB`d$#(c@YqbG$_F(YoGATYAE-6- zA6&|pkuiVpV|0>u1Y)R*qn!ogwvkLsFio<9R6Fif7ra!1SLPhQLt4A$ivcqPr|S99 zLg_tp1n8FII%m+1gL*fVWtB*Pt<(|v;sE7`?uY*O5B~14o1sz z8^VhgeD13ZmOMisTSK7Sv?+ek6>V+BiyQ3?NB1N|>0kR`2WW9g+%AjgAp5w#KW$KW z4x1el87g7+y%E*Pzs*3{6H34B9b+{FUbp zX;S9i=w@2#SLYG$j@L(6u=92>Xf}tpx6d)U&FedJg2Gfty)q+c_7T-ZZJ`$(!tAy3 z^HCy?Wi*kzUlZcFM{kAZS^xGle6XBIH=14|r;+gqh!S5klWxooL4!ygomA|q5Z2hL z)x>HAqx6I?q@0Vx?WTTQp36*aKRep5uH~_+AA%@lQ+`^K`ahPHc-+TJdfaDw_VrOV z`hOz*jEvKJB`4x1G)oj<64S5Il2p#zmGgyV?B`^ch2hjIfGT-*k`imRZEffnY_84` zu^BdML{T>r6<cv*S)sQP%9TBeZJ@ z161BWOd2k8eB@Vv@$kgy$iD}W0)<9qdZi$61LEFvCq|N;Gw@u4-zmQ1QXf+F{=`j* z_C529(l5J^(*r8K1oybDt8Uob&3H-u?~1vCfIV9*EGel6<+kAc#v8a|#OHof7GxlN zuJ`2_-x$RUxwjP{Q%n4Sp<&nWut0mb^7rV6-HCdEafg#IF1YVYy;pqw6y_R5``Xoc{ zS7YB98qLc9KM_rFwc$OOvKsyVZbuWj@)@Ck6I{*(f7X7*swm{ESfclHuA15S^ik7= zGEWrMQ^UOP#MHdb>&A-&gM1xZgkfE@z&vG1YAzBjWj|3;mcmzQv1y+8&C0MT8Jf0ZOjp`OqD4X#Efg~-7L9hR3n z06+#MOp}vGx946?@9|o-{*TOMmZ>_)Vm&zJr{9l0CJ;w&c(@=-AxOY0t{&K?5t#Q+%V zr}17HgU!tA(8TZM1{LtSwgYj*>kfJ@dVo<`|DQznc*MLJ0BdLa_IUbk&2!JVs{L{u zkSz_*Pq)kX!PX!h&wS$VRuogAVlL6j{XSMZDIx$@5{#jxYvZ5)ftZ`&pXs;asyG?1M>5B@_85~1nFnB&pT2NBIR`9wUQ!xY?$OPi+Vu#=Lejp z?>{qA-skX{87#1pDX0_$OSKfbOs zE5?yW(C4^Ivn<_Gd-E(WY8h9cy0ojP0%7ndoO02#By(m)N|cdSw)ZZB3hi8c5v|tK zvr2v6^;t`Q$Qf-l&c{BQ)`s11@^#%l$C`0dHAel>QeBk?mypzji?zn#B`Rub?0S>O*;GKhX!sAYHDjTBF3`xHER^(fQZ_pa94U|eA6Jn48s)zJpxCyp*dUp| zM6YBJL0%|}r7m+l_PnPV=gv_F1s?UI8*7<^Y{eo&ec>mw1FH0(C%nIfr)?ri!osYW zaROzlT)t1Yy$3FJmMRxahiXX^U*>4)aZeSb!cf-*{tp^A-qqFK!ov}z#!*A|E z;oz;T^~r*$)ZV7RBR$cTrsVc#q1Jc6SLA=C@qc^a2GT1fkQ(w@TQh*c<1Y}VsYn|T zOLYIVo20BCZB6EO=C`)vMuFHG^e{Fv3wIRa(_i^q2oG0c=Hq2a4@M;sM$cf?f~_@ZUz95cb8Yd%Xw957$XT zRZ&X@azzqA_+PKCr*+*|DFN5GBK{1PUFhKU4$!iL!77d_pq3-yq6+oA+O73@a6;jC z;7}=U4=x*FSRv7Dm6l*9yZd8@-tM!GSy)(jar4$`sUG|Lz{P1(90#m>#n^0~cn~lU z`cK^lK#RkqfTGjQtj5#~47b%=kmq4TnDiw6*m@>eV5=FN9BJMGy0v#ImatdgFEjK7 z26X!8oI3T7_ZzIBiAigX#Pkxy>n_F(9oAT{?%O7aF2yl$Tfzy4ThAbn^sMQ)5(|DY zX$w32og$&o?MN=tH%K$%1x=Z3C{x~}I+yW%iKWJf%y>{X4k_ZRU0%&dq{4FY_YaTi zVYFHoc-TIE!Y%%Y_DcdgyKYGzLnM_*Feg{~hxViKxh*m=&CY~qV)G4$uylgGUwsiURjq=X2Nq7SvnD1o1v%xdUC*tN^|;eNQU@~)x*q;_ma05aD$GZv zUzBs!nJK>R=UX%AZg?6P(?@BZm|;RrF8qyvTH7_T`bNBBAi$x|s3P7XQ*~!DxitD|UsadOL zZ8U8uH7G@#81zx5BUY3H*Re^tQGd9g`vtM9FED>&Aq|Jp^05?AmA!;W2l~TD!u@Hm zMi32kfh8l=^sjcSZ51OeS8 z^?34Oa~p?tt+{oRy^TF|DlB&_VsAZ?oGQP98##!1%{Oq-pd-X`A2>C)Z<`%w=h$o( zNI-}0_;@pF&ocmt%HNB~+&&I+pqGFCX+M9yTJhW?jAxS`)o^%yNKE53hVc~eX7jqX zXeUAydc7wPH3UOV9&ASKU#+fP4Nt!RY+xYj&(2Ek)J^n2-|Im9wCzrRWJG5d`Zq_+ ze=kq*DJesBrsbaJ-C;bS(SNw>vfqxH6oMt;;=*oPj_Ehr+=`mq0>rxQ?gzjA_f6me zQ-9E6EpH+KnF}NVg*~0NMF5z&boH#EfQDgZjJ~>kG}S<1aL38GK^vFXi3Xgkgpjbe zmKM}d_ko{Jk~Ld@q)o>OChg^T=Ug#2e;+p{c3-J&7O?Alb)(~wrFa`$r;ogM?sgI} z6xKiU`@82ZS(dnogvkNPA#my4j@ep-puE*M{);qt;bd4h1ns${IVqV_3;jR8IIIzE zvoghVMw4Swfz0FpJCGY)Di0$^`emRxlNOaSkN(0tm(y301PX+k=3MLm{n$Da)fo4@ zo1j)jpxO;aN%naykb;~7G2!qV0m4l{~MeC=q;iFM-IyA?k@YZoO6tOcZD7Zw3FaJUG&Uxw})WndUWrr2e4-->YDiQTXmGy_Y$0GXLldA1mM!RT=Zgg1F z?Hic%*Jp#xzV?dq~%ZAX&1LI+)BmddU-Jz7aGQ)7_&>y=#VbGUDgB` zac63l@dcpT^@S7#ALxKbhbTS0Y%Ki>Pna^XP8)tTy3a~$Hr(5W1u2uxlwVl5D{Gha zj7!#J;inFCE2&|Vh<2cbLv380@i&V79Ht?u-|1cIhOV_^mm(1r6p5@4Ft*Wo-tSZO zy-@7C1c0l~FH*<;MI-9O)YO#!alaR&XOsTj**Og*I`y+^|Ex-Bj1b-+$-oD{T+<16 z6yKMmLw4Bs5Qr|kiWB{}16;fT)i5Mo@#B{zWQp20EJ(csd86aNF)?BMfmj+>)tL`t z+GKDaV%9Wl%lM!$TK`f2jeE{OP-MRS z5<0$gz1$ifZ-#-mk)|u)V-xZ=C&cZa8rU?yqi}bm4F2Q*cUslIx~eBgXMtE0+Tfuh zlh@qF*B{vigNV(4>cqSH^2);_MeY&6H7OLly11C$(YEMmzIJyP3qiuqA9>8nrcdMO z?mjp?jINcE&UxhSmwkc%o?cCcQUV9pBiq;ej?MeF59hW>zvDx5Gf%z6W{*qAKDZD~ ztKN&V!~0IUiKu=!m?rZ2WS+VI!e+5dV_}2ZMflihU>ESe@w+9``9uPY+X` zdiifk%8r_jk9ur$vqJ3st1Zq#tF6AmQ7MdgLVgg7^*TbtiNk%Zu1C0BE^vCSJ_C<8 z&MJiki4;fn(hm@4(#gsp4AMMH();5GE)qwI!n6o9SaY?X%ie|1kdMxZPnL?IYc+11 zJRZXMNJ;UGXWWpmoO8u|;LO*#TT7EOYqVVzNoC5N`rb`lp~;FFvzv=PA}z(@K-<^b zTJYHY;oOo$HcfnR-U-&-W#)IClJMzD)aJ7yL(?t+s7PAqs@iAlxrWUhzmvRNqoEYJ69PL*UA36eS-_m?w`<5U($$ zZ7t!}^uVgxTdMR(V00UziHC*^moX6*mNP-}AJYn8;JFx|7dXGUkwE(;P47rAMlt+O zQKijVb#Ap_f#S$Sux+s3vLpybW;aD@MrXSvS*GU6ow>b3#0>hIqxY`vWTVe3g^$3`>*R z5=+DCo8I$>V=2*AB=(pT+(_;g#t)y^&MN&bWYvf_m15KEu*%1TCX$2~qiWB}j8B&MmXwnti?7AT7(>B*f136_wv>U@#5uf3u9iV6VQfk^ zLM(G7UW_@1R^jc5=ch5PcqCR4K({P&+?}0`@57n#c)kne<>i@-XS_EzHxCR9WUJuj z=Z_8!7SnFB>&q998p`A*4ibFf=s!J(`Soe3!CLn9xdoV&99vzr7%+glDp(S~RJEGC z>rF6mMD53KaKK>gAi+TTdfg3tVfkIJvBY#75fO2`*oH$)oQos?pOuwGqtOX5U%d|T zT|DX$i&;Nhr|C37$e&5QYDEN?_N%I@EcN{l{!rSjcaAqZicWV7E{h~kNW?rwXg64c z(QQ%~pigioZyYw|Kr2sshN8A1NEi0>pC1(U&xyGh0AOSX?4 z=?h|r)QUM&bYvK?l9E5v%EP1Tu^TXEWXdg8cb?e(yAvl8i{xN39uQ8nyD58|ZnPCL zGREX}yrc+05RgT@KPbtqGoK`Cbvf<(M!McLvo)ECfm3397D2<{)*{sD_z8{m2R}S= zR6lp-k+oVpcPhT8v({UqCdJk^CXWYOFqG{kQuUMjmzQ?RsmGm$$|w4FS`sD0y}ADl zFW?7$)-s~iBBMq}zkq@r{H|g?SaJDMI_IMwHkNjO7r~In3T%Q)HT zD>;-nc$VxA$A}%Vzb^(soYsP~XZ8NYGd(~#1)XI($p?~|nfjO@OIj{eEa+39a18u7 zd&7816r_Lo{I{&&Y>B9BS|smnNGKDTdd^4Gpzk}Gf4K| zotUZ&P4=M3DFa)+#VTuDG)^-Plao--BR=Dyxx9R-noh5w9ZZy>-{{O8(0pZOrnS#^?=9gs73t}Wb2&Qc+)U&Fi5mBlyiZh9p1yK%-lMS3>4-Q*Y3Axt5F+0H<}5@mqvAP zW4RpRveb8ffQqx^zW=qn93O{S_sb@T)AhOk=Cm_6eSf){7$_YwJ3nl=GA)-Ik>{)R zHXm<-su^ydeh~0DL>J4q)qCINs#Ybqr6q&g?8~)7ju!>An(XW%om~%q4q5~Xc;6P4 znPY(?P3Ap4o9Cqk80d~vXvwCr8k5EmK`)Q+@bQ7Xcl^#bKbqUy$(8smmztAk48HeC zL#CwFO=D5*8+XUNVxuV?iy*vN?T5O2{TLX_-FwZ@R2c|`S63?zyze9>C9OSfJB?=e z@jx>OsWqVGB^9*xzQY}X%o6s)Fa;~Ko937;nz=eV4kh|6IoIm?RT49deWgm5> zTqCGVrOUern+A(aUw^{GGr%A%M0DQ3FH9mOxo;VVQV?EhYdB6?;h}e!#JnVX;4sWu zwG}KVxFOwEm$*>m)!%p|Wcq#MN>rJd!4yG3gy}HPuz?J{9S#AbsA4~@9t@0s1hmfW5e}{eInHw;z*f(3F*rg}R%ZSu4^QzYcHDT|61R2`m2W$UI& zK8>F~5m*(5^QFpEN}G_8xSV70!vKtJU_Cpl1jZ$P=yceOE@wbpsO#UOM=FcY?+rB5 z|2100{yy-?R4k%rGCR^g<3$uwT8imX6DgfL|F$9TW9vLLVoJ;{)O6@1OE@N7eY{l{-K}b^q!Q>aT!+t<%$ty^h}AUJkb_ z=!4v@nbAW^OP z(aRGrK{lFbrMFyrTdu*1fE3k4GDI`VgdPS{pfLPrbkWYyF<;@&$YCM|w6FW^QH}fU zh|<3I!w*d9RL3ICMS7_WHauNj-4)(QJZ_1s^$sdILWT^k21BqF0pWuzgWDxXcB2!G zRxNsJN=}7VcLHny4wo~gl}0+zvW5v7?US4zX3R1eekwq_3}RHZLqThO+);2<(HVC7T49gnw##q#H<~oWYP3kc#TkJb?Kb;6JsJH3 z*>?#h!cZtbJ!#baeItPaQs&N=ce|^2F&0s1h7L)T2`g8fY1a$#)Cnx6a@St$I|PGz zeq!=a`)8DlnuIngA%e>V80Pq^$` zy{`+NAT&rs%a$`pOh_gpLm~d80fQcgTsQqwC9hkjtlN-LZ|->d5D_y0A5;0UoS0WM z#WoMZZo%V2Z3u0lq^pTtjvSHh$%)c|+fj_mn*JdJMTuLo$bX$FDyZHY<+6e@+cRau_nq5kuwn8f1# zO*&&-tfS-M6^zH-v&bE;w^F&9uc0=R$HL3RgmTwR>m)l%`9|o`tp>`MDlwCq-r;`K zh=rrWt+Ug?|M)u%M)zuWM|B|@G{z&kkBjG=>rXgCM{cB2bsE&DroaybkC@()_EMe)_6R0+LVxsE3n@AjC&7q)LP)aN&_x8ZQA8fs-VfxV2F6d4fkq z6h&77S~RhSIUshD#FxjduJ%|9>XIu&xvuNa^E4i%FtUjW2GF6Xaqq)Y&zXy~dGlv` z_dx9g^{=QEzdj7HY;Q2v77q|}Wyi-dh5I8#eXV&*hm4yU=VGLs8&hjemmF-Y@mf)+ z1?}ji_)f-VBvzm*U z@3Bji>{kzk`XlR?tOTk)(>FPJnm3r_$f1zlw*12$oH0jxqIV%!m*3~ZTa-- z2gLeQ4gM(FQJ^Awmxb##tXuDQ+UyfT?aApy^Tal8wB09;8Q~6Lzc(WNv`$jIQI4m2 zo@(n*8$GYxGi~6DiHP3LgGZ&ngS6;}$m5ME_^5AfIC&Pc?ftJ2p3XB-t9Shh^nvyL z(}R6|z`+zX`FilanDtJnauz*^cJrcXvO}tY9IZ+%31QILj{O2E)-cEQ_Ab6^eg-{q zxpdJKee4xIZn`g+p^MZ+#sYH_*m|U}Il+fvFciN0{K~=65*=%DUpkcyYh>=ScXT<< z(`py{;^92iWMdMD_(%Zm2$973zJbu6@8~oex93VUg+vw?8tfOI=I<09GONBHl=Bs8SQIjEnTs}6Zi}c`CUU2Y6sf)348qpt+aWyeR?+SQCYg) zt6B{l^kU#qn$gyho(3z)VIzU zqq#lPlZg9bIW~&*bt+vA(YUb?3-U8D{$+TNGguGy3mzASxBioocT?u`(5t9$VW`#L zRa8}BBczBn=Gsi72*ey-e`{}_Nb)qr-oKBlrYQ52F5}9ZFV#5;C|<;Q{c1ETwT@ql z_{2aHERJTXGLcTK_>G(Z$rxc3zGhD;N}{^ZN|B~wnc(W_`;y5ki!MUk@b7s-UR9x! znxS(V_6kc)Tvx?j4U)m>>~w6C!T95s;bHQ-Oc_FzyS<2Yyf-^Ucf7bD7LjPga;=tF zP^vFakdc#Lz1(knwK>!J8=fwbVr~{TiFLz;l82uoXJL0a_9`r~nevdm@bJNZ1XWy) zMB+VZfRkW$HR*JHI*iG_N#K&M4_=XYoOQWIL+XH8K5v{+N~hP~YLgA!a7|alf}?rm zrYw8IMF}>B*O1+O=x2m4qMxBFb=yK0dP4Trx^ms~=oyqJXFq@Ra{RokJ-!q++}GDv zgr(bQG|B~PxQX7N$?f5nmuqIdZy4_PXUWF6`~b^XIh;0N)Q!L$E|%9VqD+d97X~RU z9MwMjgOOR;ayfG~Bbtqtg%(NlmMe|B4Ks1%;K0A39hvNUj?KAxE09boR%w7IDJ&4|5AXieV(z#4{x~5)*3*Ft-rl8HeTh>1iLs`)#42y&hP_k(#F_~N^VqrnA zJNTAMp2bS4>RLz>3#BefM7EXg86olIdi&5Uq6+`(wiwV#jCa1kQUaWz)B~5_Ih?O(=5Via$6r%OlOAU6zL_Lmw#8i;=4<5;KSiD_^f*uQuC<8sN;_cw5ywB&5DO> z#|C=2Vo8&t^od_`Q1Ot*$_d;r9@alnE0upQQ78zGh%kC;JUxhYa>V3_H2=umwJiN= zeKW*V&`uyGZqgW!HSQS zClOO$xY`tBi^$$L;yYQCa>oboDQAL{S;M&(egPHk3 zZCk|jcPbGmK`bm1`uf|Ha@o`$vDx%{`~pfc#XLQEB5+vy^rr0YP9|8Mt{bgRii@FT z(wjs4^WH5#dvf^bhKX12`{NsA@j!cgjR}Pztu^uD)s{B8&g5Ai`e3=@ zkS5&bDf_#yyj3aJuv_^{7~1_$4b~Ss$9i{pEX4Ql=;Z=s3s%WYM&_;ehtnP0gR;7t zZTz3wN&_@6{6 zyD+&u^UQu#lLBq9X5ShOPM-H#PeGgqM~w^Jiu0LRL1Ugq9KMp(6r4*{)2768)8t5x zZJOo!rE_9@pC$ju?8%NnuLXTx&Ii5GbvYo~o-vSFdaFyvYV8gd7&LO- zZ{)fMsf+WwdFFBrmbf1OAV%YpCA60^-7Y==KIMwtpT$!v|6=I;-ZJZTIKx`01-BdY zmA~*wt6qbS*W-43|8SN{u@$XABH{P&aLCV5$iDu8=@Lar<1x&n$Q~Mp=Lhw@N!|Vg z8urg3zB2`3GgZ165(%|uv8~MTH1I+SsOt-Zte0VXll^BCg(nzJCkuHd2wJyqn#_PL`fE!f4Y1@&B0|3y!e0+ zhm+d{-!*r9Q=s99wPdLp!}{zDZM1?^_Y<8&0gijeySvGj1??{HwBX?H|J7T^ZF&7y zZ`L~yffF1C-#gE25opBh=3|I`3GspB$R?U02=CJ;=k(Uk#;lufhvFmG_oD~vwKr0b zuOY2ZJ*cXt8Vo+EoGY`$>hAu_Pm22yEdRMOZ*t)KDcjv0OwZO^uLY5avB|eOeg*NW z;R+@Bx?K}s9f(O3_@RgH*MCl+)MNCWrqyH8oF60E7CHMx4FQ=TIIyfUppGzcx3IQO zOP|8s@x~(V4!U0f+j?c%S~VGm!mU^Imdoy;7D86z#~tkkh18vD)s#zH`OR$zk*lRV zx%_jxqWMx=g~RWR%U#~(UgT7Al*;jy|0T~TZ;VlTtHbZxb@%p$By+qgs>BLjSTR7a zB@A1LPsIXFm~kAOyr)A>vx}HSOqu^mQZ&DhuhRQxMQ|sG2YqUL+=(*s{A)Ie);38* z^aBEoMuoPQ8-V+0Vg0|Wx+4F~l^|e7i2l7h{N7}3H6#5}wup1E>_Dm6^ePTYw-W85 zPqCzz`)6w)hAk7H_dj4MY5@A#dYg@OvalpZ%cTnzgJ~mmBO8MLmB4OyBB}MW0 zbQ&yrI|GkE!We5@} zRBzVxmkYMAXn9A63;e|#(1wJL8U2CZ+|sw5w00X|{&ZNhfyw`>YX4`V|Lwh3XiyMr z(mVP(?-#DS)3xzdCkLwZruvHZmks@$a8Zl9&tepVi03<-ro1+6I2*+sDeam}MRT>` zl*jU5-mFrN2(j#$9x_LJT44}uP z0r`!Bp9t0;j_xOR{ksJW<~6IYJXs=t^*|%rL4iB>av1bsA0iv~;4rGOuO2-~?L9_Q zDj&`v)EoD#ks`h{-wm~1SE`K6(OZkFZZgHGQjij-7%W0N*3ODq_KgI`#+bu6?G9}{ z&ZxrqeH$$`cN})VBWRH77e9Wx-kq-u&J=WYCP>F}IhD#6$*|IE zHUGXnZjz%;h^N!!S%V2lCiNY1J$@2JgSK}cHr3T-A`*gz9NGJ7f6}RqhSCo>;}E_=gVPfwh@}V=SJ z()skS!{3`vo}M%7xA)hhk(8n7JZ`bXA_{}O{9tp$Et%DGw7GY9`!l=kgJb4r1{DhA zhfk5@nrtrihV!vIHtQsV@3uE4g{2dbjY#|~g^3PJv_(hHBsCOT9}&Li21+8a1`9Gi zUOy2U>k;vWM@Ro!l&g$2I{791pUNU3pE!x*U0|dIk*qE`6dyf0E?yQLBTpAGkHa1` z3JQwbGsn&RdB(7qZw7p=$B5y*r!nIQ6Dg^XT6y=HZH$4h1ipy45<@zdt`&Jz)cS{& zNvdfqXtZ1@83rs}7ldWr^+-tray=$V+}3De+gzFjJaj&tck8iI-c28BO?+AcHo6R| zlyi~eV)#d1ebPyfQ8>KxP}!j(4cM?QZ-&Ja-0?2P6Q(E1oGLeSLyNS$Q-(0VKq3k2 zpBG0bP`T`svLB7~@mi?0yCMSugtT(pvgO_&fluEGJH~54X~)_`2MMUM(8I90(y@vj zMz&0N2~bg!wp|0@3+%wcm>)?%1H0O>N*AbhfX8R=!~|DUt=cyeQtini8dd9R>oqpx z@l@$Dl?uglMM|`rllidZWK2L!9gHUO8jhhM@Dc^$t3F>e`d!)m3GIvfdkPlXcyP1X zu^-Tbd1$uNantd*e5sOrnx>Dt8tHeopDJ_)EShy`hIZafVFNBUtD+=E{n$L4j5+2DJ)bNuvts{S2-OH zfI7_T^p>jJu7TYnE|yR_i_ znc&Z46Hk;^&$XM@?k0PrZjcOhZCxfBDm0;qWP=VbrPXS&*j=cI?ou`AwT$7kzqNtY zMHk4H5r@gu8z*ZspEs^;>zk=<_a(M&x~Rd;6IE|QRQ1hB#|0?i;CvZ-NSLJSEt}!h zG|>le9zNC$&(WCWxc^|jClMAjV5WGpLCv^KF%}4-HZDc4jeer*CpCs5ny%hz{$`t- z=2Wzw$Ess=@(1$>eO58Yv2k&|0Re0ib%q$uhzAo64_6#rm$L5G7XD2_(%3bj@p)8k zO#Wj0YoEUaqF(kR2!>?~Q6sovX@~C>1R0;I%v&&112Ds2Ym?oH_)T8*l`Q50wt54< z+HK1=t{MFV5hYWdUfiDuIHlSkcV?9B-=?Na@#LtLS3kC<{b=!Usn{<9@5AFB|G&tM zPOqqZQas?|w*#c$W;$)QTTl}j++uI9lW4c^&OqE#(XO52e_d7mVT+rmr_xWK@Mf$O z&-uLM%I0Y`8zHeMH7e0@Tu$>H_R&EPoG#%1I#^$#NU2+i3HzzsXsP-Y>+Vwfl2L(> zR8*KqkdGkbnU5*d{Ml^d=+(yBURgMp^s$aqonc+42ih( zcEvFMx4DZc_nlAzzWa}-Y4p3}2^n5bNVbn7U%>cLd@}+EaHC_v&CYl*JKg>()0H}s zfPXZD`yP`~Pp{R8hlj^>qmx%M$$AJ_9FV-X-=Dy9cRUxhw6qL$*xLG0Z?hQL`~Yp< zB+(I_G#n(dcO&yTx|&2i15e&1>2zgMzRO#jm}H03h5kd{?+9V(*P?*8%SO)N5HyCp zpbgZRoP5Ku)782!116-)e?&?=6Zyz!6$aNKxGmhV#t8YB1AHPvR`&YiT-CnyA5`&^ z@bCc9P+*QruPBUYUS;F3@ggaOe0K0gy5D*IJzr zv3QanQQroCo}&};J$f70$Yuv;g^Nb;JVy z7lW8neXt^p-S+mvc(du6N~`s6+u4<-P>zy(sf5tK=(K%Z&zQ6A-roTTmlqd(hA7Qm z-0(IwHVai71BrA#+hA2qq;r}r)Wf}dkC^X}L=X4|3Ekb__Qo?tOO#=CMRN%2NnJ}#7c|Km575?@J4GTl)55?Huee~Gv$`>w)rqWr8 z!v51`yxmt-qefdYx3d9D4P!dT1XCx@(f*hG+9HN5OtN(!TA;gs`4ff-H#|S5^SvDp zqzl>hSYt*%Ar%RZ4HO z^}%FWl0qryK*^&IsvE3Ou_QW8zXTeSnTiz*G}`DaP*iTGttDl13s|mner(Vfee+fe zZ?ef$H8&uC<4IBMphy;`*sd30q+WG>=710DFWoegbLW!>8Q2C76cL}W8ZuJTIXeKd z{s2vq7L``vMnu$as1Sc68yWJeU*m1=FdVn}Va^mI2AVbY;jbVewuhLKdD*dNr50y! zc)Q?y>4I;u!@f#7N6k33y8)YGj-c7|b2(~+(J0%+Ru!m&Ep0{QMbg?E5};$sh8Y}O9Sk0Bwswv&enGGVoR}+Yo7WcKREzccSjzNe z<*RJbVz*kDZA@f*&Id%!HadU*o5V40W)%S{%kE@W78oLR*}up(V1Y3$Gc5)lUW7`S zTTYNNuo-Oje1sqoMclmla}8`8W4T?R%w}_7QD2v2I*I?Rx9kg&+sN$6@Tj@$d{Nn9 zkynI>5W-dOz#Yn5dnX=S^IcR5z1dT9G9q|!qr(+X-wB>xyHzX%rDe%OCQ8In_L5j7 zb;p(shDZ~U)D*!$g##6Bf4EnOd<-21-RQr^|8#@?TD=8P-ys^;VHGHZs61I_U)?wk z&d%cfP70c+;6mgiHoC{1a1vqM-u4-W(%Fn{;RJ%_59ZD1ZvDM-*;`0)%JhL z2O?im2BRjIw?~;CZC$-@eTJgX&8Bl9SFFUm)_*p+NW_#IlHj)I0$5(SEOB^? zN}j{R*uAc4cpjE`Iz*0McR;0O0%DOMg!BLgmz8OG)li2ir{Cv22(Y{7NSSR?#&nIn ze#v8B&)O=K`G&Tp`}FtcQ)m>u|N5ZRW`Eu<*bS4uSeU~zVs^{9U}BL_d&7Mu_@v56 z^{sIA$K5uIoq0YM3Jj#9`lI{5AK!is?dYaP`ja!B-%kUm*^kfb@6z@#*!%;X9UgX* z+mfb^Oid&rH}dxnZdaIqPm3M#UJO?3IU-2%tq|0>Z39i~Scgco^`I zWC~6g;G-wS$g`pX0B~^Q&Wn$KX4-&l%}zDCRKt&oh3s3T`rr1CChN6r`);y5uZ4i4 z0J^unyuYd>faem{EMHnJ<(M7`naTz+`~Cag4^s}n?+K@teT`9CNohxa<0W}@a~VRbj9FkP z89@nyN&#~>K|%dy7Y4tX0*5%dH10nL79qSvB(z(s32VAozQSRsCiENm-+V38`KnV~ z!2d)5}aolkdn z8uq(G98ssc!y6al>~X~^6@sbz0KVy~)Sgr!*K9EV4z3nvN9NJptRDRu+v5f8TEok} zwY3B~%~xRNfdx*-FV&&fU-aS$&jW&{ zR;@$|M5Fnm`J0nv|2PWSr6X__WefPfr#k9%x+Vwq z-zD)YWa9dOJ}{Qiwz?NmJiRmxhOwg|2fcqBS#6%<@FC9cY z`TQCA2mmHQVPUk137L9R`K*zI(N~Ju7jWhVmBAya9^)z|{y5*_9#gOWwT6=v%^O6Z z&DGdDJsdMzBvbdi$gte><5O0ob|^?PVL6T`JKh@zYbQ}M|6+Vy#xT^});3eAtq5!` z-jAoUlKA*Sm5cxnpfGUN7s?X6jNI}^#l@lTbKpe=5{B=60CcG(78dAT3Q7OBj`Q)L zAs-VY(ZuRPRXFmXH7|(=;aHl{ID*(`!vyifuT*PGPW=hm7_3@wcA_Xsq~sdfHqemf z=&IS>-TZ%42ynjmjc{_;)QGRPIHz`pi7B9ehBg$4kWX;t3JH%+n%E6 z&#UjtW99ojNtCKwwy%)m$4XwL(-A3^$wRaDUy*FqXgC(aP{v9WrvrIWTI%k(;bi7V z1_mTzVkT#tk=->$aA$%sAikc{9~#9%NZ=v$83F^tM5Dnxc-mAjN3PoC++3s4@`IWX z?LegTY30E&eH=}guw3#`W*Gcgpi!$`m$c)1NOkm!>oHfUP-(xXt=#$GxC(v$l>FT( zCvFs&bD#N%r;QNS_Er}~*ZfEW4E<&A-#-Psd8HGibWnYhP=3dfQe8W^LBfQp>TkLr z9RBS`gTQ9D7VQ2*lip?P`w@rTZf8&0cgwt$2v3I{j3U?vWR=5(Cty_# zuzUbPnY2}-hXv?#1Ws3Ne9+SBNM`qe1kR9P+l$&gTwtZL9t%X_pQ<(65_Ndo?*7+M z)@U&aT8AfRtK}Lm?#s&%z;NCR@IrutGq~DSzd61q^MCI(el)Mih>0jHDmq)PE=#Rs zI(GFZt=Vn|a;5P!4?Jk4%GGpkm$Q!7cP~Gi9S^B9xIX3@k1w#8&n2*0G!|lU#i08^ zK$BGu73o2$?a()D=^xVZSIa{vhxhMPYj!=I06Iv;Y8z>VWx@i%L5 ze%`m;txlmc8K<%}%r&)YE6+PT<11zY=X(J*lhzdkrQ_Ek762fsw~eq8SbRC!vFmwZi;0wzQ&EFTss*8;P$7{1UX?(K~e z@;zCy)EU1BgE|PXT{pf<&3*mh#~Lv_9JdepQ?u>)qXl%pf81WA~;yY)iEHu`gEyFLC;1U7XARecK@xRA%e!}^TQ=_JL`<0BdV^=Bj zQ_LllDt>S?*AV9T!qj_ivhTIuhF8%~nDdksY#HXHrbu|u{G&C4x_5vqvOZY_LXI!g3T+D%zXAhm z?dQ!w`C>t1!j$p=wD*|Y&WPh_izffopI=;FzTX6V6`*$Xsr&QO2fsr{b`pP$(^iik z=oWYP#@oOk+0)AlbRyt`w)gi3^M~U&-FGR$V+Fnu+*C@G{62%0Y|Qq%vj3iBgs9MT zuE_MEqgJOUmWzu^dIlaa4>ul}D`Bx%z)g?{AQi{uag9dq4MHX$7|jvF(K(QRBtMW| zaEWQlv-H@-o@_`@RE+SwV;m#WVd%YWUuJN$@7DHj3ymaA)qu0r*_qj?&oQni>fp(4c^=VPUP zval3_zw`NmEwR8(m`NHbXlF2TI$OX?rSdsrZ~VAR>FrfUNePie>~-kxEjJ@}MB`3p zCm*of_!qg*In_o?dB6vzSlgF7awn$^;2Mkr6V8H1&1fU6xM4qyia!0AW;f!PPjdT)PTDTJvSd;v(YohJ6d1z9u!9Bai5L1l1DyQ%-)=pGnM{D7oHls8EvAZDDZUb zKVxK#9sb13?Q3sjqc-I2l!4=DTXLYmM6C6{P1j>xLKcP|{?+k0D2+U&eHrK#NSxX| zUE?!1FARm{N!hqCh4i7Fjx`cY0h?Upay!6uY7cWZEh*3;&|q3cE3f2?3qZ8m(?GF@hu8$5tI;?D~^^U z9zK7?yI`X_#FMxb#Al#&x!RTXi@nxEXM&+!$Ec-cw$`(P-yQBL98Z&{RvhfMTy6Hn zUu$E27*s~1m4D=|zuMWlI(!+!o(=2zgr5s&)@F$@Mk%#M5{f{Kg3h2W;p&Q6q1mtv zVwsdGwNk*ojLnz)mqjZqD!fz)CZH@<8cFA!I8tk^8K$$1c%YD$zQzasLk}3V-vAEG zFP$D76@{c)sU?6WB9TNb-SPKUo)QggO!!BPeC4wDz$wqG)EV@Cp#T>II^~VoG8Y>y zt#X5daUAx8nF3~)v(>Gk={z)gEmCEi-@U!X8U^sT$EpSkizNI4GGrrUHA(RV0iLku`zN+MTwM+7{mXLp?%lQE{~D?FY+sc)fwQgFRa* zqshybqB(L);d8r&ydZj;oQNnS%jYox3{G=Z$|`UiDP)-phdx`cxA#O21Hzr?KwH3lj@bR7hSwFAHg^Gd?oA-yQXXeBqw)ajwBcBd{9p zrhsAd^UHO$#o`tFCya>T;O)&G)C0$1!_mEQiYz4=2TRvXFck#hHH$zCh^MNGarI|Z zR>={~#s4gpL6;t#;Wa>^AhfWVoSZ!5;zDhEI~EQpO43e7lyIRFt+tqWw&V3Q#;nhO z{$W6H@W?(CvwJW~2q|h>iI)PpVWJFS>hox<6IcK3(F_ z(Eyh|Tr8$UDNmXCf;nGki;L)j91Rdta7LiyO-pst;e8jabt}2Jbe5_4i;idWV|jtQ zJe@s2$6r*gP-H&$m#}!VO0HN)jOZ- z#8^vtkz+YrZY!gp#!Vf6oGUR{8-6TOoK5HT2!TU2t~MUGoHJ)_IClINg|i`>A$j}T zI69mXE%&sa4baP3OfQBd5$X-0e$+q-{2+##EC_RUi3gINDFoAbCilGg;>rE%?T1H~ z{}!sh4@A8MfC>iW#X|qosK^C;p|R9k)W@qowQ#1Lvj4d6n^z<^)C5xSCS&jv(97X@ zujEdpk3UR`HuuIoa1p)>+g}a#45y&Qr4(^5%AzaqBO2Bg|2CET(=YnGkdYM9!0>`p zPZby5?0ojQE9y|(|NTcyAQ}T9bZd4_TzH^R+BufjRjl{40>q@-tZ+N;FV2;jJvDe? zEiP}~fqy#jSwq*_TmYpCrn~jH(_qjUFleN@3m~?)_3eNl=wRxHWI>m!(`*~C;iEe?5YYx| z#Sebpz>ouzqZ+5dTv@=R8vF8V2-Nbb(Uq&DR(lbI`rd9&MmQE{vfyg~nEFB(jV6#0 z@%c6!FVuQ2Glim20Ym(*e_#o?%SK7ogbwe1{8!H@_2!0;gwHclT?Ht;2Cu&hq|`i_)|kXxs`STCY~)MgK?#XLL16;M zm*eAU?ElETWh&zm_niNx>VVj4|N8ueR6JL$#_#5AEhJY2!FZ`MsmG9My4Hw5CaZHu zmR~yGE9jGHg9Z>l+>|JKvR+AAZ?pmdNtxCC)AeLnvJ}ujp_lpLrRT z8VB6F>3+uS1$d^6`7SX!_=CNCs_AbnNtT9M+SYLn^CH z|5Q!~r_U%vpey`CC>otcXdH!&{#zf0c!i2WuvYJzkc=k)JG6-uU9gySE3tY#ojDv zKTN4X3P50Zqzt)2vWumxsvGj8uSY@p+#X5){{0)+U)ThPN#^^!L9$rSKqpA_>%xAz z7$m4GQLkeK!kk?7I(%T3ky@#(X_9<>rya{&gu!X=YJWJxyS<%j>)c2|%#>N)83|lc z2mmCTcwu`ilP+O2E~Z^IPUz`?0j)kTffne`lwx|>JJN(>GL`=*g&Kzl9fT7S9v2** z^u2ymtdQyQsmL}3`-Xrw=}#A8kz+}0JgqXkm>2~V6n)HR0@(sCs{=+;!9vJ4ln)<< zYM+09?RS4&ep9CY0$8m18uR9W%acVeom#C2RBZ?mFHcC>PGt)~Xo&mM^HHI#i(mHj z`4JS9SlAa3IyyQBj;%_A0Ou0`Bj3Z-0?AT`X?gk8E}twoRPV9svjJ&rX6F;kO5HAz zKO;r}w{rn34ym_S-53%vXTTOs{Z|L#qKwrRNP^iMcb=Hf1cng*Ah9|O>y8r?AQ3UD zccZ-p+vNq$lp4|Ojb)^5bE*`p#Z+pyO;-!>f=QU3CV^b0QL`0AU)CTNtrMKL2 z4eqRhRhFB;?CDnkZ@vcz*jQdv>{_WTL=Te_D(0~ z^Kb??0;hv}&OG0-&w9JM+YMzXb$~&LM0Cs5H(vqg5tiLIf!7XEo}aXFzBQ(lbt}G)TDxJkFxCscwYP&d3aQjo=zM zp3=faia@X5|Ci3wEL(VK2pt{qhvR6%R_IPbrXqKv04IR#M zTfX@m)hc)E?FmNv%{B>J^PrdLEQP1#B}U-vuZ)O_^lxrm-YJm1ro|Y!qLE!NDgbp7 zYy@k7mS^qHq%bKJRV-PP$BuRbBlSYrtRKIA{W7pQ@2=UQ7>XeYI`tfmB|BU$!vGwX zJg+C;aQqieqfrftUWa{plflRrS}l&X#F48kK{Oa39<+M$0j*#Jwi6lU0b~Z3OQG_p zifO%u3@-mfdW%CcS1#GRE?wbaD0MUSL0Ey$Y93?Z(^om|)-Z^Es9YKNutD*tGyJj? zail!bE@b|{HTdH0WiR2KlB;(~_oL28FSftlkdq|fI2PEi-MKzKbe!*bvFr}1#wRD6 zPGs^*w%Grfp#^E6ZO*6pN{4egl(U8EYdb}9w+_9fPh~sY7J3Ft^DV<`^V{shca*PANH zBk|oZe$6!hYVaR$*vI1ze15!^>#{@Lc7ocvgpyz`re*Y*mtevE$n5<@H@>fy{SETu zgvHg>wbpA85Gy<__unI84h7yGA1>Fy0;b|bbw&gZ`;Vom91vQ~t4;D6CtG?kuZp_V z>4j6FQ4r|@dn|JYRK|9rsqDQ^DPyAa={&u+20<-u*Pq}6pcoirrN|vx7sGMx5txl> z^-h-TZU`75DpV}m_OFaaG1)9BbBj0cHz*8U&%=}1ZD3f<=f3~w{x^C<)%E!jD_$=YZR(T(PktNlwI;oCf!1iGB9QMG)$S;Bwo$c-~C58x1~2AwX-$?CqzgdhGC#<+tuD zsCiK=*x7gHNlFS$=4?Excyg4&&;r>8gN5~0PqZ1qgdc1Sf1an0?-mIQ3x9PRsRtZ;MJ;XZlEnZHzHP}7SnB_v z{zL3a9JX=_O3DwQBm?qm(4;XD`{{bWrnFq|O;`T_U^B0xHU={C1Taw&%Ifs`N4Fi0 z?LTbnHDs!>{{t^9Z@Aumv$iHAB(&UWgrMD8FX1E;o9`Im=;DF|GzrT-dOodA?@m^_ zkO~yUU!SY?=x$bQ!iG|4OsL=Cmm9oXAd?hpR^ju%@gPxDNIA=<%(#(KqeWAu3vEB> zw*Awge){yuYyr$(xIng;TAi~M{JU4G2yD#=mrIy1G}){u9UG}8sTg9IVub=8)PX1p zF0Rw^@3Td+B*et&X-Trx04Cysg|m~F!kJDLnSF0iWVc&4*_rK<)d>y5TWB_Wc5}u{ zJFf*`{!m@-l*uGrul`LUAwQvvs*o8Zi=p2sBM9{d7JQeghi`mwBTh_! zmBQ_`PO?tq5T7Gn@+b`Tm5tJBsg=tUWTVEASDYHW@N52zH61HeqXpEaR69#PPgX>O zQ6}k`+sea((Z&p4UFqj014(ZM$*N9x9)B&pl7vfb$Nrz zn7}^Zc09oJe)B@sbNb?wGROS}nApaB!I#gsi(mh#aCN;{54_k91DZJnD{_s)jXCUu zerUe4SZ!tlwv{kCI&UXu$Nb>m`k$kRFrmo4f*__wtFPx8*K{d50`#w zgxdh%NO_hZshV_@$W)g(Usb)c)jzIoZt_(+f3ZHm|9w&fVUui@u6r&2j3E#)r#=P< zUdmvQ>h^VbAb~3t30R~`D^ia1^!Pp^pzBRh*q!Y{uGneU9=>z<8V?tyT7bzfluP^l z&3?aKiV67(yvF@wBrwjH$@6eITWd4nE}A_AbDmEC{_kc_;t%>nkO!V>b1MgcHmu2| zFr(_?P<3=lKDz$I>YDh5Cer!1r`hU!JaEozVt-_K^k60)i^+LK1IoUG^*mUgvCMIx z;a5lq3k}UR7`y|f9J37;X-fM5LmqnddYVaxrAm-!y+7zFO`rjn{i)hHAR2jRaiYS) zdYqi@+xyU(@9J4+B76TIC}S0itk)cQ z(E#NbJ0cK>g^ZRKz|VqOYHyt}*c-b9I@EuILvW5S6h3?39({TL3A6jx<<29plNyM` z8?0pQ0(?BR&|@<3?Wh{B@1byis{DhN8m+i{1CjQRtHd0(cd0%jXOfkuXvLR~{V(c4R;T4}{TNqJ`*e6PAfv{` zpPk0WMOdz54dviWEU5jx!3k`lPWF6kS43r; z=kxU8O*%IQMEB8rT{4SVJ!^qXi|AN-%R$ENv9>L!=)q`f1f16pOAW^mUVjmr=oH#N z0^Y{Dj=x65HV{||ixzg&KId!|2aLR;pNW0IZ7J-wgp`$a`FnR7PWU06%PDhrx89-N zyByHv0mX4Nl~ohc^kU4riP~n(-=~t|pOjk)(Qfl_GI=Zic84Jh|1Ox=2j(~=S z&R0Kgv;soX4z9DaGmt-sDUm=e0+NU^nH~^iGPwEyHAlV68_(%@&iJ+64WwaLfyr6| zfcR&+bahKr%LdBTyXy2G?E?|9q-t_SnqBVc)7Zub*Vb6)Ux1`z2vj3WomQHur-vI| z{Cr|;{Za+)sOKZ$_M6K7PR=Amg6a=;mx5A*+1d@OoIH0MzbXJ_NHquPLBix$NKUdBC9Vi@^(12v73Gh(bYg%@hg4 zC;_#~p?gZee?%@-CR(n9q8 z$G_O@>=?C%HI;HJD;AvYj?4`fsxaM_jqujI(!5t|E{e%~Ye$042UBqWH5?;#gGG38 zMLhui9LyG>`aFLP`G~W(9Di76G#VNgM*?17xjL_>S6!{gy)G6u?>P=o?q63^$`P`| z!G#>$su(DJ7XCL1Gp{Jy1kTl9Ryd<7@1+j1b7i``wGTGlXn>9C?N0Hl86X?aQR;8~ zi0{sngpbYgEVr|R12A$>3Nr@S`^y78ZupMIjTToNf-^J9PryA9I$Sw3IeGM`to(CKP{x$rNT2081*Aav2yH)F^81b7)i~N~bk3 zx(2L_re|K?x#ydK1%#LPZ#8S`a}pFuTN97BS|VGE(jW@9*& zeU{GEK&Sj)RT1DE#DEHNy2*wB*dHh8Yej?y>w(!BDLHv;a`d;1{~G=&>_FI8k#|RH zJe6WG~pnWT~TkQ|$Ak+JUDFWNaE_p2|wVFT7mlb8n7nxM)Kq!?h z#J+(sLWe4bW{%Z)^+BK9Ov_041 zh{7NIjAcN|A}FR*j+}L}elV{d1M|n>R_$0KJc5+yh%a$TlLPZip+;XG*fgEZRcgch zoG)v#{d)rg0F(gA&Wxzt^^Ty%wbJFfBw(s+3_@}M18=vYEgK17Rb8(dK(vpC#d^dH zAuOM-RFcakPz%g$09)z2(PE(@&0-W5TGe+p^)C*Sbx3ca@xZKv=a4~HfaUBk zJW8sM&c|4ClM$C924zo;*OS6~q_f_7GoPtiBL=XqT^|^e!DM84^?#1eIxNeyiQ=S?-z@35(dp`?04FV7F^L-bq+*A)P{*E!NJ#Hb zwzMa!>=HM0fedxNQ%4q%an_GZ#r~_W4}|weSkKt|li#1t>XnE7MEa~n!DE zGwG_IdNm&0CSOZaQi#FMP{uf9#X)fQ_`WXETboaBg%2x=#usDL+wtTSC>^Q~z2vI)vO78lC^WR(%vt%$fj7_8?-#<+=jr*!sjkfPRU`&U~q-uc3pw-)+E+%j7{ zslU_twI6-$Q_6})&m4NDT^^Ll_j0L(-LyV0s%vVk>Fw_(4mLmQ7CqDqlLVyiE1q9} zI8#fhMK|O=)2gHSI&%4phhVwiH%Wi1ez`fdfC>KAIWj)|Poq&;wY@8E+1PU{lWzT4 z*YW+~>i6$)e6F~FXw?0x(pnUJA5Z17BLPWb`l{RIy?a;=s zy#4hWtmzS0R2w-v$Ako~`uZf#AGbe#&2t-?loZ_8d^>kr3zIbN|Bkacd~VdILa&4K z^cxVXY>6|){D+W`bZO}6+nskT2og?Pz*%n1G~{*RxVX0v!X?fq2tb*sD&}+@ZmX@S z^u4fVLiT5(PlVA&cWeF!1-oM;N=~a<7C^zW^H%YYftqUCfFFgX~LW%Xa-M_ zN{!uCHM!wih3z_N@R^B;rJ^_nWsJnTINfuhc|YWLhA?G#_swk<3Fk@#{sJcexHvv% zuOs437>mAe&k&zD}4;NiH`?zd~ zfFe%=&DGqAG`8+ycvnAXKUJ2R`8Rt3seyu4pq!0#nvhp`1l{Y($B>ROofyi7TqRyq zmjrn8=|%ZtFc(VJZB> zE*~qa#!5ZU?ZCnpV%ldJ7605{_3bL0!E6?hPMJsu1YFjgK&+c+G@^O=x-bVYcjFV< zYud^kgRe1FNO+20<|?Huh6$VIy4?&2-vaa~#?`$xw}v-{vj7i7oyEUh&!Xw{g1Vw; zKFl{GaM{gDsP6?MkzHtUfr4bQf@tx*r!uj>NLew>%84EWI~vylF12so-TEge&F9jEHW4<-UWbH zYg=1_9f^c7I zsKEnt1$yAQDr8!Y9KgTbuGpPRZxykfL0#OMnAv4~ZF7DQLZ|Va)?rm)u{R;O+=~0Z z)-T*S2_$=ZAKWYuqA~bS{XYXL-ONW`C(EOZ>~~`lwln)^k3`$Eg0D@IM*TK1LeF_5c$Xh4d3r zs5pY#-o0JxzYm`QdZA`(mTZ&5;%{CqJN-u@6Q$_?Mhh9!d}c3WE)z+(?H)!jr;Vu5 zl96E|BVWcH5WH#hT#EYRt6gdI_H6_l9sbf`Vt4r%#Y8UgY*l;1TZC8!?XPm#hHL#M zXP3F81}+P~a3H5~*QMMn{XEvI^X~V(-!We4MMEVQE%Skij11bX$*1pE=#B7*+D23) zFE>VA&o0AYUHdTAuz5daR9LjJ9-{aZuE|1%Bz(znCh~Emh6{*(JJX_1k%Dj;+gExJ zXk+AZ6qA(Ve(KrORl7H&-qDKtxHBP2JKf+y3Q!DfBWO7lp$66hi?m|mn}%?>*;4qO zmY2JpP1iadWpi_<4&|x5hMTL4x#`N%VMQsJt563MAOBYbMUsB4t#)izToGG(IwptJ zY%*NmkOM{l#+Y`cBMMy4xiS&t(834K)V#%;Q;46m@Nny7z*c7bOsavPdA zVkva($N^fW*&nELVIbznM@%?c1PkO$zo`dp%{3)%O{n$ngSE_g+gZSysO5y19}bJ` z18*6bM*z1FdrH}#I%6?x4oi9>sWzb}wE#;?qNxW+^LHhN%~ZQW%0=P!*>YD|ynq{* zFSqUDYOJ%|bf$FJpS-u?m9|q-5#*A4%v#~#ZdzJcfQF31eCj7LR5av1-d38i$QUGh zhXcdfEIvZQH$0KdjsFg@(jEiovtnw0I#}I^<)gMHc^3e=wwFTw8z!2n^R52J0(UZXZcs$MfKA{+>G`LId%zBBOYzZ-|mmqEa zG={0d&CPkWC+|}{JQ{FH8Mw~Wk@N6iXAVk0KmQ0L>>b2cjyA{eNlEQC#&$cw_?Yuy zi4VXhn1qDV@JnVV{aQnbFX5oYg6iPy{$j;l9;iDSu~-OY;Uk;LYSvbwtp4!+h*AO)OV^))pupUn2F86GZE)@P6zYh=AB*@O9E@t&a=fUxy*=@)!*nVc zEFh=3=6g#^cVNNSn<~HyJamBy%L=30n+m{xB|_B!cZiqJWiOv>5~mdk@Uya2v)Qa? zYQKP`1a@Q`y-vL+LuAvjpQGHV!#RIM#2_5u zKmmQ+@zA6`QwbFbY)SW%t(H~Aq+%_GyZBdP znkQUi3(Ysz5|Y{tzZ)-aJYa11w(bUeNaZ%e1j@?FPe}NHK|l#B+H6uolxy7B15~p&R7#Cy7oTB46UD;Blt0p{oFX9G z;O+!qXPP9u`9t8C!LST@bJT`{o*oxI1+cS9Ec`mp*Q*nR{U9rl*`D_7FQW$-&e8gC z9P>kr9Mv{dY`Vy}l^&m-y@?ISu1}w&GDgN1mX=Hi2V8bJGI;8&q{;Ujl*In{?nOjf3o107mpmx z=R!YyqJ>wl<-0}_gq~0&q&r>}8;U~8#MjrChmUV>#zh>AH9DUMcIl)t6B;^N10t{Q zEp!#EO713=TN9txELrF=XGTYwYik?Nplp}5S!jEAd6-6$0JFJnwFcWBk&O+p6L-s> zr?e)XHd-e*$!gMa58kl_s6ihSPlh$!@F`7IUYmm~(beVt`SH4Zww%dao(0SrJ~%u7 z8a`Z6vln#7{#sW@xUdir{cA>u1v zXxMISVz|Eak<3+MynCtTV}Gm+D>sqxoCzo?*^x*P;oyLOHf?XaO8g9}dy1X|q4suhpvr9Sb0jhM(H|Tkwzkq_z`p#%+|CkZBxv`s%e8&XmJ2>DlNI$>I zl0ksV0PH;3F1w+gr!(PWwh;dR!t(qp_zm$Olayw_o1=V7*5}z&;lRWHpGw|)`YZ6UFWy9euFq;e{m!UK6cdqwx>>2i}caq zK>qS1rP+|>?jQQontJyZjP{R?zI|Al1VCo2Y?L=_0jkh#tS5!6)r7Uu*i^GI8zvFa z=eBobI+Z_)>i@9VOcGIp0ad2+0VsSeej1P-<8R|RW&$%OtJUZ`;GXnlO1Iq0+vWhM zPcmQOWfZ4}{=ITBavQ60vM$3C8G$FEOMApFozo?qaDhj<38Pc8UOh4EPgOh=v}1Xm zrUL^@IBq+k$#R>Inwcwm5v@eyO=(bVmwp&F-P+oE&TY$3 z@VZbA6JrNXon+pq_xAS2S7!#i_RG=R$x=qrNnDC&t4Ra!eTrn37%l!zfZ=~UF~7@j zwTig?N_QL7{`p$@Sbi_Qjcwl5+z^v(?N{pCo|3lNIaa>&&Du;JQE+f1D+`@}nyzs; zoL>-svNabbl?iSuOk5IQvGjS^wg-cW`K@J%3Hudmqnq&(BdwZu_|WAk9=gGMdnc=b zF?#>VG1IiKn{M`g95XW5F8{1Y)_9yE(8mO!;>hJb;=kmFX`~T6(YiJ6j597-KsG8= z1(=ZoTwq7o9Zk31^gsko*D84jX1N3g?b7$#8yeu?gcYsiFEx9!^c(&nI?KoXG@EaZ z_**phADQ^)SNZlP(D(B@TbpgbVyYU4FYv9a)Rt>Jv-kts505wFcpN(u@kNTbi$5$W z!875C?1yv{3n_;6! zj&rrqQ$DBLjxHb;vSvhorL+{S{KnPsjY~Sc^tWnet#E%o^Xvm3Ik*LS;_M9JI)$DB zhAJIkEr&C?H?iVVj^gGd(j1#uESZ2(vkJv}T5H*}fZ0i`Hj6o&ypkOQS$)xi`W4 z=K#i?JsR40FbZZ@X|92|*cCxBg{Ed^aU5qyg6$}7*okiupQ3m^dj0Y}KY z>kDGf+iP_(af)!0z|PK>0U4c8qta@ZcIq5wg;S!GO<1Fao#ndmwFHDU!INNkw)erD z!}%-eZMMyr=~N}v-|rg!PMej$N^yp)b?gFChWHm>aKl3D)LAL={`!IuVB^wD?G4osGrVGvJNWqO2>Xzq7z zj$tB21O&X_nXVB}6>zKex~#Ne9RZlp{u0ff?@m@wf1(rqrQzU+_P)Lx{%OOXtf$N4 za>8)8Xl%SBGay4|f3fZSDwr9xb$V!0ttaXe=Dd?c6%-x=?$*wZ8GZzqlAO6pX$x?v zI_{2!OjX%M@GFzl3pBtVhC4VoxZE9s79(f8JF5X>l&2&lZBU2oot$Jzg>b=tN_v2X z7r||(uR}^I;3^W;9`XnUg-n2)tyM7?3SU;2e(V0U+oJByrD{j&-}FL*`q+r z0EJ?u*avFZZyZ=k(#QVIWKwb4PJ`xGudG^n3=!;)572Txz;GFSs^W0b;R|^(#Jr5l zv>F>7aAyMNY8ehxC*v?&^;WC$bU!uz!~ArJ0XsDMy_QCYUe0tqLN{P)SZx;6G6^YZ>x)xJ2P z?ku&|Q2>31S1L15S$O+gY1bmcu#K$E!B2RAHi?3u>;cn5;p4B7X}u|IH0%k+2PLIu z*QC~Oj-Ej%I}?nX*!1cF#d|EV%sTzBSpWhnB(N1;1~b;2S^g25n5X`qP{_^FET4&P>_@(a#7u)j1NIri2n6Hz|1-2CR zLd}r2VBEKMb^|jWrz-jCut~4wBl1Lv5q~Wuv5=7V`gqARxM$YpTbdx^#N6+!Oeh4$ZIa*xp zqcHATl!Ye%1qI#g&#h24yx(W%=O3VCg*S)=K#`QPFtJF119yI9#h0NK3LaYh`afur zeqWwk`+~dXSN4A|@%wv#>mju>-N;~YB429)-GzGtf``Yp{J=h`AZpI5^h6Ge$!G`~ zsx*2&2*OoNpx%Ri`){FIlGEmD{mJzH!V*vD>>op{REBaizdkKoV>AMPgea!ZnU`E2 zmNq1hs5=ug?`aS^{%*ZIM;AK>7g2^#HybJ)!rJmChm9)V2>2`}eCFBmQt0%0ljfx{ zr(GZODb8}x_fRtGw*}m~^lQ!`X+NCs8;bm|0oyl@4~t)o2UQ-?&swqREheW-jxk_D zUEO$>c6QF%cZO3_cPd>~3wk!BbV84F;~C!bOBjy1J}*IL*WdL&sX`a zz+}L!lImp*sUbFdjrH~gPuk4se6m-NiWY>N)xX;%g;Od3|}aV;2qhKZ%ithCcV zLfoF>zK=vsk-2|-ya3^bqb*)=0ZZQA=;8Aol*R4L!G|2rzNXC=3CQ*a?v=BwEMv>j z9}1P$MY+Oz0+Ez=Gb2PqHcj@v<+K&itp9SOBnmU~(a(TP$l_6{QEu86lmN56Xoxy3 zEiLsy*RD_3^Q+@7A_qy47@LT9^Ubz*Z%FaY?B-a}{?J2DS66JPD!~Ts%>o9c%l*G0 zhl80j@zRloK~9b-d9NKmYmQT zfJjnmJHsaiX0K8=c0he5bpMB}RpQB;L3;rBD+^0p;68)^5aikO=Q1#wz4M{$@9$er znf66e1d+qk_1$Fodhg8=26SV{@Oy$F(8fLIDGE9X0+jbpV8tNdh-`r5%&vH!`&Yn@*#pA;znMCU82Xrn>6#gMC%Rxvhk}A)*7{lTE1_^I_>W-$4&A@q z0WivGHBNu0a5&qOh0PkDLC*mjevbFGQf193bTaEBR(Xmwv+qg_S+wS63g2)p&Nf^^ z9FApXfaS%D|AO(DUX@xJVI8mIil@JtpEtafbGU+R>tMG0%af~f8eaReY_@s3nR?lx z)ET-rf9Fo7*~KD_pODmdLkNY(nIRmK>V7*N_WwQ$QV+7W@wchiWEqE2@~M|S_449O zbGrGYf#xkqk+|phpHW@hzRj-XkMkuDhS*%X2Wj~vU>LO`VLwy2T#=z)q5@|A@f@)RW;k#vQirOrkR_SmlzjXSK&+=-ZOKJlh^)J#(dv04$FMb1)vG*<~fwBfsVV zOb9+y2!N~UH;kO&g8~E8T9|OGAzQ+D)h-LD_AjJEt+!@8;-$m<)(0~MLFxw%SSSd& zKzLdSW^P=%IMxAy>=A^_YV1Q`WrXf$`q^F7%)#cnb=9r$-{T~)B{hG<%Yw`XUXj~s zRcC68rHvO3!eW#>Z<@!%sZ}t@ST&tS{Uqh)V@B{~D|7ffy91w@X%`#fcwIV6WtJ@U zr+7foLBTFTj$Z3@`4~dg@EZoUy({tm2jjM1g|NXW=u1x$oAXuxN7&}^!@rg|8MLsu zPr`Qg@#3F!bZ`&EXG#wknw{D&JOK;SiZeMLNe!Y!9jbmUiFm1AszR$^l){aPy49aR zLcFjKheL1a)$^JG;{a{SBki&r=I-^~U1e2Otdf$F7d;#{lhNB#RqV!lc#hkXIKgdV z0Ja;dcfLH?hB+3Dq>k1Yfs`N(J|M8U!DeH>x;p+epA&p2c{4?P5$U?2QTziI907sp z^Q*(z@hKgrWL@24XpJaYSpx|;hfa_l6np>xSQ@KoFUDhHwojz(UrSKd0Qw3efPW)p zG$!5Hxo(HU`27?A|L+YnX6o7BsiOop0Xz4d?n(IfimJxm4UESC{bWs z9H*B)e9mZi4D)rnjgqDD>pbSaULMQis-KxUw9VeESbu|W=BbMyQU%q+%wOnHLyR+$ zy9)X#3N9B%;U?<;-m6kYjkJmN|BwTB=WLB(0;Q~Oy(><`Y;y>qD6J>q(!VXS<&W}| zQggX3aTh!jXhcGuK@ezzvF2}Bpi>PEA3SxY1F7Pmk_3HNYV@2$e-|l|i}(IR_=ll4 zGr~qu^JU7?`+FZA6G*!NQEse7t=emw9GPptWO#DDn*Sx7YaLTl?Eb;~Fzn-T-9v&B zDbu897U>~L`{1CjvM{kC7!5#X?!Fsufc^ugXAZavtS8Hp>Rd=!jAabKMYKCh0nhwh z{w|hDPk!vDO;_T`W{Tig?%N0V{82}~d0m=<SyB53#%aOU@=R2Da@@A0 zU^CN5S!z-eS(FdG&u1cvrCnH_9}x+EU>o_ldDsi10=uRX`ZS;GW7<2%W@KCN{>ce7 z4-aHE#a$(gzi&eFo(?#2+x(7(-O=S`Szw6!lkUZT2MPxJ|6Wf*6qtpQg?&ii@`oJ2 zzrnIN4UhGC(bfJWd1Lj*A3K<->kMrBi6?yN=n$1%Jc4kU6?Xe)#;YyZfrcVmC7i32 zng!P;EjH?3OMVa${{yT!OhQ&RVqQiw8w5dZmG$&Zqw_ZPN;l`bo>7~1psnguS*Od# z^@9yyIlD9loN>OY+4A#=oWjUYQjPZOd68!7Ket(Dy&gz~Xbh4H_C%cvhQnHKi#glj z)Gr)YcQa{KKC*kLgM7@i5%O{sq9=UueWsPRGp)(IFYh+~Ko#Nl;BYWk8JW+;_V~@O zZoHq84phCw+QsfhuDsfL8oH&~qYnZC0@7t767Miy2~D}gcEV=;q<3b*UDMsx4(40= zIpG2>f-)flX=MJbt!P+~Q~FIL&YFx|02f&j*owL=Nqt&K=&wI=!X;&{&=N06gS8c0 zZ=ZH+W!(O|i8HlEAElWmH3h!+6p5ef5VNEI+#gQ>T?T&uD4uC6V)H^ zU`&?5{X9?!yW0B@Go{v9v@n_%H!sVQjNPq%_{P%ne8u&rZcR&nN{@`vXl{bfv?0q= zeEg8GFqiMom+p8&^{!+PE(fr5!iObq0CNcsV^72SJ*fhXO!dZ_A#-?QC4>GhR|&6% z3o5f__!X&C8uwQvKG}r}Em@FI1Sp>8=WA{-{)l&2bI!%DJ3gX`%Qw8Wg*XN?8QB69 zcnQdu?>D`P9@y6`E*L^~;Rc&o#qSoKI?#=HeacB_8MZIJa!q{aeIR2G~Xa&~ogjUr`ap!h(u9hb5fFj~-PkZH{`4H+Vb% zjDS1yc5s+7(5PY{!50O-9|#-+B$y0*<&}Y-^=lnNgl~W{g}FQ$H+U?`nf)EU=Awl`RTdb$m3P4P4M6W2An2U6f8FSep<@m1ckw6(Co9vy$xmS>PUU z@NMc0-arqs)HL))5RUCEni!< zpxnk?@5lL3iY;x+$du;JG^6~^3wkSiBxYiOO`29!$F7z4${Q7@^rxv%-?JN+`$E*3 z9mjRJlvEoLufj*v#C@l4LnPT`D|cc)I#H-$i{!tUA>MtB$u$E5 zg|}}pVfQhiQGr@gDDp&5cxB4&3yb-yu&SY3A2h!gS)GhPWJWG!c!n1z0-q#2%lAcX9 zkrth1kzGwFg$>UN-9yDh48dA`R}n(+Ae)}sYmx&}ky4;%pWoE&!kwMud;eB?gejr=_-&{h$67F|%lfN-)$!R@Ni^E+NeZD9k zP1^$FFxuCZMA`J3Mn|s&>B71B@3>81auENbbZ|UoFx=qb0)d~w&0{Db?o2!2Wu$-j zm`EgoJih@A2ACjh$lvu}FljUVn>X;Bv-^9LF`M}N@@Am<)iDQ@|1ex#7y23&Hd1(L zFCy|;%2Pz-9$2g3A!qlzk#(;orpIzUWKDm&VEke1)t{ypkH|x9XOAx4Jx;mwl2soU z{7Q|_Oe*YI%0q@a3Nv6)gQt#%)Ha0bG)&Y4vXNanFND>oy=6lP?3gvy2~iBBsY)+1 zh$9y#%JOu0k!vqaVA$3&sL~3%D1ZQq4oCmfr|;2yd~O}lU5on%tww&f`4^1oS0Xd> zTyNDgd}j@qj(Jp;({=p$hF-M$!<&{`wvU${t^v{+D|_yH3l^hV>50@kN)^+At0Ra zWq}%TM~;#pT8k1>_Ekh|K(t&??tfLOL;iYmH7X?zYu=@63^MgCzUC=GJW)%}@bb#b zNM7ie>*_ln527?PKCn1)pJfd$&)(pg{LF=k9*q z+mlJ;ERfdKMVu&&d3RUf&D650<@Bz`8LWPQ&{^1QREu$G@d>Tgr#SXb2Xm4Go(aOi z$WPh}k@#rwvedV#3e@+X3E7A^j*Gh=ZOPtIiBC>e!L`_%#2=?u=gbB+YGD3~>@QNm zrU=0&PX@T20cXQ}?x!FgQ?eNh@xVZf`rjLnhl2~yz?KXkAGYzSsWP`7O;68MORhGR z7d}Ft!=ASUU>f91HSRWDhMuFXI&l93pY~^9U9uQ9zqX#N_n)j#E66mca}L=U`Mx+m z-wZ*qL4b`yPE#r~0&Xkzi_M}B_N8mhz7^{^??T2}Vu$7AmLq9Xe7Mp`sFBzFZ|%$N+N0(vMc>@Auc`>A zza+7azj15N?W!!ieY`atJ^oL|eyvL!z7pBd&50T#Wau5#!3|E#AKMsr>aC!F)e-st z(NL8q>YEq2C!^$ntOZ`Zo?7hKCOVhz#zJey!I(iVuh**e=TmsU@#22YnRWi=5O6Vg z=~AC8Mt0jJ8ZJskMUG-=ESi#!d5Fk1vOb67_aEiUaVMqa&cHf5MLj)iNvQApn45Y* zPx$40wa{u_lDPYUA1#3Ca!eDHa(|A~B^MR@jRGc@jn5FxEGz9^f@p9N}SD+@Zc-`gpK zfM-H++_=JTViJ;j<%#>Q?`P%n92(P?`CspezLm#0v!i6ihoE%L#Vbkm4?K z2btx=5{TnBHfpn@pFP%U^!%u}KL_BSY>}_^}4_y&H6v809K~D<(I-V z;-4oX?!t=R5-Ig1ISPF*>e&CMeK&1+uYy2#{Yg~B)ZxpW13xm+mw`vR`dQJbf0dh*q(Y!e>}h}_X^kJfX+(8l)7 zNBCf^M;vT~u-+5{m~R;}5m#5|YjV>wdV`zj;IR$-j9&LDLxPxI!?OL3Q%Op!fM5{# z5nf|QFYz5V)DBWGr9Z~L$1WS0G3-l6%yq`XG=eoBBPP-BhcLk;y3j{ zp7ngX*6T}=ROs^FLKKG`XF!JvV#^>REWH{;3D2vtm8nPj^=r|Z{z!S>zVy#GEh0Uu z`0>W~9BC)paT~Spz=M5T#J)5Y=p^r#+R@lZopiy@>|uFqE8`Uy|hzfkr(iXU!d zp-Am7Q0px!OtQfBkJ1QW9{$g#zWpY z%MIrMjm7EzuAEvEJq}te7UoDwvL5@ym+_^KMZ+8!&WymdDF@r7zryKz_jV2EGOI#W z)oY3dLr}mXE#ARt-c(F}I9PTL0=mh3(b^#k&*$S{si)6fgW+W@bvqOT{97pG>$Z2A zP{6#i-1FMsq{lm3HmVj@5yZo!12c{C{Y4|1DQ`#&pEe>=uj#X;ha5noUD?IhLaL z-8^r+qP(IWFwNlwDiwSGB;YhY4ewkv)g!BtF^v6j`-Wk(sSg(+YQj>Bf4qyQsrjKN z1n~UP#>!XfymY{-1+fW}JJxkDF8b`722%c(mUPfs?*g%qTqv#@^L9idMkjC-%N#6r zJN)&yM>eu|mYwfcq@F?J0gchKrWB@v9Cdoar^Hy=#;_U-cT5A7)Eq@Lm6v_XnbR!PZp z>o-a@&W1=q5H(R+aHDRe^?m3sLgM1^Zq0TX?q^olvRw7PnHH=@dbES>;!?HPW)XpC z<140f^ioq4H5xalyt=N=>dy-lq{yeI#|gU~zr+a0P(&wp4!=MsW0wCV`{}epzlZzD z6{I;2F^^aRKqZI@4{ttLarpNqUGlR7AmHhbH=GuSm4%HakJc@S*e_3a@0OneI5ax& znRE{C?PX2Rx$}X-&4m>)4F(k1q7sG8QoA;C$=%m=?#*j~{ohz$xc)kF!y zdw>->RQEKxiE?n};TDij2YP&#fIl@-Y%$AN^`vtpqo%fFj!kPyN@T%9oz zaCY2wu$itc3ES#u)4 z7kk%Nb9BiA52U3%5;@lUzv3IP*)P+Wt{j2o<8WAcPNm!&;T{y#|Bg|2zM!04USbkj zb;nJVTi`J<_1|qT4JjI#oejmz{LKFTPu$mA`ox@V5Bt?guSMerPnYpOO+I1^m%x_8 zF*38uvhZKq_06Nc+V|4OnR(=e9RN%9=(G@7@b^}{GHCU){t*rcvY(_pqLAyx@I%+) zH?q4XAPaYV@6xS*sZqd%Nty=p`s@F;@~xWW7o#3vsUk(AqGaoSbM&To!o@6XneceX zl)_AKNU~@wiaCwB&ZQ_rHGBG8u~8&noyFs1Ouayp_4Va-F8oHF>EbkbuZtf3{Mipv z#GrzjK18&duc1o?#ov;}a8u z^^#~8$J^q*h!5DdVX4IvQUe2MI$NO%1U#D=oV2DCU=WBZYD@(Az*`a~!Qcs2rMjMI zuzH;%b@fw^|AX^~T=Tbf9G1g5e%n?Vnbv92Xs)i+`}-ZlLquVLftgO5jd|)^ceqn5 zs;j;Z(}9H6PeqN!i`C5dd=n`fZJP^ghX)C>1+S&)VdYOGRl)i7sX<^!2q0x*`crgR z&0h_uTg@J6)t_OY;xPUGYcV{ecL?6PPvEtHIZfJELT>Ds4U@!oj^qsb<&hcQ-W+xj z`%*1tX(7v1D?JJPD{8n`H#COsq0c4MW}E1am6QVOrF0$4I|(040s2W^%y07QjeGlL zUy|?mxE45GRva($H2|_pn%Xuq^Ponz|7hKS&6>>iEkZ)Jog;d;8qUnalw);p%0*qw|}QU{r5>)eQQxcnEh#f&=-sW zfPP44O6kGsi}~4x7vEpoi9;%=q_lJq)*`9Xs)aY+cQ3K-`%r1{>iude`k*X5ILq$r z+%@(oUG6Ur)c+~ktFmEa5LI7^v^OpxyvXZ3vn3PcUPi}0WeXqcar{WgmW5nqs^q$J z%m!Rz<{$C=lSe`U?pJ!Pv`f3GRw~cdKiuX=(B?PKt)@Mo8c;97A1q+!riGE8XbK;3 zKu{2Ch=*_hWD4)^?JZEyYg%`MiLR9QvMMaI@Ke&qPqQx!v!hk<_a>->gd!R|!pMVi z2I}qR20gF#a{(%r!biH|K3>_-Kzx1a(mFgG0^tBy&4AFn>kf}O27?wVo0i8iWx5WM=d)WL10J$UWK=CC^O__-lH9i1!|BpWEn$?r0|sMwuJ z3vQT$mX*m|k;d;k2k}PD|CCu@JnbjZ8h~dJc9@WW2UEcPDxOL{4)d9Fn%fe8#8bla zi~hT}M>KOd>mGP?!845kE(Eh~?l~6cX&%US`xg|v6vg<+woL)a=>W3fKxCWFT0?ZwwRMp34guDN z8DAXy6#;yX7lar<d2~_jk~3%kUReq@HXw#E#~TF8e{Oz-FB`ZI+t``a za;4M7{5zv)FgDi2`n$ShANk2{z&ib9OqtKVMJ=8xgbx0(swDI?kZ*q! zqJuhS#6bW;Tsd!BrN?PHgMK}IYvYd}KlTpnY37xl8z{|v)>}9^B4Ukk+8k9IYC;0b zJ>Z67u@4X760?BY*3VZkaj;W3w$}ewo(`p-Uq4DGC3@g!n@r`2M`~i?2NVsoUD9C8 zG;!ldx-c3pE{DvQ{9w6-NI^oTgGSJiy~?+a0PUmaylLUa%s;l1_xD)b=0TYTG+w$? zNVlt70yeWUWUpX;pu~OQXfu%5as|BG`G=R)(Llqege)|-(zhXI@H9_XMlngw@{Q&n)qD{w z4K(V7jl>%1;h7m6;U=-wje8*U#DcTvehxAa(Q*2+%K+sdZf)(^&qN=mLif#;1d|jG zg+^yRguIMNzg`M9fbPw=P&Aik&K11w&`q>xH|KZ*J`;sT&&GRzR)`=IZ)9O6AN?^Q zW@y;XYkrFa^%__{>EoE^?g7GUiNkL8nF=u~a^DF_m#5cYb9DcFyrkO0^`4=P zjUwzP<$XVYFGI-R#;3P`&WaNM(cpiZ#oF$nd(>33O73 zWcU0VGztg}Z0YZheX>1O;?VKrt5jyqHuNF?rt>Ml@Gw3;Ih5hXezG%TWeelnaX?u^ zMbg^S6AT>_`@7$i-dApSnzZS5A}4q%viLFJk^@smzS?Er=C(xbco9 zQ!|%n42;T8D78y-Ws_{-*a-*f!cq)3X_c69GK%x+xEBTqwQIVXYoh%aLh%00f>BrC z07_&)g-|q?ldeksa!o99t!W>wR7m2TMd7_O*NW(;Pt*>(fw&%4zKaijytkK|>v27M zN3M*e$EI&Bhs7oU z&lYZ;Io)7?R@Cm#zuwfUb!4JCFuA^vL zgUckpLBA;1b)OGt`l`nVk@|0ai#GQH3x|**FIDyx!R{h@hG?i~p3{x|ASf$3^ z!Tornv-(3T$ovwK5}uwn_-}{O(-%MskK`_5wzcgCeG($xmnXza@caWip1wy#l$4;Q zg$!tJuNvG(d(`!7qC`aE4-do7l07>p>#@@nl30+;XfPn>6Z^L3_Sy~?2E}hzN!Lm$ zT)JDda2d4Do>n{Bh|iT25%{(%%#Fe+C~|5 z#%mm?U?|F1K^;UM8rqg{+lq0tEBvDMl#-4P#emeV@qErx3d6>RiSv{i-0*R)d8Irr z@So8rbr;V-nAqY~6N$&^&vfT)%TE$0FlzaSjwtR?{(_n&^nkA7Gc;pvLi;ozXqenYrP2 zM;j|xVjn-e-_jxqR@s4M?zub_qad7@N^wkjyxxnHb*EcxJw4^=S8aF(<@oS9n>_p>6;M&2P+CDMRkIz;{ZG;gyWN#feORR_@;<^TR&~;=Khf?l%WiaZ z&~7Dej8f0G&_c53LL_3Y2G8)iQpY5UxUq0z{`>NUBIt1?MVch_P}!-gF};Tn$+fuq z$NPvQXl+Zc=d)kyM^g6dE6;m>Wyd-=@`;Z`k~w?h|Ndg$om%nYae_ju)Lxe%%ii%= z*+lVMn$z7hIhR!7+bhCcrfC`#EBSv*bzc+CX`XOlv9~*B8WoYL7ixs{m?^XPOvZUu z9kI;XY7$MCetj51s9NYLda^y0PvNFaa zIkpM59CBrnG=(WytmK;PC2wPa) z4$xih@7f=C<3MyQZe0MHs^0)hb3Nig%2w?HJmvY}K!reXKy%A%s%D{%1K6Q$XX^Va ztdQ9pH7jgq;$W%*;I^*!KMcIJd!fHs{1szFxg_3f#OowSK>P39G&C9j8>(fdI<=1L zzx@1z;X{Rjs^gn)8jIHjo~hYq+Fvm*@GXhQbz1-1NvVGJK4GC%ngym%@P1=}9~a;l zjn}5A0QSfoDBgce#1(H`(d<9`g*6CKF=;f@@#ZffhdafmHppkAeDd!o_ULin;I<1Z z_`>arfG4XUmop^oR8qyIT4UaCZ6+Hz?zBv|ABilLFmtHHR%S)H+-`g@-tjEElI+3Q zSb5bRnW0Lq^2c@g0v5_|s&uaiqh;7M9x77lyO$fBXP`0P7LPqpp)^=U`}J2(ZrbB{ z>&!RGzZr}VYo4Isqn20mckLgSw+!O?k+fl9@BZpA@*$%m@ zn~pZ)O4d$?l`q+~>h1wG^hdbn)P_!@ZX63ue)o^c1j|t~ zXTLF;7cEDFg)rV74+Y}ogj$wppYzlUr|?(3y-D6jdME^g^K8iBYt=Uh$|xzdjE++G zEKJ^$Kxk=Uig{Ako$)))CP9JpZX7e zqv5*1*Z8iU{d#v+{kwWXwtU=P(`}zv!3bR5@*qZnJq-B{y9Rl1B0kSgV2EZjIWWGG zkELYdiv91uO`r#Txw-%F736OZ39_ulY+(X}!_CbtbbVwZI|JBF_{Psylju5)*+7N4 zo~)Uij34C!_Zp4(=f~N0P2NY_W6T;!fGZuU)p!XgW<{8&3~fUejKpzQ=<8jOpwgy} zql1Dxb$>Wac<8$ZMG(%3nAy`BLi(k}`@Exa6thgc+{>V&^bcjvvA>_^feuaP7U4dv z#&>Mk`vi~6XK`eV0~mw>0{dpw0gE%|%84+>0u-Im!MxkPQxtZulL<226CGgxlXpzaVssrJ)LqFzM7nrI;PQ}Ksmwr-95 zz@#sD2xClT9>bQ62DMMt{AOhWc-b-s48o|SXw6Hdd##3h-LY7@w_JaCYnaTwYrai7 zizD2pUYbdiK;>yu>z~81vch@z5wk%wgtjZZ>p{3k=EyV5Od38>N=cfIH&owLALViK ziHPKKXAB4OOv<@lJWpVGOKsHt`1jb@WkuPzhrW2$Bq8>T7yIP$ZL|~n94d28>KTyJ0}EEBaf zov*R-^2(F)%5!;Zn&b4GM~Wb}5K�{kn{M1e<>9e=MDKRF!Gl#YGSWL8PQRq!9#Z zkd%}Zq!mf&Zcsu(@&M8yNJ&dLbcZw|-3`(q9p81{_5Cwz$;_y5p69-=*!#DGC00lq zj{#aSF3A7XV^mN>v#L;lHu{J@1?~%`xSaI1JXQ7J@bGs_9VXg4>cu~9Gqdu^qGU~f zOpUK}6U_Uy#G+RB0UJ}gqvHky?+{9Z@4B1Tb>L;Nk`-w{deig8+xA)79q~5J-KY z&4SjBj`RAp1Ak@-Ixa2@Dk^Y6Unc|vd^-`z{wZ;BjGCuXi4s`gEFC+scN8t<U%*K&;LJZ-8Xh(3`_)J0F_&M3j^f)c452M*IOF z>2Kb}l*vSaOcSQY!2UL}zWQ-F4pQxjO3TLx`i1rNt|Hx^!66~dBfQ>2s`Um)q??_y z^U7*?GD*bRrX^k=C;Ay+vZ79w}9&W}x|Pxqmjxy8xJ39dW18t12M8=Kz@f}0kt ziQaDN`;U*quFG4EIn*V|vRsC^a<>D?>r%@fdrVbYl3^0{4=9UWb$koK=OR{gPkr@0 z)@yObu-AaD4ZY2=00ekJ^y_|AxeHm-w2P=fZvGw}?KmGju|8j;ENc)p4{%^Ut? z0xrv(R@TZfT!ZyttuO^Ju@5>+VE3s+=5S79%Zf5@$m~zinfm^g}ew!q-8tp@&jM z;a`I%zr3(~ZkW7GFgI&Uj7GrY`@$h%nHw)ig2r&jMuTSShdmDAemY#^%uEB&F*ZL)3#s$HrbcKZ*uxRSI+Ff ze*t)k7?XZYKsC>7hB(!5O{E1sG7M8!*YdDKTt4&@h-e%)e!!3@OM}Jy_csn8FVa6Q z0L6n)Rh0m~v{$@h!X7gX&D*XO2big~WQZ>Xht~(nXB!wF=UfB>gEYu$70kzq z1+o>0*1DpH0qaQxukt0iVJ^KKbUUB?{Y5|@ChT<@{I0Wqut4iESpNHx{^UN!f-xG{DU8Fnp=V* zsqc+XPL#jB5(IIbjgLNK%v;L~?gQkcFHeI74o zT;!Y1h;1Ir$pF=?P8HyHOjcQhmy~c`98)#*_djaPlm_ZIhM~{dtD37q!=Dj*dv>Ac zXEZ%+Np-$+8a2<#og`uI22a7tW{KHh>!o||^|hz4hzL}})XdDVJpW#1{EN-em^7hf zoGk9C!+t|sYA$!0RHI(ll(t-K?_;%TE&2inb>zD`@;x2K=k$Vtk04RQ(co;ZtP-Kp zWlSuM5jb68Pc3)5n9_jFP?T@R@fL{wr1kth8C}QOIaWMY#r~*#NBx1Y-9onrj}G10 z=UC(QgphklxyvVRBZIz<*f}4l=@?1MPa0jS_7?UyiK_4)N{7tn4uKWTK%Q1eqe$l? z8DB(#Edd}VLFGp)hu0aIZql1z+xxYF?!`;fsigE-b766A!~o-wEhi?i@v)xUV*kf? zk%Q)HpS|*9xxW+2OW7zcRPsF(za{=D)ssv3zNYCENpzdB2o23wnDhjdG*T)765P(! zH5)9y@D#Bi7ocFD2Ahv}RWZYRzindi7S-*Ybx z%pQAVH8Wnv?P@-{m5G}54H;hHrctJ-ys3?jerTHKc4$&N)9&4s)FJe#gkM7<^sv~Q z67m%=?&J7!P>w{GJXSIq%=n1hT5MKXA5op)Gjxx5l?%Lv;dXtNinim~fyp&U)0`s3 zJdVIV>XQTfMz4P(Xh5>+9k~BUts;*KIM=-@c6{92e*ZSdxZX6~@-ZyCEr(eDU5#%& zRlx|zCYNnRN;54jK1k~5?In473N>NA)EvMfAczVXrw(>%JaU3IXuLq_Eco^7SBnn4 z>rL+NI9BNpJn5(PrqB`=YUBUsx=V1l<|_$&Oc?jyTN~IloonD-Mf@zG#m|7ZCUO#e zQe$Yix+cw(5Q~38PVYa?HB;GRCHxmJ?qU*lr+-CBrOif-G zE57V-keyNaJOZRUky*yQ*Q*NG=iXcq&+t-pv`qFsxJ;z^nwnR7{7J(4lf{0Sdp34| z%36P4tT=7FV@4@y1Gj8*p%!|&&)z#ZgMMBNwH7mg}mJbw^ z$tU!N4Z8s~sMydF z7MX#ewdp$;bWwxn3vm7;RKJ&MuxQgnBCl0^^TmwbsOWwtY_f5oASaAAn4yZNuh8Koim+L_Tu`EK zlQuGWr#$gqDQ~1uw?7>lITz13b&-`!6LJ4QeGiN5S&F#-U3FmGAP@+c0#gjkTZ0p8VXpnmw@#WubqGTd8Fn$*NWHPD^^hnYj0X>79-_gj=S5#qrAmQ1auNwJ zc#C1P1iE`Z=ld@pzo!eNH5;Qv);VM36ci9?pFCdU%n9+R@azm0>5@SzZ}MAy(2*@MN224sxz@P zzudiD@HkQI%F^f5Td3;zxJ_E*s}v0m<~ft2cRzxDe_fT{)vr?Oja>CPXB5TTTHktH zD*XM}(~M!P9rYNQ@S4F)X~~8gA3T`u!qFC@*XVQaaqe^@qa5NtkH=}r3onC>zkWKk zj3SFMP|Z?wl`_sm7aQa6e&pIVsbgVKNES{DV`bb&tPfL-O#ZI%Ix4>mZf_TtJ3$|X zIwZ8VRyXOPb-jVIn;ZS;s3wRs>{ojkaugF={q77SoBvEE_@E?0@SKsq2*R-i@=dAb zt_7uq{KD3b^cSq%HD|V!b-SwH^E*tmvNBRxxE}&ejTd?3D=<0f6A>w-M?X0zSDMbL z{>7t_^*7L~SkW^|kZa;^((eQpbU8QYGWL!D!)3N9k8X z?v?n~|1OpX4*u1j`|`cw;b=j&zB}Nl2<@9M={YV7f6R>I(Qgd)TxO?}mnwnZ~a^B5_&of8?%>g(h zbSM7#!#OBVd}oE>!-5T#JGk0eZES4NrtiH0y8QU$c&X(HCH!=i=0xi!>OJ}1iQc3D z$a#KgNfLTzNPn8I&7Vt5xedYDQfM$qkwieYi;Ps;Q?Tqo^+r-ORl!Ae30mjg6fS>Y zvBRt2x--|<3Ckc7J{u;;uyD^A^PF$87rj1JcM=qVDQ4Rk9}W)XG*Ti2BDWtF!`z_W zi77gHB8Qqhz>@!ZJV6FUlN6VtDPA%EHhpn~v;JRldh6 zrc@HE-X_Zq2*T%|^eaydU?GZ$VUUv`U_huH340_-%x4jVag$ZZ_k7y*MFB|wCPrdj zj{YmU<73XlDS$lw`t?_jcV03pY#K)uKbbzdQ0wi(t=TftZ@=6Kr9`-o{$pA)*XX-5 z!s;5|^ny7B+d+OrG^=4cPPHO$11rHrS071U8A_?0E}BvSeS!4uY-++&GwzQcaT2+f z9{Xr>6IJTG=p*ezYOH5!e}YB|9lGozkLZji>?qy#rI-`iqA)HpTgE z_ir%PvGFp8g5zF|YKehi9nx0l=DhhHh07=uXx1kR9I}E$*2bp%JnzG4!-~Om1D6>L z34M7H^juZC0u_Jhjf|F53P!eO>pzzcKC#-i$~UM-=l$**pvSRxSoSVa$m{_yWsDDE zZF{|8g&l4f&kk3v2#5?|i|ux_j*E)!CGiWv03<(pORzWga5mD?E|P@E$+@|E4AsBD zfeS`bMdjhY&5>-StH#ErS*@^t^*`SC_yYtV^+yMtv_3I+o0Zb{G3I+~8w zud9a+ssX12!`l->pA;Q;8GikF#-TkAA|i5>uu}WGih_O#hp8Zpy{_GJhHb?!p8VBt zF$0q`&^i1DM9G?P#MqWj_t^n&@3-4%7!Vmr`0vTgSNDkaV35P?DEsO2GaBJv;?71Jf>`aiB zNXU{PKLMk7VVDm0LC9TmdwYfZ0m$3H4GL4L9Oq3@IQ#Z5b`O6aU3~xOd*kz@s%rG~ z+~cYDc_hpc-~{O*ADCzf3Svs4jok_SHPo$F$}Khc9|BWrEKL0wyx0&TO9U(=^_3VBDWOyTy#=~~zDQ9ok4bd?Q_e5;2O^Kc7}XJ!N1?aAMLBNgZ) zo5Ct0K?e0lP-t=^MQ7W)uXX}4QmP9w%qYBb&i>v!vYB!3Xn$h+@cK$; z>5)NX_RGt;Xe@q#hUtml8%I#u2o3)xnGi1`6tMeu=Ih|RVEVV9)REwoykO~4ifm}J zpzgbM0vloZXj~W3q-VUwdODhZS zhf#@lupUR&&lD+wkt|6?!b!l}#YkOo}1Ets3sn_64(jy0q-eaCxrW^T8>hnBV>-d++~q55&yQ zSNX~VM<&>&qrXae=5|;2U`hrZKf9^79HYt1%uM9lCA+-D1RacaUEQ>R_xWuwOxv$y(<@r>-95@SPo*e3yF|!+( zC<-_Poc|m4s0Xp)PKp3L#yLvqFWW=o%qPEb-MRnB2m&<$423QJaB%bA)^xQ$SJsQ+ z27O%!VQPa$`9HUP+VpVpU*Mz!8EmGHKYF4}>)AzoTW4nwyz2GGI;|~ffV6(Q+LxYQ zjDiDIqy&(3pq9&4Ocxbxb=i1(C``u2rb%5gmCRb}+ZCMI*1lJlPenxXUQD|*D(R+) zGCm-j;In^gkBSFSWq}Q?*q3BsnP5g#FK&DxfI*SCQqV~9@)@2c3(3oa@vX>x;Uk$` zyLT4?A@|2<0ZFOXP{1hMj#1x2aya(<;gi5hR76|r>&G_JeAZ5vr%SGd23Jqhy?*;k z1Rli1eq(5_c_Nto_=OFV$_8EE+7(6PkIG*3I_eEoVk1@3cV!F@SS8WUwzJG9e$e(M zYq_<57!cXAdPTr${-Vt9czh}e>kb(iVOmFPRhv4oOt`r z!4LBxc>o6~*xAYEtksV97<>{lIiA3{U0j7O%90{G)%{-7ChwcIx3X2C?R<9~{pXg<-er=9M$t=W5q3KjvwE-<-8RI~BGl0$*i zOfE+Y!D#Oe)>6EiDa8>-m%0x;@oN8y}rnL=oHJe zps?}#EMF@ZE#lz6tylT5tY{G<^?X4@AkT1peSKMD1$}ciJJ|%phl8UKL9d$Sf!+Ou z^+n{)4Co1KwZk4z3$la`h+f2k=MmCjK(hs)SD&V-sbu|HSM}|z$ld`t$lL<~**E~} zfeQC#H%;W$dW8-q0n>;2dXY?~r1U-#kQl&d5TJu)??)J2c0~hZVtiiZW@J2sqev#4 zH1SwF%T#G`2_Hxh{S`BF`_6HD_P7EblKnB}3x@8jN-sx25cQe*gW~y=8J)4%-_aJ| zn41re4Vs3V&9CRKuR8BxdC3l>QS^Rov~5W&C^MJd{aIrZ_E`(HpZHg`IoXGorAsyy zw>yJyr`=aCem_n5UK@{|8%+55W?bp>Uz-Z6v~yEy>mn&;#>{wuH&H@HD*TBO*TX$y z?mkZ)T%Qb<76!<_J>iq=<9#u9$N{bN+p%IvuyUmuwPPZ8D>bgRFJ8Y!gOgxYe-##I z&``?E)Z|S61i<(Qw!9ey+UWN$7I!)Zt8$`$?hmtR71QHTrZj`y4n}ssrc5bv!V8z_ z8OqAd*Q+K6%x_CaM-r@~2TR|wBR6{BG;%+n4{Hg$j~pn1qbDv0hm6b;4Fv?Oc1}(i z%IO@d@BVF?HBguC4bXAP^%NiC2{wz)1cuNp@D!~!)jwqas4TrW!V>0(y>IW%#Ue89 z!0#u&Qpmh!_BoE_->1=rLuRSGRM8KYjwm9}R=ZFFC0>?YvT&g5K6(omtX33jY?m=6 zB=Cs;w3$I>bN2Y?%ZwH4+dDX{cE|NxR=cosCt}GV?qOoK{Q89vs3r%ODbwq`hp@z^ zVde?}WjM+nK=HY4XZ1{d#gaulU7mV(VCm`U{ibMym@jBpKh62vV1JMZydRA~_yG?U z+H26fLc{M;qv|G@8u3-~6P&S4|5Gj72;C|!=D;E!_lLozl5^TYb?n7whinp%jH4*t zcGJ!`KDwQVMH~co)<8P5{<@cYmLGx{>Oo`D^mqczsE)o}2!m?Vi)S zHPzx9>0ABSK!PJjrJ=1y`1dL>_cml3zbU7Zjc zMb%Wg>D?Xot)+)gOn2Dv&@Ng3m<|kinpd7{1Zl9`$v(K+zEnixTkenwdmFFP_09KN z?!We&0YLOZ$_Ar+HXek*2s#lr4SqF5$w}SXU&<{rY8O1bk))OWadh?2n6czr!gF); zE#2A(q868)FGbmJTRGa=8H~@S2M6s0UC1Hy%oXHqaQ_VD4#+~uCoXOV?Fals?|zu9 zEPx{o)A3tNrZg)og6_abn%DBt;`-^ppV87Nz#Vqg&r8{$Z&rI44m9+%D4<^N%Hs8F zzCTVGvp@cd%0>Djj63FgT}%N{YtH4TRAucQsTzm9Ou-R|%Zm<} zp4o6mI5AevlN;EleBr#|?Gu0%YO%gxx$`D6HLrPvRVySSWM#2k0p}; zc^aHP#j(61haY;C)ojX!7f4aV{QXfaN3DJxdost1v-=JwfB|!05smWGeLb8n_Rmyg z?Ak6Gcg^k=X%0lBYVrFlJ`h)BG1@M8yQvyHV}^LrMIjozmJsMmdE@a`D0i8ae_WQw zeD6nZAXDh-0jaGYQ|P6;MsJOs_RA=GW5grXW7;htzQ123Ne1poyhF>x*6t~*8WwJn zj(gsh)L!;O4R$AYaqjFX?!Ac3O;@*Bt{{{3xeH? zPUT<8NXqT#Uua0~MjXpZNN6ZD!PC=v{Pv<@^Tt#$n$I-@w{KZ4TIdd=vyMzny&K+e z(yJi=TXftL(s0;ZrbFjy=FtzUJ9v|g|NgOmt*Z-%^~vsCb)ZQbbCW=R6F6$4flCBJ z=xoQeW;Pw37;u{*qa48E69@p#tqBU-?HaZ^!w2c%iy@O2+309>KK6(^$~Ez?=#>hD zl5eQuGu~aSY>iR-u*%}Ogc=KuJ|j8EWGdT^O_K7@GI?v-+~OM?oZGBOF*?X5s+DV_ ze|dT7hIbGELmm(YX7|L>2(yKCb;$yMa{BD>^di2ubO4SNfXR~GvYD+>YVacYJPD`M z$Lp)}GSlsJs5L*LWB7!bcSx_Ue6Z}K~QkWPANBLI6<>LJ>Y-fQGZ<3Ro z+-NpHS>w9d4Fn)yjOU*HgRwDeQBWe%`9snTC%d_j7#a8S9H*`E5a-QnTBddKv@{!S zA5KHNgQ}FE0fXYe!Z*pIC{l%t{C1PT zL&WWMDg_3`50Gfb!tw>CjeEcy2fW++2ucy`CjYz5fAWVv!Vu+Q%GPJ8N7!ypg5W|i z%QSjAVCbn1ns7*vxIO=K?mE-s->9%R>6Z|2Rd&`y*I%G-aFN6)+xO(m4CJOD>+_B|bb&j}dW~m>s?D&ixy4;X?v?<*x{H z9#Yf(lt7qlEQiDh`&=dfMb%;J6a%2nA&tIrhe0=j}NPT z$-_We0H9ee_ASl)??%MNG$i**VbD= z&k+B3`<1;TYha_VJ|v8O930$JEXg;;pethCv{09ZNLG)UKRkn9lRg?X&}vb3kGrcj z&$2pHrD~O4AX5J25^mLeTVA}vY4uZ<8*(^WSE39|9(D2vB&%d`H)1dm!TjwP7I_zA!LuVv4lqn6He}c{kifnKuK$r_` zU|EN+ug?!TAsq|mSuj~k2W#^UrRUAHH$cFjYiJNakskl3M**bR;L8p6x_X)oN&VYbj zEg=M-5lO{k?wxfb}QZ3J2ReA>7rL>$F=#uWQ@IYUsEMt%@JtI$qVCtw>XaH ztxkTIbHs>O8qs3+klI&)%N(7G2-i%gYxBKMGXIn}@q4%C=4j$OmIy0@zc{JY5B(|$ zZYa%67Uo(SMN=qm{p#v;4)03qoQC2d!O`DQ9*!jIHMB4XA<+~yiNt_Og^tFNm;K_e z8|dHWdI!hR{Juo!Yy`es_()BnwCF;Ta`#PvXFwKPQb&0AuwSUFEXlgenTh`y zs{Dc*Coc}Dm2@A$X!pa0=GNBm)jqL~&dwOXcn4_~m`wbrJldII9&_mBC1nR5RVo1C zvsrogTzBxESx>g_FD3U$@MSXn06e~+lX-tQ*~fdgK~z99Jonn>5}n=44e8Zk8-y0R zLn3|xlmZe_Sb57bTiLS3`ux2IE3A-|MC?$V0;a~O45rUR=lWx&@ek?guoW!#{ymY- zEfl1s!La?VZ-gvSxChcijVJdQiH|&hk|zsW`;dqTpsN?rKYpxUZi-}BKll(AM+j+N zUqN4IaXtaG^O+hKh^pEFHryjnp|EHcc7ak#v1~Eth))i|Z@hZL&vUpW4+yUN#$ca)}IPZ`@+tGIJ_kQ2jOBK*SZM?Tp2e6gES-y5(Y|q zY<~0nAz0b)H->A8h&T=Ak2b6cIP|Dn1&j$RAAsrg4Ua@SEp5AZ`$XVGb8z$O~m8=QSa{ z!BKDXf4j(f1txk)tqnh|r#b=UQ|{&CL&TeNBH$_1g2+8>*oD{zwB9{mO80Ep?yxXEw0uD*w2jm$;{M_56 zPA{RL_^$AWskrl3#~bctLurH}S!m9UalZ2KReK_VUdY2x)jCCXmmR%uJ)6l`$g|6H7bK$A_cB7spU*~oUc2`*yj z3h}W2j%Are?r7xeg=n(tE^chd!FH?c=TEccu4sT#z>-Z(t3N7tY4>P*5MMRI5qr>8IG+yJP}0wZdi?J+3>n{qyjb92FgPEIg#I^pP`sj3Ck%I2;Ngq9H)++iKgd*vFD z5;Cv(M(Wes=8fotZzgjLbkTw*Yv`A?%W>|eJZ9q0W2YX{o!f2a)4?v8c1hZ5yU_hn zk>_FZCu&Jf*A@Ba{J(zbv{de_$7 z$o!jBNG2K@Iplz9Xm-HpP>;0Cw2wvD&F&L4|EQ%#?H-yXvnfTpM+LCpL0Y?^L#_4_ z00%Q)V*SefN0%=TS4FCwHUxoth7K3#BRE6?;VFP~ALYAd(Ji1P;J*guE2!&WdQbEL zitBPP4r@K58-?&=8q@wufw;d#fxe~?jIav+AlEzbCjobt<<1oZOo*{e5S@e=|?X-VJ6+NT*!6nWaWDh zIpMkNPPY4{`{u~6$g}Cz5PbNEdUpsCR~VI2WH-1?fO?NBc72KuvEp8$rdU-~RfPui z%wwasT}D-Ezu{)a8QNK3|18{7=fNBg3#=G3-fHS|l*@p>tSUX5gF)dwvK ztBd~15rzK_LQz`d^j&eOpZrn-gONmZsI<_?e3k*yw2X*Gi=QE*9ko$6;B)gx#B;;-ggQc-~Z0vruUIZl2 zv;-D_5$^tQuJ8WjrUsMop8{h{N4`+>2dSUw^p^HRQ}_R#thc*L%6v6i*%-;iLH9?2 z|4}~9-fgFVW@B@VlPf4+|35oITU%w|t$J?@8-fp7x-)_uxiU1?LMCTE}61e-zzcug&@K~tD zM~dxq5g9731yT8AgLE9eJL;apioJo1lyqMCeT+!DmGwJh-@m9VEWMT1aN?E`50TG# zVHPX$^RQfJQ~x<4|33;-r9=cmKpK;}@h4%`iJC0eWRzz|9Z)E!F`wOH3dcCDZdd7; zyU)sM^8HJsr1}%t2r3Ob@S{JP#c_GiU$HJ4N>Q+?lA}m+`}S?OgCl0lz?Az${lKQ7 zfx8%HgtzBQ8n0;?pM3#C$n?yN#q@s|RaKmP7>CP!_mPEVy8=P3?OX#0$?=GYIw3hC zLDZTQYDrK4sl!`@wKkGtE%bm=xC_$8*3b4kA&@c&@_F_qa?`nQf~eGr_+VrUUGNgz z9BcrBo4M|Yq>_O#fOdsB!%|0tG=d(sw6IplR!(nFOyY?K!VE4I6;egcY_MozTc@x9W827L;s`ir4 zVG%I&D#0O6`DW63R@_83jJOQv)EM1iFXt;+E3}BR2JXxdtgCj1=Mmi2WI+j}rje(O z#^8=>>fwlPF~Fmwd_d3my{xi)RXm|>hobiN!7w@GYD&)v+W_nWf$oyZmq}RkH2p=* z;o`r;0Ua~yk1fPO;tL4>VRg=Nlgv-u(qRNg2>WXp+Ge?Y$sIx?yphi&OtE7cYTZoo zXd)47m#CIlKPoCS4<`c4uYXP~_ieVeh0wtWHCF6qx_i7#68sUABA=F)mzx&b%X`-# zX)zjhWHk3~E2n>oejKTsWI=|7j-0$!J1{_4bYHWHg77`L)nhu;UpgpRZ>)=jGw}Y5 z>yoI-zUQ&W{Zpj<&}=OwZV*8q;_*)qVgVUoBOaA~4DoEaM(y0DB|b86**Fp(Zmy4P zJ_ULs7)5Jutxr1NgG(XPq(=sf#?<#fbh7|p;X=d4R5;F<6|Qtn&5Qs^bTdy9pZ*_= zrEk*;?Ca}pv@om7zLXPN&sdrwa+efQD}5{RlF;2Mlyyf$%|cd^l$43!pS=kStHs+KR#Y z)pUEZ65!2PU^enNT9>=NeTLyd+y+lK5(RU1AmFq*`#08fl+O_=av1kycy+S*Y}JDF88__8Up7xoe8>t9 z@K42xQ;Ud+v975`$YfcVsc;OOb{3Ajhdr76zsZ>kt`yJ3xGaHHj^BqrH?fI|IKw>3 z?Qc#7ng}8a9%2zk)6w{zozICDoFS=VLc+AW?QmSnoGJ$G|wc=c0Qh@0N!QH!_=-8y4@Cd45{DubvCRoS^ zZs>g_WQPFa;4YVw`7R&n$z-K2xY(d=uEfCd3T6t8Wz%LGc0Aq|>VTkd?K-zdpxCnI zX$Zu@uhi+hZatB!V)-Dxb0l+u<@rxv=UG>L2mXW7H7D}u$!T5cGZw$RlV}{w_D#Ox zQOePGQ4$Y_YFa2p~baUeTklXAk8xgs98iF6oq*7V4OA8CX5ZMa(>bVcD8A68vE3w*}n7p6|Don|yf1BUF zealc`A{I8jmn!H?%f=Q)<#YP+X|6IncMy&B&GY0Ki}cT7W%30l3?@%6#c;9#Xs66zEI-vy&jNi?M4=%A_x6yIa@oUmWNUzgAcYreVRZNK}r2^EYV7`KXA zQjIq=cio>o5;bOPahZS>>93SDvc0HRs0MD)YZ%ld%=R#=jr0yTt zwM|TLw35Z^arFH8aQ8Ry-mU(Zngfo7b0^`JJEf+=Ib+~{y^RO;V&VoXuZor zV!Md9bU9E3m0LCW%Vj{!a!a^!bqRJCepZTtY?t^@e|{&hw{QWtnt5$d(Y=ikomIt zbKc1^!!ihZq-`DPI&yNN7Z4zUOJ1jF6*9n9X0I-g;Su1VpYyqT{jZY>5|L?U+^wdn z;^^Q;+S+=)Jvox6Q%Mft9p7|DzE@aIeaU(ep^_zIa=fG8I-DDy_;hWPjco50wC$k3 zDuaaqOiw}p0|ctoSdJKXXvrqJI8R)ZU1L=oIi(ON^?gckho1hqMQ}?WrLaEXe?s!h`~6oA z+PTVx-;~p%$wljEUfGn#2T_=K#oW7haZACezUxAnuqIt-AzQHMQ^2^{f1Yatr2{O^ zx=-JlZ(E(r6l!0w{p^eB3_{BHr6)y=TUzO$_h&;Kk&uReLE3q~$`0~MtnYtwZXiX)ijiTx#_ z#bzk6(CIKR-WTg(NED5JjTgu$XSTp)1#gSQC*mU=M9ktoXQGZ>v0MzJVya+xNn={u zY`y1(*c*svAY2{FdgF7m%~vd<6&d;Yvm|58!t$1)mmWF0Zl!$X0}@c&c1BX}R4nVeW-a6CP*5#b}77=V(a8v2CRJBp5TDaM%=gZD){d@7O z&1p_R-Xr^m*`lpyCWP##L^Zx?xT*?m3>LKY$H*au<2d_ zS0d8E6cj`T0G;lC`;3$oWMixEvKgRi`;x_r5PI-nm@3JHw zF2C0P6&&*Ug~X>IOGt#KgWf8Di;$G5Wg)>rz?i|%K}uRSMg^MkQD z^D-u(L$zOCSB1=WmugmNS=qv8&W^*g1TNFaI*G5(8Dm70>&x5Cd5o-0l){F(b^zUd zU1uPi@MrC(%~Z#jp|a8JbaijSHMh=Sdpo2-e=f6~Q?0U{vrUTB17A&e0+0u?Hr@MQ~Y5Ry{zJ& zhlIKB{^Y*17|#$)_a5bpV>y_5PSB1eQXkp!FXg{1iP&YT_3-(T5{;cc&b@OBt0IDB zc7wQYr{-I!zqLAW1bE{=qIxcFB=W9Y7HHWb!?)^WD#NIX48)=)4wzW%4RuKt)Rr1isf7Z)bS;bdcPA>0vIdvWDvuJDn( zy~fTPNh06Gsbi&Gx>GEMh|YUtR}}-$m&KLKw`{btL{l&6ac!LzlqzJ@XhL3Z(5aAQ zKIz_8VLhxPp!J@qS3yL5&HZA?edlm8YnaTPG)?05w@;<_cx4g^{qzFkogv@*kpxFP zNO(-b{0QH_GLRAvp^l-G=cX6`#FY0uO81d5aty_-kc%UMPu4Qwxb~Z$2K4Jp2ECEU z6h?4kJi5Gm3T6UE!O2)rpt^{jpHMX+&8HA63#${QWIpxWmw$P?;7jJiHM~_-nxLBn zOk!7Wq8ME~D~Yfh64xMAtYUY%NArkNM+yYfRW?`Qk)q!d3dTIZ7>e`+B8Q4V=kdL+ zd=SUr3>F{N-;8t*O}~s)%OuwsE!TV zr_^Qlrc5wE)cn<50Nch!`*6BJ<&V!4gaiL>xVqJF?LiPumaBP)h4pgPY7neIH`Qd# zpG)4OkFm=!$-ea}AyrJjzT$?QuY+F;Vu>y{a!x`dc$X+yv zssU9o^JB@EL?n0xMm_!2jzV*Pd5u54#1Z0Tj_PTe)oJOMZ|Nu9DrDdh{8;+>;~+5# zk>{QR9!6vgZZew+OL{bBp!DoP+T2|Q`OpYUSA2Kkr4OoU)1|$oL%?!=x<5<|SvIR3f!KAwpv>_m=`Fk!O4~ zq>~EF*1B>=kc;*vmalas^8vvZI>1PJIf(GHKiQ#pKlVNFW$shY_02y;3Y()vKrbK{ zbc>n+X-}pUyy%7>(z%(maX*3BJx+l`sY z zw%u`0S8hME(d(=ecRtDq8^8L8b6W;ge zB(E5HrvZYQ4dqyG$_O1i{Yd zL@{5IbgXq-QDw#$*ukMTT)E&f$k!zrc}igFVIx#&BcmMxXVX#AGe;d+o-1i&-mWjq zSUG#UP;@|b*p@6I7}vpnIgOvMGI?0}cQ3#H3w?K-r4&?6F!}44N;YL|>&z{^pj|f^ za5ZDA^<<UXDf;aDKb&-@LJP7G@HyH38~jZI5ta2cu(3z&MJ7|bREh?3+j@%KPdQpH z8j{LaC7Whe5!`1fvn@GFEu zJ;1@i5w5ShhjX6}&`zJiNr!Tj$YgwuN#=Y`DAXC1WjNyBSz3NJD4`QPH~n7L5s}&r z!X=FV>{*9pTTPXc=l{O%gwLVeTO{4*oENUW#j%whi>WI8@AmzvLNCTRQkh?MM~ZlA zI_?@g{AoJ}6(EFj=4)j3*|tbtOqKyIm;}-cIN3- z3!tF5&c69#dpCPA8-+8}ZoMW2|K~CUa!M8i3ESXpeBAhG>cZz?Zomqbx+2kI}qO+_j)9UPgVtS4H)!x&lsr7zjh^k8V zZ~^k;tP}8~R>_jn%3%|bi0PL^F&{6bxr;+#+R>Xxz^WN0c5@yBtqwj3Nr=SP48umB z6d~URc2=9dww5Y<|^=NLJo+5!EA{V;nDs-1{xZ!sWI4b z^moT?0>Z`CVyxIZ$sY1tIuO}C(2kJjzSPfnUDi@zJrz4zM7EZMf|Jwdlyxuk#CYUe z-aqo%oJ!)oN3+Z~D0BuAjPLUeo+R}L-_+w8G(rgH+)h6M~x}HUcqB&FdXO)|Kbz|H$m8ch3EomX{ zWNEU}A1n!*m1{_ofS51y=SM|SC1Yk5DIWhsji8@^e2;6T+)GV&)f5`-`(u74R-y&- z@1uSta2m>fQx%}Y-M`&w^J|D?_QYyVggfzhT;}d-i?uV&_+LuL{b`DW75hvRUIy-W zn70ra^DXa)z7e_aY;gR?_W23&!_!9-&+wk(+&J4{gWTK~BP?d*U?A$n$^(sATWMDr1M>W?C)8`I_qjW3>;DRlNeKK6OkAoMdYIU&y5CN)n z5Rv&_SM$!0mDZN~4Tx>FtVt%RXW0qQR+aIy;{RGo2*_f&Loz_rYis3{+^_Yuqn!nV zPl$aK)Bo(>N#DlRX4%iUB`_8OnKR+Z+ef#anq4b`c?#xIYNbxU z*0jQQj{HeTt+aIevd)~X{KwnwXXl%$wn|}TAalkd-V?Y5W9Q!A{IGE#=ieim^KA@< z2y^%}^=luLIc<;vWBOF)(0l6MZ62m~-?Z=0QHXM@{CTl#8XOjG7E4~s+&LqjX~Rqh zqC6Kpl|8ndxtr2>$fLw_j~bKwSV^`{^qom3>$ZQhtZ^ZVs*R-$4W{Oo zcI3ET^xk{k&Hga4{$cBJ9;=xvw^Jqp|K{g&4OixK4XB_?hWl{uZ0+6pR4z`cpli;n z%~3F&+^zTcm!n<23L8Txe5>u39$Z~Sa-GanTI$l$(SaaF_tTOg&^9457ZQ!8tOl+? zy-C1oz&2cJDE=_-bv|AsrAVL4jdpv_Lk8%Ax&FOf@b}+OIdkAShMc3TQ)fJ z<92Q(J@M9@ ztM`bJkLz9?AG97VOgq~}LG8e!ybi1P9BYVSK`&`NQn?8M4e)S<#ZG+l#eQf0>A9&g zF%&Ds>sl0<)xq{f8%vc zn4yn*V%E;WLUTX}{sw4GVeS5cKpGu~#IN~{!+0!*deWKLrRWnR zZB2;s<(%k1Frm`(rmq_4!cBkj#hy5=$6Gk88cIKerBx{7E9-SN1u4djuCx<9iKget z-+w!zit=)kROIDkdd;GFQN%=NJ@p*__LDd}>is7~TcU^pbYm=_~8Q~km1zCYJ> z9_Mkq4`Z(vZ#{p)O#f)5_Z$WIDx9DxLy7UaFaf?}(0^{iD|$&M-%T3MAsa*c0nU+` zU2tF!l9OLwv`@|h1Nkl(TyAl_zt=g5s#~I`1!obvOek@0W%`gc6VSQg-(2|mFWdD{ zd>aY5I4B;HEnJBTp70MAej|8i_tR13rp2OQ2^BHQ+`x}1r!eY8A0cYmYgZAicQMu) zgbjZ>vW=R&b4;lD)H)I5bA$7gxGd66JwP@$peZ;Y0- zvSwn#jkXW!1k;CdWYw$WEy7W$Q~9};!H@Dlw;c0fNffO1<&EcC6<4PU)wpQHJUhV_ z!D|o4IFtYeRm3|d5@E{so$a0X0?ZMH5OR4=i_|gWxh|Y@q~o!#>a9iX#&@j-bMx2|%E)eGk5Zf| z)u+tL_V+quKN5IeV}oVY`^u?@veiPF-z;mo zTUf2^oo%U?=(SO$pYp#|YkUpj1}q@D3Nlap`pDN^HvXX8oS89>Wt*yB!&Tc8LJN5c<9FNN2#N$3-s{uIIO=#F^QAx3C?U4c1EE@5 z81rnL1X(7S_~hdBhLEKSy>qx!$~+ZWMs5(Bs7RK?3su5hzG_-t{4N-3h_ zZ)czXZ)K6rw=R(MdjcKz&1D1;Yh(q4`0DE$$e(!e0oT11LMll~WWKuf!PVPS$qJnb z>>8if&dfh^U&e{n;qAi|8843#K{5KTcRdc^Jh%w3uTFVd7Nl2_1@}#ZMylrS1WMR6 zkOH6xs4aMCXu?c#rYpUfcgz_I#A$Fr-sSUIl+QxB^lMDa;-;K{DICY5EX_hR{3>S| z^?epEpV#{plH=Xq`C{JO_XGdN-a0H?AMU=IM8DT|uyS<-45^W(TQUZQ(xx%}Gw!=A zeq*B{ge0N=uNhjdy4`7?bPHxR5e`&HGkbNlyCTI(Vid^cxmfz;pRh#$mg74o^ku!!9rDxcs4fA#& zyhqqVz}roX-?eCaA=bfyv4lv1-P~43=z~_6@&PfnVOa@;5FcpPcue{ms zo@M9HJeeT5_}sOWF1AM$=pL>BM@uqB|Cjwb3u0nuQHEnY^r zh5lMZPJ7KvHTz(Xzek#x^YMY5?)N?A^V6}AM5gX#9gWf#V+m_;n+5^6>9Oq}2>@jR zLaw8y=QdBp7 zj}Z>3i)D&Q%VuQLRPd~i4Q8@?xZ$YwTfJ)zmq%sfbaNO4XG=9C^*3=khfcbIPG`92HEk@}U%HL5YXqp`j+n8+}lsO*fsnur(P5yV);`HxHC;vy89lT>Z9JU-b99M) z5r%&EqA1p{3ujz{Lm|A~_aCa4en~2glPY+OPoCWTLjnyufNNcL4i;>%YkwTFKXi3+ zjlN?b3Y<^0Hih_kT~8nv%;Z4aSi8hfrbs=X?-w{q)rw3}x)aNqL11xocjrGn+?sq0 z;dnUn-IO!_#&V%0=#{jzw?i-GPq2_Ba3(6aUHxmb1F1RUaJ3A!k1<{5&`<_Q=wFpK zix7V#0A34lGh>%~ZW;Las1R6LpL-oy4-~2)f&OR3yjqIZ1L*o3CqV#o5@xfB@`#u^ zpXKJRLBh+R;Q-<3(|7gtX&C69(hCe?(lV@SmEY0$`E@;Qp74s}=DrXapEf9|#y(pwd3tfc@F$>A&^l!LaR|ot?x8@e_?jeiTATy1VB2 z*}f-Crb=;GRnUlv`KsK|{jNYB$XR!5?gz^X3b7wr=(08QXUDKTnHIH!!%M3S-~4?M z8=n;;WOBeCBPdf!4j}@Ek1TkJNA+w~6$zPqC-g`kxx04#fk zS9R43gIPqt5eeF^8+SR26rSy8Ai)gr6!7t+d6|R$j+^r#S(b$blF6fc&);yYX}*fu z*4HBvi6jQW7?E)rJoQZ&r`yPKj6@h-lw%9NvGUL6P$pHw^L4xq+p-*s`r~ z#rFfPUpbP`ZY<4xdm1!oq{GL01tUXMcBINw;{B~(=3R08KYV~N&^L+AF&uCV?UsuM z!G&!&U&#pGOtxdRUI~x`aar$3Y&KX z->%l8RfN(#V{Dv#cjxxMGj<(7@hx#@Pb4*`_zNV%k}=gLUsmmssiaLGtb0ENG5Jbt zWh%<$&L-Mo=jcN}lekSn3k<|SI@%+Ip{~oy$(}v}5${WU(*vcvA-OFPf@jTrgM8ai z*8&li_6K^E!&g&b!+!br=d57lw#aTSpen{RA zVk1Pj7oc$^_I(O7_Djx%rPqQgX2`By0-mpwHM7Hom?J7nY@5fm{&nIAb~tp`I;yny zhhZ{dq-Z@fw{C`bOw-@`{pyfMf(u+(J9kr4G;`>gj_KOc^6&OGm&FyFKkV#e*r-Qd zqIK>&xw;kkRAR2dDq`eG3;*VZhGH78FZRccrd5k8c$NVrspP(`Cv(RO7BvKE9zuyg z8!J#wkLtz!44+&A0)o~biyi0dt0;U9f0Lk~;_-6o8%V4Z!X}!5Zl0TzXEqn$5r4jp zX0WPAK~RKVNQfX%(tP|zcuU|Y=`o_5NW{aw>-7<`9aOO#XA@B&q^$-Ag>W~S*l(d< z)RrH;?KR2`$AtO&gyz1g^1VJj{o8Qqf4rFp<>hes5nb%S%K^b-*W|PADqIZX zIkX;3*Y@oaHW)@pWqB?Ve@Laz-z%i4!ZD~TTb?3%r+I-c^wd$FBt^`&*A@Is15x7M z&rf$s5Uoe@Y5P*gt@)l|4k%F2fd`8?LGi1P z`dzrzqg|dW>_?~l--%3ZG)DMmBEo7~I%xgw2xl0$V$YqOG4IS~&!bMD>Eeg`_Wjtn zyDS?k=$>acmmhnRAEWT_cnG=k**v_uI;=EERq*x(M^CNCt$_C#F<2B75~Q3UiDEly z+c7MzZ5mg=O+ih3K**kM^jiulV zR2XhPHWoZ>Rhk=e*E$x+C-UBBsBeJ2(dP~vh5Ex1hy#ChNj|irr`55ts&N^=;R4M+ z*l+fzb$W!61>?j>>&xRLWz}xxucS}a_s*}Fx|o<;c@#g%;>{`(E@P5cBt#Vstxdi= zqru?MGvv;PcPMPT?A|(V-qZKZ>je$YNLFVS!GQzC?rT*p<=bB~UCs%8=D z`k*?Y0^c3f7w}huSAjoqA7#+C>gRu-O@V+~Xw-y?0GfA>^YY3AFhK};?8G|w!8fwO zw*uersBdT>6EcTqSQ-zjZ&>drZNpy@xz9p6%J^oS3;Pe!OXjT(tzw9b)>+gQU9TH%?E)GXyX{blIj&2CO8|FMfshl7dOdE`{- zP49(llz}DTkW+brV`a=B`NBm+hyC;(+AFbSbY60+ld_h9e1Xy8gvF!vFeoDKs!v{8 zWh5ZuaM}#Pu2p2vy_A}Nv|3--=X)K4O-mZG(H8D0s4#hd(5)({{|WYAUj{}#+4&sP zc1=ox0ORg3o($Gi3#LrbuxH%1-wTnTr>RBigiXC16Y3CImRfM6Xl9YSGzE*I6D8&x zUO@+E|IyWw`H0J{(wLpcu9$JN|G;GRw#OX>3Iero!@z(y8$J6vO#mJE*m~z%7Qrgl zK02BJ97T(XOb9G~)hX+5$DzDykQR2|S;?{0nshqj=&Ku5(!nr{ZSXD)3m`!p5cz=_ zCPNtUrPFfuBJ4&Z!fdKf{B#hvfj?!qEe&xG`282|gcJ%d8a|%(HuVJi?Z|R&WhfrU zmhE6~kUcWJ2RL%erB0P{=E7ro0xGIskf^ycZh-yTcW$IBI)v!91D+y+e!e=9{W_cT zYPk~UQY?%uv)b=-I6fk$bKx*vYBe(*fof`uImc=68o~W#>BmJ|tH&2KDmfDVD0@kYg>h>@1d}}Ksxqu^;_|+b@ z=(}pa#T$6jtxbCnLo2#zZ<3@!QCrCFuC%Ozs9 z>9{9}PiSaZ>E!P%V^Oec&~0X%9!2*+?PbjHxy$TxOR@+C)Z~Ud>8QJ1(NeUxjC@>K zr^{+2Q`S(&{MNr;`4N;w27-&u-%|Mm z%05m+k3UASvKonWU%z4?rPa+ax}?gw2ErBfWH4p5kWjNF{82Dmlt;qIf4VP25EO+jYNM(WDJpm>RXm> zpw}C*{Ra>2U(z1VLCW!9X>7IZRHk4gOSSX7+)vcDdQBnBAv13z5Ui@5ABENU3J*>q z&PccB{K8MR(V$=mlY;--aew>q$;tduS4nO4I#XiL`OPJGPqm|hgRO5)n@|A69_%VZ ze0_aAQGc!zdb#|ZI08DP6Hc~Mt!m2yndHEhh~nWf?kbI_)P4hD=ZQKKYWNdMYFA#3s8NL zC?SGV%3zB*-We8#zh@*FqNan=zZHy-qho}~7VJq$NR@l?-W^X1efY>sd7MuuD^1!$ z=hkNmp5ELrkMIe*9WV*IZ_WEb)j+#V6fguI-HO_cec-$I3!IREXW+HyrYbd<`~dt5 zVd>$;uDEDT+lz=)zLh9(?bul2sD>Pc`&P&N8Lap8)Y|$Rf_`Y(KwA(b6)_F!Xd?_4 zY$wC3_h!$6u%_kmg;rxfRA>=W+p)v)9xRG56H4cFHTri1$+m@B{Lg(+^sWgDo& zrLUd6eZ52dE7E~|{?ZUn(7{~@fu<14>EgOuEHF%QqqY|uI&DB!Zj0D z#f&RSu_yi{Wa`*6=ujnAIu8V!-xsR^g1h6a76ACn(ijXx=D*GNIlXT(u&b26NRlJX z*pgdox4dXA&o6hN{SUEBdsD!XH~hINdnL!4|DVcgKO*!A9p$KIc>`uO9^~NYXk#ya znddT(07f}g^G0QvBVld&>Gj{Ew1ZzzW7L)Adlsu8f(w$0E0&AW@0?rkzj= zB^kXNilVC**8n%(_sap=O(}rzvnqY$Z8A@d|B>dej+e z-$S}CYQ%V;nGr%7eJQV#g^q&^wuSkQ$RAr?Ndq+%N)uIPFWPm%N`a0p@BwU*5N0`8 zP6crFh3hm2G3K4s75))naQ$fQSg1m0enf>8=s8l2mpf=cwuYkLVD%z%D2jkJCaFKz z@nGEwEr=S0x)ogDVi{ds8;bb(pHONCA+uv;LU3^6etkB@|B_4wccS&5uUZN4>NQQF;`bPpP&)R^57h8!s*jcMK34wF5K(*x_F~`g3Y?-i!uPp&Y(dRwky0=6lAFkXYXfC1`qg>LB8S zWo&lpOQn-N)On!WI(fYs<+?Kw8CRfuD6oXlp^}yhkwp6oJLaYVa+^m>T=h?H-ftWc z@^(oq9>~@k7&hUj@o%G9_8R~GRO{itl7gP*I|J;Z!t1@%*5N{O(x_ zPP^r`tAe3>LHCArwi@?e&L2EOVZl1r!fHQiu-1|bs#v_#*&Qcms?PY6)sj)^;zNSL zq>AoE5&z`hc8XJ>E+oa*JVj|r$0nwh459&?Z3gOX(i7y_4@pS^R8(84@FqX@s!)xT z&1svu;35%IK?9T#U2_KJk)C^V4YL#0i@a zAb}@3;N#z4mF?e0QPuwRNSq&_APP8c5coL=0T1vVuCjw>;Skk3R-I@j`z6~ct;7bW zJgS_b&bWljv!|N8;2t3;(N1*8aMq4y67W^% zUu1jVZV}^yeY1sL3D$_A2SnIss> zUJ*a(5zbP_93VMkc0kK>WPB;bDL{vTi7Xe@T3ClNMaX-giTkxSm(Es!kc>>k=(dV@0fQo@abNDpWoSWXv z&-+dswrCcA6$%y1yX8ZBjzv|Q_2roob*a0Iu>Fn9kr$Ga6MI@yf>eCgS*k=-}J&2P4yzOBBL)4E-7mI)4I4@sLn!9h@lOdLA^lKtH-qbXkEMM0B3{D1~@i*e8 z-G4=s!}ER@9CE(#72()F*`rl{#A=$a@C zaZ&TDJeiMo&f!=~K%id?Qp0~Ss_$~-EW%|=a`XJw0=zh{kj|YQdFrqmFf&y6{rwBs!!Kw^sAQviGc&Kw&lY3y<6WVhpt-$0lwCs%nU0Q*Oh?Cx zMVU$o28y%G-8qm5SPu0xGDGG_NMN$!_1Ug&L>(>x+_--dP$Xn)#g>RT_~{mX`lM?F)Xc-y?*t^KdnpSBw)bf|?SR-xtOL zh0}!Ulb1R9<6^H2T=Uc;+AB9N=^M2+DppPJF;o4r(d-c&Ai9v{O0$41J$E1|ggZO^ zDOH<=dTmip?5ZDn9T@}vGMRtd4Ezf#ErAG)mkzjSxK#5)!ah!?d-Jf>mX`gX@k7?^ zlS;;^EVieA=ODr_DH>kmlV1BC914M8M5GHM%5yTS(|-epeMkeoL>M6f|F}Z9p5p3} zWQWR<$dTRv^Fj-1BqRb+s{|a4sT~|-cXy|%{Pt!%;?#;q;r@kFHO1!TcCaJ}A^HIA zV$Q1`PaGOCY~??Kl4Q~BGFR=TulB>=nR@8>-}D?X9*?_Oi}wA6(KiP}&9+8WL_%MxIpM&yq{8?_RZSN!wpMSEKi?+W*{)UxI7kM-~X zEIjky1p$FiG!GvQ{>YE49*uxRSDrj*e;xr8Pr}*#!Mi7YxPqg&Ew7~1+LFa!g}3YV zU*s&CE1KiK$bg6f;5UXk$I7`P zaBG>M3NI$79M^-#uwEct*u%0dv=5Y`of%FbsdJT_EM`R{P-X(+{#1RF41sXPJq!G3i^iQPkdC!M$VSy6iGr+T{^a6Ik;*m~`() zSpFLg!M29splkby?{OKTb07fG*iV`FD)>TC{ZtLDgrXvqn%bkI?MpFIZUYoB4mGBU zH6U?vD*S5A0n5&oT*+qFhiq}?L?1^HTljKnOB8_)4jPq{o;9n zo)?AIphoQn#KZ#n9e6g2`N;0~@L*MpqD1#t01hN!c$qU4`SHXcZ?zpks*%cMB!lp+)ENk_=8bAKe32fqk0q1}B&nRKd-nAYcKE7Nc8 zE*mhDFd1Da)(eeyroSOb{cHRxm13?aNoGk%NQiTU++fx7t;0U?DCZhqRGg zGdFijw%D#DL!9+|e1({2vtzHzW&L_qhnQ#aRDL`yb3%|J;!ywT8%zD2_C87|5Zt0N z$Z&Ye(tPE-l=tUWZb@8bjzRjjBCSdw2Y;uLdZvn;T%KuLImFkKK4K*>#mU+8t1ef^_!qL7gPj`jkTqXYa>LvG z>ThTBfm!PZMNPQw+JiY6k+3`?!>02S+SY8SY|e3{w$YQxH#z30<*ZYd8L0~KX{=my zbMkn^%JFwX8Buh_l$V44^qvvO>Xq?KRB0J2CM4!e)~^MfNq=Gm6t?PRwf9Sf1tttp zK3LQGSvL&{-bm$w9OZP7^fYGvsM%EsnVLmx4ugkz&{l>pwu&h~R0KnXh2Jo+N+cQg zbva(*o3U?VP#$lz-dJyQ7uOuhrbh@w^Xr_ci<)S7hXTv@tJ|*U#VrUYYZ=O8!$AgtM7i)TwuO6!>@vgQwBztp~`8PwTq zy!I2w0E|1%PgO5O4{)OXZgBD!7qqiv+DQu3eIcuWXBwCVF@ma9X-~#@7b`5-Ra#qk z->@%>JTUd#ZFuiV%#*tAtEL+Lt%8AXGDBajKMmV)MLL>QzrXWkxhQg(soS~J4gDCk zyv4BzH79P^H_=k#TQ0PdIcM`ejK};LRljdPi&`O3dwx4$8O`P!3Jn!O?{0MQ;jg$^ zk|WFXIeC^*TKom#wEimM>B^&DOW5_R381XZ6gmN!m@Ry`AOh4`w|nx0>yhJ8X?wxQ zs@kvCSU_~{uNRCcSv&GhLFEFXG#y3;3A7c(K%5RdLfvf;s!P;LT@?t*tE>GtqQF zSCy1a(Zx_k{qKjHAAV8MhCzD4>uF1v&G;QAqAkd)^!h+*hN3`=Pd+<4?HGXyr*4%y zH-@GCx=EEgPg06?N*~$`v*xEA4-Brm!m;P+FxRM5OvCtC@M77~3nS#JV2yG=z(4L) z``Hj&mktjH4r|{YqW7g(Z0~nRPE`qi_o)*{Xu7?@+Z^AWAI_t+pFXiI8p5QI#D||6 zy!+i`hV(~8-|r4{ICVLVHjg+>==gQ#oqAo&n)?t%wua03QIVm2%Xyrfgb%Y;B2K>D z{ZmIFI<``G+vzK0wcI2Nf!7<8yoGiO$~#7hZu^NdRRP$6e=%F~nP|Q1h&y7BReQDu zd%oeLJeE!-gsdngCjL?~g&qT@vUvHjp@eDV_)lp6g308#-6fw}uM!U6DVV!(^{Q=q z22EO>JWehD{eA=6K1NVX29AFE-RSnHi1#sab0Z=ICR2)fx!#d^;kuoj6Jdu64IA)6 zfN9RJOSJ>ILP@;K1@^~?P{#MN?gURZk}p5ksr(~F-jM-TY{hM8T61U3psC;cN9Bh2_o^RI_5MyxK!s;umBtY|(PXpB`AAD; zRyIVK6}+H;T*3EhA1xp-@bMO@3^>3WS@`+K{>(Lm%bU>|n&~rHedW}&`|a-}zP~Ge zdshMrofWLwWrlrG;x`f`;^Nw+23=pGEY@@qRNQ0r3LqX$+z+m z)z)s`bBd4+R4?Kqubf==?GF*Zd8yo&;tL*tIQXaoT^(9q7*_|37Uo-yW%vu~;VNbO zCqh2K`}}g(XwKDz*YRl0<{r{BGNGe%?-Gw|Ih5rv^1_wFzc2n+%kXFLeQ8Y#&st}Y zf5uB~7ub+4(^$Q%CFt@vB4oD-Ok|?dws5q*O)h;6ZcA8!GL`5(X_=k((pScoZ1T6g<$Qjs;@ySNfq^<9J+#3-f zP4b~Ad8)J*xJflr8;;fC4o$faYrf~YkCgK5@?!4}CzOjQm#WC})X3`L@x+iG#F~~` z>lGnn2Mf9+d@z0XiYKSx_NlC43yn_Y^i85 zUCj(fJvX_Q&POzmMmNnARwE{jb8HOA;huWYkaJ;cpx_ehsr2z{~RSr{f90;JgI4mbJ5#n${jeK5Y6tq&iQM|!wccC@r)?99xeG!J7NDw{e%wF{X2LmlUknnkhQ}p}a|Z z_g;?arFPetKhJ8)hq9WqJtiz0d&axZ?||l;37T4|uHig|iU&mZ@3)tx3l~lQTMqF+ zR8x($UJtrmf612;9yh@Q2)FjEXOy65(9ikZQj>IFs`vK9?acf~c)=8$z_|*Lcw?v{ z%UAP?**A?j)lOv7|JXw0Ytf%C+&kkHHA(sA@mfyuB*k7ZgI6t%IxNr*yveM)QKQSylT%A)X+E>5Svc^a-$Qqn(nz25 zskY8dFE(r-)RMP3H!*mZjnu!G9h@6(_Mq*xnWL8MKeniB}>RFT*eQS|3DML&YsvNBYVwlFJtAfRhHRR+MHbcESWUd~zN_0u$^X9!^gA z-sikmC({fXo}y%lgiu!U09o=yBHE1w{AK0y0s#4wGqMhVtUC5|>gE!B!Ta(AcpcfI zg>RFeBdXa?koM1<{UclYtV^+H$@|2OQ+JO^K2Z6)G{yY?&S9RhYFs|+L)^!{87*1Q zf_S&0qN1$!zDT~*n^tSGU>R~zNnH78CoCngi1^k^0eE!y}>we99Isulz2zG$Yba(637ORY0wW@M8q z^K2AZ(@LkOv?-;6%j5fxx23*6!7SXn6m zS{NdlW=Ct1leoiJlo7JeinV>9N&3#F|15}~F0Sh#88*3;PiE1S9UsLV`Uvv4X3udv%CAv(gi)JEsU%p({uQMbm(e8meyv^Vj z?dm2;%O*yN6#0(8XufPB>Fl`W+z|KVT)r;9N(z!kF)D1^7AiHCCn6)M-Y4Yj!K>^w z-(J;45HO0-i!cy!7Ju_w^t-(diegoyV_!F{-c}lE&a!hhjXRnsFwC>4IDkgMa3Qy^ z!0Xfp-VPP5&k;>3|8}+_IW1s`Vv3hVd3<}M)%dC;ivz1zN&c`|G?z*5Ty*LyAtoFB} zqoe2B)i_jI&)zFh1}~eifa@OJ-FSI@Aui~p#H9E7x!N(i{0n0KH*W; zUca96rHf+~*9pSKi(;Z*IF4UxI{WvmKfT9r{W@7^cJ5Z7!tz>1U42MZ*e}2QwWXzO zy3ieMg#pa8k}Prbp$u>+nsmihAwcKpLI>^Y@Q+1fXw8HIBiGFnhtC^RWj(oaW)sz~ zGJ5?msW#Iesb{d<+neTNHD0vT?xShI)q=aXvC?9lqD3Io%tcjAW;J_QA?zkHr@ zjrU@v-`GR+RLkWOT2DUT2vS8>bD#L8@DY5BQG&GsSLMBV8_m5dK2HmF?18wl?;D`NlR z1X~T~u0JsN8UEPHo!9pY9bu*K5}H%-R`fC#+qzyz;zNbw{VF>T)O^ukl;rb9Z%7YDt)br6@y+#7JK~}u+x|4s4#;4W^SZJz%GP&`l}t}my?Y8* zC5yj5d4|Z%iLZmd^?tS!%ln>9&&k^> z40M}!R077DS#wZormT#+c6?#aDB&HdOGraG&_Ko-PA!k<5gOnxTQ>jOhjUAVmJTVt z`{|{i&BS+H=p+Cv02qfS6no&Of{3@{ci9yzrDou-yDCFqq;P=i%**wplsPzWG9zI z{_92b<(D}9z`dhs_D~fWPnZ4r5Y!##)b4Lx%4Ji zBo!7WjXOMZfR5Cj#5V}4|GCP6%Ke(+XH&R((bDuARyFueD9PbcaT$whu{O!Y(RzR) z%QJjr$nm2~$jfs$Iqk1y{&x$Y8`WYX99e(T(#%x-gIPeDjmasjW7r10*~=9VjI2 z*mbcy1d@Sb&o|wQPsKWAyv|F_iBlIzuj;sCKIgBVh0Ij${)tGh<90qe6D7V_9f)s; zqm&E%XV6IA)BN6SeZ-0wek)?mmGkcHQq8VJKvS!g=rMmy;5D{EE!gc+BD%G$`t*AG z#OdNl1_7ua@LZkDm+J(sa4L(yYVUcZ$J};Dxy7cOvTs9S)`t(8>OWYAhNGA)Y)pHv z2D@HItfObfBqD~a)SX1n^#o14Brefq>7q2|~2;JWip zk50*yA`s<^bi_B02CgrT0jBebD5yN@lh0$awvz`hq`21}doE~sJ^n}dBq^{-j zoZ^?XXUOCiPxkx5*cGm7*rjCa_ZQ0Mi+;5&oYU+Ba39ocuQ|@ zT73K;5v)bGjXx==Pw_OqC9!fOq$EEk1yIbz)OJ_o@utUMrHu;g<{8oN0k4X}<221m z8d2=r92=fF%|kH zG}KRf^O9eRwjk%M6h{w*VBnZWD$!Oj<**l}`V@WTUp;zs<`weyzqhF{UpA8|d!HZR zjJ!F8w=%utd)IGoBn1luGLZkW(DO5loam;IW_8>!gGERwk^415PPCcvyeFF zT|^*O6mQurMWUhhCEx6^hwUgwoWpjbY|i2kqgknLg1mygy>nLO>S|`e7tL?SO1=wNq`)e(^BX9xNU`ANxscU26$|}ZoWj2BvX*)@E58?0=rD5~^=ZeyM!fBX$aDK<7Kiq9BZfBh41Jrbil z`B=Uf5KESI0x)ZL;N7H^( zSLeH~4>L)lkhWN9L9sffe&x&hKf57o=3~+u^|kn0%^?V+)zm8OlS8rYS{gQ*LXlH6 z^a8oBWGq!lTI}NBIb;4Ux$wJj>@($mI#NB=uP>oLo8!?Vrw^Y#f#u=R)^>zp0jtWd z^NnH*&C;#Qsa01O7t70&JeD$7L(dhII>@X*$qNhH+P+=Qs)ec9qSD5>s8^-c=?+Q! zgZ1=QwdARI(fiR zh-BQK)&wa2djWKVU%ujC<>M@zWoRW=Dl{6wt=Cb(r-fc#?v9@?zFfpTuQAu(ZnYip;m`O=D0KE|9)gK*jO?@?98x0 z?HX8>i~fbf%!C<;y*oKQx+_O4DIG&pV^OF%Wgn)it4l~io$ySHVQA=)z%=`;VrKNR z=aO!BozOjOwk!df&EE~jA9d4ym)?r;|!go@K1Z{ZsGy!PQ?hSguX z;FS#rTNrRj=X@{YPG>2TipGV@yiaHBKl99W9&e%<75gA;PaT6M1T4YyO*8kMBde_m zV5I+x%E=KGO6S(ud_8IlZ~>U#*ie*` zf}}nQfedqYT;HAx?k}mV_VF4%1PGk9&&-f`c-%b=-|o>xhm!P|n3(i0c4RRz=Ouk6 z`}Ws0Mj(s$M0tm&O8GZ7$u6G;-8(FMjCAD=r~qj7N1WL|@;=wgAfhT=S$mBoz4Q@+ zDh$;t973ZpX8FW}w#NnyiM`hk1@&r?Fnt)(H~brX7A#RbkJy5NG!UEe^;b_%I<$@$ zzrL==(Q#;V=HlIamqHC_!fxd#Hm$!cmBb890`K+_1B1d@`8m?$GQ*b+2WHXez&-(m zZSQp}poxL;^2su2$kJ^#g71v_yK-*gOAOFzO!G2H@nw*Y1ab}NX20Ig{^BX5{T9m* z6Yjk_U+^o{nQnNjcPLdbcs3uL@_rQWfI%n{pmUNC| zzcE$Q{Q*TvNd&d1j|O3MM1z#b*m@+WEnDk)r}y?OLKzIl9#xjwshFBlpecWfF;!bx zKf}&FRb>!9$W}Ho4?jD6UJYIicA-Bm(j}n~&rydUJ>mWPlJ@oiU5CD))WD8v@1*~# zHChMCvVs#6(QdB}r|rhwE>C>)YIb@qj>Euf)XzB@1KFYN=~K|vS!`@LzzJCXWY)Q- zHRwIiN0$XRB=XeFOiUu>^YWF`aUo464fmTXIOjsAqb$<==n5=IsAv1j#9ZEB{@~#5aiTdfAE@^^7CmBHlNGTkPm0Ya-aHI0)YPj^kIN!4!oB2>mL^F4 z(jlKkuf_TFYl1i>Unr{Hxva*wmo2#x@3cy1!{=@P6w6d^>4^pr)#>0%jCkDTbRDa4)8_g@YLq zr3lx@nlU&zbKWnnuV?fJmuRjZx2_p2Ek-@hJM3@31>YCsGR*Q-FYj(3hr**5d9LfJ{x-aE=yJqFp6&zXCBY5(G9&0n5>^ zTu^EpM*cW|r8XU})#B#_xnYk#+C%h%Z)h9=&4Fxo_OwjuKjN7&-wsjt!WpFi_k@w% zJqEA9&g#Xk+zqaXtbsQNyvT@1n6YjLq*MFeTyEZ>FMd27tyUbQl%|oMZagrq){g5x zJJYr*_Cxp0i;w34gimNH|E|f>+5q{*&8i~J2nA1>-uj8K&=h<=Sek#DGYgzy6cyQ! zZwUH5S4gQO?mg-r*2F=D)u1kx1n) zArrr0)T^`((JnTDuA1KTOJR(Cr>*H4*rXI1wq&3c;HYHwjQjB~Td$40l<3S(zZ_tR zVG$xVuCXG%7p^`@kVoiAZ1p8YM?|T3lALui>Uj4~eu5ceZ>P>j(0vOVM%?8Aald|-22$GYpX3Y$9!Ol;WeaRg1jvar z7Byqt)<2VC+Q6>4@-x*Y1%wZjka(DqNky87s7u~CrZ zE^dx`I_}HlXIh!z@-<*VEi8Qbcjgs7^82tFjau^k3x&6E|GpWBu0JHKZJy=``0VDA zD0{ZlbqM;PJp{0=rdZ;-)+T zK}pF@Le7tLQrYme=Y1)%Zv9|%)&4f|8;usbuX2ku)BA3d^wZOc2PSF2^eyQN8(J=R zpIh?@7Kg0>NZT*z!vXZ7w1<;pJ$kHx52JW6!8Q4#>|4%J%5=7QV=mK}wx?V*i`Zy( z&TQ6y3kbL--RL8@-Kr)(1(BcvsBiz@6X>-Gr9%hvoi~j*uG#I)lZk1oG!d*&?{}yM zpYL1N%b75j^f%+)(hc{9W+mzeJP`j(gYN$#)`HpLw+*^5xpc>8v05>`vhfkPTv6~9 zw%u_af&2_QHWGLaSOl0pSSTbOEUf*g+Qr7kN@I+ zFz_6cA*d~s%2JVLt&rv6tnZ==Y-ye;W_|0pNafXldup0jG?`1Za{ps-G95iV;s8r! z$+BE7S*U5FLr8Yu3(rt$xh@L(*Us+Vz-9@$zSMD9?MH$oMU(+|fu&NDVq&ZI!6QbQ zgzoLVZ{t&|r6CL}^3>6_1b)Xc)sC#+GBQ||Hzod72wr@!5~h|oQIzI6w0N^V#U2_v zZpc6_Bb$CBV_&i?NZQQ`V@%8CuAj1^qCw-BewLJOob56E1#}y{uwZ6_PTjcZ=uVg? zC;xNfG1mM5STD8zh+m<+m(P@px?yoT*cAJKThWE&N&zOSWR=UaedZNOENBmkO@H+K|Y2oHGb_Y<7 z5~9Ruy0V^a?jO0XD(_WXHB1_$vY8g)Wb?23MtB08$?`e-@ zn(+5en+4TB{+)Jtixu9#iAAVMC$un4PRJAgt*4% zHUW)1obwzF=)I{W8Cu&1mTZH2dPFw?63gnkK~DK!!}LDI_a@>`;725C@rg&gZVOz* zvN5C&DevD;im8d8AiRAYnnA!5`aAEwp})lCNnc1<-N!J6onL{5A2En#&00S-{e)~J zh=%h8nJah5JOc+l*)Y;mc~WgnRmJ23#uEM0zEdy#O6wQk1Uq1kZ5fhf;@5rgG!i|O zc)~^Qy&k9Puo9Dqp{xO}?rv|qamfoto%Hu~_+>xn+0Ty|iOV6e@el$y_7|58rz}JN zxrw(&T;B7)IJN^;EJvJwdU0{ZI{Dj}!j~kM0|l|UKfLWw4WjP3D8G4$AIxxOG#vA# z-)d1bj;M%)8yV&K>Px;SPa+1yZ)0G}dZDDHR_x9Nsbbsw-GPZ8W;UZ=pD5fK#yVWW zt+dj5=q~K7R;;as09RS(pJD`@^f4JFqK!NIJ`as9M}N~eHyN{2K^ zmvn=aNH>UdBi)UJAl;3mbiK)a{=Htsv-eqR#u(q29>RH?5JIu}x{vU;QYKWFf-?EF zn678-#-_^8#8Doi5i3=sY1?ua_H+@THI^7k)H&Tgs(?0X{AA_PzP{($ydx6}i;F%v zIgeu)&e%*xDVVf43JG?Hv!uO}PYj?|`(h^evyRPtQi%WBaoKEq$%6SyHgfW~jIPj=0!Opjhgu525@})Y_kLvi|D>#mNre9i9Ef z->@2{ZP#b(FCt)Ga@)S9y`?3*-U;|f+XNYd1MR`% zkQH4MH#aqf=5bT;Z}T^{C&Zd${1W~4#D3P6O95H7CxtVB`vVK13g0d; zb_#E)o5sJ2(>A`jxw@VnjnAEKZWYzI?@+u_9)vg_ct&+%O57zdLKb9Ml?dmmp7&@C z@{DM6&94>VMtgoFYulI8JD!Y^emWibWV2)#X{fB^jw;QWx8+Q5%Z(H|v9B3630J*c z5`=E7cXe;&K}cI9d=`{J5z&Tq)21sw_H0qw)nY?hBF@KN+EN{)q#sk=y^}|*n&zj7 zNy_5|mSx;iCxGe3^Ibf?yc)+ltziRj|D@g4SmEo<7li2Rc0~ebiwkt=(ZSQmv4?aT z^UI{%2E0Pw-VbL)cx&7TML;z<&C>_!feZ$HB_+Ss4(`%E`a1vGb#cpOX=M040wf)v zLtN`f8Lwd<7ABeN_0-@u11W5LGBQY&94s%4t2q)vX(`j#v+VYij7aNPjlskdj(p`n zX0z`Btt*|Ec zo_#nb^$fj(;BtYO$~@tmfxx%2Dz11}WxOLbLsrN z5V5)a3)kP}X}hs4UYxtQtRngRm#&5ESU>2xMf1L}T8Xjqd)<-kr7w%V*EG z>Rew%hKi1;IK0HDc;X?CiT@(c+1AdlePiW9|ny(%gyzaZ2KNl<67*2#C6>Hk|HNFXw&@}k-?^keUEY#*dk?qgH83_+g%z79xm%l+XOZ{W9`riGp=tWl+Tnt z>b3_-gLy29+#^x4W^wG#AA;%9i4ejI9d%W7{BNDIRVeziT*1tj<2pgFv3}I=75q+q z_T<=DSdT}Abc428cwuFw^G*OIrA<&~AZ=t3ZnL(E5Y6|cIvd8A^MqAZQeGaE^~XjNrAMA}z8(uL2HA@+(IrIR z7*~RX<=4jeHWC?&%dWY3s%bRU4H!Z~UqzR3aVLDUP;gnqUiAeqkWn8zT)eS#Ay=qZfd2#t` zra0S`(S|o4lWx~NZCm^0vXGZ(fIl5zWq6V&^hLoIIleDXNibFOuFL((h@qNDPCQA~ z#cdt0nlsxa#k}aKZ{K>1Qm&f75sjGf7I<>cAXE?k?p`?V%)?8yX2A`35I9+&5tFlg44~6NIZuVSq0Me3(Xu^;B&|5<6 z`@C~d2FT@oVdg3%Pkocs!|jiUaz}0G^Rp9qu&HOORrG+%3b8}x!)%?0w6J>Rc7HUz z03sG4VGA&!t*xyW6D;`!)4J+kg2aXzQA+L+ia7DWoW#OpJ=G3>B%k@A`ZYGbaI(-! zA&zFLK51{P`TU@;M~UeXF<|&aS9;v-HYQ^V)T{QdPDWsf^aOM$ETkDDt;uB!GJM5? z%nY+SIn=39szw3ZLt7Y$d@d<`E=33Xof$Ce!GtX*3KAu02+1Q^kKTtR`+`-A~V-HGOqUci5GiZm32>bF+&?PLq@r*I(P@PMmG@ zgIsCohs0}24Ngy&P>}B5&wlnSh>}(|5g5iCo0q?HKm!0Ofaf7*s~Nv#K62-`-DpsL zh@`()D>c?9)txTP4pM7M1lu+D!ReYgc7vX9c-sfp&u)5mcdhb&h7g%2D ze&K$C#`+1PbWD~gcVmF`XYX;mmlFZy-@ng&F5Om?{ps)7dQpf;&yt8ig%chTW_&P7pcx!T+H3w(RPB1iq&;xzPZ(NnJ##Tq zc}Z(1CyY(o`<`cfP)kT2SJ-rXC!okuSgBAg$)M&%f%*p%dRXSKAWXY`oZt5TG17xe zMmbiB>&)pk8~fm4OGNidVk7h00=pco?w78T6A(g8o0*k$`9Ks*y@lR1luvp%DNKwVp9U z)C16&jE$EE240DW=SQ!2-AN=sQihg!ZFH+3oS&zKRd)5e@p({DgKOD0Kc5}8{kC3& zhr120BKP)?kGEB0cI~}O9#)f3EEyJ~KX`1cDD1CDX8yt(QHeb21H~He;RnH!)2rZy zkCUelZo9{lOYa9>xXe3&HBPg{G12KuP1K|W%yX|}V&BBnGGYfM+L&I$L>JvS)-4{I zR1kYTcws*KCgFvuk)=wF?mcqXJuq94PzmZuzWdB)>b4N{#~_GKHwz`x1Vep#dV9#& zZhOB`vQ$|0ADbCM^tmI$OHph*ybucHa+8th{saeh%h@k>^vL;&`5+N#1!I*<>|C%X zve!}-p56CkpR!ildLPIu0v9=7pTwuubv*jZi_-ao4?cXg1IhI+x$n|+Yu(_y`L{ll zv{%e>YgU0UFd|mnm$CTxLc+rPJIghrro%PArk;bk?upzx-f)KKU#QMJ}0?rTed#p7>wTft2S-EGVrncm>B<_JEKf?0Jz>h8nkbZgC@i-uzYTP3ZjZvSvimN~*X#rmQoueM4p5fBBN# zG0C)awi!v7lM_nOc=8E?E@ixT4rT?^_{6r*!x{I*lF~ zmCbw)pDk=wwtf2(m9*KP#f5W?@)z{<@f#x^Mjat}aAu}B%o0gYRrZ6H9}zslK=SF1 zVPXE5R6o~tPf`q*PPlJ{R+m~fL$}?Ags0pKrtkk%KqE*ruBVM-6j zoU_TvG?5Fy8?@fi&Tns@ewQA=t`L#^(Nk+onBwb2XLBlVS}B}7v+F5}I1%dt>yytE zItFX!c9PgN{^?%0!KH1g<4@Y&VaJrJIC~Kx$WaL!d1)2p*si6KytJAw@9oTa$!VsP zCPkE@A^lG^zO_qGI(NL3AZJH)UrN@pBZT=+jV-r@%<4ZAL%%ZBkM7zgl^VPaI4%z! z)H>`Y8^qhJ^bA#7>jBXN;yoaCju1`qG5@s_sg2W6f_Cif-PXk%a+M&+@|3qbC|`Da z!b+lhb%|k&1g{25U-H}RaP-Iwg-W_SzTOSSpWy4v&V>KNJ>BxlSmd6S%%0HfA0?F#`Jm`Bze@uks(k9-|_9C`li436)IO-vc$u}`rLR^a_8rZ zQ2a;o_jpM$xC!phx>zDyUz@SdC=Yd#JUk4@A>Z5H3H8)*yh_|>hON6S<$IFqh@SH( zRP@sH;;^3)SV+2@n7pn(dP>D=Y_f8-X2LzLuV{PO(&-LhE+e01A^GFu0W&3SQ6^P8 z4zXQ$Zt?uu?nGG@)@KsA>^|4eBA&PvAwE7-iAki|ufFG6*9W;Cp6O6N()SU1JV+bW zZDm)!))y~H!fO>$X&!g=F8Cw+16R{Igf9+;|9~AAdmrd#{EcG99pde34k=PK51h_U}eVP0`Xm4 zHNnYlN~Wm)x98W^=ngW48HW2p-yJ&?Cg~B$JE<6II!Asc2PGek+T|y8yuwh7E=LtK z6pKQ43Z#@BvUUidWHKCzKJ0dXt)8#+JEvV3RKyZuT{xi3Z-pGlzFX)I$NF2CN6J)~ z#sFRf@5PIb;sj9X%F3HOU-IYWiRiU}p2h8A>?{8r?pslfJ8&1lo8T!$vvfG< z(KbCD0uyn={`32fA3y7fd1ii49ZtmV^W^P$U5};{Sb}vX%LDHzdAxs*4t9I}=Fj9r zFN+`CeQ-=yY}-!tSYUaelH225)R!+M#Vp_mFjUPJw|{(0QX?58OeBP>ztS#^L&8cp zT13j7Ccou$sv>NK+m@-O8!>V1fV8FMg@za#{SQ}8pHdo#fPj1hN?TxGia-kR9I~dE zgD6KDuD@-K7aj~fyqD1!frIG4wA6SeTbR7xxyM0Upd46wizKEYeX!CKoS3aJzpUT? zg}Us3noSgsysIchifUsdKIE@@NBPxS%9@^mfq23TX%l6If#YD`sEwwcj^yIvcO1mh zm2gl}WkYdiHUOw)4vQ-dSxoVpCuJxblZ!f;Zf3U}Zz<8YSe#;|fKC;=WP zMyq}nNXb#QYoDG(bwd>Johl1bh-sEUI6aT;=C0ES5{_#^kgB!vL}lrrNX^dN$hJE@>Kfx*KZ71~Tjje}FjNWn%-L0{DfSTgL_8d}kyZ4ujO3FD}r?G^Z0`I8= zp~!~!>3@EW8yMtt^j=x5AUTR4Q=d@_e2J!fYa5ng}73zL>a?y_4q=!im3F*ey29gyttYfl zyL@ZWfoc;C;>5pHnB6>&uwBE05QIke-7?ePt9M@cmzCXx&{^)n!U5&Nh-jxq4>SLO@}1{E={#>L4UxdXE`gaug`%1jmhe2=+-||L*Eo5%5=dLRyzqS ztBlXq`>R%d`Wv*2fA+ zA9L-bgJNZ4v?WL83b}&kW}MN;FE|)SBI}OJMTpIf^tVxPPdhuQc{J$x3m_sk13dW- zg*M)n0UHq{d8dP8^-O-QH!~}5eb|8Rt$#!7d~-eOG70md{!<&~e>JQrq|ia1o+4eJ zwtkhcZ1N;SC)7bd60qN_QQm{To^|HX^Rd6m<%PVTM-9I31RA}V(A{QMiOuEGqz{pK zz-|y_RMUGeS;fTWY$lA6luPkKJhW`)Ffi0e4Idj@4xG_LU{ZrUj-;L4b7(nXk*N!5 zQkxkqk6BN`{;CBg6)>XRoIV{{AvT{ZU+_K=n4hEWUH^0Pw(of_I7t8z&2Xxq=fYi_bj5mG_d&7JUZ_dn zbgAN7Q322)`nFD5NT(9$`&vRVgKfVxmI_anMzQCThK0pvw=v}{FohZ#vL=cbik{>B zQIMB+f3qW_ja#4);tN+6T1WnEMA?RI7)8+-^v0%3tgvw~ z6p1rC(ssc-Ieo+c{Ypk+%<9UW(x`~m>e7ZXA&hFtW8^;P7|lLj;5G`X3%_jx7_*39 zY>Uj)l5W6j$Efx%O}BmZ5>N}cYg6Fz;g zwCpWvbT^PNQGsp^I-USuU+zz_lrKJoxt<(`)8V4Rio7LG+g<4Dyh7^8@g>Rzo)a3D z3oRG_nE^Y-6sG=Jk0N-+{8sz_(_zzTr6EQcn&;THPZH`IBB$fm@S~Xh=0lQuhJq@7 z+vO~W<)k|}HpEwZUkv?Ag`HE;v%(j(m!dkOqp*#%LZVLW=7FBMc5;sUdUQ{=zPr z)ASS@L0 zftgvpG?VM8C}!U{Pubf%&tbCrWIm4%+l)BrzyCHBmyzi&n{glpO~Z?#pW%sA+<{s1G`acxA700N;W$ybL&ygaH+!lGZDYEQ%J$U5TcM%In>~WR<4GDi1@@)&g+s05NE*5$3hFf z6#tF)=ur>Ia9?^{GtACv-Lil18Ev$xzQ3dU`of%Yw_z&W>G0ZMrZ(iW3@|zCwNjp( zRD&o|A;(=`O`D92%%sQYW?VaeeeUKi(40Xf2lYv-_k#|S$==wj0hnJRT3uf%g4#jw z_3PVk`o-mL^X-|RL8GG_a7Uf1oh%!4geLSrsef28khu5hk@yHQmC=&VOvM((N)IO> z=PzRhZgqI6vu@Qcm%DcKt)EB&=Z{;dFcT&9w}ylU?sGpuWqwRFEXps7%(f`M4CiGK z%mCK%iy94=vil)Vij16`9M0IzX{W>6``sTiX}M|+9}y1zcVAWU&;MegHH1siJbg*` za>_O1*c@(8vC%b8<)?`yK}illl2W4r3j3LAMzD zO;Db$?#%dui^dLhA3|GTT+8E)eZzKZ^U-d!K)Bp%HQJu6AOXtL{-TyfZTVpN*v#*^N#4q*8m&-wd?~Gq-1Pg$EmLdq+{NzJ48( z=}^!_BXjHEU^t|g8L4F}<}0BS@kF-=D?^}rUGNsWGqh-e8Tz4j4p%btoewptXae(JwFS@y{T9j?Rf%EIUz91Z5# zc(?;wOAQ`Nd6;pW=a}Hl;oiC5{5fFsBMrCKwU%Vs(SH@$nNPSS=W4;Lx73ZBsW$C#Ly$I~^35zuvf zbv_DldZM5(0?=GaZ4Yy)3|vs53i-%+@iH+bL(W=%1>#TRAygPBVIwV6*l;mxU80e@ zpE7|Wt`}_4h#CGK7spqb*{h5O@sRBYZp4u}8>gLmV~`rB|2Cbdzo1y@<)UF_^*}$v zp{M=nhb=GT;P9C;Ww{-YWTh^0Vi@_jR_w<_(6O8ixNvGQ(f<%@Z=Q7-YOY0Ad3< zN=wbuw>Rn|SCrO6AHd+743q2*kJB`I`BhKres#C2G@%9xWxD2R-6wJ1Trh8(PS}ht(R zSA_N9s@`)(a`|*0E~A0%*G1zw3Vvj)=>otN0Y2fkx)Z3RbYQf%KG*mPunk>`xgesT zEHh#jp@~}Qb>6)-^tbv8LYs){8Tpjf`tp<;RsgXwFEc10QseZZh?;@H4+e-U>h-X_ z2C5t!QfpYacKmaj{eathv7lM{++I`7W@Q-94|6Bh;^v2HFbH%?40;8!&3X6$D9rYD zN8ppoF-ba*xTEP6f@=TrQ#8*f4w@CU=g7F4JVKzL#=r8qza8i2FVhe?H0oZ(G?UKeQOlXmmxAYu_J&7c zD0di!P}SWihz(}#{&O->QI!f|u>_zVYmF{0-D3zPA$S$ZMs~k12J3OcXTjKdd?j}n zt2q=VE=S++EM_EwoB0Ec!iQbC!0RPz9?nISU$^?d`<{NIadTjvv2QNJ+L|+8WYgViGBI z8BEB_2^EZGCQyN+8K4Caa4Qb>B$J8Zuiw+)J}rof5s%81YGxG}J&(tfd9A|d+UwPuzNJvQUYNd#d zft3i#^LUnpr&0bjc966CZwSf#;;%9fr*XnhiF=50(KwGX+J|RRvlmB?acpyicm8X0I`B8(R)ID*>;nxhW(pwl*VlWXcf_srgGo57E1cmS%OU!B~~_#xwwp`rxQoae_Agw zf#argn9WvrwYXRetQ>&lGxT!?<@$CE0PM6KmGj%mNz2^EJcI-u45|zx&pMf8Q{6Ve_;Ti3OD&z zGzedVzXlCb&~+wCxzA{xeUaLkO ztErpDa!s{*j}`&W@qq_#MdrbG7s_*FZMWaoE_!f}`KNJH(97eZGdzbuUDu1N@n|MP zuljmCi7dRh)}VPa<*sd&{bx3Ib|6B$71Hi^;*_~^U7uZ8{`m1DS1}*eix#aW&69!A z*T0H+aeKQjCkn*TotR?<+OqokNFP2dsHmzfYSz8HdwwFy6sJ)8rXcZ|TaZ%DLPB6h z?(bYiO+OFO0ZC4z9icyuaO{Ke`=33H>%|&rQK_&%3pK)AYJHgV9O*AQmpISrbHvva8iiWYMu%PwwLzzC*rjFpJeED#xtNUQ=+ z5COhcBenM07BfBT*zfZ>Rn*nfeiM&3IXlH&zaN+TEqirxxgN>`}CY#&&F2b$19bzA_3F7u9*AOy_lc4tE=Wj=dBzOPX z*L8gq`f8*=@DckDarpp-o|>#*7F*RD?H)}q9tP#!*9^L{uhn%_^S1^C?*$YY2pFXwn+J{c%=eHjG@bazzK zPawkK8M{Q`=>9U{lseO8aM+zq6FxNjp;2>Q|Rxib_FrRkCcrhRw$1n*2P~3^qYYH*X_|ct-2E!*+cfSC)Rh0i!hj49Bpy{TG z6Ei7Tua&-L$kXHdu=+casfs(#%p_sc=l}>7BF&%ndds|1BgQbAb7NucW1@oI7bV{=?HY!%ufgNj?Vo z<=p6#^h(reBI`0`P66{C!VHYY{2r^Q;cYwjNMRqnx5rG=AR_otF!B&Hg%{;5P1MrH zM(oN0@QC4HfhwK>1Y_#ARGfbswqN;NSb+oQbTShN*ZOd+Jr0em`%TO@!bb-_pacL+ zV8|nC_{cyzr3kS_&|15(`_!y*0Xpk-!5E9974t|Xi0Huo!=r$AGyRAl?)BeE($n)T z6m-&aOa$2M#>=Q704K!vp+I6!e}ZV~m0L3S%OEUSrz?UV98}+8g|>N_TYEGz4HP5c zP=g&HDMXowiHpOqhvK_Z{}u7_G!_;XguOpBo~~ws#91Vt4Q}gkbZnvkN<&>XEt&hg zntkt(dHR-l>ZS{9W4h-T`53uUE^9{ zI?K5dsNJB;O)!v>1OJ4NQK;<+ZGa$78X77>} z@@OIw-o`cWtztXSjJWl(n@^6D?48Kcj*VrClKT ztwzFrLL}qj2&P)Z0!6q;AqTCT*;~F8Aq&m=(16!pgzteq7q!=$&p=G`{=cpML4m=p z(!QBj4!H_BFLphy9x85CxNq9i>RkxkMHY4sQ~htnQXtxCiFmeV4 zx?RGcscC@ef_m1nlTJLsny(|ltuq;mjLdQ}5vK1;9ek%3mU`>CY6SzM2}XK)p`oFi z)Dn)i7nMU({Pvro+tW29P#p0%SV&);b8f&a83E+ZY#6`7NniDXO9SQMp!16z2pQ%u z8OBjoCV*Ip4uJBrWmeeQl^d<}NJB3)Utu9^@zP<34Hn$X3$3q*heMolL_$t|PUcb$ z)Q%>nrr4Yg2tjO+%-`GH?FIRthifUlh%lV$ORoP4%R9Bok8R*sT{CW)`*{)o6`RFu zU1yy3z%o=Z2zHwsK6qxw5xHMJ=$TyJvOF;!KID4y_9>j{T@H82LQL+zvNH|@2PnWm zqYt7-sv^U}ek-giJ@e)7?=x1L39^|*mB1@Y{pv5B?YH##o+PAHy40FC5Ba8K{LKCE z>v4wKbH>nf+hmphHd@};lY-97lZ(Ehqzg8dn z?JoD%C@-%b-oAbk&OD{dap5YB>j}JB(R~=7!V0756yiC}#^%@7Izj1MJ@k9~<<<-U}JRXhI_*Z;~hV(fP$Yb6sxsr4H%8_V!)~ zvDpsQsnvGF-JC+|TkADXRo>@(Cqu2BaUoo}b)1q)dCIunYL^p4#&1<>$-?-xYIWpv{wYe|L@wVb7?Mhee*c!bhkn;+D@il_dS=gh#TRx_O4a5wbX zM&#Cr=m;@}W8SXYW5-t^jz~g+GNr!EIZU0Yzc=9-!_iWz*U1Jj|6ouly!98n-0wUH z5kA!1v83Y4B<$ZGBIU+S!S_w!SQYaMg^;Z~9M;h;bxtIe{$ zA4UQ~(+|}-7G0qmJo8lK`~bJP6xO>0Y@awETmg$2lkkkr-n z{`C|pmc?IgdDwK_9)6X7r{ejHFhxH-U+MD-J)6`L#4?^VLB2Tot2aK7 zgb>Z7`HhUvc^Kx!4DWNh0Jje-PmIt>jMq$qn&rX%4kq`*&KC3jtZwn*P~xwmswoaV z2~c}f@I5tZs?jjXsk5ge>=$j?M6A>0DJw$k81n#Aa2Gnm^P`~vW|ui_rIPZbhW}b@=`nGNk6|yIn@ny zswE5LYE{>5^WLZS)(^IEWjiCd6@kMd#NB;`Ua1cUMqh);q|nKTWQ(e+s{{Jpzd6D! z%p^;`Ia@jy0*#GbE&db-K#w0$aOWo&hIbnUkYM|;IaV;>i{@fw!tT>~ zhwOJKLLkbokZ#a(T3>Ou`D|0;>n9DX<=T|Q4it^Q~?!Wr&_-kWAV;AVyqE@m&tW$N+Y0PXPfB<5YMk zM)H&H2UO@l!c@xdJ~+LkWRw=(oy}0GvBA;dc+=n42f>BJ6{Z!mEG$%=Jjv2FKU7Kr z!I6saD_>buCS?{Zf2u{1+*b2QI5e*P@D>%9mP&D{F2HH`T@ejpxNvoFi9^B~yyWwQ zu#moS?H_h$x6!(j0<&?>U(@$126 zjor~34BH#yMUO$r+;vD#!1%4ZBh9>EG^Ny{mmd%Uf9`z7I5TQ%Cn+>+Y?>|>NgM?O(chF zGWLT2sGbQX6R_*pKO9602ncv#9vn6vnOYLtR+}uJEpIL&t=ZP#c0mWYEy24F*Z}@( zxB15l)cO1K&3AQmb*&suQa{F*0$__Gh>}06RF+fqd-OvDdhz|US;HC)!SUv((+?Y} z@W%+n)D|EVmzQShU5u4~)JVup&A(OET%TGXnJSuw+0$gw7gymM%g=l}C=@TMM3=^5 z=_(j5VD`YlJ)|E5PHoBZoCmlWsm(xJ4jAf09;Yu4J3})h$C;v^YbRN}73i<~Y$WaR zVu(73&c0-n8C$qWRs1?OPr9MDKNcjLm_8}le%(Nf^uIzX>ZJP)dxnePqCzV!G72AgjI`-CS2E9jnpocC63Nd`pB0BSW zyu2FX;^Gh)6qB0T384ZsBcr0+AI#0;%?ax$kV#$^4=m>$|FdiD>st?$m5~w58CjZ- zsBf9yDm9tV2pDZzk4>=Q6fd72loyrnqIy2`*)w> z`ExeqpnuGiab6i1LeyP*M?KRcnjr3pW1gd+rp{{G-3W$32!y)pH90n(AODpoP*X&F z>3;bf3<ybdWCR-VK7ZGKEDmgIA&FwKmoWrV;3a^^) zUCXV~V3EJ)3(KpaHyyqq#AnGSKcn(#|6aI@C1_>HF=$`ke;i|b&l_L+gkwi!k}`m2 zJ0@_n=zClL#LJi8*S7|Kixmv%{WoBEA{T)SZYs?7%VGzcHJNhufcx9H;^hTduk#5e zJ~cCB*ot5QW@)JVqsdq?DrT4(iNb(fb~)G(h%T7pr8fDU2+~euzT=B4n@VjafDhegFLmo;cIs zk|m7hCE@-Nk&t=!D_e5`gdPZR*=5)I(Ym|oqnTzr!HqJhFJ#nV*~pkK75@eFL|-|#n8%84aA3s= zu(@_H{7XP|#X%M*(zVhdv}3y3n(*Pnab8lFYp;+dF{1j-t*(!=%k#}RP|`f}xaNL3 zweH!XKa#C^TO0w}s11fC0CId?8yF$#Rg#Eo6;rpTTI|xlyRE_kCETg#$7i*ukroEk|>vl7?F^I;tHf%$98q}v>oMW z&xECx^%gT)S=g)EdUM{4efCHXs5r-#(0ophZ}6*!w0L|rM{-NPOMk z?A9NM68NS?i%jxc^P|vaN`<>zd&?<*rjP;f6l}Xj_O3upJcz)dJ2QI?bUDSYXCl{E z4y2*PzYXV`lEJ)<1uqbIg@MyTtL=V-2P9)vKRs`6ZQCd1jrr^MpCP_v%g+D1*E<>Vng_v_w1cdZJ*E#{EW^13+ZU3F(!G9c6 z$ifV2F59yMeiD+>WB#2<`v`;HF__N?5p#YAy^|p1Am5S0C1T6u($YGkeWVP%DToXo z*&hCAM<`1V`RO$kzA}v#BiHVBThW81RseGL$@odBo5~2og zwR%J$|5kcqOU%|}?uVwx>D=dS^3|J?%a_09XRF3;3}-#dl89UVv!htUw)j*rEQIKW zeM{-mTZ$$}CW!~2lhAYhsjcDyR!1FEbwRX?uEz ziTdZ^xcn2GT)A1}V(kW^x31sO)g_;e<_%v!gbGl;4aI-G`XFM8e-+u)jdo&HHF7W{ z+6t;0!@_e*Sy=~QTlRu16NEl;U><2M-z{oXl1mpt0i50!lc}qVlN$FcVg%Tv>kTh= zyB=@k0Ay`xWo5r-{1XJE0K$yR#K+00CF`g7H1e}LWR<`~CrQ5jK`d+`KI@0!W%m89 zh67)}n4ngH-V3ty!~lPQ_JbN?i?RT{f6K=JXvD&ra`Np)?c@;VJf5Hap0k6m8gRi8 zOPzyY5V*BHOpu)niE3M~|DrF{I%2l+y(CaA)n}Zkt?2CTelp&fSkJuVo*Ocz2#PAh zE63TNC&*k}ac?m42SXrLXt>VFTk7|LZp%*(x7KYO*u6?%zW8eMRw2Ib=g3R6V;FPsDma!EYcIj7`>2nW8&_@5voSvK@X}oHI z-1<^RuIpB75^npzK|>=Zr9;ZWbZi=#OP`0G;hhr`M4n&QjaU2PTX!1=(=Lh!O~%)* zE~|Yg16VV!g-zqcGUZJqKer6ObnYZZ;s)FnPke!Xo8)bgS*I$5ja3#_3YZRGeP=FC zQ6`rPezSw+4Ih8eVyN0+TF-8`&eD*4j1kAIy_#U6ZF{=6V7HRMVbTIl7}auP8oo?nlw z9jFiuHa&R;y)S^*3hU`0BXtW1mdU=k+3y@IDPeVvfHaK2pFbayk=5Fj!lAgPXDN1w2oifOnT_ep%FOOKM&Liq29rF<=Ol|+$>Z~oGq-fy)+TRJC4 z(EA$|HIeY@@bIveo!#PScNEmZ-f;XKjxRQvj2Dt3Tpa&hI^iyZ%|2+qPGSafMmAsw z{M7%Uj4={whKR>DO<1^ z_N_rAF{Lco!uq<(<)vD&e)mTnJL7o0+rY7i*z7FFcw!;iZt>p?r`A2jJxYbr;mzdx z+Xe(ej4PUpd2+wml|}4fH3WMzGazS?T&6XHFk>CTQ>uUD)VXJaK7 zJe~4Yr5Hw*RMrAxXHH>`Ci8&kfm84WMUV;#%0G+ib2X+4Q~Ok#mG6l!t?y`SYrn9V z{P^g%n~13?17EGf(ro=J$b0UI-r=b-u22JTXbWV<85BR3SNKiBYj<~daR(`Okm^3w5{U2^_3UvD`O(<625#@di5`zULeIt zB$&_Wyce0Pv31J+Yvth3J@%U4`5(IX13;F^uemng^8_%-XNtWk%U~&|HCyij>i0|^ z<_!ZvIHXq%Bx3({0Fn&0$i<)jR$iJ|G3}oSz=gUCbjz0CoJ&+ebU_*zY*GAH_rMT# z9m)OV`|wNrBF$V#0*m2cwEpz0<7CdwUnb6JvaH6|gZ2r3a(2@FH5F}$c7XY{fFz8? z$Oa5w zls82xn@XJx$6hcx(Qq)>tsh}yHy1Tt#Ws6BfCf}|Y3KgT)inP&$#lUK3Qk`(kpS90H@jAM#rS|=IASlbe+?OFl+f|hnCyN z%YEJCmEaKS=NkB^{ZE72#>ji)sTwd{$8r*)-~aMu7}PPh_&p5^5!3HM)zv=e2Cb9| z6ZVv`e+l}kAFWC>?l&HS+jC>`i{dK`Hfk>u>OBD~@3yw`=TnE$7Pfzs?J1|Fk?fhSu@9beKB-)JQ*K|A>AA3?f^`|Q|R^);#{+!D*m8NXm+)vVyn`6Y->}Q=qK&3 z`^V!FWyLk2#O609*vkN+&Se2aS~03?F7tq)nhy~~4@y>J$DEKK6JXt=HuXg_wO=jM zPp2!j+i-?#w}_nha)Ofb@>HNZ5>?*P@f+RA-<9aviiBTB@Bfdavka=TYojpT3J6Gw zba!`mmvl*o(n_~1@rRBx%sHIr?0v^t*V<^w2D=)y(nUZ` zpH3OhoSEx@M}=wt@K^|N=5{YN;n~|G0yYFHFfF`}V0IKNc1*W$Q>i`{(-}{L@ z4tS9r?=QRfYB(vyUg0K4J|M&bECK+2>vbJfY1(3r_XiUru{(lECl__vJF&ke^`dR& z1%wlSP2seb$qU6QRL+6>^hi_nWe!ADXNv6je$2tFMp&0!zE4~(T+gGm-yXzW-`J?) zGmw)5th>w{m%V;iJ9bymA_e39@<2YWhS2vlM{<^{bo4_OE0uIjsanbfVkp~S7A6>S zb?MRv{a=@PR!i&?TaB`(VgL)uVIXw%EwUcwUR_#T1Z!C41?R(Gsyn5R&krrYVjZ=+ zJ4+D7&dEtiO^xgQVyyKO_*=DWXzXuK-wF_@N7=kdK>70aq`Ex2G?RX6Kxd*dpPapa zPI-7C63GT}wl~he(ZOKdblKtaze6;kXnV%txE@K;Gg@ku(scLW*tP&QJJ_1m zYylewUDB(ku9=L4Bn6Z~uK`(e6~?&7$67nJiwzT*@5mbqL7)LLHpABblnw!3eFgw? zgF*JkWG4hL8UX1`J>%nk!|4mTMX%vZz@81jT9!IrD$kyI=1iX3g95~Vsav0(Q3GNd zfq~~0G8n?=3j1r9IhC<&_@m}Soc4SaeBDWbat*BZ@Ny*02`RoZ1rz*5f)fte40y3s zZTRj8f}*)*Mn0~O9fj>)Y41DZ2p^g0Rg|-pdOKEqQfrkIH@$O>hzp1-hsjK4-;I=_Od?V4;;PPW}Yl_6*d24^)>b9OOqMV|oRH)9n z&u%3i*ZrnYV+q;%ARJu)9sNufkx8_O>d!s(f7`!z0lq%!&sN#rla(usxNA?if&u(! zoB=H378@Lc81(*uvK#qT;Q*4r_GYu70g3=Db;GLodjJ}c8w_w(JULT86>)$PPzaB+ z)OtP>tddhXo-~^uoxw`PV!m|DVz%0n6NK`T^YFaY(ZL5}uz^8b3_Cj}2J>cn!N`HA zBeWRVxQn}1@7ZAZ9AeZ$2hQPu)`V8gFU2Ngf9OXMZEzy4vHAHK1(l$X@^HcG08+>} zg}=WHeq=X7&_mBZj^sx?Cc9N0Zy*jU3JbDWTSjHgKb2+)TALNbJcm322L^M$h6dcR zu?lb>0djl$@^U01Mm{9VTSA^6iHV7YUxrfH?{-$a&*)DEZdMe*-^|ByrS*VaH1G;s z0G1$a8cbt_il(xar~vFyQSiyP&EH+Q#!CFv^LDXQ2KwN85bF)G3Z%L)a01)UPeKfO zf7>EIz*BwdPX)TL6aZCb^?FQPY<}{&*l|wH##K>+A~G@-h65GxYhR8*5pDwN^E5&4 z1mH2>9=v<+1609X0O=w5$peg0gmq8nYZmem0u|CT%8(tLor#%F>4t~3%Jc;6>4%cM zMAu)Sl64ho?!W$4Z;{V`$RwLLButUppc%R1qRGdb{jMGcxgi$iU&VWL@6kGl+x>WL z+!NW+)&>cZ?76mwp3=3dyfzNX1oO2%C~~Az-$pVD@T3K-G|Tqp=u8%WO68!(L&L`I z$&mMcouCY+-LZe*(O^ zLgil8B)h{2yIzy+BzBiUTM3LvtcF6U&(9AUKo->n^3yto8J>QCX(kYK`hz@Q)%EXJBf`Wn}9sbD_ zq{8=uXo~`uv-Qi5Oc1E3sK?7q1Ah`|$M&j=b#8zzMIFF~QUwqo0KqrNmTFf;X8^em zZWbI}iUN0U85y0`i<5%t>L>vOR!l--y77J6_S`$Ix^+h6T} z<*=PgAr>75?{9akiI?4a%4FbY$=-FL8cqLC>Hv_Nj?Hk`Hb0L9ZZ-fh5f4Bz1*WBz zWKLT|ASPg@#{%jWaLkkF{b@*aJtqtAj&KJd#(m?a13+|?W@(_QiDTU3)f%$V1Hy&V zsXtu%c5rG{T=5P4LlG_QP4#>BPH+4@@sf#qW=pO3#=SuR{a^Kh(_WgZc2VNpQJpwo zKr>GM*7A1_dQ+gbrvd{HdjSloc4zD2`5tGm08$XMS7G3Ng>^7p0s@kE{Os`};FK{z z#c19UnBLjdWiI7P^Hugu=&r{jN4Yl3}!eJJ=mKfo9qpw2je_8~{55SQEG z9hmi*4ySd6C;d&6N$4+MPaK<_*9J;M#@CddFh(zcrMB|8T|1?lxa3d0)2*>W2H6;E z9S=a(1-PGFT(em!g*7=HfzImbZkk}OGFnC4=5;lv$i z(kNxpsqkL3>JJjZhhioiF$TS`)$hglfC6ehA}8_%hVrI_985k5=xW%kbt8bgesygP zNyx4~kknaU@RR&^f|aV!8swJE%VgH%&>c|0yIt=JYigELI{^Pegny8Y-L){yao51c zVa7v<#Q&$CFD!Y7B$g_y2UH3^K0byioG1QaVYIB?cL6|-0#I8Zs9qkQ^BgEdR4RswrL&4)qTJd^HIB94qy8C9LAa&mEJPzdl%@pu-UD?s`G1SerewzTO3> zqk@8h@W0O2baxeD(nJUWp~~qw3pf~oI13>39QbakE|!`-Gl7=_$ZjP6(?QUK7K<9F z&CG_=PUN=C0ZCXz1xY}_l~t&nM3wulRfT1hypnuuwKHSD(y6GdXI@3&XrHkDN2lYx zFS|A!NFQ-_C@_ABfi zAz(vTIp4Ab85_U~VYJdbRjgAN0p{GNeVrk}*}+Xs{NVI27~wrJN%2xBQO7_>7k;?z z?t=uGe(PbV@_U=b#VmxzOuIn(&JSvp7@LR3JK6eg2asTkW;9bOibBXnCfml3jEvmf z_#%)gmnNmD36qg=48k0Kf{YdnJkkx3U^X+CPtQ5~moLfyW6EmV-oEZg$78$PGFhs} z>knyLEU^mYvfzfNMt(mya(N5ldBB04u-Clk0O<3tR-7c}6Y%_kT`Xh1T-Ns^?JtYv zzQBGCI6+vty1KIf`YRe34hE#YAlAkK_^j^3pWnkyn?b6M-A2xIS?WGl6&lC%@s8+Q7nZo^LoI))N+6Chq6EiVBFR3^R`6_xq!NX|9 zxrblf+WKM0U@81M=#-L5LTj6$#&iESIKd}K%EA%|V7KSb@EhZ}r;I8E3LkjBANB%? zAmC=0zh-aqH6;A_!3!FZI?%C>7Q0@^y>aoO*Lg)ob}9pq+qp9Or$d# z2d?fVFAHS?$uGE0L&5V5Vs+TOcqn>9^W{@OFYa>71U7@iSrdD9cI7!qVJK~Jw`QEg_o}Hx1X|VIBXD#loKJsI6FHd9_xoDkaVqCht-XW#H_0? zE-j@S3j32mu9s@;JlGSXt!w%YSE*}!-kwEqHX9Z&KXDFnSnuQp%-GcY=s+Tb%l)NP z&`PYHoMaxRm6b8NUms>kM%8{~o8B3LhM-ceB!ig9mp5(myOT?10Rep<%U$~3Z8K`N z9`P>I=~u=BK?k#8tENN*UT3KuZAdUy@19{R*&A?t`JrWTq?O!IJEwqU4>@xR-5zW5AG@16r86U2Db<0qa8@T6OUROj6uS|Cvso zH-aVjX+4RsWOz(9@4F*-!5l4xU3O)lM(g6ei@TuIya!Z{vu;mhNqJpeo^9r`m}JX8 zYQsyP4}vyy;Orowqk}S7*-8Ez`f%fU`*1Qv9l0>82_$wtxe<&tJWt%B>qXq6c6L;6 z@V}dl5E}onw6*DfM@XFW{dg~uIBEchHOb7e*>!jL#os7m?#=*aO($pbpp!IYX{ zXkJdomw+^W4XoRs{KJ9H&L0DbH)GY7O-?;A=zxzXSIe4-ju#Pmq5nC}%`iYeU*z?0 z?2kyi)@{T{HA#b>q&5!Cd(;!v@6JJx{GK68#@2p|{zXY!C^As-Y>am2Jl5*dK&ADJ z!g!qQT!SMeL;_8deT8FrjOsMIzC*!(^0?a*l29tAvDsZuOSL{4)jyYIJ5aVgIR$|# zmbzRs2XXG3TEJKEbwTBLu|YK8eCyVDnyys0p&gu-w|fQXlYc&8NJ{diaFj?+1<}&eG36mLn$pLtk$!Gt3HPmJFzTelGd6R zk zpQ@`vB8Ci-AO!ci;8^v9u_{;pwhC1t7G=P;P#OE7w_~h)p)E9d`w%*%OboP3z zV63g322$G5q8TQhZ&nFeaB4H9Uw0ShSd%HFMq zfqo3w`W4IcJ1WY{O;4JiENiDqzv7qb{R`ADlgt?dDLA1jg=7rM1Hpo*M2R8wvmmfF zY&I!OGc`mr*;nK(9C`*UeuQi0yg{g6F`su2_!5SXgIwfA7;F%IfLIF zjqrVIv*!z06WLq0KE%ja<@QgCXMAwW@9F_%Z3^HI-vD+_P7bMpg2L_HT}*Ve5UA6V zIBk*Mzu!X+1q-+Asr~U!IT}SZY5(32hKVJbSgpT%_c8RJCr*NFqcRaYj+j1-*xC-Z zgoO(Ub3QC{ufbEGIJ)eUV|)mtn0CA{=CbhzbxbX;LhRbw?@ssj91tv`B;52Og?eMS z0CzKz(J>2#=o{S;1sW&ITwGj+U`Fiq$n}!S<%`Yu$nEBYK}cxRm-04ZvT8*Zu~%TY z=k{ucda8C=VaU>joR0c+!$Ev@g8mU-Jfa;g6tjG={!|Avl&Oh~9bES3nECnCs(<<2 zufvhH2AIDe8hYIq3W9*DwmEKm(9%+{u%wWPTRH5G!T~KGF#E%Kza&y&I-Ku}_=kib z0$2|)lYv<v;oPDio9-P_)K%1StZT1RDT*fm|#S&_#C*9J~dr6}c3? z0081Lw6qM7$oYJ-%pd-d^KF0#$miI?q){W9x*pL-?cp51|Kzgoom%{RLbfWSEV#$H zESn5U7|rGO6cGrTz=jy950ji$olevj%GGi#8?rz#(+u=Mg|$~B`%@roHMmbTfBj%b zQOFPt{w?A9vp+m$$z(jzvD^HoG3A2#jCZAQy6IwvbP;fTK5{;f!z4rfdrH*e;4x^p z(fvt6@cnT1VB5O}kt0qZ#5sQZZWo8$eWd41 zH%;fz#BklCD{G2SwLdR*fYK8Hcf3O@kel-QDU}scs5ES*w|1b@>VO@nBt@6HE zIb7z8_#2Qzy|xVpA|jixami6H0z=~sJr-h0Ps2_O0w~mZ3?$v|kP_sw!d-{|Z)&f?=j9V6)MHKat`>P6rm^T0X|2h=!!G|G}Jp$S)KE2;o(6am8B zT?YUXB}GI?I5^acbvQF+6R%ZTyxs(&;s^fIfdu_`M5>M#XzF}ZbqFH~my+@!QI$%< z`Asimp`5kE=R;mXxoVAZ8@{Y3@mLZ`MrCAqzc2&X05*J3d;?L9HobATocUO`_v;29 zI4y{6n;UQM?z={H>jchXo074>aB2huP@t0_RPabFM6(!3t ze_~w6u+W+=obI8xN!c+uFzAYgn-Wzeh^ z>c|MS!SzieM1d)B(Su9?mz{szekj9@Zt-I0v&+&cX@4UOobXj!izu=y!Ph_ddK+Nz z-Up2BfU$xIHc7SyKd4nDSS^$kAw)#lLEJne_>{6i;Ol4>Imj|nxY+Q%@WOP~|IO4Z z7lDhfV*ibk^M|3av4UZE;g}}_J&?m1#`aJuCbdd5$T~mY z$qZ|-???sMuH;HnS+b&!fX!TQKLJ1>bilw2(hVX%dLPO*IFNILMP^qRw!+K-8$Wpc zb`CNt9H$rVZ9nPV!OQ6A?hgG)kFSy|)rPVV863W|%8p(#xGg9+Gu*GxXwvB|9t=ls z^9LS;CuP{k1kZpUOc)_C0D`s}z8%<%+pDUo0vX~6V~aw2d%GW~CRl8bbwLPA$1ScS zE`NEOd&CH%+G@8dcZ@yMHcgC?D~ih|TmHC=oSJI6Av+L`_w9Q>OMiRB=#JVsX~DL8 zdEUd^qidxqcHRy2vkLg8D^L*z8to8p%ba#Z6I(_WeodW*fp6JdY)IE?&Y&E@;J)d- zoQmA>e#j#^Lqr!(qc^tH6v%s6v_4)u>*!(hwW!MOhCX?S!Fa=!+%s06T~P*Jydy9> z<;&yy1LbpP$c0*oHX&*sfKduxr}mJXcuig=xc?KaYT=y{+;?ipw+}bY zvRL8>Vd$sViEH>IIi6Vb`DK?N;+adR&PMdLG2Wn*`(>e=Q{OdFpqR}1pr{UBTN1NB zkd0VWa!hF(r;eSSl1T;1AUc;3ejY@9s`u={*U*?@>#5q#^u}ScAo~1y*^*}Tqo7wL zm|}o=Pm0r^pwdu?yII-#m%PN#PD+W%4Xb_Gt59xLy;UTH;MMsWN{g-O&eUzmk%!~n zup|pnOZ7QS*@0sG{XP2wWj;>*+!)&D61{JbXY@Tcb!EaHSlbNIbj$qm%aI|8ok#zz zS)V^FPu05OD`WPh)*eHpB9tJufDrY7>c^Ss481ub1L#pjM_9g~BoygG2D6P`njl=9{-ZdPD zIRs3OVmJ--qD^Q&Vs76e`2U&)sC7fy6^Bz8M}XThD-386AUOSDKUZ%O~dz^+!- zDZDJ-bH?${`Qti>QjnJLP)bUPyHNuU*|R$|lUs_vMi)fkDgmm2JtiYIvQvKuHMRfD zI!;DuR)sH3jPD{e4HBduZ}enzQQ(YoHw{Ob)fF3~X z`wn(IBMiw8Fr~0ZEvkV|4#YgWKJ!I`hZq2(I>5+|^+TrDbi1+!I}>l~*p5 ziynyU=@mf5K!`vu=fI9>!PAj*VuPH|K=_60_(p1`NUm+C=uUyy*uz6QU;!aZ+I;+#Zr(JQM(On&Ur}?5 z1Fa}R{Ls2|I&$5{0a2-OgOMbC!jy=!Uiu4L-|z_( zRiTq5I`pzoj-UR-=ct#^U^1lrt(~0lqY6#qzVV@Q6=0L09Gp@tRPPV07lTG09=hO!rf~chMiZ}k z+d8S+%)EAR5|vm63=&sUoSQUYa+(w=I=|=6qbo1u!otL$4a!m3rdW>FO1zkKMKe)&oO=Lr zM=CAB6HyZrg1V1l>-dQueoSgi$k#ybn&w+jJT;L)vpkeSem@$Z zZJZ8LQd5~d?`LmtkFdMqutQ*WmquyjDx@xj^N_px$3qT>ZI8DGMsbXswuwTMc16Yp z2FC{ID$yKnj!1FO450n&Zw^PZQh{QUMz-jCDo0+1(edow!XeLdINT6lGH(gx^j?9= z2n!N7X20d?vm@@-63X83si60Btl7|Ca%QihC#mdL#flrbON{c5V`v`XV|MsC0p{w#$;eSx*d5t0VmpsijEB=qd$(A0^&DeKCBK6ZK4~yMfuPcDWb1g=fUD97LrJjW5Glg8 zb7o%Et)~OjRuiz~!K6ME1_|8u-@gMS*FR9D<2v7XfMS+MlwB!(SZJa231MbOOnWKr z_6EISuWY^3_Y>%H0{|eX^2;3(5;lVzSfPXUk!jmu@??v9#5VMM(!`b(Yuys3H7`Sy z(mlq<>#31_EjohH;=`h=2?SC@4MKNVFxizyzH=RMb7XWLY#=WbQpWiO~Vp^_UW zFZLToD-=W`tG)8D8CW%%rqNH*nBu_F7JK^Yh;xJ1y^6`=Y;+|S>qMH>3B~ODx_V!8 zK&M%r0(6%YdQ~AIu_WS1EFLa`V1kyKfbyo4`J!MNpwocb zIX$KQ!R)2k6J%p2zt@AC`1MqNvn=k#YyS8EnAxZ|M*QPP23b-0qV%6C5qm-|M$TqT zm@-Ym!N+afZuCU)r8i5!N2O?!jcYtt%M zO2Mq`9}xi_9fAmnp0f?-(Y;t?rJdm;pVU<3_wOx(Xgj+pfbg$p?m?y+>A|)=hkA!tBaC3=>zZ5Bvd$+r$+%WS;4_nFv6>#T>>18D4B#5zT zEzVs%rbP&nLNPgZKlhjPL_SD~@Mnde&hai`dm%jA47o>j?5-?l8ZyMzC;L~!(dVNm zHG00PMMsXr`&nV~p{KQl5vnn~W=-n{`H1ls1UWmQ96PC;@?fIHjN)UTB`zkV^08Pj%B%>$&7pwm`$l^tt^6tV8<~ z857!lyoZ1~$>oj(fr)19;g(OFBJLHUtx-k_$`xWz;GdrMsvY!@izwx`-aR=g<62@Oc+J}8jMOrNk9p_Bb z>7?iCKi@EWAEbkPG&B!M=L4p^4tO0*LI%?`n>iI5cocDNQ! zBpWvE5aoCLuW8?#nyN?J#SyUh3$~odryQu@z76`A#N@?CDj{cde|blz#}fzl#wvgQ zCg7j;`lWj85yP1{FbSOUcmuX#PeH0+t$S1ku+jSchUYDu`-P5b5d6D}YCIo1;gEMP zDyQTfI`^-FFUs!mGTdWhXTPU-($dED5wFi80@#|qgrDthA>pp5I)Ch0-zpMetm@E5 z7ug6^Kdk@Vww0jvZ(M1xY7oq&gE4F+L3I z`n&9M4_cOk`>TbdG(EelDhPP z>RtoA!tOR7ssW{PE;tE!HAYp^%lvGLQZ3hx!3Et+$lPb~tx;fdnVcMEQj#Wkl-~#y zs<>9MQ8W~uWgxwZM9Hqzq0Zb`v)RpvdRykcu*IUkV7)8oAE^jyX8WCzu39iW0j3;4 zU)L2)>&v8z80G=e2xZW| zbAWQ0=~u#nA%n#FahlK<6E+|r0SSB-lh$n7Y%E1i32UYfux8ucWjFrVzpw`((ESyH z0+Q3tU5y(q2RY(aKAlCxytTce{x#Y|L;|87gL}~fG>D-Jw=>uc3lIvVYrY&VIDbe8 z!6kRlbT|lrC7~!&JI{(1#UZrWJFx6EfeO%-r{1)Bd`RE;o}`m%SP)7o^0nL+z9N9G@2B5S3CKsG(NwAv@Cm?sLN@=ON;!2p?RDZmv%RyHT7 zSOFE02g?sd&O}1|0Tg#EZkKAHS{eHL?E(OaNJ-w4Y`_vWN2BABDvjwyRh2-}s=Ckz zVPTj_7YxH-(4H;R6UgJ>oOw+4*91VU1gR6pAmHjSYv_~`eQ@-Qk=CWsGs z*CHd;K`+2FaP}Ux4$B6q);{Io%?lhzDXZR@}EC!%w27BZ_$q^33JbgnOT`jVe)G* z4E{PXzc1C6-TIRN;d0s<@z=(vA zE{Y#<3>?;G-*zq#!T`)KXcZPyyfqAY=xz8C){YoOZJBEG;=?AX{!kV)ff}KC@$a`N zK39j;*ntGk8O$F&cmv7F!D?5dahy8+ClwLgY}7d$m;Bt4w$yfx%t|z60+u=QMgC&+ zNy#{(8YlMyr*F`s2U^=?axHA2@jm)P&d%`Wz1a%~m#Puo%n4sl zmAJ>*C zU1Q^o=suIA)YQ+G3KR8X@T(1JQ*-}qrvZOOLvS(j{b9wc?gK1^IF43^lN`M zeeRZO`F23az%Xa`{rjMbV~BSB7Aab(g;E;GTQSPs%viH7^;{92iBRv7ukT@uP8Y_N& zB4A9bKfdxL3VZxxGutXX-^p5Qv+79#*@P1fjktr7=<4kolEa1O09V!mFr_jc$?(Qu zHM2`O($d1EY;6-3-n+)f#6b{>qxc5a&6Go_Gw`ho55#pI>$xtULKsu#>D|uHw~zt0 zJXF6-(cTLvDT={b*%#WKtmIUZ!XuDfOPNgD{Hq*tq85xVR|J&s~$)0Iarmsma0Nn9i;gS(6%m{Tasy3e|xH6i8$%&b_JV%1nOWc4P zZv+SxG!fKJmBvf|#_|NT+cP6Ghpy$VWyQ1WGe#m%NBw_i>mi1oAP`-0;k~+jW!>L zdV<&(`k9>t5^0NVG`}*ECg8FcW`n^4)*1RrX7~4gR*skShZ34ys`!fo=2byVVV_u7 zdQ0UopU~Yh88pS$H3~4Dsr_CGrDVn^ZmI+*@1&A4aS;pSMn_NbwC z1Hqgo-rjs@J;r3bXeTFnMT?9}W(3^%PH_B$+;3pu0#~=b;RDYuq%$WJl)i(b^zg_~Zg6mPi%655+n2wa zUo<0o=G|ma3NID)G9NM^ZE!k!=h<=~8$%+FfP`eUH2)1`>iw`;nrE?48p-7e9696h z9+?tURx-?v&ij3GR78p{xdC>Tx=#vYiDxI;4g8!2j9dbf8zy+7eNZfwyeTAcrhLsH z)dvUk9<=a%TPzM+mR64%66uA4SLqRAsjsUh_VyC=fg?=tF$3V-q32FJ?v6~ zLy0Q%6^9J;{uN&rSit{QPHKzM-NN)!#jW^k75%R7iOK| z(N%U|L36LnR=3t9VUrEPiH**gSj?#AJ)o&YWvSiPnnkR-x2_?slsaNi`mF?fG6e0s;x#pEbF(#6FujuGg`PbVqTYHh)RXOAd?~BhxyFM zmvIjlKpxz&d~?{ME3%=Dsk{@#va27_Xp6T7+*^X4pY*A~a_AY#qElz{8RQfWW@hs7 zC#LG?d)=-;Ey_%bgB4}76U~gZY%M`4!9qhgcrTw_YDhE7l%(BIQpH;`wL%AbTFw6lgbc9?_e~m ztEU+y#JRj$X{@+1ZGy8MA=sPz%LA;pBCPV@tSu1_4<0@~{_~;(JnO|x7*_mkHJ`Ub zVxZ}eau2LhvxhXpUD7$3l!WggoQ(mGTq4J(ips(4-6_e<`=bK3uZxJ*vaE2Zgs&7w zW@cp|O{d--N$ojWa8BZLClBzF6`WN>&FFWAX0>Pg2Ys@7`s`+|E)N<+Lj&CmS1|q&YR(U285@9Vk(4y4>x$ z;C+4&_p&=*ki;M$kS-=s{Im0Eo`?h|^Gn2e1{HlY>TT^gIn% z+Tzn#Q-a*M`NHm?2PAhxZw#Z#9*0#f3rBqWmU=}M2qB1pUP-<5k##~|z!k5*tAJzI zWIMS9J{uBOTaASsG5d-$6yM z(^{xhX8pe%I5R!=9OKqf$Mxax)nh}$Iql5X=zy&nNVO3K8`cSrvj8!3;`D?cof>}H z$^2iTk7b#TS>*h$ZI*AmA;+S*D`bU*O6(|@_+Wz6M79CrCT^?rV#krJtf;rj2d6P} zKX_Ez_t$E~LgU#B(5yuMkviXEBBv2vwJ-0tXf>B8e7Rb0ohes(1uviFkpeD(eXq&M z&f1^p_Lx+pcH=A%6kWImutZ>4vfM*Z*eTgAM!fn3cO*=6g3+u=7u-aF^*i4Jvt8vZ zHOpWkrz_cZtbj@h*u-O5cXsSs(zwo?r%M*P{DY!Y4kKIS|J8mC4hdU3ZSxlB<8xdg z|M2-Nf1FHxeL)N}CM0C?JeZP0Awq)o9ieUe1&%d}AI%472I{r@9fG4oakB^)2<1)* zLW!zB>b+YZ4NSsW%A!3Do_kXrI6w(;{8jZh$LYrRVG;4CR2-GzE&np13T zd@6bYyIUnsaYo_QD`&2N4Lo9SqWAkhannaofUtmzhbP~<6&j4!`XP?m~Tn%AbhNy;cm97Nl7 zM!LLD?|NnWrG<&qtplSJ4MSDqD2B|Yi^Wg)!-Kp+2%3#!LLpJ9jn69YGcaEkUbjH8O-)1vx_+=u3 zODZ326seo92N#GxfDKfBw)U%cimBD~7r>Xj&;;pHAeocXP?vhKVngVs#MXN38{n}9 z5Qho+oui|nxS$&@?)<5;s5tMfnNld#Ds$0K#CWRGJ!kbs58GJ&5N{YcEd-BF334J5Q3$4FqRQhh!TJ z3|Z!vJ`<6Yu!L-?*qDt}nfxaUW4Vyi?mU4$d4vD&#?XNtq5(T5j?zmxxfCmr>X*B9 z20j6Sgo_IqU_goh4vD}s6S)AAOaO`_@lVFB2kNd)Z^z)<0EGBqp~-O|OaMzAmBxC> z6w|;r4{w2B@N8oToT)G%%OdCT#JlSB@=Mwt`nTQDSn0U!a{CRq`|Br$DVCWsgB`Hn zWjjCok)DH$N1q$lx7Xx~o(;XWqPmwDeOrw{6x@lxJ?p6_#z0|IB14oIM-ZVd7Da%M z3=PE8x>ZF?%&r&F+}u=lZdf~>S7t=c9ga`3GpFRnPL|lCq)3&R88R3YDDqX?1BvJ^ zuKZoxk{lu%@-fsyRL5q4VNHCN{``sxvT6eMzq=HvT9YS_7cBR4HD5O;AvdBzn461k zB(aQjNpv;#+V!)zE(EzmTrxx?qe0t4?n?P`_8d04x47N3XT(V~)t%nN557Rx$r)@o zI$G?+_x*cegGqkp%nb;$%E(g8Q~;R5sXz33_o1~Pl!63HL1sx<*)l{+NU#Cmj zt@kQ}G#!a4tEt#@AbrLKdh{MKYV+lkC$io6`UafX9|8gt*e6!5IPnP}w*H*~ciBc$ z7w7Q>0+gR{SP9KfzlP1tq0gZ*ciYLMdzS<)@1!jnVcmpH<(?=S(X}2J<7PPU^fpRn1#fRpWWSGTy93WHwRCI@gILA|lDK99O;s zB-)A!m3O!$Yp37%LvlYN-&ndltZ3ZVy(W|PvSnw4HuzC*W~j7siz}no>MI#q6RQ*o z(Yd9+Pw0nXWwngklQqBS6MI*&sp|O=tm|L6vIk*Kf*60RGaHlYm(8$#Znp*J^jLu+ zB?)OxUotDNo9F)XVON-Y?mzcTyya&WysM-())xUbo5f(atAmM3aoKnZir2mI*M(ZZ zR_|jg;|L0 zPQrbD1FZ@(CZrag;u3*jRdp!VgUA<&6@!1+i(YIz`^)#Y8pW5z`smhHsZu?6C?D-L zp|nEYUe#ll1Lb#^=0jQ571bqKt<&>AekOcNyG9}=8rx$vFm_|UiB*0z9>-Alh0}U* z%+89%@$10dHNpN~&)T`A=T;P@r;3>ol9Iv!N+%ne>tr~(m`|5(F=AuuVRH!aM(Zug zBF3ycVGM}_T2*F*AmIcWXF})8T;&fWESUmr0kG8pUDfHisf==g+JGdIt~Xtdg#cC$ zDueM@_6h4%7zP0s9QErL;kAX`nMUQJ3h92<8t7|eDiM9C>B_g?2IbjJI= zc>G_xjk~&tD~%n~>}jg(L=QCE1jT@vio3qF?&p#u8()NUXsf&ne0Oy~?;7HMYE9!v z{|g+7HyZ!W(D3oY+6;v@j{@Q+Q?R5uLyMNXlVlQPgquP+lJMH^W{gf$9v@`vFJDh_ zOH#w=RQo#{qkNeiU}vv;*Kj8%VWEiv04_%RlMR_J;qN~B*$Np=|F9Ee97BP8EBj>qXYnrk&gP4>H+Mq|W9mi2Zwm7ZI40#0A3A z;<`|$idB+W^1Qci?DsX!W2XUlwN3|E%}5=M{Gi3(YBBMj3{ z++vrU@#lujHK+G@`b%YEMg3m{>rkc7b~!v6WTpFRZ1bqb z!=ni*@)bBg+F4`XqlujV1xO62o0D)X8`m5DdS*E!l6Vvbtl7mmzm+%E*x%dCh4C#>%j| z8_{mX$2gd8)6N0KgRr{AM!9T`@7|q=&wpfqmJwSk`Sw}Z#W;0l%x^x@+!={5flD&jHYzQ#&|7yja<;>PoO-lL$y!fKqDrjaAH zE~}7{yan$`tuR}+`LOHnH(nKbe2h4+K*|ususTIL;*e{DNdhq-`QV1BcF@Uy@AMeg z2a?xVo4>ieT)s&#zC2x5Tywc}ln78jPmTd{p@+*E8+3=4n~DlG%6K9pulc+QTl0t9 z=gJ4dT)s{B=(8zKAAlRPQIJL1pJ<=8!G$8ahbA1!h9|}8!%#H!f&Pc##~@Z3zN9Do zo%5TrCaqIP#qY&Q3R0~-Z-!hGy`Kpr#DYKeD5jZA{h6w^p2<)z0U8Kf0gY1qE;(}J zwX!DW+$>HgA0nduc!0O=Ybppq@DsYKysj?&(irrDREDjPyX5lvdk9A-;u`avtq-UC zearwC?@<3N7O7rjyge8I4hC-Vh5+Ojkk_%@*=^Ryb^4uW0$8@kYYtX1lhw#7yGz`& zbZ_eJ*9E*|d7tWnAy5taPwhB!ldEn;xq!Oy0}smTbV&{-RW#=mOGw%H2c6_Re#?{b zF4hT8AYlS)Lx`LYqs`We5|<|m96L{JB{7t;$i@r`W>i<`zbhp2qX~h-Krt*>IA6pj zSdx)daRuvWDzZs}abtX=IP3wapJKj-%~hGbM+)!*$c7xXKU~gVNF{3-^Cc#1st;~h z9qv+h^b4lY@G&6a(5-nXP0ow|mBQchuTO6o)9KZw0jpRZS0<$*A!y1Jp4`5jHGhv? z$J)=INE!2A>t~g1^vtPH+AC*aSE5M_PklDSUFnGGw?;*p!`>31dae1lNDQM3>+h&i z{^Y4361yYkwOjPAcrxU;eYSr4aT&r#yJWlPqjz_Ie=Lv<1Dq&53?v=hxbxV|o|Dra zOA^@jjg=W_IPrV{Sao2r|7=WZitYX}1HPyMch>~-@~OSprO)q<0zJ4p1YRHuli~Jk zX&*$6MJ3LBcGz-|t{SwyxtkS(bo{g*_y|H)sMUT$nD%3iIIRFFY^6~b#owD_aj&RK zP2No*TL|&@+e>~#tH+oMJHsC=Cd^3!1}1wwOu{`62;Gn6&zSvXtLV3_Cjxa2{NW zLo`H#wSB0-fBp<{w0(4Y(g#8zb42g@Ozhg6e?%$rV zs0QIp;g5HEkU+?Ss;|Ec97oYHr11F`9YCnw;Lre6gjBk-{FYw&ITGYnlfT7`*4^t% zWKKH;BOL{P2Dc}gxB3GW?LPzu8v)L|=!Kq@2u@a3auya4q|4PGPdyCyxCAhrO<@g5L@ES#{#jFK>X+?Z4kC3^2VhETa6f z$-BJh{>Kxd>yG05WE$_t`nO3(OKZH$V8&!?ap@w4G>8=-Dou8V{lOkIVmO^292Ysd z4c&AG&+uT}ypw1kK~}_RHHm4ne7QZE^+xM2RE_q~aC%U^!xlxh#V@HCKcE~Zprsw4 ztGTFg*b#=&XFO`rgeJ^Qy0yiD{6MqLf*u$5>3GS#GZ;N?wqgSUqQPNnbvXUu^|J)y zM4*?&pcrgDSoC$;adSQPM3$ri8{PVC#-;2pJ^1ZNZ75KEKWRX2zxgT~(h zORcxlwzI7xEsr8``SOM8C3wI>-!nbUQTPZrBU)z<(N0%_5OPB$2uN>-%XNi>{>RjL z$78+!Z(LLq86{g*_8yTP*?T0}*_)6(qwJBr2_Y*XWbeI_?7gx{_Pl?u`+WcT{ddme z^yu7fpU?aK8rSu_Q1Z+u1a5ew$0(nBA(3@nHNo}a)$~-ViFO6e7&jVPzR<=$621DJ z3Ev#Vg)xCR)T}?r64Xxc;u;=r8vxiwt?&qJMv_6;tQ9=}!1t;8?e#s6lShNYIcxmh z=OoXAuEXm*pZpor%UG=5wO+dpcvi1J;WG?M45>@LNWTKhb338E0GMJDu%09R3#bbq zXC@a+I2chzLjqx;$A*BINL2TVeJYXgq7U$H(HfNBz@ZFIex(!wjNQ)8K+)=%mVVv)Ql|pAs_WV7ue!)4 z>&|9H9(V|oHPHUdktH@8AOl-EEwR9%@8!XeE;V)b`n)esMn=ThV$dAOWp9efj2|ID zER3w5^y*%!d^Iw?jg>sOVT^uybW-zz#p*+l^o63d#Ke=r|xHA_B0Z@kQj0Zmk<$$;&Y7x%#K(PJf0(5uY@ohIwoxy5ed-@gzz}h*fsB(Hj?~c@4yq3Nuz+yzHRbIE?2Nu$) zGy&OGnvi?UuiQR(-z>)J`Gc@2sC=(4-+%a^1|!Np*GGh4z6A+jgtPTHm`8lULpliP z_TZ>6rAqq%v8bAO);o9h0YRM{6y^29Wi~9QD{}aYDh(J`2TD@;f+HeVP8J9F>zxf_ zk|046&baEZ;Iu6fYAff>xlAQqY6q)#N$+1M=Z6*)+%-3s{%z%)viR9vz0AlG;y{3Z z0t9MQ(I&!z+IIVSA3yK`&?zJ( zU7#}CakYG7Y-hy$rteiH7K)&JbVF)l#X@z61=rrYI0#b+qHHu@?We?8DIZy~d32QQ za!LF6I<>t+B1eYcBTcWNp_b< zE=c^0tlyb-1{*Whx$K}i~7p?jG2bs zIHkpd_#;|AYhKJDV)@>5-u3z%#no z#qG3Tr#`7<{7&~DK8)X18B7B zO&Eu~uH61?buH1#msPud)~oZ;{qZJZ-6Ds%+5ZglmyLDX`O(c=w}$InyA+PDa$#%w zL3{Dg9%s1$=}WsK_DLmD*_r{!$lwQ5Hd*OPeek^c^ z8E{G3QABw^T3m^{G-i$MQ7IaIe-nLK|J&=@BUV;cho0zwq%VAB5sn}3=Wo|&eOs_6 zBO`n2{ttiNdpyc!G7Sm_9GDHab<*uTyav~MmXg9kYcy-}5BdMTYXfG~K%R!m0S%Rk zFBvZ%I`gpQw2g_c{MNfAa-%>K0~>q!@~nvXxM0{~easdE@DyvOA+Z2%zT@fXxxKRk z!0-oM%0wOdbT>76!avhec9H!0%1Zuhg(KuIquVRSE`*&7uSO(6h+ou;@VfIJkcjF7 zmGZmV+9Cv;3+Zxw)Qg_HDEuA1+K2cAX_*u=<8@y~t+I2B9UL7OASMM~zjt6ER{d@v z263MWd;oqaoqIyZ_}f^2?`6 z;`;Dwk0qPOk45MK3Tn5@Ff()a&EEyF;^H|AYkXGi@DBNekIb%YX4lt(i8!S#5~i(_ zPHT*+tqg(06cka?S^mYZ8q*3!@^Yu7-@fHZ<+U|xZsxOGg4H#CElDDwHxTRqxRO@s{(FpZ;(oyBJuC3C}RnUhpg2jbXx>aR2x2M2VkgpzqXcjmF zCu(iDFi@SfkCm$b3#V=$M@~vs4K%D91;CdW8C7O7_RGj+v&XT zw$nUq`s2luQm)3gaK>(q z6$PmktN^4MzQCVl#_|L#GP^f$2?%6QGHCeSFK@cI9RH~OL&d-l48bpe;G=~wFKqXN zKZ7&2=lx$^+{L|z(3Y#g5rZiqRlli2_bQ_vFL&S3Ry8rF(S2B9XT4woK{uSSA0ai> z=gjmbsDawrC3<>db$Y;x6M8O?j$Nr8P*bCou(WL81hk@BXHxN=7)j(M4#=t2)(_m> z(QWJ07gHY)8|tDy*X~c@_@b^cT?ZXM<-fm+#*Qm*I(wN8Fp2reOiv}egwP%}s~zCW z?8aCdw`kHPK-;QxSfBwZ6{itgS>Eh<&%inXI z=QKaIVbc7nQ1NFVb~GX?DqlKkx4o;&>0kRDEDy9{&f)E;npnush3SNfH4mAHSMaA# zpLk~fo$Ss&e_`^N{-k)Rxzk;?t7IqbTV;j({VLChl5|!dpT-S+PZ=2wK&U~=M44$% zX;QL|YK>3b+byq#U@z9fCgjUXK@n~3Q}viGP&F^;|{FK=cpssW^UR#^Kq;rhV~{C$*0xGZ)wlXLmr0f)7;TE>QHsT2n4xDPw!e zIT%nVMjY#wQ{Q<(Z}1u9u|4M@5fM2)IT<(6>rFPwSCQpNyxa#cAa_U8gp(XSxJUB# z&q@!gfr-95_&CN%cF&Jk1!X?J^Q+joP>uu;h!|LshAkw(oGzpC2IHMr3z@J>+ER!7 zaK)O+%da!Rx@`GgXKGIcrqDXczXP=BXSO7}jV)#@tInN&D+SG``%Q~$C)5G@vFadB zuX8Om0kt+VYA9Eyns;K7)>U!uHD^ByYKKlnuhR+R|)%Fn4tDtk(!rPmB||3Y>Fr-U<4mJkL?so z@(o0a!*b_Hu@<+0>+XB=q6C|%?;+2FusMx8VYNNaWI!g(VKYW!M)-E^SQu zF>4-ISPWzBdU(=+?1JYFbasrROIKG{#M~ZOcR!#841US8G&GdmnR4dPxH~a91qq0; zqktNF0@5p5D5?jxv>U9RdsT+_R|?_s1M zr5m{9oW%*DLOqxrkDF^S`M$g;Am-#O@YT7zGEggeDX5fQ+y7ZMw#F54qtWLYit9Vv z>grQfmII)Cj2SI+eIw(TDeAg=7m75~_TW8!FE?T7D7&T7Cc0dpMI^9JH$TV>+McbB z0{`A8HDbLHQ!e6rq`Z)g(q_RU0K1FK$<#wF&LnV z@J$2)2N-PFg+0DYL%`zMzk8whj7hEQ%3(hlgfB{qM7)A@@l`k5dQ3^4RTkb-ccUU} zAnNRE-v&3l>PIR?6WYfy73Mpcx}r57f^aDEbOr~<0xd`KxnDOozZlv&@)#@8>HA6H zE0NDl(h4p~nBS!#ajiezOj*?mx;`>#_A6`e?1Xr$!G#u4l?JJMzc(dZc4vCBKVTv! zBg4bdkAyvA#-Fe&X9}CnPF2ET`r62-l_s-mVrq)6a$|2#d6Fv^sIYi_38l^LkKL0X zmod>|wEPxid9Rh$9Q**az>`8vE;a1k>kOgT8p(5=o$LQ)c9q0;TNEa|Uxp5b$jB0ZP;`lHGj z_05pMn#5!2co#VFOuN8d#srROv2IN=Oex@v_ZLOzwt`XV)sHuLU6Gle44U>V=NpAb z%=;IPZS6w|Se2%$=JAM#V$9}Yo++o+#sa3ai(~S&b7y1hbNDeUOnRnxBsqaGA`|s! z=LT})0+!~!?>Fo@g42FP`%D$Sb+=X^D7Q#?p`un3qf=;jQ{_~9*nWOQ@%{jP0y z2z_cE=d&F@0B|H7FA#OF#2$b#`Zco8RAgurXCa`hfmAYTC6PJSeQNL#+f_ zhBdeA?hKfSV!SVoRcq8FVe1l_m`DhTFD5^m-|<*ay}wT@$Kl;+j{^BMcQG;L{WC-d zw@WTUKh}RlwkI)QoVxume^=|-^SUK2!(mKec$rfV2Z6Pwd|O z$>K`S!R6kXff~`@*E3X^`_uMcUNFH9;ttXC4t-EMLal`IR8Wx1L?)Bx-YK~IZrl(P z^4abi$@k&09}^mNEQR<{ei)U`G^AdOUp2i830WGwyxe*YH~g)eH|R;hUwwtu4iPQL z*>T~Ek`yyyNWCQCwdwwVIsSK_UmC1nKvAOgK0gL6>sQ9!>4}MNF0&rLtyqBqrBpEs zYB?_RNQWbsZ+^9zs}Cl5!gS-!#j!X1djKGyibn5KWPU8RlaRniyB)r`KFkfJO;lfE z1DA6{HiqYrR5YcwsV(7k314mjONP;88{_V&KZ)ew#H-XSmCx7rzdgC|>p%s=BZ_I^ zla~J0P*~+DRrJR(#==nCX1+{VuW~wF&;`aYkoHSyu9W!J6>m;5R}BbBIBuSq3)ffb z0A=u>#Juk0m)3{pu@~+%6^0o39)@_i1U8+(^mOv3%YWR`kz}$ijamnPieJ@)nh#}g z8lAqe8vCMjU^W1x|ED?9QHJBY!m?rcP~k*KDf-RlC`6rYiMbtMUsaEWB6hBk)V$`W z=nrqUj*i(heOWkN#V|7ZZArlQ_AhW8f zDo-*jVSBzh3L@(Emp@X0vp@Y;ZWwL6`*D9JBusM;nt)3^k7N9Rnpy zxpJe@St@{(?f85+RFL(8;YLpNOrq4=Vr0^S|K zmP>0VsOstuVU7)S+|YK3dt+l`#G%7lI@1el<}*}N_3k)XS%zNodlx)?f={3Rtg;n^ z>kaVV0WlFYbaVvP*37r>ZH81Hk&Z+4Q%Ha1-W#VX>zl!CP7E+GA7QfQz}Auba^Me`V4u4{1we;m^%lgpJ2{J#wGOAiU4 z$B2kfRI~BW22{fS_9XY_@2~NnDG|Kb*e*Z`{b1A)EAGNolKFhHuTbR_70+3o<-$KBntinlr1!)L9D|J9$>jC z=b>P;flbu{HDVi^x%MC+Ew_voq5n#I)g)C)SaZSiPWr}OBj-PU8=h{JVIbu-6=qQ> z;M#ME{rF`~?9*M7UnZ*JsL#@ghF}kP$L9?HL+g8gTBhZf--Q&X4yoDb{L74`kkAP2 z%75+sGvSzPLr%xrT7a^FDQ4@~Si;`9qvpgLiY@805So$kHA|`1~Tu@9OrOEMkwT3)(#?iT9wmH(>D}Hk9R{l1U9{7$3!d6P%@s zhZz^@%DX1PI`3KGW8Z2Fc`UL^Lu(T_s;mE>3;VV24i(saNLcR%FzvdOYuK{?@k1 zYceeKVXEVwep*xzSEofGYb&x8JLu{S|R^2fIZN*O|86=sV2`}>C7 zQO}3Bj&wz;jsiMa_fuZzo+50cknvF=Je-Y*SpIjST6ZQLJD(XXrH0c&9VQh~`*%Ez zmJxO?u>AreAK;CW&2XX~2`{yWJh(ibc7u_3rs2dS3_@VtXxP!K(Svn54gnnrjq~1J z(AcUL&A&$z@;;Aqv7N>x!*8D`6E%6eND+ZtwN~4q*Edjbn{K{1rg++%Qfckr%-Z~s z>cPgau|gCxL)fHTGkn9a+>5fj+e_YdmTAz^FS zk&*ZeD$s~_Ic%>x{I()jQo`;}5=nR78p{plYj9k>+u(VWt(MCL^Ro);aVmf&N2(Q= z%+@+vV$0``l=)l<03snszZ3~Ee@s`%s6xpO!0O(Arjew40T6+0T4atv zqM_tau1|-B)0LX(=+!wJFSa%@YJcXSl}~6cdFG?dW3S|;OLlQg(cICIB+bW0x75(Z zvQLtO9$%mkLFtvw_#R4v>ms7HVu6#Z)zeT)1BGcMRZ82Ji zhj#7@jgM*4;TAhQw^$^6RuZ!Ul{e4?(lZLw5k^OwtUUH}XgE=*P)W1EG9}efBD))c zk;PxXriA$>u^8_9xIMmnVxH|`zUPN*s4z9%PyfmWnm*v6zW9pq<(^roi?+yMTXKq{ zg;e|FyD`Br?Yu*P9`Vt-m7vGPV4bvL+B^sn6&)Y z*JWIGb>Af?TjojO-oFo3icYQR%xr{IZEo(}dGja^?%4g4`4LFOdK}N3I50))ixNgy z+5z|DEzE1BEI~A>vPlu|i*k!$Z6*D?;(g;6CGr2-eV@nmk}HRx_IO**%oYuUVlYoJ zGsCPQI2c3sV8v{)l^9kPslZcr+=wBBcmlDHc=zvzMnpXM`qe!oG_-wuJSvS}kBGlq z6biqtp*`9wbS#+fD#5g5$$9xUCPKd%Xo(PpunzN zDqHasvl``&*9 z33>hXd;k6>jQZUEt#}0*i56r5WbxN3#l^+Y3z!soP!kSj=F7%*f&_x;_wna(Wv6nXmm#iroQ=K)2&6w@ z$yx%`)EH>mK&u<|v-D^o7C+ zES%h7rq~7wo)|M?Utix)0>=KS$^)bsVKnT*Vg*z*pf%#M{I|l>H`B1Cm>c@=Y;jEz zzu;#u`^GfoY6v3Av26%zzIkP%e`#r{2bxoO>$kUI-ApASk^wO^Lzs&!~LiusD4C{=GaeS$1?7-GwlO zzQ29Gh?qzX{^|F5IciTgTe6S965t|mwRCiLri|pXgRD-oG}30e3QO$gaD_CETs%w5 zrbdy)bQO7HW8-(5Nq^9xIW4U)*4xbhgl$B~?KGHCJs-&#DSGMsOEDmpz_BK+(s~WB z2G6SOr{!Qo-ksd`fhnFD@>^XxqexqUEB9-3-Hlw@!qij|@)5Nv9YI~x`TgPI;$nZQ zAffWmOHlKm`f-h>n7OCjFQBSFKvYM&{DI!Ck>Doo%6n|EKEX03N;0QIjI(N3Hv>XaRoS8pKNFex+*JkUh@Lz#i%XtmO_S54BWF>FRi=d`#z}UhEihyn-Ghd zjxKVxPSg9Ra|9Xxhg7}>m>@ncTw`~$cEdN?m(A?psJy409;_B!qqHj|dvjRgzH-dz zA7};SyQ-ZWhvd8{W|ai=zqv_nem}=<&<{(tJWsjLm5deN%OfiZ$w0itvTcD+_V?Wb zn-KDl%^?OG5LhnZe+a`j>>AWdN@;Y!`(9OL_IIIWr9U~~(QKX54wif$Ppd+LITw~No(CP@LPC%+F)Lo^bs4~rm+L6qL($D`g}M4F z4c=Sex>CX#1SZG-F7~+9ZNBIMCim>%&v2#nmWgGKD4##&YisL>%qD}{)yu2!wSkiI zs-*o~s-1RUc??wT;T4U+=QQbp)ka;BJ8-PzYuQ4I9|%N1)Us0@S(4*(b>0K@?@M{O z`{2{U;P77?&hv@tJqC9Do3BkxWdm+MfzgZz=(*%QntcJ%&T zxj#l{rzg30svPPkrn0o0ndG1vo|VW>Jx?DGjq>;hhESVJPt+m=nNpS)8xX-W9?&b7 z0UC^qWtAmmh7j+a)7nt(^dRKj!D6s;fYl)H+}Wv59(e331qwf0_a2RZ)i?d!tqSF4 zwdH7UY_?=rISk`i43?*1$OKAcB_L=6aL6Np4tVg+i!(J9-z}#TbgK9M9ez8a^T48ET2>kKKId3UE|d%+;eqj`!I@9)N~p zR|>}JPTl~7;UP+;HstCe1^}6Ex}Pn{V>RIir_KS0ks$E47Z#D0Q0UOgxq(jL3(lji zpkELnKUS)fxEt6EpRlZ~GE1eWFw?<=f&yG^e{gFyaun5)_J(uFVetEQ_jgEeaGX^a za-}!i`T>jNHw|OQd&o!uyfs9Ap@%!LEq6xdK6`hG|JIepKwpzdvrtCiEf&cBN%`v4 zzh9)lI$6E`2RalCqSvn!yu4aH^)vubv@ua;`j7dcYh5d@>{xpXc z(MF53joyP4bL|^f)?l0x(W$o0cMl@~DMtcQ;q&(=Rc8c+^53w0-8zr>gSB70D{BL( zK>-26tlGba)DV@{nuaI4dQfVR@LI*0@r&VF%w;1Ry(`ssn%gUl4eBBoYWohU*yCXTCu5yV?vguQm6O~Tr&jSz5hB8LA zNe?WQW=x*-Q)%uqU*9ONk?vD8QqfYtBj&jk92^>{g2eSLkmDyt9%@u*$l zFKW4W9rhizCmPdbV|@UA1<5=6yN5snI$MsCg!(xYt}?T;!k5Jp!H{!eJ5?X@;Ni_1 zs)qZrv!gk!0e9{lKL4r`LlZ?hh@Cu5e&CbGt<+4b=@DX2q>9g9V}469^$A!zG8hLj zks5yEi6&oBKgKx8VUK`XZ#sve{68D($kaad;PD)w)Te!1huWY zxe+~Fmycsev#JTaXB{J4EqG_slSNyAVw{Ws&}fh4A6aImEOiJYiT44wBij1RfkqGMSg*33mD}fvxBPWR-*~(i_gM*{NWJtKE6YKn?lTQ2987v*oFTF6!?$m5 zP(Z^a*W{xI@2pSgX+jL`mTIw^K{w*?cOmsfqI6{1pK$|3d*7DQFHU&fCcY6M;YqJs4sSWm5rP^V zjG=IXB3afTXUGet#h0A$k_$*tCTBZzz{4VuNRBD>_D9kY_a&)9C%!CMYIRufG`Zm+ zBPh;5bCqd}5$mJV*LiQ6-`$92a=Vdi`ASa-Rx3!-rpKYeuQJ%4{cNv5`(W)8rMquB zI9!pf#7?|F&*1+hN385=T6#>r!~@A_keDhc#BGGWM)ExXT8_3bwj&6*BKnQA%uEVf zZO?xTEok6pwjEAOSLoov)`MgL0w@fzuvLHX zqRn|eO0cEDa|b^x|B%LBU-LE=*)tH20O`c!qRJLBH)F{7%bnJL*7A%B8w3(R^|;t_ z8HS@BOT?A!pljU)hOY7Ak1UH;9*O#-y=2vSvo)srNZ6w{^dYJHCmeDKHh#&; z#4z@1o1Kl&Z@75O*np;6|K=SGp$~>YBjSDtC1X^EaF8klCIwzTje}gQ?3YE84c3IP zFqf5(APT}R$p;yK=CM>>K$Nf0ns>22+~T*S${4bLOQTY2cZ{=={P)|-HOvamSA3Fl zqt^SvClD*S8{ied-0>>mo z`0jtoX1PIK_X+0#)c5RsDY{%sv?zF(oZ&B@6o2fixHgW6jBFVwA%U*XxNpo>whLa7 z0<9bYkli?M@j=Xj?3xn!{_%01N|yM_Kw?zBat25u(7?w~W;sF)YPpZaJ0ML}&z0j> zP}G3gZ;WV@b;>d{B|;GJ@ZC1mqn1|nJ!}5&$3`t(Nei7)(i~;38n9aHt##f~4>l3@ zIQ<9}lv+QfKbOR+hghZRQ%wvKrfaj`dPdZEd?5W!ua`^K0G4}$8m!kNwpQn$-fPFVZX=v3M8*#1g_EgR@M zmq2R*gU@(o%~Hq12^h<(lkn|^HX-^@PWkVl(N_Q)v1QpVm@c9nn+ORNIs+bt6=K-a4sZa)EMj<3~V^$?a`GUI;eM8X~HD<~4@yb-YP{Fja-re<@E$Xpm!&qN=3E<@~-``0^HX*^g^)h2W&Urw5VmmOv(rMh~X}nb{IyFi!_RwK^_MRYkFai zOBuwq6m370O;E4K13He&^OzmVUCLR#Z>Tl;U6o#^kM}!k&_IlWFHN7%(+5Q|0eGNX zb_CLvX8Kgf1@`;GE22N1zLtpga*1|(Df8Lt4yFkgF^tTO0OA7+ahCWcY8bM&z@?3( zpiIA2QDFd%xk>B$5SRn=ZY1MiU@WXKX#Z zGHetot;ahjCzAuvmAxjsFED-xSlw8JE1&SDMDqPgESV>5Mfox;uTJL?W^`9qu-^r3tO_8Mz$}8YKJEG#$Sjhj%5!EONm^4s z^Y+~CuDGtkpOOumflUlWra3%d-O=jMW}s=7&SrT=>4T{W)qG7Cx;+G-NNJ&Wm^;C) zCv@1?j?{~wRf$cv-w=EZmm?1<25L1$lYw?MRKjKECw8z5d<7ZCAiQ{iprLbShRoAb5G)+(X>}(G2S*C! zw2#YW*orU;6U*Csmj=W&#=n+q%r^C=dn2~#Iju-XqHC=Ur9;QH( z-L{3_4?YeEj5a2VG|QJ^`_>9EW2!mQ^n#60j<&Y75%YSvrPz9SRM8n+d+FA@k&EFz zeY*~A?{RByFYt+6@$QpIy^&$4bJ=SF^$Kr^@MM#{ftq)+0<5?7^0?lhz%S*S#}NT| zw}xhF`rHrKE%P=_Z{uh_xT%V6;!}RKXRI4M+&2(mr~a!*6*<5{!~NzXeYDtr;k!1gdj7Q}Jed)s<5UdmbP!Vu{)eBHTdyH9jT0LF#nnDaloY#v`e{1Gnu?qqiGM;MFrxPnuCpa(OKc|3{JIIrx@qLtazK02tdUoW*IIBibf z@Y>F`!jU>`bq@wUsqO9kM<*gM(dS7SpS!Jntp97Dx|850|Gb(-Vw};g=(FO^q?e3E zW&4t$_$DX2G;g2ND$c|{Hv zzkjb<+mG$qNPt#``tf5P4a2&hZlmK5s+p*wWpAoRg*gk2%6|^8dvNoeRs|j8ky;Y4 zT?SE-ajyCZzQa*!v>n>EfiQA_iFbTit)nW7U_Hc{O)OiwWYHC6j z;fReoY+&=1^uFqfC>v#`Krl@<=(CIGzj120gu_-`y}`q|)^$q`aXs&ZXnEd0Fc1x;F7~ENKvh{oG1m^y2B`2mBh!`A1x7)!LjqRC?!S*d2UW(07M`{J z^(2u<x#U(Wo;QYd*?ERmCE&73R zaKn#CkASI2oxHQ@&84C*x;^NsM!3vbr zVj=owkpTe@@uKg1dB`s+Cu%_QOX-p?N_F@ZUEleNC1gQCz?}$CTELT24hfU}_@T#0 znVwd8oNkR1x9@d5zHNOZxA!#p9O#oF#*?l=X3i(;afCK55r|yj*zJFl24Z|JzBS|G zukl5bF>OKE`3WL`miQqDA4%pWNDSk3FuU_d$7MEi3ju>vZxEpcS$R_lOa5z8$ zD+bKpqpdvTKZv({-{1xVkkM8GD@yU%8U?(3KvBmKqcfSm+(S0v3P6$=Pv=lABOn5)HF!*-?J3w zFnmV29RcT8l~(e3=e-z}+I`o?B54O>%j5}YzGY9#%s$9+^t2ri2`;VhpT3-J26u$0 zA7yMqb-81i(IbeFgx`14pEi3VBk{~R?}-{?^s=%Z`UEJcn!#WWUo?m7uA}&KFltvU zMv3~+=~NxM#=!ccWqY#8<8Q^8!~CiX9*(9BLt&_O}~2P)?I(3Wu!0BULxybzBU~zp#J0Hj?W-t9h?!Yv;T7c zZ4Pg?OtaVMy@6;H80yD-xBiuFlgxE`(d4UJ4+aj2cE>(JKRt7!V6}&|!|k^kW|ktl z5-ID?_DCJGe35iQoY%PXdztPtKZw6un|pnMi9&|mq)|s$&aef>y?crR1VlvLy$_k! ze-}U;S$K_;<~OIc7KM{NKtRE5((+oSI<1A0`hlntOKm|7Et-#h&+G*bEC{f`+PVba z*7j^gkbZ;5uOF(Fmb3hUW^ede{RUeQa~UL9~7F1f*qA|~== zb2Qb@4+RQ-g`nddjC*$sK>>X!;zU;>B&=0$fj3&DvAS<;Oa${cA+Q;~{}5OXdJ2Dk z|Ml@wW~)jP>!QQa{g$NU<e>~ex@P>CqvceU~!lbcTcSH;ZZiuln zhVh7>s>L~cRK{MdB!6iov=f8wpPS7PO#=Ecbf~_mVOam1y{7ximlKkl7D~rG2Yf+g z$#00-JAD35u?$1UiqMo$5$_{zyybHGK2;n>^~6GjyT??Bh2^Tp{8iGh8y_Fvb9_m# zTFZ~nMZgZ4!_mYSPV^t{2N*CllC5l%%317=9s!wM5JdLT-q8m`Wojh(h)W-yq#Hh^ z5w3_ni^rTlEwQjCyCgHO+4W`9zRhUNV7j2gL8k_t@}nMrd6a!u_{wtsK|YO|EnA0| zoR?F##Jvyyyv{lB#Bd=U4Cm2IlQKXgV9rAdg2$zfuvkG?J7k(DfJ&gM55SFPgaUL{B#rU@Xppd)N!&(7q-wvrhSt9i5dBWB`% z$d_bZh}talx3CD})R+@wqiErCWqVH4@O81SG!SvXBTYR5&T&`-JU%h(uch+@YwMxN~gwO818Y73( zpPMO9wpw5U00A||=Snt3O8Lf};b-_PuL6K6I|4DBLc$k7xpamd_VdxgRR)7blhEtm z+CR=DOb)c(^@%Wv9N$fgm476FmDFy(^_A1KLyMqTG#v04KBrl(q1Grr4qjXgcTrO9 z)4qPz)Aw^ICs-dyUN8&>Wf{M)=V5ct@C`v7Qc#5U{KcbzL(n@^;Op0~SVSBj!QKF^ z6X^3FOf(wP%O|qt!+sIzr}w#%f@Oy_RLv9hmg*^2_S01n-+rnH2@AU)b|-F*3KMgi zX@@?&8i)Gp&_g(ZfbkY$uCulE$9n#-30Yg_LmOL#{bD;g?4qP_Or#)A2FwrC1at+y zVSRCoN)={D6>&^#tS^`})Lwo8k(k3mvp~7IYwK%{Z$4Mp+1cUqq)rd(-5i4`(6O>X z06$ZQ_&ACv&XS8~Qb-o!hjwn>Oo5(B++I2fPkmmS(yazbx*}_!QGo%89wv=N>9W zpPJR|zmmr8D(;wQV21$}$nlP5Y7W4EP!Glc;JEHC*X^C>YG1>qTp@`g;}5Ggs6Bg4 z>Tt;g-oA!_q{EF_(n@V$^yQvGlCO!AOP*m{V9ylfQxdfW-OGi!7>iCLDwKJ!y&>Xr z!2(SQWGZn;&ck*R`XVQo&(}8P_9ECo5O?#_vm4_lHMASl4?Zaot4HeJq3577?L-EO z051^`uvB!YJsoREPXat$Fa-WLTo>23`l9f~Z9k{AuRog*L`vyXQji$><3hJ{aYr7I zXXr&Q5wR>MC+eF8CJ2k3t?mM%dyxbd@*`~f|-X}dDoQzxA;`-!5&@uo!)noz&s94)ehyxW)5 z{hams=odJ32QruFxRRR$nz0Am#Q*HMoi`0Y1Rsx%LqRL}h?p1x9j8ytkE}rT(lys` z!C;UjUd{!ZE|b<%$O&_1+L*9Tj{r{3@D~STX#In*AFV*~{<}aY5fzp(*OR!XUX@{ z?{idARKDA=rnp|*al+h41waecKI;Otr@|G9dkndgBhw&zQ~2wjpE5G*5eo|(X=&Rv zj%|q_tOv`DJ9vDq&&&fss$1>|7Z@nQFd``gA=n&rvq1EzaauFko@jw|6t=d;ue$CE z&)$%!nswlr%3U+x_7eBPYMXvY!^Cvgdh5{H>#^%O;wI{y2_p^@GCrWq+}iwYshle} z00^3gkf{y(eM68^D8Tg!zO!4VeQ}-qsSh-mG>xumD`7bo3k|_f&>sUT1iN`-gs?!X z;t9wzlq)Gz@wMvRSQS%w6-WKhEq;EwQKDUGbbT40b}~kM@6?z3S`zo!N4%8RJrx*$ z3tbYWh@#o2fF^nQYVUGzpuZovO}^g?@=%2|j(6g>X3s3!F;G!aRT%JLD<9Fr4U4JeEKa5CJFv9tUrBx`w~?7Kk77dtjAl3zB|M* z>tPAXKTz7$>PTYCooq7PmEKeTuS!2yPT^h^{|5s&i^=j9^9@lQUUUe-X&z?Y*5}47 zdHEbNIo0BvoSck7*{FL`+oDV(4HG(0Lf>)oq!@zP87>jNWOxC3_TPEVg^JJ>B?N_7 z9HTn{k@Pj0C8qxNtmk_+J)citeFv_0q;{n>+|849<~UA&`pr&upMzj31|25@mzelN zou`P^Xkpq)W3Bx>$%^B0tqP#pfA}JJl#~kcqYqAeL4=3a8F9fs>)^WkD<0%_i#t~+ z6*i2<%ZP`MbM%%(gQZ?%jaaL6i|*|;8MbLFq@4=FekMzUS@|~B`p_7w&Z*^!3~1J{ z!95Sp8#)fzLZX3Bo>;&+nSj@OePK_Pdbc|+yHfx}c31O+iqP`ccgA!<=M_*-zTKKj z=Xbi6t3ZG>B$indWSaYmNA)>55R+V-ZQ7?F$EX(yrWp0&R}RQ~uEt3aA~0ba#{)9O zli@u@m}ZO?x*M6Awl!W|04_(spOP|^I+5ML>}T_h?RgIL+>p?7+eXCt)&DLyI>7R8 z#W|g(JYn`7Gn8l-zrLG(>ZzgXQEe~w!elB%$Ii~~cd=GLauY(TL|fxyK6Ody_!ht8 z3Kj$&QL?eU)2-13+)^x}+I4Jfl%J_Yh+EjF$zP|o}8_wwW@%GRf*^v8edV2DOM|s`QU_ZC^ zxcIA{(_!%$8k&7&OpR3|i!m)gQ7;qoSUiSbjVYiA-fsWC^I+KugEVKR~d^TMolyoKO3vBX<@9vm( zySrHATuDEFsx)SBQ0bxgCbqnO-P&&d?G;O!fIHLlv4#dMV^46)CuKnbip=JYFwGzC z+^Bvai-hHq6rCc8ytp_IvnJbW^E+YCl!bl#SaP_R$w@W8%mHqmB-WQOK2m_&enjg0 zp=8$o<|H?im6gZ(Q)R3|Ii=4j-{VrRF&5t1X%fk{pSvV1Z4@AhWjrW8ic0MHE#m%zT~d7O)aV9jvvTnogk> zzO?OW-#7S}l9r?{x*9?$b~z&cZo223MVVdqN9gYt4<0m~5u~#%-@FH(1hxr7;OlZf zTh;g4@9>QJo!ZeuZ`!tN6s+pb#^e9PBya_OUA6?1V-le)G?J&!h-;watPZr{E z-gJw(|G@2FfUiKigk-kPT!eh6t1Bp)M#^!e8xJN{ibtEH6~*AEiUId%CO9Bt($dmQ zYk)%$yS{Fb!c#B=q@MNhJw;Ts%q*+XggC|#KTs!g_+HDwwqs)+aqIfj_zu0Y-P%IS zk=OAgfYGj+X?raw^*DTE+p;W~2)`DWJSPRlUliAZ}o9rp%6Ik+0 z`=p)<;cE#UbMWtaW7yj(Pkpx>>?h`i zhb%dvY|=&{^%!$-aIpTm3CChocMU1G3~d0gw}{OulI`^BOzW!Z z!SnQ`F!axj#;2#Jr?1OiC2=fnDGbrm(;rOcXToTY-)`my6k&iB;~!cx2shoSb-onv z64KqF5)#s-bPI@dmmCBHq#L9`1f;u5K)T@_{Qd8}-(ElPJP4fF zXYV~TYt~v*z64`5eTH5yP43i1O!83rV!5=4noH!?@Q_WJm15(md;(#^!qQUY!X}Aw zQ?~QH<-+lv^g00;EYAh)1IYROYky@5qfnMzxq-@m`cVvSjHi^=;!e*m9WKCUsp zB>+Os+IRaz9vcv;s=>~QI+}L#OMf<#=@vo$N8~S0QQaZ&iv%uE5pP{f?lc=Ny8z4t zN$J|vT19qN7RQ@mBk=6-j!-Z?KmU-YQ$>VJC%<&K*)u|NdFIz)!U1Imvg4oQknUKv zT(X8U_E}`^3~aHxkra8{Ntb1$mxBrokVU6tWtm(gxh2U5y!u7|*WD+hC$9J-%rs3K z*&yP`;vo)e{>>1br;|rDt(WqNN!vdNm)3wI{`h2t?X82ubM+CRGK1We(58X&28O2@OM9KfwHQ3necxvG7d9>(7}w zK|w*+q!?D+6gTE6@Rgw*%<<^`X1HDYZbR*w{M{LqUFo{XcyGCH1txW$pYLgaII1b5 z;iIpe*do3JW#^}(h!74_nQu;g0D4vS~}g*mO>oidTcQg*x@k zJw&pwVS7PI!0vS^=0quo z<(VP%)k{4X$o7JGm?azA^k>E^4&=6b>-je6gBvIIXO55z1XbC`LY}Sj;lqsqT|%tc zh>#G@jp0I|v5;LSQGnNd-vf2B$zshF=*8*)5|mNxi4)bhODQgzHoKkdIr;AR?Z%pC!#dZ;lRd8t zn;C0|%~OuE!>w#jpWE?z)fW9?QBk2l%RMQ6x6(=|fK93ssqY!z2RKJyNC>z!g%#>f za9C>S1KlF9)3U{qvjYQHY%v`#ku#u==4GkQR_$XGGf22=kES)C{(cI?Cypd_)fft| zW02gUQX|rgkE0X_1f5O<*tr_r)BtN9Q~*FV{nNY&JHwaB?Bo z?#gT9*?Y+J2 z9Dc)~z(@yEBoIQs2P?Flg@{yOavIJr^x5q#V_zoc&$+n0qM#y;7gK%i#gpCQHO>5l!nJj)7mR_U5@DVPpT$bbJ z_$OA~1jt)TU+tNJc*D2fBFnRzoVRBAJV6?QLqt5{WycP;Q*4XZ)rA8LU`@`K%_@|7 z^Xqk*%3RMxZHZK~a`QmS|bh z(3cE%kAcmoSz>ZOmQ}Z@we>wTA^y;&;ey@JkjHype<{N#O0&4-xk+%WTs9$9Dz6=@Q^~9u$kxJujXgV?mOEE^ z-(s*DKT|5qX!I8dRrSN61Ht)fKm&XuTlKv*mwp6s;xTCX9>FinHA}!K)d=V=;dm!J z@c}kWtxX~fgETj%Yc32h)n;YxN%=*W9~scYtXE5{pnzF@)FC(_{4|;W-52n?1ctPn zlOQ*DN(|Eor_thbs9s{`_`$tt1eX@VnU7lP0s0MC%9FSZ#r*R+H|Gd)vg`0xMKFqB z^p#|Au0dFE1`$I$0TTEEK6l<*VUp41Lk^Cx9Th9AU({b+)}ZqhZ=s>08VlFCu4F0>R6_9F=%=@`Qf?9=xuFlhG0pqalt-M7{AIG_P!=BGEZ5TDm22V31f0Tjr~qs3U$US4>c z0uBbVX`+@>Vez3gRaS*tRr+ zf{+Z!&Mz*0G9{8w`l6ACGdCBx7H%_E;;KcI&6Ht(AsTZYkuLUZA;8}%S5=K?yaGS)^`i>Vk1l**`w0FX`lgQ?r%)c zvE&Pl#;B#B^x);PSYMh_gwJ{rVlq}-cv8~FE(hB(Q~tU2t>H5 z0Y{DRx4jfdXs({bT&@p2#*+ZA9&ZZI<3H&eR-@lAzyZkcSDMq^!k6(NV47Rl1a2ZF z5CYy0#JpyA=;1;S*YsNS9PfO7uKc3utL@4n&Ds9w#Tn)xxNZUYqdQI12Xr0S%3ksQ zu}+41E=wRU^%UxU#fAw8EO8S50bLB^7_LE2eCa23eX?Z3`)gZpF>(9IrNg-%pg(b{ z;ZRitDCWt>o?)Foqje9vf#%vo@b~)w#hLKS-$2ZLtE(YO6mj= zzr$UjY9~n4&549g4+7TTfE2b0^n&p7>v_r0Wj3M5B_;;C)}=K3Xprn^Z%81%icl8sj*?J~9pX$m;XU(fT`Y2&*DgZ1j@jo-``UkYv zQ9lRyuUU)#{r%0s#0Zg;j^mxoEBiO#H5d!$rr3E0@5arWmCie_tChZWXfTaf3rHie ziF;-vd?mDYj(&RX^B2LMgsv8YcA-xBQdew6-)-0>9FPUyCmWB2%NA5gYv@GhcH=wO z-|P=MxonnQz8Z6lAQNcyzd!L@hT~<{b3+(nt&lDzytaN1m9GWVI7)ban354U8i$5r zQrPM{z9?lf=u|$=%gd`h7*4FLsTn9WZ+93GfvcysRxpmw`1V4>Ime)IdwV<7gD;88 zyIs5LpiDcLqxll(!By?J`C6y?JCC}yLK*#oeWKg}r`5ltwzh|ueQ?Ni>WF2)kEkN% zm3yrRRVcm^w#$eLQm~D~VXdu0A9@&CoPTf0mCS*!bsswhfV%CDv4kY!+G%pF6$4SmJrc~uBEImNO*SF z-xQTv%-#5zD$-tJI{5b83z6jM&Q6%0aLR7jjJG~gq|h#(Jdg}oKQvH~LWX2Axjo2_ zdC(vOqEo?VTTz)zDvRqi`h$9JATssT12XdS3FQs*{oiT9nC1LRLpSO zogY&``$Udbxm>&C229FEHh3l*^-S9Bwh&RH8$Cy|o_EGK(-v3$cUz&U`oj}qwdcDA zIJnUo6hXpa({MRRRtcp$gURWDM{(>)_{+?;OtmEHnK_Kl{drt9AkaNKG(E8Xc2 zFs4`Ohz=tm%sLxAQOJ~PkcVMAs}mKN$>62{ZWLf&6v@^=st~q5G*)F#_e}U0#il`O zhCl`KduwIe-=h^a+TRRl?vpsmcWcHB%9)MY%7jECcM;SbG1t9g0%Cuv@esldRT<1? zyuNDl5W;Mp>AHZs7}iZo-6JJm&ki@mG03WYU-aW{s}QM1I$d3fNzS7n?G!70s_EMw zgsOOcYfDo6$AWGMZmNahg(yn&I=$BqF}z!duAO{-MgsNzWuLiYmFO_eSllXGZP^c< z?+4zUeRFqV1AL}Cj-A5nxp)OsQ8_Qp{N`HpU9-q|F4tNx8-Pt+>as@wMBF6DNx)v5 zBtz3)E_DG3Aq-Ra7(CaVVV-z!X{o)xD_j%tj}56ng1QW$F5C5>OS3$0a4n8=#SKdS zw*9qx5BNhhOtcG7c(DHY&?ka_X;||OxGSW z&`rN~69$h^&EXO7-GNFJIs?k(qJpDGKHG!2_dq>vIJDgD+g7tMzZEq7*I8KpE*wK9 zv`&IEPBoAe0NASY>R?p$zI5KNoE((CeWt3nZ{MZ?FrukPf``{wX?rNh29B;^nmyN( zav}8O&F!0S7uu|%@F+rm(jbM^o{8K*h0UY7QDHV#;ulILz&hAZ=?#!h20fb9IF}o< zmA{16@m>~rA|gh_h!QQ0H&ZN<)Vk%hGM{@}$H`qOX5JgzT%+ISkk*qi@4h;Ua65`r z6Y^i!p!o55DSGWhEaLkD`LyTvKOCXMY_(nf3;gc;{ajzxgLB;uwOjHKuDN-kM~H?i z;ow%IbfCqL4fkiiQHOSt)YE=%%kDJ?el$W>U_P{29%xF-b4Pz+3ePPM_9A#;sx<=9vC)n%$> zI{vmC{Y;|XhePOb&nJ_Urc3o%ZpED|Ml91E^G(WoY}_U3Bc{4D;mPgsB3}667zCtb zWUuI-%#%(xARrex8N5v#nm?BVN6NgScy6MN03UC)%4`?SNG4AOL} zN`ADqv%BnCo?l!X&js``D7OiBeFK*3c$rPAsXmm7enmw*&`DX^UsDD$9mAj<^gqEN zR||TQ*}>|-yv5awb1=I=OW0dDI=T zo4Azi;q30mcanrXFeoS}uKiK&-*4&dje$80Af5dd;5x=@$N%}GwkO}{hTLQoUCd5s zhUmKpFH*HNky*0guhT!IC_Lnj$c5sbyrH!>>!alusBfsvpuYxyU>v=mkcVc2p|O9w z91?&(nQFbn;C;vsQtPInA)lc)!zLQfy!Ka>V0x!Qi+QSHXB5MjVh4s-~_ z%K|M1Miu(Q#sl3N$7CTX2q;sTvI+ZDq%7vj9 zKi3uWn3NR#_gA9O(o$tDB2~ZDTa^Uq^9H{@#@#@b#Ao9{q2M_q9`2swwj{VWhx+qS zWVB``*aR&M3ndY8gAv(!$Cp$<0rFk&5(E&mFk3o0hd#I&47%e5U2sy}IU*q(NuF<8 zHD~r_#i`6kHCha$jcC}~Kc1UIv|0>Ay}q6QV(#@NCA_Cg%~m$&MI;RP2Kp2Y zZ`ZihnDyJi1lalVM9slsCLFBQ1}pSMfN2_@p9rk-ZF88Du2b)T60&sTnLqmSMiJfY z#zvyrMV>O<+C(nq<)!C!g9aEX13+1QJ%W%<6~3^5&Yf9w(9j#Ty$J-!SJa`?2aUxF z%+$c6v$9-$iaS;M%hBy*{(k$f_{H@zu5u5bA3WgraG6e&d^&%m1jVr@7>FOhmjwWFO%XI=&Q+OM2d;Gcg<&ryulD#)TzUjmZA!L_Nzd5|2GDZh!Fc z8Pvtc#eH_>Xa&_jvso$8Hyajp8r}yXV?96+V9>4R%~$Kqa#+JbnyhsRf$@Tm&3|$j z8Cl;{M5x%_#@uS1ZK~U@!J~XK)U~Ut_LVr-?MN3e3kCGB*Yken1rN|&c$Qzw`6(L` zv--WcTSw4UutB)?tAzi4ewE-a<{EqTus=16tT&x8R}CfSX#xp}^0*y_Z>1C%G&PB~ zrzkT9Ay$&@o%FviMJNU44kYKT#42nqY+N0f4B6zr0yFm=IsVSZ^~!>FY}C0+QLcN|IQWVFnIx8h2Lqt1F)U7U+Fhl zw7&m%UAB96Ix|+{!kLmn9!hp5%vL{&eJ3E4=r240Trw7A{O9Mj{TAfR4`<%-ewN*- zs{Qk@sPiQ=<&QzC=)8Sw?0$$~LVxY&ZA-=sPQq1QezV~$_(JfsX@W0C%k;^y+Z%Rm z6$dR8iT5g{UGE3;bb=hkRKIt4Py0l!?a%kq6EkZ$UGjUG`(C7aIqlw{`7yZpQ)t$* zLv(U->eVpw1`FMRs}LE#sP-n&}$0rYz}@RRe`wl zV^BOhwBca7A&*hW4FiawFQNbRuJA}Q^Zjd@9@0t^v7rZw_-=QJtQ?H?Y*ARuzCKV? z;Vi5+!C_(jQrYDpaHo@0Fp^KASfO79FC`^bobrcHiBQL;-U0wbJ#i@v>;hEgFC8=a?qEst0J%U1*MExL~3g%2{%4 z!akkArmUUWwQ8Oj%@UMD?30?SyAUv>TKkD53>xbqH6)ZC2sq+_oW66pI!U$Omud4& z_WS~t*GflSM84Yo;iKS`Tlt9|`?@!dNohoD;RFY$(Wg->MPet3#9pMVfFz;0=y}lO z+Hd3GZ|^7$!CBYRl6hyxR(z`Sxz`9deba-is=O2%YSLgZIR=EK+Qtomu-jjiF1Ma) zg_b1@Y9;E*%F^N^UB7f_-G22)WW3)!xfui7Ws(qbK?bxT**Bc-)Hc7;xIsMKohdx# z;=(&nSdU9nH{W?Gy00RfW|w?x2Qq7Nt%K9Ph2^>42vDt>#tYRr*{{xu5|{t1iS&_D zs`F%$QAe~Em3m3!4{?CUqr-}g|4bGzjK*k>Y$2%xnIl+4F?Dkw5TF6VfpMw5rG1VW z#_h;luLi`=&kw^JMnL-GTrI`K@2tp*pl50J)SVZN|=n`Kp05yxrHZQSlDDkCE^&ZnvhmDC-8 zCUP8FwQh}c3hwB7<_@h9UG6XkfBNFvX<~GKYNSlVU z@Ft%ClS9-r_cN`Hrt!Y62AM2-B2t@v)Dejk@lqXrJq$HnOe`8pHJEm zwkg)weSuYkU^Hj_vFj9S|meuqgzApZ`dh)jw0J;_YGw z>b32)!@iYPxutX-5DALi`CxvkDTo_1%LU%fB88I)b>xT)e>=&N`n;6Fj|iS74$)Nq z1~a%RZy_OqBb0GA*QX}J9a@8DAev)nSFrZBgqv=eeGg-yB&v|dze=`brvof(1P_f~ z`lyLw=^c+@tdNhda-j)IO@CRi6nn!GrvmTo7E7A z^|V4xqmL^iUu9v}_`a2f_(JTVcO-L{@)9>JL1rjwO{&bpqb?7qS>y-wZy0D}HtD!H zZZcv@W3l;Si3#44Q2M)Hw!OKfP90d$&SG|PUPQ!kyyRed-JqXu6;UcS(u5akjDA~6 z?W>MoZY~|t4k{`VIJi?!90ubRSG+sUkXe)2ZT=LVLD@0*Jo)v{^ZJqJwY_KhY%z=q z_Bc-|#ha9hYQq|v{TrYvMB@0NZqY5bh|6=m`6wnT_znc|bjewpd4Y0s$yDa9}GiIU~w zy+ccbnwzZ+xN;N=b@BvPRb4A^RWXvEL>o9pZfE}Q?9VGPpk2N<-CfmS&tYw{petQ_ zw)LD={+w3#A)G1bY~XucRwYwX$aU@%5(+W~zs}Y$%tbecC9-C9rFvw<=O}&8HC~O) zw_}D1hof%|kng^)nx!;Sp#82rG~pz*Yo z`2O}x$DpL@&f^CRe-;7}2>L7Mrtey+tkZ|pdjkw?DPn;i8ih-r&rScFp`^?mE!(h} zb~aWFFVp(|?Op`1Dsokf^3W(K4BIZ~=ZhwybM6&J>FSwLe~;<--hIdl3NNBY<{bzt_v z&D;Acf9Eo@sOe_)zdDc~en+a>8;H+xwSBmFJM8tumB^Ique;96x(&Wq^OUbF8Mq2J zqYt-fqfzVhQZtbS8<)OOE9%&PzaPoD$XSL3t&$dQmPEN?ZzKX1tt3`Bjxa!GtYitA z#3d$OQs>2X#9jr7vOf;GU4BovKUdwnGO=atpGR+u94r>6cI)~Qg_VJ%1XYjm<4F?j zWNs^D7)}H*rjXrcg>~yr`xZ%3b)4@|!lf``#LV6X|0E&wzt5DO{gPYC(Z=9UWic>HMRe2V3w-=l?cRN2!9=SnAT%16j*V8mAsn%pH0k=S z|2(w5i|1-Xa=+l0&brlQW^wjFX7SDU))k^kkV|SM?)=n5K_NL)pe;SAe1yo5%DDb~ zGw4?>C2??~s+@NS3=R7Mk@Gp+Om$-((snp<{QHgJHdQFOICa%W6Wj6?jL3Ldl&F6x zlsLw~`k&19wyZ46ZlbVGB(PEfmf7lHE+&}Ywe$`}(kP4k-0@r%Ib=xjOTz76;IvnNmd{Y(n|Wc9mRN z=_`d$SHdGLBRG~CcEgjnaYX0+zZbwrs)&YZBLXoZ(y9u-J65^Y*%si|!Ek&=mAIoB zw^Up&8#=~wEqSLWsY>))bEP3A^syP%JOa{VNq^fXqRjrR>rK73MXwc zkMvJ`_E&X^$UHn`Eddep(6f)wY4D+aqKkf2HoaYjn7lEac?WXW<;ffBUe>YAWak&_5X&q|LqsGinEQ!A)OKCPdPeyDei zdK&h|u8$GEt=Pjz%ifk2Y3+>W7Aq~~K;R2wy?1?)5sY!H+(RMaH% zsNhSKDP~(3RTHJ!qSBTp|1wtI=fGFFyJMob=^|oDEVbns=kQyb&vyO+0+BH&z`5DHp54C)JON;B=Vs`;*X zl=_Q9fu!VQP93*DqwGCqob`S;IrC0XGZ7ZQ@y>sTs4(cWZvL%*Ho`}teoK}8ITD*M z{okHt6^!lkhFA)%E^LT@hCy^-u3FJi$_C9C!!|krOXT1q1C_%^JKu zOg>A+`tRPYYHaQGY09L-#kEa-3z7y9UY+y(l%9jpBmv&+k$*WN{YUJ|8>N#tpi z+Oi(;5>CZ0udQG`yXd+tDAaWmf-w#OLCcWE9TlHvdWVV->q08yw9n6_y_#8*b6yRa z?XPm-8AnCNSMcca__93)UMDu^4Dbgt&Nz1{L z$Q#d?DxFZ_SDiKw(Cj3kxjfJn-)jadL;`JCx$Tkm%pu|T5tgbb5>2YH;%^NYO=Tx1 z(AJg<#1BaoetbEQdh%fRTeR5S9cK*|Gg=Q0Bw0IB0jJFzt+LmzRxY;(72<_Gh_3(^ zfbtm`#%$dOyOu6R1v@*?EA#YQ-~sjO*TzA7xsy<{$&94DplwPc&o%8K!{DuhSQ*Jd|+45?y$N^c5T}-###+!bU{>%SVcvcj_BSY|xv#yC3N$OVhp>Z-2RC68Yagf94nb z*Lhn}2oNis`dfjE{=4jFPh=Ie}-{1xAg*OJmQw3eZ9XIvFR1H^u8FIau zCJkxr0xbs2IKY5G7A7tJCqN~I>Iv!&of^~kJ$Ke5kaNEvTxW!C&o3@`lk$|^ontv|0Z;?0P`#esMk!BLZ|h;2x!$1=n7ml-_rs`ew$Zl{eW=xgbTY3RPY3 zeX&4|e2)8HF)FsmEYU=>MD=3*PI|w|#Y>k<8B%Npz1?{RUuUYAqUn!M-i&;Vii$Fg z?@i>vB_vd+b1kEPne`Y68X1`&GFK_oq3Pa$)s0Bir^MLOI2t`;*`+|e&Q|V5mZ~rj z6x_S>Gpl4z5xv4V?A-o|K0?!Uqlx-Z?@+Q_6h}-jkGNv3do%7q{poJE9I&0+_fE`H zUjlm+m}-6?&$iAsN8Ma$Uz_mgt9SiL=$?&`wKR?}|LZ~n( zgb_ErihZ{^{#n#V^6g;{Q5PJPS3`;1*3=yH1ZBi!eFgfDc0c}i8^ebmsAE!=z~}Op zE$WfHVsYXXA6mGlFDO{G-GrhqLE45a{8i_Gq{4V1Ff`cg=VTRdPWc_2gMb=SYP*oCQ7|mG0h5+^L8bIgV-8Q8J{6x&i?t+Q@NuL+w7WorVQ8rsp3Iu4OUa$ zTb{Fh7u4BQw5U<}yF01QG~|sLwoM4zwpGPuPsJ3He=EC|#J^7m^o*978If)d@J!AC z%@6cuk;9go+5yvCTBT9EueB)gXN?lDyLpiy`@-O00@eCc;5uN5nRFV-G!1sMO>h7e zd~GTI^EXxj=qc;g{DdyDw@vZWm-`YQkuKM$1_21V3VH$cOaH_X75=}cj^EwCH`_7y z$RswHnVmgyZ{;U89^TuT(?Z=4s`1s16W^zf$@Zc*j&mdaowwzOir3*y)+m%g;*9@p5AD zcIWND{4WFex0x5$w^{>>KHE93Z2uYOy=JCn^jpyDR&$A5?Bmzhize~ow{rIV&Q&Ym z&>W6VN(yc=YRfq2Np~J6uVv!qOdH*!K)!8%i@Oy$Q`F+QgBKhWZOSvw3}eIC8j zcF5K%4R2mSulx4xJD7pn1JU*F{ko>J?S|Wp;PC=#CY2lyEMU638$}IK zQ3=fh*|L0q$PMMIuZ)b9LaUEQgZ+Xt!^Y2SAlP}J!@>3cJlZq0f_t{CPael*+HwV? zm(eUNexXxaXlqrzgIeS6?_GWHMZE%pJCS9xno$+;cP@Z}eYph_(sT>~9@Y%|tE1h& zv4N8hA6*yE|28|_AKbMk$l&L=;_r;YxM+OFL=t^xZ;{ZO)i%*;n#=R0?VFGY_^ zIz#9_|G&+%@~6q2k(HWX^M)1psBJ%1; zem^5EI`SGh|M!_Y;nki8+i{-LMn+`PI_WwOG+?I>m+kH#jv9=BlJ>`=(QFaV47hlj08m}e&du7*Ow%8w_ zAKjmwqx`?;8EShLX-j}||JxOK|Ep~NeTU-ve;1Qd9Qpc!{_mIWDm{Jv4^jR1^8bJS bWalc>u9b-66!i-d{F9cD7cUeu`0)P$vE`c( literal 0 HcmV?d00001 diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..5363acc --- /dev/null +++ b/metadata.json @@ -0,0 +1,8 @@ +{ + "id": "dplace-dataset-binford", + "title": "D-PLACE dataset derived from Binford 2001 'Constructing Frames of Reference'", + "description": "The Binford Hunter-Gatherer dataset describes cultural practices for 339 hunter-gatherer groups. Approximately two-thirds of the societies described by Binford are also described in the Ethnographic Atlas. However, the Binford database includes a number of societies not in the Ethnographic Atlas, including many in Australia and northern North America.", + "license": "CC-BY-NC-4.0", + "url": null, + "citation": "Binford, L. 2001. Constructing Frames of Reference: An Analytical Method for Archaeological Theory Building Using Hunter-gatherer and Environmental Data Sets. University of California Press" +} diff --git a/raw/README.md b/raw/README.md new file mode 100644 index 0000000..07d35d5 --- /dev/null +++ b/raw/README.md @@ -0,0 +1 @@ +Binford Hunter-Gatherer dataset describes cultural practices for 339 hunter-gatherer groups. Approximately two-thirds of the societies described by Binford are also described in the EA. However, the Binford database includes a number of societies not in the EA, including many in Australia and northern North America. diff --git a/raw/codes.csv b/raw/codes.csv new file mode 100644 index 0000000..66685b1 --- /dev/null +++ b/raw/codes.csv @@ -0,0 +1,109 @@ +var_id,code,description,name +B001,NA,Missing data,Missing data +B002,NA,Missing data,Missing data +B003,NA,Missing data,Missing data +B004,NA,Missing data,Missing data +B004,1,Majority of a group's nutritional intake comes from terrestrial animal resources,Hunting +B004,2,Majority of a group's nutritional intake comes from terrestrial plant resources,Gathering +B004,3,Majority of a group's nutritional intake comes from aquatic resources,Fishing (aquatic) +B005,NA,Missing data,Missing data +B005,1,"Normal HGF group: at time of contact, subsistence was based exclusively on hunting, gathering and/or fishing. No domesticated resources were exploited, except perhas the dog or plant substance such as tobacco.",Normal +B005,2,"Suspect: altrough the group may be organized similarly to hunter-gatherer-fishers, some subsistence may come from exchanges with non-HGF groups",Suspect +B006,NA,Missing data,Missing data +B007,NA,Missing data,Missing data +B008,NA,Missing data,Missing data +B009,NA,Missing data,Missing data +B009,1,Group is mobile and moves entire population from camp to camp as they go about the subsistence round,Mobile +B009,2,Group is completely sedentary or group moves into and out of a central location that is maintained for more than one year,Sedentary +B010,NA,Missing data,Missing data +B011,NA,Missing data,Missing data +B012,NA,Missing data,Missing data +B013,NA,Missing data,Missing data +B014,NA,Missing data,Missing data +B015,NA,Missing data,Missing data +B016,NA,Missing data,Missing data +B017,NA,Missing data,Missing data +B017,1,Independent nuclear families with monogamy,"Nuclear, monogamous" +B017,2,Independent nuclear families with occasional or limited polygyny,"Nuclear, limited polygyny" +B017,3,Independent polyandrous families,Polyandrous +B017,4,"Independent polygynous families, unusual co-wives pattern (either polygyny is preferentially sororal, with cowives in separate quarters or it is typically non-sororal, with cowives in same quarters","Polygyny, atypical cowives pattern" +B017,5,"Independent polygynous families, usual co-wives pattern (either polygyny is preferentially sororal, with cowives in same quarters, OR typically non-sororal, with cowives in separate quarters)","Polygyny, typical cowives pattern" +B017,6,"Minimal extended or ""stem"" families, i.e., those consisting of only two related families of procreation (disregarding polygamous unions), particularly of adjacent generations",Minimal extended +B017,7,"Small extended families, i.e., those normally embracing the families of procreation of only one individual in the senior generation but of at least two in the next generation. Such families usually dissolve on the death of the head",Small extended +B017,8,"Large extended families, i.e., corporate aggregations of smaller family units occupying a single dwelling or a number of adjacent dwellings and normally embracing the families of procreation of at least two siblings or cousins in each of at least two adjacent generations",Large extended +B018,NA,Missing data,Missing data +B018,1,Monogamous,Monogamous +B018,2,"Polygynous, with polygyny occasional or limited",Limited polygyny +B018,3,"Polygynous, with polygyny common and preferentially sororal, and co-wives not reported to occupy separate quarters","Polygyny, sororal cohabit" +B018,4,"Polygynous, with polygyny common and preferentially sororal, and co-wives typically occupying separate quarters","Polygyny, sororal separate" +B018,5,"Polygynous, with polygyny general and not reported to be preferentially sororal, and co-wives typically occupying separate quarters","Polygyny, non-sororal cohabit" +B018,6,"Polygynous, with polygyny general and not reported to be preferentially sororal, and co-wives not reported to occupy separate quarters","Polygyny, non-sororal separate" +B018,7,Polyandrous,Polyandrous +B019,NA,Missing data,Missing data +B020,NA,Missing data,Missing data +B021,NA,Missing data,Missing data +B022,NA,Missing data,Missing data +B023,NA,Missing data,Missing data +B024,NA,Missing data,Missing data +B025,NA,Missing data,Missing data +B027,NA,Missing data,Missing data +B029,NA,Missing data,Missing data +B029,1,"Local autonomy, senior male ""guidance""",Autonomous +B029,2,"Local autonomy with performance-based leadership, leaders are acknowledged",Local autonomy with leader +B029,3,Local autonomy with a formal council and a leader who assembles the council and has other group duties,Local autonomy with leader and council +B029,4,Neighbourhoods of villages/settlements/large camps integrated into an overarching leadership and decision making organization,Regional leaders +B030,NA,Missing data,Missing data +B030,1,Group is autonomous and exists in a matrix of similarly scaled hunter-gatherer systems,"Autonomous, matrix of similar HG groups" +B030,2,Group is autonomous but is articularted to a socially or politically more complex group of hunter-gatherers,"Autonomous, articulated to more complex HG group(s)" +B030,3,"Group exists in a culturally heterogeneous region and is articulated to a non-hunter gatherer society, either mutualistically or in a patron-client relationship",Articulated to a non-HG society +B031,NA,Missing data,Missing data +B031,1,Absence of any significant class distinctions,Absence of distinctions +B031,2,Wealth distinctions only,Wealth distinctions only +B031,3,Dual stratification into a hereditary aristocracy and a lower class of ordinary people,Dual: hereditary aristocracy and lower class +B032,NA,Missing data,Missing data +B032,1,No special prerogatives,No special prerogatives +B032,2,"No relief from subsistence and no special dress prerogatives, but messengers as regular assistants",No subsistence relief; some assistants +B032,3,"No relief from subsistence and only minor dress prerogatives, but both messengers and a talking chief or speaker for the leader",No subsistence relief; some assistants and dress +B032,4,"Some regular relief from subsistence, in-kind contributions to the leader from the ""people,"" sometimes special roles for the leader's wife",Some subsistence relief +B032,5,"Complete relief from subsistence duties, more assistants, special roles associated with the leader, visible symbols associated with the office, perhaps a permanent ""guard,"" perhaps special marriage rules, and very distinctive clothing","Complete subsistence relief; assistants, distinctive dress" +B033,NA,Missing data,Missing data +B033,1,Absent,Absent +B033,2,Rarely used,Rarely used +B033,3,Commonly used,Commonly used +B033,4,Many convertible items,Many convertible items +B034,NA,Missing data,Missing data +B034,1,Absent,Absent +B034,2,Few (1-3),Few (1-3) +B034,3,Moderate (4-7),Moderate (4-7) +B034,4,Many (equal to or greater than 8),Many (>= 8) +B035,NA,Missing data,Missing data +B035,1,Exogamous,Exogamous +B035,2,Exogamous clan,Exogamous clan +B035,3,Agamous,Agamous +B035,4,Endogamous demed,Endogamous demed +B035,5,Endogamous segmented,Endogamous segmented +B036,NA,Missing data,Missing data +B036,1,No permanent community structures,No permanent structures +B036,2,Rituals and ceremonies held in host's residence,Host's residence +B036,3,Sweat lodge,Sweat lodge +B036,4,Dance house,Dance house +B036,5,"Dance house or men's house, and sweat house",Dance or Men's house and Sweat lodge +B036,6,Functionally specific community house,Functionally specific comm. house +B036,7,Complex of community structures present,Complex of structures +B037,NA,Missing data,Missing data +B037,1,"No ownership reported, use rights recognized by others","No ownership, use rights recognized" +B037,2,"Local group claims exclusive use rights over resource location, residential sites, while households may claim special trees and similar features of the landscape","Grp ownership, hh claim trees/similar features" +B037,3,"Local group claims for hunting areas, dominant animals, fishing sites, and animal drive locations, such claims administered by group leader, but smaller segments may claim exclusive access to resource locations","Grp ownership, subgrps claim excl. access to resources" +B037,4,Elite ownership of land and resources,Elite ownership +B038,NA,Missing data,Missing data +B038,1,Mounted hunters,Mounted hunters +B038,2,Agriculturalists,Agriculturalists +B038,3,Mutualists,Mutualists +B038,4,Egalitarian but without leaders,"Egalitarian, no leaders" +B038,5,Egalitarian with leaders,"Egalitarian, leaders" +B038,6,Ranked wealth,Ranked wealth +B038,7,Ranked elites,Ranked elites +B039,NA,Missing data,Missing data +B040,NA,Missing data,Missing data +B041,NA,Missing data,Missing data +B042,NA,Missing data,Missing data diff --git a/raw/data.csv b/raw/data.csv new file mode 100644 index 0000000..31b4762 --- /dev/null +++ b/raw/data.csv @@ -0,0 +1,13958 @@ +soc_id,sub_case,year,var_id,code,comment,references,source_coded_data,admin_comment +B1,,1970,B001,65,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_5.01, +B10,,1900,B001,65,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_5.01, +B100,,NA,B001,60,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_5.01, +B101,,1934,B001,60,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B001,35,,memmott1983a; memmott1983b,Binford_2001_Table_5.01, +B103,,1928,B001,13,,tindale1962a; tindale1962b,Binford_2001_Table_5.01, +B104,,NA,B001,55,,,Binford_2001_Table_5.01, +B105,,1900,B001,68,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_5.01, +B106,,1910,B001,55,,clement1903; radcliffebrown1912,Binford_2001_Table_5.01, +B107,,1870,B001,24,,brayshaw1990; lumholtz1889,Binford_2001_Table_5.01, +B108,,1934,B001,65,,kaberry1939; nind1831,Binford_2001_Table_5.01, +B109,,1965,B001,70,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_5.01, +B11,,1972,B001,82,,morris1982a,Binford_2001_Table_5.01, +B110,,1880,B001,65,,petersonandlong1986; tonkinson1978,Binford_2001_Table_5.01, +B111,,1960,B001,70,,harris1978; petersonandlong1986,Binford_2001_Table_5.01, +B112,,1968,B001,80,,petersonandlong1986,Binford_2001_Table_5.01, +B113,,1936,B001,65,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_5.01, +B114,,1848,B001,20,,colliverandwoolston1975,Binford_2001_Table_5.01, +B115,,1840,B001,55,,morwood1987; winterbotham1980,Binford_2001_Table_5.01, +B116,,1900,B001,65,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B001,65,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_5.01, +B118,,1968,B001,75,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_5.01, +B119,,1850,B001,35,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_5.01, +B12,,1965,B001,45,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B001,65,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_5.01, +B121,,1900,B001,55,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_5.01, +B122,,1870,B001,65,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B001,65,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_5.01, +B124,,1900,B001,55,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_5.01, +B125,,1880,B001,45,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B001,50,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_5.01, +B127,,1941,B001,55,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B001,40,,,Binford_2001_Table_5.01, +B129,,1840,B001,45,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B001,35,,rai1982; wastl1957,Binford_2001_Table_5.01, +B130,,1910,B001,40,,,Binford_2001_Table_5.01, +B131,,1850,B001,45,,,Binford_2001_Table_5.01, +B132,,1850,B001,40,,nind1831,Binford_2001_Table_5.01, +B133,,1850,B001,35,,williams1985,Binford_2001_Table_5.01, +B134,,1850,B001,35,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_5.01, +B135,,1850,B001,45,,fisonandhowitt1880; howitt1904,Binford_2001_Table_5.01, +B136,,1830,B001,25,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_5.01, +B137,,1830,B001,15,,hiatt1967; jones1971; jones1972,Binford_2001_Table_5.01, +B14,,1924,B001,50,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_5.01, +B143,,1900,B001,30,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_5.01, +B144,,1870,B001,75,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_5.01, +B145,,1870,B001,75,,gifford1926b; strong1929a,Binford_2001_Table_5.01, +B146,,1880,B001,55,,meigs1939,Binford_2001_Table_5.01, +B147,,1850,B001,55,,kroeber1925a; luomala1978,Binford_2001_Table_5.01, +B148,,1860,B001,50,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_5.01, +B149,,1870,B001,60,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_5.01, +B15,,1940,B001,85,,furerhaimendorf1943b,Binford_2001_Table_5.01, +B150,,1860,B001,60,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_5.01, +B151,,1860,B001,45,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_5.01, +B152,,1850,B001,50,,voegelin1938,Binford_2001_Table_5.01, +B153,,1850,B001,60,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_5.01, +B154,,1850,B001,50,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_5.01, +B155,,1850,B001,50,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_5.01, +B156,,1770,B001,40,,,Binford_2001_Table_5.01, +B157,,1870,B001,50,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_5.01, +B158,,1860,B001,60,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B001,65,,cook1956; gifford1926a,Binford_2001_Table_5.01, +B16,,1963,B001,75,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_5.01, +B160,,1860,B001,35,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_5.01, +B161,,1860,B001,25,,cookandheizer1965,Binford_2001_Table_5.01, +B162,,1860,B001,30,,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B001,50,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_5.01, +B164,,1805,B001,50,,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B001,45,,barrett1908; cook1956,Binford_2001_Table_5.01, +B166,,1860,B001,40,,cook1956; goddard1923; nomland1935,Binford_2001_Table_5.01, +B167,,NA,B001,45,,,Binford_2001_Table_5.01, +B168,,1850,B001,40,,collierandthalman1991,Binford_2001_Table_5.01, +B169,,NA,B001,40,,cook1956; nomland1938,Binford_2001_Table_5.01, +B17,,1963,B001,85,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_5.01, +B170,,NA,B001,60,,cook1955,Binford_2001_Table_5.01, +B171,,1850,B001,50,,cook1956; foster1944; gifford1926b,Binford_2001_Table_5.01, +B172,,1860,B001,55,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_5.01, +B173,,1860,B001,50,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B174,,1860,B001,45,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B001,55,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_5.01, +B176,,1860,B001,35,,gray1987,Binford_2001_Table_5.01, +B177,,1860,B001,25,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B001,25,,cook1956; drucker1940,Binford_2001_Table_5.01, +B179,,1860,B001,45,,cookandheizer1965; dixon1907,Binford_2001_Table_5.01, +B18,,1963,B001,65,,senandsen1955; williams1974,Binford_2001_Table_5.01, +B180,,1860,B001,35,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_5.01, +B181,,1870,B001,10,,gray1987,Binford_2001_Table_5.01, +B182,,1860,B001,35,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_5.01, +B183,,1860,B001,35,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B001,30,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_5.01, +B185,,1850,B001,50,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_5.01, +B186,,1850,B001,20,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_5.01, +B187,,1860,B001,30,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_5.01, +B188,,1860,B001,45,,gifford1926b; ray1963,Binford_2001_Table_5.01, +B189,,1860,B001,30,,gifford1926b; spier1930,Binford_2001_Table_5.01, +B19,,1946,B001,90,,ehrenfels1952,Binford_2001_Table_5.01, +B190,,1760,B001,70,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_5.01, +B191,,1570,B001,65,,,Binford_2001_Table_5.01, +B192,,1860,B001,75,,smith1978a; steward1938,Binford_2001_Table_5.01, +B193,,1800,B001,30,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_5.01, +B194,,1715,B001,65,,,Binford_2001_Table_5.01, +B195,,1850,B001,65,,steward1938,Binford_2001_Table_5.01, +B196,,1870,B001,60,,corbusier1886; gifford1932a,Binford_2001_Table_5.01, +B197,,1860,B001,60,,steward1936; steward1938,Binford_2001_Table_5.01, +B198,,1870,B001,65,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_5.01, +B199,,1860,B001,60,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_5.01, +B2,,1968,B001,65,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_5.01, +B20,,1974,B001,75,,bhanu1982; bhanu1992,Binford_2001_Table_5.01, +B200,,1860,B001,60,,steward1936; steward1938,Binford_2001_Table_5.01, +B201,,1860,B001,50,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B001,65,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_5.01, +B203,,1860,B001,55,,steward1938; thomas1983,Binford_2001_Table_5.01, +B204,,1860,B001,60,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_5.01, +B205,,1870,B001,48,,davis1965,Binford_2001_Table_5.01, +B206,,1860,B001,55,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_5.01, +B207,,1860,B001,30,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B208,,1860,B001,50,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_5.01, +B209,,1860,B001,40,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_5.01, +B21,,1978,B001,90,,bird1983; birddavid1987,Binford_2001_Table_5.01, +B210,,1870,B001,50,,fowler1992,Binford_2001_Table_5.01, +B211,,1860,B001,50,,steward1938,Binford_2001_Table_5.01, +B212,,1870,B001,40,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B001,45,,steward1938,Binford_2001_Table_5.01, +B214,,1860,B001,50,,steward1938,Binford_2001_Table_5.01, +B215,,1870,B001,45,,steward1938,Binford_2001_Table_5.01, +B216,,1860,B001,40,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_5.01, +B217,,1860,B001,55,,steward1938,Binford_2001_Table_5.01, +B218,,1860,B001,45,,steward1938,Binford_2001_Table_5.01, +B219,,1860,B001,40,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_5.01, +B22,,1900,B001,10,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_5.01, +B221,,1860,B001,40,,steward1938,Binford_2001_Table_5.01, +B222,,1860,B001,35,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_5.01, +B223,,1870,B001,45,,lowie1924,Binford_2001_Table_5.01, +B224,,1860,B001,50,,steward1938,Binford_2001_Table_5.01, +B225,,1850,B001,48,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_5.01, +B226,,1870,B001,50,,brink1969; kelly1932,Binford_2001_Table_5.01, +B227,,1860,B001,20,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_5.01, +B228,,1860,B001,55,,steward1938,Binford_2001_Table_5.01, +B229,,1860,B001,30,,steward1938,Binford_2001_Table_5.01, +B23,,1900,B001,10,,qiu1983,Binford_2001_Table_5.01, +B230,,1860,B001,40,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_5.01, +B231,,1870,B001,45,,whiting1950,Binford_2001_Table_5.01, +B232,,1860,B001,20,,boas1899; steward1938,Binford_2001_Table_5.01, +B233,,1860,B001,45,,steward1938,Binford_2001_Table_5.01, +B234,,1860,B001,35,,boas1899; steward1974b,Binford_2001_Table_5.01, +B24,,1900,B001,5,,lee1967; shimkin1939,Binford_2001_Table_5.01, +B240,,1880,B001,60,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_5.01, +B241,,1870,B001,20,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_5.01, +B242,,1880,B001,60,,basehart1972; morice1906b; opler1937,Binford_2001_Table_5.01, +B243,,1870,B001,20,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_5.01, +B244,,1860,B001,10,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B245,,1860,B001,15,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_5.01, +B246,,1860,B001,20,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_5.01, +B248,,1870,B001,20,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_5.01, +B249,,1870,B001,10,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_5.01, +B25,,1920,B001,3,,shternberg1933,Binford_2001_Table_5.01, +B250,,1880,B001,15,,chamberlain1892; turneyhigh1941,Binford_2001_Table_5.01, +B252,,1860,B001,30,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B253,,1870,B001,20,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_5.01, +B254,,1850,B001,10,,skinner1914,Binford_2001_Table_5.01, +B255,,1850,B001,20,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_5.01, +B256,,1850,B001,20,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_5.01, +B257,,1870,B001,20,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B001,10,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_5.01, +B259,,1850,B001,10,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B26,,1900,B001,5,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_5.01, +B260,,1880,B001,10,,bamforth1988; jenness1938,Binford_2001_Table_5.01, +B268,,1880,B001,15,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_5.01, +B269,,1860,B001,10,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B001,1,,chard1963; popov1966,Binford_2001_Table_5.01, +B270,,1870,B001,15,,smith1940a; smith1940b,Binford_2001_Table_5.01, +B271,,1850,B001,10,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_5.01, +B272,,1880,B001,15,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_5.01, +B273,,1880,B001,5,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_5.01, +B274,,1850,B001,15,,ray1937; ray1938; silverstein1990,Binford_2001_Table_5.01, +B275,,1860,B001,10,,boyd1990; zenk1990,Binford_2001_Table_5.01, +B276,,1860,B001,10,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_5.01, +B277,,1880,B001,10,,stern1934,Binford_2001_Table_5.01, +B278,,1860,B001,10,,olson1936a; schalk1978,Binford_2001_Table_5.01, +B279,,1880,B001,10,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_5.01, +B28,,1860,B001,1,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_5.01, +B280,,1880,B001,10,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_5.01, +B281,,NA,B001,30,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_5.01, +B282,,1860,B001,10,,kennedyandbouchard1990,Binford_2001_Table_5.01, +B283,,1880,B001,10,,cybulski1990b; hilton1990,Binford_2001_Table_5.01, +B284,,1880,B001,10,,pettitt1950,Binford_2001_Table_5.01, +B285,,1860,B001,10,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_5.01, +B286,,1860,B001,10,,gunther1962; schalk1978; swan1870,Binford_2001_Table_5.01, +B287,,1880,B001,10,,olson1940; schalk1978,Binford_2001_Table_5.01, +B288,,1890,B001,5,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B289,,1880,B001,5,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_5.01, +B290,,1890,B001,1,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B291,,1880,B001,5,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_5.01, +B292,,1880,B001,1,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_5.01, +B293,,1880,B001,1,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_5.01, +B294,,1840,B001,1,,holmberg1985; knechtandjordan1985,Binford_2001_Table_5.01, +B295,,1890,B001,0.01,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_5.01, +B296,,1850,B001,5,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_5.01, +B297,,1930,B001,0.01,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_5.01, +B298,,1830,B001,1,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_5.01, +B299,,1930,B001,1,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_5.01, +B3,,1900,B001,70,,hagen1908; persoon1989; volz1909,Binford_2001_Table_5.01, +B315,,1850,B001,30,,murdock1980,Binford_2001_Table_5.01, +B316,,1860,B001,30,,,Binford_2001_Table_5.01, +B317,,1870,B001,20,,teit1928,Binford_2001_Table_5.01, +B318,,1880,B001,30,,,Binford_2001_Table_5.01, +B319,,1860,B001,25,,spierandsapir1930,Binford_2001_Table_5.01, +B320,,1860,B001,20,,teit1930,Binford_2001_Table_5.01, +B321,,1880,B001,15,,clineetal1938,Binford_2001_Table_5.01, +B322,,1860,B001,25,,grabert1974; teit1930,Binford_2001_Table_5.01, +B323,,1870,B001,25,,kelly1995; ray1932; teit1930,Binford_2001_Table_5.01, +B324,,1850,B001,33,,spinden1908,Binford_2001_Table_5.01, +B325,,1860,B001,20,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_5.01, +B326,,1870,B001,20,,teit1930,Binford_2001_Table_5.01, +B327,,1870,B001,15,,jenness1935; quimby1962,Binford_2001_Table_5.01, +B328,,1800,B001,15,,kinietz1947,Binford_2001_Table_5.01, +B329,,1700,B001,10,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_5.01, +B330,,1860,B001,20,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_5.01, +B331,,1880,B001,10,,hickerson1967; landes1937a,Binford_2001_Table_5.01, +B332,,1870,B001,5,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_5.01, +B333,,1850,B001,15,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_5.01, +B334,,1940,B001,10,,dunning1959; grant1924; rogers1969,Binford_2001_Table_5.01, +B335,,1900,B001,15,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_5.01, +B336,,1865,B001,10,,goldman1940; jenness1943; smithnd,Binford_2001_Table_5.01, +B337,,1800,B001,10,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_5.01, +B338,,1880,B001,0.9,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_5.01, +B339,,1850,B001,5,,dunning1959; rogers1969,Binford_2001_Table_5.01, +B340,,1900,B001,5,,morantz1983; rogers1969,Binford_2001_Table_5.01, +B341,,1890,B001,10,,boas1895a; rogersandblack1976,Binford_2001_Table_5.01, +B342,,1880,B001,10,,lane1952; tanner1944,Binford_2001_Table_5.01, +B343,,1880,B001,10,,dennison1981; grant1936; jenness1937,Binford_2001_Table_5.01, +B344,,1850,B001,10,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_5.01, +B345,,1860,B001,10,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_5.01, +B346,,1920,B001,10,,honigmann1949; honigmann1954,Binford_2001_Table_5.01, +B347,,1870,B001,10,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_5.01, +B348,,1880,B001,10,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B001,10,,grant1936; jenness1937; jenness1943,Binford_2001_Table_5.01, +B35,,1950,B001,30,,,Binford_2001_Table_5.01, +B350,,1800,B001,10,,gillespie1981,Binford_2001_Table_5.01, +B351,,1880,B001,10,,adney1900; crowandobley1981,Binford_2001_Table_5.01, +B352,,1860,B001,10,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_5.01, +B353,,1900,B001,5,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_5.01, +B354,,1880,B001,5,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_5.01, +B355,,1880,B001,5,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_5.01, +B356,,1880,B001,2,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_5.01, +B357,,1880,B001,2,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_5.01, +B358,,1860,B001,3,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_5.01, +B359,,1930,B001,3,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_5.01, +B36,,1960,B001,60,,metraux1948,Binford_2001_Table_5.01, +B360,,1900,B001,3,,morantz1983; skinner1911,Binford_2001_Table_5.01, +B361,,1860,B001,3,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_5.01, +B362,,1870,B001,3,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_5.01, +B363,,1890,B001,2,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_5.01, +B364,,1860,B001,2,,michael1967; snow1981,Binford_2001_Table_5.01, +B365,,1890,B001,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_5.01, +B369,,1870,B001,1,,ray1992; seltzer1933,Binford_2001_Table_5.01, +B37,,1968,B001,55,,kloos1977; kloos1982,Binford_2001_Table_5.01, +B370,,1890,B001,1,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_5.01, +B371,,1880,B001,1,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_5.01, +B372,,1890,B001,0.01,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_5.01, +B373,,1890,B001,0.1,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_5.01, +B374,,1900,B001,0.1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_5.01, +B375,,1900,B001,0.1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_5.01, +B377,,1950,B001,0.1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_5.01, +B378,,1910,B001,0.1,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_5.01, +B379,,1920,B001,0.1,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_5.01, +B38,,1989,B001,41,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_5.01, +B380,,1880,B001,0.01,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_5.01, +B381,,1920,B001,0.01,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_5.01, +B382,,1920,B001,0.01,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_5.01, +B383,,1880,B001,0.01,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_5.01, +B384,,1920,B001,0.01,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_5.01, +B385,,1880,B001,0.01,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_5.01, +B386,,1880,B001,0.01,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_5.01, +B387,,1880,B001,0.01,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_5.01, +B388,,1880,B001,0.01,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_5.01, +B389,,1880,B001,0.01,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_5.01, +B39,,1960,B001,60,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_5.01, +B390,,1880,B001,0.01,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_5.01, +B4,,1989,B001,50,,agrawal1967; rizvi1990,Binford_2001_Table_5.01, +B40,,1990,B001,76,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_5.01, +B41,,1920,B001,70,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_5.01, +B42,,1901,B001,20,,metraux1946guato; schmidt1942,Binford_2001_Table_5.01, +B43,,1940,B001,45,,holmberg1950,Binford_2001_Table_5.01, +B44,,1968,B001,35,,stearman1989,Binford_2001_Table_5.01, +B45,,1938,B001,75,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_5.01, +B46,,1600,B001,25,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_5.01, +B47,,1975,B001,30,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01, +B48,,1880,B001,60,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_5.01, +B49,,1954,B001,55,,kozaketal1979,Binford_2001_Table_5.01, +B5,,1952,B001,35,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_5.01, +B50,,1910,B001,35,,henry1964,Binford_2001_Table_5.01, +B51,,1870,B001,30,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_5.01, +B52,,1880,B001,5,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B001,5,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_5.01, +B54,,1880,B001,5,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_5.01, +B55,,1870,B001,5,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_5.01, +B6,,1906,B001,50,,temple1903,Binford_2001_Table_5.01, +B60,,1980,B001,79.5,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_5.01, +B61,,1976,B001,90.3,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_5.01, +B62,,1977,B001,85,,skeatandblagden1906; terashima1980,Binford_2001_Table_5.01, +B63,,1980,B001,85,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_5.01, +B64,,1980,B001,88.2,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_5.01, +B65,,1930,B001,90,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_5.01, +B66,,NA,B001,85,,kellyandpoyer1993,Binford_2001_Table_5.01, +B67,,1950,B001,60,,clark1951,Binford_2001_Table_5.01, +B68,,1920,B001,55,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_5.01, +B69,,1910,B001,60,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_5.01, +B7,,1903,B001,87,,fox1952; reed1904,Binford_2001_Table_5.01, +B70,,1920,B001,45,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_5.01, +B71,,1928,B001,65,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_5.01, +B72,,1950,B001,67,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_5.01, +B73,,1910,B001,67,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_5.01, +B74,,1962,B001,55,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_5.01, +B75,,1976,B001,55,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_5.01, +B76,,1968,B001,55,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_5.01, +B77,,1920,B001,52,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_5.01, +B78,,1950,B001,40,,potgieter1955; toerien1958,Binford_2001_Table_5.01, +B79,,NA,B001,70,,bleek1924a,Binford_2001_Table_5.01, +B8,,1870,B001,60,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_5.01, +B82,,1848,B001,35,,moore1979,Binford_2001_Table_5.01, +B83,,1900,B001,20,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B001,40,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_5.01, +B85,,1970,B001,40,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_5.01, +B86,,1973,B001,35,,meehan1982; petersonandlong1986,Binford_2001_Table_5.01, +B87,,1950,B001,35,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_5.01, +B88,,1930,B001,55,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_5.01, +B89,,1920,B001,60,,kaberry1935; kaberry1939,Binford_2001_Table_5.01, +B9,,1920,B001,50,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_5.01, +B90,,1920,B001,50,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_5.01, +B91,,1920,B001,55,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_5.01, +B92,,1960,B001,30,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_5.01, +B93,,1930,B001,20,,thomson1933; thomson1934,Binford_2001_Table_5.01, +B94,,1937,B001,65,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_5.01, +B95,,1920,B001,40,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_5.01, +B96,,1880,B001,35,,andersonandrobins1988; roth1909,Binford_2001_Table_5.01, +B97,,1930,B001,30,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_5.01, +B98,,1926,B001,25,,haleandtindale1933; roth1909,Binford_2001_Table_5.01, +B99,,1900,B001,30,,stanner1933,Binford_2001_Table_5.01, +B1,,1970,B010,22,,sellato1994:143-44,Binford_2001_Tables_5.01_and_8.01, +B10,,1900,B010,14,,"bailey1863:296, 308; seligmannandseligmann1911:43-44",Binford_2001_Tables_5.01_and_8.01, +B100,,NA,B010,18,,blundell1980:106-7; love1936:93,Binford_2001_Tables_5.01_and_8.01, +B101,,,B010,NA,,,, +B102,,,B010,NA,,,, +B103,,1928,B010,15.4,,tindale1962a:269,Binford_2001_Tables_5.01_and_8.01, +B104,,,B010,NA,,,, +B105,,1900,B010,20,,harris1978:128,Binford_2001_Tables_5.01_and_8.01, +B106,,1910,B010,11,,radcliffebrown1912:146,Binford_2001_Tables_5.01_and_8.01, +B107,,1870,B010,19,"Note, Binford Table 5.01 lists '9', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",brayshaw1990:31; lumholtz1889:194,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '9', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B108,,1934,B010,16,,nind1831:22,Binford_2001_Tables_5.01_and_8.01, +B109,,1965,B010,9,,"meggitt1962:47, 50, 56",Binford_2001_Tables_5.01_and_8.01, +B11,,1972,B010,10,,"morris1982a:36-37, 174",Binford_2001_Tables_5.01_and_8.01, +B110,,1880,B010,8,,petersonandlong1986:116-17; tonkinson1978:53,Binford_2001_Tables_5.01_and_8.01, +B111,,1960,B010,16,"Note, Binford Table 5.01 lists '8', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",harris1978:128,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '8', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B112,,1968,B010,11.5,,"petersonandlong1986:112-15, 124",Binford_2001_Tables_5.01_and_8.01, +B113,,1936,B010,8.5,,long1971:264-65; meggitt1962:55; petersonandlong1986:104-11,Binford_2001_Tables_5.01_and_8.01, +B114,,,B010,NA,,,, +B115,,1840,B010,20,,morwood1987:339; winterbotham1980:41,Binford_2001_Tables_5.01_and_8.01, +B116,,,B010,NA,,,, +B117,,1965,B010,16,"Note, Binford Table 5.01 lists '10', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",binfordfieldnotes1974; denham1975:120; oconnell1987:85,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '10', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B118,,1968,B010,11,,gould1977:21-22,Binford_2001_Tables_5.01_and_8.01, +B119,,1850,B010,14,,gardner1978:239-46,Binford_2001_Tables_5.01_and_8.01, +B12,,1965,B010,17,,headlandperscomm1993,Binford_2001_Tables_5.01_and_8.01, +B120,,1968,B010,10,,"brokensha1975:19, 33; layton1983:26; petersonandlong1986:127; tindale1972:224, 244",Binford_2001_Tables_5.01_and_8.01, +B121,,1900,B010,7,"Note, Binford Table 5.01 lists '6.7', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.","gason1879:257, 264; sturt1849a:1:254, 261, 296, 316, 407, 414; sturt1849a:2:70, 74",Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '6.7', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B122,,,B010,NA,,,, +B123,,1922,B010,9.5,,tindaleperscomm1965,Binford_2001_Tables_5.01_and_8.01, +B124,,1900,B010,9.6,,"spencerandgillen1927:15, 506",Binford_2001_Tables_5.01_and_8.01, +B125,,,B010,NA,,,, +B126,,1912,B010,10.6,,petersonandlong1986:129-34,Binford_2001_Tables_5.01_and_8.01, +B127,,,B010,NA,,,, +B128,,,B010,NA,,,, +B129,,,B010,NA,,,, +B13,,1979,B010,12,,"rai1982:63, 66, 119",Binford_2001_Tables_5.01_and_8.01, +B130,,,B010,NA,,,, +B131,,,B010,NA,,,, +B132,,1850,B010,9,,nind1831:28,Binford_2001_Tables_5.01_and_8.01, +B133,,1850,B010,25,,williams1985:75,Binford_2001_Tables_5.01_and_8.01, +B134,,1850,B010,7.3,,"gaughwinandsullivan1984:92, 94",Binford_2001_Tables_5.01_and_8.01, +B135,,1850,B010,10,,fisonandhowitt1880:209; howitt1904:773-77,Binford_2001_Tables_5.01_and_8.01, +B136,,1830,B010,7.5,,"hiatt1967:201; jones1971:278, 279",Binford_2001_Tables_5.01_and_8.01, +B137,,1830,B010,7.5,,"hiatt1967:201; jones1971:278, 279",Binford_2001_Tables_5.01_and_8.01, +B14,,1924,B010,18.9,,"vanoverbergh1925:195, 196-98, 432",Binford_2001_Tables_5.01_and_8.01, +B143,,1900,B010,17,,bowen1976:24-30; griffen1959:vii,Binford_2001_Tables_5.01_and_8.01, +B144,,1870,B010,20,,"bean1972:76; kroeber1925a:692, 706-7; strong1929a:43-56",Binford_2001_Tables_5.01_and_8.01, +B145,,,B010,NA,,,, +B146,,,B010,NA,,,, +B147,,,B010,NA,,,, +B148,,,B010,NA,,,, +B149,,,B010,NA,,,, +B15,,1940,B010,19.3,,furerhaimendorf1943b:366,Binford_2001_Tables_5.01_and_8.01, +B150,,1860,B010,14,"Note, Binford Table 8.01 gives value of ""1""; assumed this was a typo and adopted value from table 5.01",oxendine1983:50-57,Binford_2001_Table_5.01,"Note, Binford Table 8.01 gives value of ""1""; assumed this was a typo and adopted value from table 5.01" +B151,,,B010,NA,,,, +B152,,1850,B010,14,"Note, Binford Table 5.01 lists '10', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",voegelin1938:39-43,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '10', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B153,,1850,B010,13,,goldschmidt1948:445,Binford_2001_Tables_5.01_and_8.01, +B154,,1850,B010,16,,cook1955:35,Binford_2001_Tables_5.01_and_8.01, +B155,,,B010,NA,,,, +B156,,,B010,NA,,,, +B157,,1870,B010,13,,gifford1932b:42-47,Binford_2001_Tables_5.01_and_8.01, +B158,,,B010,NA,,,, +B159,,,B010,NA,,,, +B16,,1963,B010,19.5,,"pookajorn1985:187, 207; velder1963:186-87",Binford_2001_Tables_5.01_and_8.01, +B160,,1860,B010,20,,"dubois1935:28, 29",Binford_2001_Tables_5.01_and_8.01, +B161,,,B010,NA,,,, +B162,,,B010,NA,,,, +B163,,1850,B010,11,,wilsonandtowne1978:388,Binford_2001_Tables_5.01_and_8.01, +B164,,,B010,NA,,,, +B165,,,B010,NA,,,, +B166,,,B010,NA,,,, +B167,,,B010,NA,,,, +B168,,,B010,NA,,,, +B169,,,B010,NA,,,, +B17,,1963,B010,14,,"gardner1965:101; gardner1988:93, 94",Binford_2001_Tables_5.01_and_8.01, +B170,,,B010,NA,,,, +B171,,,B010,NA,,,, +B172,,,B010,NA,,,, +B173,,,B010,NA,,,, +B174,,,B010,NA,,,, +B175,,1850,B010,19,,cook1955:36,Binford_2001_Tables_5.01_and_8.01, +B176,,1860,B010,18,,gray1987:37-40,Binford_2001_Tables_5.01_and_8.01, +B177,,,B010,NA,,,, +B178,,1870,B010,18,,cook1956:101; drucker1940:226-27,Binford_2001_Tables_5.01_and_8.01, +B179,,,B010,NA,,,, +B18,,1963,B010,26.8,,senandsen1955:172; williams1974:79,Binford_2001_Tables_5.01_and_8.01, +B180,,,B010,NA,,,, +B181,,,B010,NA,,,, +B182,,,B010,NA,,,, +B183,,,B010,NA,,,, +B184,,,B010,NA,,,, +B185,,,B010,NA,,,, +B186,,,B010,NA,,,, +B187,,,B010,NA,,,, +B188,,1860,B010,15,,ray1963:204,Binford_2001_Tables_5.01_and_8.01, +B189,,1860,B010,18,,"spier1930:5-8, 23",Binford_2001_Tables_5.01_and_8.01, +B19,,1946,B010,17.5,,ehrenfels1952:66-67,Binford_2001_Tables_5.01_and_8.01, +B190,,1760,B010,11.7,,aschmann1967:122,Binford_2001_Tables_5.01_and_8.01, +B191,,,B010,NA,,,, +B192,,1860,B010,7.5,,steward1938:85-91,Binford_2001_Tables_5.01_and_8.01, +B193,,,B010,NA,,,, +B194,,,B010,NA,,,, +B195,,1850,B010,7.5,,steward1938:84,Binford_2001_Tables_5.01_and_8.01, +B196,,,B010,NA,,,, +B197,,1860,B010,13.5,,steward1938:80-84,Binford_2001_Tables_5.01_and_8.01, +B198,,1870,B010,7,,"hayden1936:142, 165-68, 70; kroeber1935:45",Binford_2001_Tables_5.01_and_8.01, +B199,,1860,B010,15,,voegelin1938:48,Binford_2001_Tables_5.01_and_8.01, +B2,,1968,B010,19,,eder1978:56; eder1987:105,Binford_2001_Tables_5.01_and_8.01, +B20,,1974,B010,10.2,,bhanu1992:table 1.1,Binford_2001_Tables_5.01_and_8.01, +B200,,1860,B010,9,,"steward1938:77, 78, 80",Binford_2001_Tables_5.01_and_8.01, +B201,,,B010,NA,,,, +B202,,1870,B010,13,,liljebladandfowler1986:414-15; steward1938:110,Binford_2001_Tables_5.01_and_8.01, +B203,,1860,B010,9.5,,steward1938:110,Binford_2001_Tables_5.01_and_8.01, +B204,,1860,B010,10.1,"Note, two estimates provided by Binford (10.1, 9.6). The latter refers specifically to Kaibab Southern Paiute; this entry is one of those estimates",kelly1964:11-22,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (10.1, 9.6). The latter refers specifically to Kaibab Southern Paiute." +B204,Special reference to Kaibab Southern Paiute,1860,B010,9.6,"Note, two estimates provided by Binford (10.1, 9.6). The latter refers specifically to Kaibab Southern Paiute; this entry is one of those estimates",eulerandfowler1966:35,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (10.1, 9.6). The latter refers specifically to Kaibab Southern Paiute." +B205,,1870,B010,9.6,,davis1965:36,Binford_2001_Tables_5.01_and_8.01, +B206,,,B010,NA,,,, +B207,,1860,B010,11.2,,gouldperscomm1992,Binford_2001_Tables_5.01_and_8.01, +B208,,,B010,NA,,,, +B209,,1860,B010,17.5,,"janetski1983:53-54, 75",Binford_2001_Tables_5.01_and_8.01, +B21,,1978,B010,13.8,,bird1983:58,Binford_2001_Tables_5.01_and_8.01, +B210,,1870,B010,18,,"fowler1992:35-37, 154",Binford_2001_Tables_5.01_and_8.01, +B211,,1860,B010,10.5,,steward1938:61,Binford_2001_Tables_5.01_and_8.01, +B212,,,B010,NA,,,, +B213,,,B010,NA,,,, +B214,,1860,B010,10,,steward1938:132,Binford_2001_Tables_5.01_and_8.01, +B215,,1870,B010,11,,steward1938:124-27,Binford_2001_Tables_5.01_and_8.01, +B216,,1860,B010,12,"Note, Binford Table 5.01 lists '11.4', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",lowie1924:284; steward1938:161,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '11.4', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B217,,1860,B010,11,,steward1938:117,Binford_2001_Tables_5.01_and_8.01, +B218,,1860,B010,10,,"steward1938:101, 108",Binford_2001_Tables_5.01_and_8.01, +B219,,,B010,NA,,,, +B22,Special reference to Hokkaido Ainu,1900,B010,15.1,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (15.1) and the second to Kuril Island Ainu (22); this entry is one of those estimates",watanabe1964a:8-9,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (15.1) and the second to Kuril Island Ainu (22)" +B22,Special reference to Kuril Island Ainu,1900,B010,22,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (15.1) and the second to Kuril Island Ainu (22); this entry is one of those estimates","landor1893:89, 125",Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (15.1) and the second to Kuril Island Ainu (22)" +B221,,1860,B010,16,,steward1938:174,Binford_2001_Tables_5.01_and_8.01, +B222,,,B010,NA,,,, +B223,,1870,B010,16,,lowie1924:284,Binford_2001_Tables_5.01_and_8.01, +B224,,1860,B010,12.5,,steward1938:130,Binford_2001_Tables_5.01_and_8.01, +B225,,1850,B010,9,,price1962:40,Binford_2001_Tables_5.01_and_8.01, +B226,,1870,B010,13,,"kelly1932:78, 105",Binford_2001_Tables_5.01_and_8.01, +B227,,1860,B010,16,,shimkin1947:255; steward1974a:373,Binford_2001_Tables_5.01_and_8.01, +B228,,1860,B010,21,,steward1938:145-46,Binford_2001_Tables_5.01_and_8.01, +B229,,1860,B010,12,,steward1938:209,Binford_2001_Tables_5.01_and_8.01, +B23,,1900,B010,20,"Binford noted this was an ""estimate""",qiu1983,Binford_2001_Tables_5.01_and_8.01, +B230,,1860,B010,16,,steward1974b:147,Binford_2001_Tables_5.01_and_8.01, +B231,,1870,B010,11,,whiting1950:19,Binford_2001_Tables_5.01_and_8.01, +B232,,1860,B010,18.3,,steward1938:186-89,Binford_2001_Tables_5.01_and_8.01, +B233,,1860,B010,16,,steward1938:113,Binford_2001_Tables_5.01_and_8.01, +B234,,1860,B010,17,,steward1974b:147,Binford_2001_Tables_5.01_and_8.01, +B24,,1900,B010,24,"Note, Binford Table 5.01 lists '19', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",lee1967:24; shimkin1939:150,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '19', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B240,,1880,B010,25,,basehartperscomm1972; swanton1952:323,Binford_2001_Tables_5.01_and_8.01, +B241,,1870,B010,60,,wallaceandhoebel1952:23,Binford_2001_Tables_5.01_and_8.01, +B242,,1880,B010,34,,basehart1972:5; morice1906b:496; opler1937:177-82,Binford_2001_Tables_5.01_and_8.01, +B243,,1870,B010,35,,bamforth1988:106-9,Binford_2001_Tables_5.01_and_8.01, +B244,,,B010,NA,,,, +B245,,1860,B010,45,,"moore1987:180-86, 194",Binford_2001_Tables_5.01_and_8.01, +B246,,1860,B010,36,,flannery1953:54; gussowetal1974:23,Binford_2001_Tables_5.01_and_8.01, +B248,,1870,B010,66,,bamforth1988:106-9; denig1961:165,Binford_2001_Tables_5.01_and_8.01, +B249,,1870,B010,38,,culbertson1952:135,Binford_2001_Tables_5.01_and_8.01, +B25,,1920,B010,23,,shternberg1933:385,Binford_2001_Tables_5.01_and_8.01, +B250,,,B010,NA,,,, +B252,,1860,B010,43,,steward1938:201-6,Binford_2001_Tables_5.01_and_8.01, +B253,,1870,B010,34,,bamforth1988:106-9; swanton1952:278,Binford_2001_Tables_5.01_and_8.01, +B254,,1850,B010,40,,skinner1914:477,Binford_2001_Tables_5.01_and_8.01, +B255,,1850,B010,45,,ewers1955:303,Binford_2001_Tables_5.01_and_8.01, +B256,,1850,B010,70,,bushnell1922:26; ewers1955:303,Binford_2001_Tables_5.01_and_8.01, +B257,,1870,B010,55,,bushnell1922:32-33; culbertson1952:107; lowrieandclarke1832,Binford_2001_Tables_5.01_and_8.01, +B258,,1850,B010,40,,"bamforth1988:106-109; bushnell1922:20, 21",Binford_2001_Tables_5.01_and_8.01, +B259,,1850,B010,42,,bamforth1988:106-109,Binford_2001_Tables_5.01_and_8.01, +B26,,1900,B010,12.3,,"kreynovich1979:191-92, 196",Binford_2001_Tables_5.01_and_8.01, +B260,,1880,B010,43,,bamforth1988:106-109; jenness1938:10-11,Binford_2001_Tables_5.01_and_8.01, +B268,,,B010,NA,,,, +B269,,,B010,NA,,,, +B27,,1933,B010,14,,"popov1966:12, 103",Binford_2001_Tables_5.01_and_8.01, +B270,,1870,B010,28,,smith1940a:7-14,Binford_2001_Tables_5.01_and_8.01, +B271,,,B010,NA,,,, +B272,,,B010,NA,,,, +B273,,,B010,NA,,,, +B274,,,B010,NA,,,, +B275,,,B010,NA,,,, +B276,,,B010,NA,,,, +B277,,,B010,NA,,,, +B278,,,B010,NA,,,, +B279,,,B010,NA,,,, +B28,,1860,B010,15,,krupnik1983a:94-95,Binford_2001_Tables_5.01_and_8.01, +B280,,,B010,NA,,,, +B281,,,B010,NA,,,, +B282,,,B010,NA,,,, +B283,,,B010,NA,,,, +B284,,1880,B010,29,,pettitt1950:3-5,Binford_2001_Tables_5.01_and_8.01, +B285,,,B010,NA,,,, +B286,,,B010,NA,,,, +B287,,,B010,NA,,,, +B288,,,B010,NA,,,, +B289,,,B010,NA,,,, +B290,,,B010,NA,,,, +B291,,,B010,NA,,,, +B292,,,B010,NA,,,, +B293,,,B010,NA,,,, +B294,,,B010,NA,,,, +B295,,,B010,NA,,,, +B296,,1850,B010,19,,michael1967:306,Binford_2001_Tables_5.01_and_8.01, +B297,,,B010,NA,,,, +B298,,,B010,NA,,,, +B299,,,B010,NA,,,, +B3,,1900,B010,12,,hagen1908:25-28; persoon1989:511,Binford_2001_Tables_5.01_and_8.01, +B315,,,B010,NA,,,, +B316,,,B010,NA,,,, +B317,,,B010,NA,,,, +B318,,,B010,NA,,,, +B319,,1860,B010,25,,spierandsapir1930:166-67,Binford_2001_Tables_5.01_and_8.01, +B320,,1860,B010,21,,"teit1930:39, 331",Binford_2001_Tables_5.01_and_8.01, +B321,,1880,B010,20,,clineetal1938:87,Binford_2001_Tables_5.01_and_8.01, +B322,,1860,B010,23,,teit1930:207-11,Binford_2001_Tables_5.01_and_8.01, +B323,,,B010,NA,,,, +B324,,,B010,NA,,,, +B325,,1860,B010,18,,teit1900:241-48,Binford_2001_Tables_5.01_and_8.01, +B326,,1870,B010,22,,teit1930:331,Binford_2001_Tables_5.01_and_8.01, +B327,,1870,B010,15,,jenness1935:13,Binford_2001_Tables_5.01_and_8.01, +B328,,,B010,NA,,,, +B329,,1700,B010,15,,speck1922:143-44,Binford_2001_Tables_5.01_and_8.01, +B330,,1860,B010,24,,teit1930:331; turneyhigh1937:98,Binford_2001_Tables_5.01_and_8.01, +B331,,1880,B010,21,,hickerson1967:54-55,Binford_2001_Tables_5.01_and_8.01, +B332,,1870,B010,15,,bishop1978:222-26,Binford_2001_Tables_5.01_and_8.01, +B333,,,B010,NA,,,, +B334,,1940,B010,22,,"dunning1959:57, 58, 84; rogers1969:31",Binford_2001_Tables_5.01_and_8.01, +B335,,1900,B010,7,,"rogers1963b:67, 76, 88; rogers1969:25, 31",Binford_2001_Tables_5.01_and_8.01, +B336,,1865,B010,20,,goldman1940:334,Binford_2001_Tables_5.01_and_8.01, +B337,,1800,B010,18,,hickerson1962:30-33,Binford_2001_Tables_5.01_and_8.01, +B338,,1880,B010,15,"Note, Binford Table 5.01 lists '6', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",rogers1963a:23; rogers1969:30,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '6', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B339,,,B010,NA,,,, +B340,,1900,B010,12,,"morantz1983:89, 106; rogers1969:31",Binford_2001_Tables_5.01_and_8.01, +B341,,1890,B010,10,,rogersandblack1976:19,Binford_2001_Tables_5.01_and_8.01, +B342,,1880,B010,22,,tanner1944:592-609,Binford_2001_Tables_5.01_and_8.01, +B343,,1880,B010,18,,dennison1981:434-35; jenness1937:14,Binford_2001_Tables_5.01_and_8.01, +B344,,1850,B010,20,,ives1985:166-67,Binford_2001_Tables_5.01_and_8.01, +B345,,1860,B010,13,,"helm1961:50-52, 169; ives1985:166-67; janes1983:50-51",Binford_2001_Tables_5.01_and_8.01, +B346,,1920,B010,16,,honigmann1949:33-37,Binford_2001_Tables_5.01_and_8.01, +B347,,,B010,NA,,,, +B348,,,B010,NA,,,, +B349,,1880,B010,18,,jenness1943:485-86,Binford_2001_Tables_5.01_and_8.01, +B35,,,B010,NA,,,, +B350,,1800,B010,15,,gillespie1981:334-35,Binford_2001_Tables_5.01_and_8.01, +B351,,,B010,NA,,,, +B352,,1860,B010,13,,"helm1961:169; savishinsky1974:47, 54",Binford_2001_Tables_5.01_and_8.01, +B353,,1900,B010,17,,honigmann1956b:58; honigmann1981:228-29,Binford_2001_Tables_5.01_and_8.01, +B354,,1880,B010,14,,clark1974:96,Binford_2001_Tables_5.01_and_8.01, +B355,,1800,B010,23,"Note, focal year differs from that for some other data for society",smith1976:19; smith1978a:81; smith1981:275,Binford_2001_Tables_5.01_and_8.01, +B356,,1880,B010,32,,"slobodin1969:58-59, 64",Binford_2001_Tables_5.01_and_8.01, +B357,Special reference to Kusk Ingalik,1880,B010,8,,michael1967:307,Binford_2001_Tables_5.01_and_8.01, +B358,,1860,B010,12,"Note, Binford Table 5.01 lists '12.5', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",mackenzie1966:49-56,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '12.5', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B359,,1930,B010,17,,mckennan1959:18,Binford_2001_Tables_5.01_and_8.01, +B36,,,B010,NA,,,, +B360,,1900,B010,12,,morantz1983:106,Binford_2001_Tables_5.01_and_8.01, +B361,,1860,B010,22,,helm1968:120,Binford_2001_Tables_5.01_and_8.01, +B362,,,B010,NA,,,, +B363,,1890,B010,17,,legros1982:68-69,Binford_2001_Tables_5.01_and_8.01, +B364,,,B010,NA,,,, +B365,,1890,B010,23,,"henriksen1973:58-59, 68",Binford_2001_Tables_5.01_and_8.01, +B369,,1870,B010,27.5,,ray1992:295,Binford_2001_Tables_5.01_and_8.01, +B37,,1968,B010,18.5,,kloos1977:116,Binford_2001_Tables_5.01_and_8.01, +B370,,1890,B010,18,,burch1975:257-58,Binford_2001_Tables_5.01_and_8.01, +B371,,1880,B010,24.5,,burch1975:269-72; burch1984:305,Binford_2001_Tables_5.01_and_8.01, +B372,,1890,B010,11,,"taylor1974:15-19, 64",Binford_2001_Tables_5.01_and_8.01, +B373,,1890,B010,20,,"willmott1960:48, 53",Binford_2001_Tables_5.01_and_8.01, +B374,,1900,B010,19.5,,birketsmith1929:67-69,Binford_2001_Tables_5.01_and_8.01, +B375,,1900,B010,17.5,,binfordfieldnotes1971; burch1975:255,Binford_2001_Tables_5.01_and_8.01, +B377,,1898-1909,B010,8.9,,amsden1977:224,Binford_2001_Tables_5.01_and_8.01, +B377,,1934-1950,B010,18.5,,amsden1977:224,Binford_2001_Tables_5.01_and_8.01, +B377,,1951-1959,B010,7.8,,amsden1977:224,Binford_2001_Tables_5.01_and_8.01, +B378,,1910,B010,12,,mcghee1988:11; tyrrell1897:167,Binford_2001_Tables_5.01_and_8.01, +B379,,1920,B010,19,,moore1923:340,Binford_2001_Tables_5.01_and_8.01, +B38,,1989,B010,15.1,,gragson1989:289-90; greavesperscomm1993,Binford_2001_Tables_5.01_and_8.01, +B380,,1880,B010,13,,burch1975:260-69,Binford_2001_Tables_5.01_and_8.01, +B381,,1920,B010,18,,"jenness1922:30, 55, 57; rasmussen1932:70, 78-85",Binford_2001_Tables_5.01_and_8.01, +B382,,1920,B010,18,,"briggs1970:15, 372-74",Binford_2001_Tables_5.01_and_8.01, +B383,,1880,B010,13,,"rae1850:40, 48, 49",Binford_2001_Tables_5.01_and_8.01, +B384,,1920,B010,12,"Note, Binford Table 5.01 lists '20', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",mathiassen1928:32,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '20', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B385,,1880,B010,16.2,,"perry1898:131, 171-72, 267-68, 336, 386, 431; york1875:179",Binford_2001_Tables_5.01_and_8.01, +B386,,1880,B010,12,,"boas1888:426; hantzsch1977:39, 99; low1906:57-58",Binford_2001_Tables_5.01_and_8.01, +B387,,1880,B010,22,,"mclintock1860:8, 230, 232, 235, 239, 240",Binford_2001_Tables_5.01_and_8.01, +B388,,1880,B010,14,,mirsky1937a:53; peterson1984:623,Binford_2001_Tables_5.01_and_8.01, +B389,,1880,B010,14,,simpson1875:237; spencer1959:15,Binford_2001_Tables_5.01_and_8.01, +B39,,1960,B010,20,,wilbert1957:90,Binford_2001_Tables_5.01_and_8.01, +B390,,1880,B010,11.5,,"ekblaw1948:3; steensby1910:266, 296, 324",Binford_2001_Tables_5.01_and_8.01, +B4,,1989,B010,19.3,,rizvi1990:8,Binford_2001_Tables_5.01_and_8.01, +B40,,1990,B010,18.8,,politis1992:3; politisperscomm1992,Binford_2001_Tables_5.01_and_8.01, +B41,,,B010,NA,,,, +B42,,1901,B010,16.6,,metraux1946guato:410,Binford_2001_Tables_5.01_and_8.01, +B43,,1940,B010,16,,holmberg1950:51,Binford_2001_Tables_5.01_and_8.01, +B44,,1968,B010,18,,"stearman1989:26, 31",Binford_2001_Tables_5.01_and_8.01, +B45,,1938,B010,17.5,,levistrauss1970:288; oberg1953:86,Binford_2001_Tables_5.01_and_8.01, +B46,,1600,B010,35,,"hann1991:42, 159, 168",Binford_2001_Tables_5.01_and_8.01, +B47,,1975,B010,17.5,"Note, Binford Table 5.01 lists '26.7', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.","clastres1972:163; oberg1953:18, 38",Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '26.7', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B48,,,B010,NA,,,, +B49,,1954,B010,20,"Note, Binford Table 5.01 lists '6', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",kozaketal1979:360,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '6', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B5,,1952,B010,10,,bose1964:305,Binford_2001_Tables_5.01_and_8.01, +B50,,1910,B010,27,,"henry1964:11, 50, 159",Binford_2001_Tables_5.01_and_8.01, +B51,,1870,B010,25,,cooper1946c:150; goni1988:145,Binford_2001_Tables_5.01_and_8.01, +B52,,,B010,NA,,,, +B53,,1900,B010,13.4,,birdperscomm1970,Binford_2001_Tables_5.01_and_8.01, +B54,,1880,B010,20,,chapman1982:58; cooper1946b:117; gusinde1931:205,Binford_2001_Tables_5.01_and_8.01, +B55,,1870,B010,13,,"gusinde1937a:384, 387",Binford_2001_Tables_5.01_and_8.01, +B6,,1906,B010,8.6,,"temple1903:62, 77, 84",Binford_2001_Tables_5.01_and_8.01, +B60,,1980,B010,18,,"bahuchet1988:131; hudson1990:58, 63, 71",Binford_2001_Tables_5.01_and_8.01, +B61,,1976,B010,19.7,,"heymer1980:178, 193-96",Binford_2001_Tables_5.01_and_8.01, +B62,,1977,B010,19.7,,"terashima1980:234, 235, 262",Binford_2001_Tables_5.01_and_8.01, +B63,,1980,B010,17.5,,cavallisforza1986c:32-33,Binford_2001_Tables_5.01_and_8.01, +B63,,1980,B010,16,,valloisandmarquer1976:113,Binford_2001_Tables_5.01_and_8.01, +B64,,1980,B010,17.8,,baileyandpeacock1988:99-100; fisherandstrickland1989:476,Binford_2001_Tables_5.01_and_8.01, +B65,Special reference to Mawambo Mbuti,1930,B010,30.7,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (30.7) and the second to Epula Mbuti (30.2); this entry is one of those estimates","tanno1976:107, 108, 130",Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (30.7) and the second to Epula Mbuti (30.2)" +B65,Special reference to Epula Mbuti,1930,B010,30.2,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (30.7) and the second to Epula Mbuti (30.2); this entry is one of those estimates","turnbull1965a:97, 98",Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (30.7) and the second to Epula Mbuti (30.2)" +B66,,,B010,NA,,,, +B67,,,B010,NA,,,, +B68,,,B010,NA,,,, +B69,,1910,B010,16.5,,blurtonjonesetal1992:164; hawkesetal1989:344; woodburn1968b:104,Binford_2001_Tables_5.01_and_8.01, +B7,,1903,B010,11,,fox1952:188; reed1904:19,Binford_2001_Tables_5.01_and_8.01, +B70,,1920,B010,17,,huntingford1951:8; huntingford1954:128,Binford_2001_Tables_5.01_and_8.01, +B71,,1928,B010,12,,bleek1929:109; decastroandalmeida1956:9,Binford_2001_Tables_5.01_and_8.01, +B72,Special reference to Was Nyae !Kung,1950,B010,10.4,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (10.4) and the second to Dobe !Kung (11); this entry is one of those estimates",marshall1960:328,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (10.4) and the second to Dobe !Kung (11)" +B72,Special reference to Dobe !Kung,1950,B010,11,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (10.4) and the second to Dobe !Kung (11); this entry is one of those estimates",lee1972a:330,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (10.4) and the second to Dobe !Kung (11)" +B73,,1910,B010,6,,guenther1986:186; schapera1930:78,Binford_2001_Tables_5.01_and_8.01, +B74,,1962,B010,5.6,,silberbauer1972:296; silberbauer1981a:195-98,Binford_2001_Tables_5.01_and_8.01, +B75,,1976,B010,8,,kentandvierich1989,Binford_2001_Tables_5.01_and_8.01, +B76,,1968,B010,13,,eibleibesfeldt1972:32-33,Binford_2001_Tables_5.01_and_8.01, +B77,,1920,B010,9,,dart1937b:160-65; steyn1984:118,Binford_2001_Tables_5.01_and_8.01, +B78,,,B010,NA,,,, +B79,,NA,B010,8,,"bleek1924a:viii, ix",Binford_2001_Tables_5.01_and_8.01, +B8,,1870,B010,11,,radcliffebrown1948:28,Binford_2001_Tables_5.01_and_8.01, +B82,,1848,B010,17.5,,moore1979:39,Binford_2001_Tables_5.01_and_8.01, +B83,,,B010,NA,,,, +B84,,1978,B010,18.5,,altman1987:15-27; berndtandberndt1970:3-14,Binford_2001_Tables_5.01_and_8.01, +B85,,1970,B010,16,,peterson1970:11; peterson1973:185; peterson1992; petersonandlong1986:40,Binford_2001_Tables_5.01_and_8.01, +B86,,1973,B010,10,,meehan1982:31-41,Binford_2001_Tables_5.01_and_8.01, +B87,,1950,B010,16,,peterson1972:26; petersonandlong1986:40,Binford_2001_Tables_5.01_and_8.01, +B88,,1930,B010,18,,thomson1949:16; warner1958:127-28,Binford_2001_Tables_5.01_and_8.01, +B89,,1920,B010,17,,kaberry1935:428,Binford_2001_Tables_5.01_and_8.01, +B9,,1920,B010,17,,"brandt1961:131-33; rambo1985:4, 33; schebesta1962a:17, 220",Binford_2001_Tables_5.01_and_8.01, +B90,,1920,B010,8,Binford estimate from photos,wills1980:85,Binford_2001_Tables_5.01_and_8.01, +B91,,1920,B010,9,,leichhardt1847:507; mccarthyandmacarthur1960:90-96,Binford_2001_Tables_5.01_and_8.01, +B92,,1960,B010,17,,biernoff1979:12; mcarthur1960:95; thomson1949:4,Binford_2001_Tables_5.01_and_8.01, +B93,,1930,B010,15,,thomson1934:241,Binford_2001_Tables_5.01_and_8.01, +B94,,1937,B010,14,,"petersonandlong1986:88-89, 95-99; sharp1934:425",Binford_2001_Tables_5.01_and_8.01, +B95,,1920,B010,18,,"hartandpilling1960:35, 36, 65, 66",Binford_2001_Tables_5.01_and_8.01, +B96,,1880,B010,14.3,,"andersonandrobins1988:187, 191-92",Binford_2001_Tables_5.01_and_8.01, +B97,,1930,B010,10,,petersonandlong1986:78-79,Binford_2001_Tables_5.01_and_8.01, +B98,,,B010,NA,,,, +B99,,1900,B010,18,"Binford noted this was an ""estimate""",stanner1933:393,Binford_2001_Tables_5.01_and_8.01, +B1,,1970,B011,30,"Note, first of three estimates provided by Binford (30, 26, 30) for this society","harrison1949:135, 139; urquhart1951:515, 505",Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (30, 26, 30)" +B1,,1970,B011,26,"Note, second of three estimates provided by Binford (30, 26, 30) for this society",brosius1986:174,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (30, 26, 30)" +B1,,1970,B011,30,"Note, third of three estimates provided by Binford (30, 26, 30) for this society",sellato1994:143-44,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (30, 26, 30)" +B10,,1900,B011,29,,"bailey1863:296, 308; seligmannandseligmann1911:43-44",Binford_2001_Tables_5.01_and_8.01, +B100,,NA,B011,35,,blundell1980:106-7; love1936:93,Binford_2001_Tables_5.01_and_8.01, +B101,,,B011,NA,,,, +B102,,1909,B011,45,,memmott1983a:367,Binford_2001_Tables_5.01_and_8.01, +B103,,1928,B011,29,,tindale1962a:269,Binford_2001_Tables_5.01_and_8.01, +B104,,,B011,NA,,,, +B105,,1900,B011,45,,harris1978:128,Binford_2001_Tables_5.01_and_8.01, +B106,,1910,B011,31,,radcliffebrown1912:146,Binford_2001_Tables_5.01_and_8.01, +B107,,1870,B011,25,,brayshaw1990:31; lumholtz1889:194,Binford_2001_Tables_5.01_and_8.01, +B108,,1934,B011,50,,nind1831:22,Binford_2001_Tables_5.01_and_8.01, +B109,,1965,B011,42,,"meggitt1962:47, 50, 56",Binford_2001_Tables_5.01_and_8.01, +B11,,1972,B011,34.1,,"morris1982a:36-37, 174",Binford_2001_Tables_5.01_and_8.01, +B110,,1880,B011,25,,petersonandlong1986:116-17; tonkinson1978:53,Binford_2001_Tables_5.01_and_8.01, +B111,,1960,B011,32,"Note, Binford Table 5.01 lists '25' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",harris1978:128,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '25' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B112,,,B011,NA,,,, +B113,,1936,B011,21,,long1971:264-65; meggitt1962:55; petersonandlong1986:104-11,Binford_2001_Tables_5.01_and_8.01, +B114,,,B011,NA,,,, +B115,,1840,B011,60,,morwood1987:339; winterbotham1980:41,Binford_2001_Tables_5.01_and_8.01, +B116,,,B011,NA,,,, +B117,,1965,B011,30,,binfordfieldnotes1974; denham1975:120; oconnell1987:85,Binford_2001_Tables_5.01_and_8.01, +B118,,1968,B011,25,,gould1977:21-22,Binford_2001_Tables_5.01_and_8.01, +B119,,1850,B011,90,"Note, Binford Table 5.01 lists '40' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",gardner1978:239-46,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '40' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B12,,1965,B011,30,,headlandperscomm1993,Binford_2001_Tables_5.01_and_8.01, +B120,,1968,B011,23,,"brokensha1975:19, 33; layton1983:26; petersonandlong1986:127; tindale1972:224, 244",Binford_2001_Tables_5.01_and_8.01, +B121,,1900,B011,22,,"gason1879:257, 264; sturt1849a:1:254, 261, 296, 316, 407, 414; sturt1849a:2:70, 74",Binford_2001_Tables_5.01_and_8.01, +B122,,,B011,NA,,,, +B123,,1922,B011,28,,tindaleperscomm1965,Binford_2001_Tables_5.01_and_8.01, +B124,,1900,B011,30,,"spencerandgillen1927:15, 506",Binford_2001_Tables_5.01_and_8.01, +B125,,,B011,NA,,,, +B126,,,B011,NA,,,, +B127,,,B011,NA,,,, +B128,,,B011,NA,,,, +B129,,,B011,NA,,,, +B13,,1979,B011,21,,"rai1982:63, 66, 119",Binford_2001_Tables_5.01_and_8.01, +B130,,,B011,NA,,,, +B131,,,B011,NA,,,, +B132,,1850,B011,50,,nind1831:28,Binford_2001_Tables_5.01_and_8.01, +B133,,1850,B011,175,,williams1985:75,Binford_2001_Tables_5.01_and_8.01, +B134,,1850,B011,44,,"gaughwinandsullivan1984:92, 94",Binford_2001_Tables_5.01_and_8.01, +B135,,1850,B011,50,,fisonandhowitt1880:209; howitt1904:773-77,Binford_2001_Tables_5.01_and_8.01, +B136,,1830,B011,35,,"hiatt1967:201; jones1971:278, 279",Binford_2001_Tables_5.01_and_8.01, +B137,,1830,B011,33,,"hiatt1967:201; jones1971:278, 279",Binford_2001_Tables_5.01_and_8.01, +B14,,1924,B011,43.3,,"vanoverbergh1925:195, 196-98, 432",Binford_2001_Tables_5.01_and_8.01, +B143,,1900,B011,45,,bowen1976:24-30; griffen1959:vii,Binford_2001_Tables_5.01_and_8.01, +B144,,1870,B011,75,,"bean1972:76; kroeber1925a:692, 706-7; strong1929a:43-56",Binford_2001_Tables_5.01_and_8.01, +B145,,1870,B011,97,,strong1929a:187-19,Binford_2001_Tables_5.01_and_8.01, +B146,,1880,B011,62,,meigs1939:18-20,Binford_2001_Tables_5.01_and_8.01, +B147,,1850,B011,39,,"kroeber1925a:712, 719; luomala1978:597",Binford_2001_Tables_5.01_and_8.01, +B148,,1860,B011,91,"Note, Binford Table 5.01 lists '91.6' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",cook1955:40,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '91.6' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B149,,1870,B011,68,,kroeber1925a:617-18,Binford_2001_Tables_5.01_and_8.01, +B15,,1940,B011,48,,furerhaimendorf1943b:366,Binford_2001_Tables_5.01_and_8.01, +B150,,1860,B011,110,,oxendine1983:50-57,Binford_2001_Tables_5.01_and_8.01, +B151,,1860,B011,40,,cook1955:40,Binford_2001_Tables_5.01_and_8.01, +B152,,1850,B011,21,,voegelin1938:39-43,Binford_2001_Tables_5.01_and_8.01, +B153,,1850,B011,65,,goldschmidt1948:445,Binford_2001_Tables_5.01_and_8.01, +B154,,1850,B011,40,,cook1955:35,Binford_2001_Tables_5.01_and_8.01, +B155,,1850,B011,53,,johnson1978:352,Binford_2001_Tables_5.01_and_8.01, +B156,,,B011,NA,,,, +B157,,1870,B011,32,,gifford1932b:42-47,Binford_2001_Tables_5.01_and_8.01, +B158,,,B011,NA,,,, +B159,,1860,B011,150,,cook1956:116-17,Binford_2001_Tables_5.01_and_8.01, +B16,,1963,B011,40,,"pookajorn1985:187, 207; velder1963:186-87",Binford_2001_Tables_5.01_and_8.01, +B160,,1860,B011,50,,"dubois1935:28, 29",Binford_2001_Tables_5.01_and_8.01, +B161,,1860,B011,557,,cookandheizer1965:71,Binford_2001_Tables_5.01_and_8.01, +B162,,1860,B011,42,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable.",dixon1910,Binford_2001_Table_5.01,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable." +B163,,1850,B011,45,,wilsonandtowne1978:388,Binford_2001_Tables_5.01_and_8.01, +B164,,,B011,NA,,,, +B165,,1860,B011,150,,cook1956:118,Binford_2001_Tables_5.01_and_8.01, +B166,,1860,B011,23,,cook1956:103-5,Binford_2001_Tables_5.01_and_8.01, +B167,,,B011,NA,,,, +B168,,1850,B011,26,,"collierandthalman1991:72, 177-78",Binford_2001_Tables_5.01_and_8.01, +B169,,NA,B011,45,,cook1956:102,Binford_2001_Tables_5.01_and_8.01, +B17,,1963,B011,25,,"gardner1965:101; gardner1988:93, 94",Binford_2001_Tables_5.01_and_8.01, +B170,,NA,B011,90,,cook1955:122,Binford_2001_Tables_5.01_and_8.01, +B171,,1850,B011,25,,cook1956:107,Binford_2001_Tables_5.01_and_8.01, +B172,,1860,B011,95,,cook1956:124,Binford_2001_Tables_5.01_and_8.01, +B173,,1860,B011,127,,cook1956:114,Binford_2001_Tables_5.01_and_8.01, +B174,,,B011,NA,,,, +B175,,1850,B011,45,,cook1955:36,Binford_2001_Tables_5.01_and_8.01, +B176,,1860,B011,50,,gray1987:37-40,Binford_2001_Tables_5.01_and_8.01, +B177,,,B011,NA,,,, +B178,,1870,B011,96,,cook1956:101; drucker1940:226-27,Binford_2001_Tables_5.01_and_8.01, +B179,,1860,B011,48,,cookandheizer1965:70,Binford_2001_Tables_5.01_and_8.01, +B18,,1963,B011,46,,senandsen1955:172; williams1974:79,Binford_2001_Tables_5.01_and_8.01, +B180,,1860,B011,113,,cook1956:100,Binford_2001_Tables_5.01_and_8.01, +B181,,1870,B011,60,,gray1987:56,Binford_2001_Tables_5.01_and_8.01, +B182,,1860,B011,30,,cook1956:98,Binford_2001_Tables_5.01_and_8.01, +B183,,,B011,NA,,,, +B184,,1860,B011,33,,cook1956:97,Binford_2001_Tables_5.01_and_8.01, +B185,,1850,B011,40,,cookandheizer1965:71,Binford_2001_Tables_5.01_and_8.01, +B186,,1850,B011,45,,cook1956:101; schalk1978:125,Binford_2001_Tables_5.01_and_8.01, +B187,,1860,B011,23,,kroeber1962:36-37,Binford_2001_Tables_5.01_and_8.01, +B188,,1860,B011,92,,ray1963:204,Binford_2001_Tables_5.01_and_8.01, +B189,,1860,B011,31,,"spier1930:5-8, 23",Binford_2001_Tables_5.01_and_8.01, +B19,,1946,B011,31.7,,ehrenfels1952:66-67,Binford_2001_Tables_5.01_and_8.01, +B190,,1760,B011,45,,aschmann1967:122,Binford_2001_Tables_5.01_and_8.01, +B191,,,B011,NA,,,, +B192,,1860,B011,22.5,,steward1938:85-91,Binford_2001_Tables_5.01_and_8.01, +B193,,,B011,NA,,,, +B194,,1715,B011,31,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable.",,Binford_2001_Table_5.01,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable." +B195,,1850,B011,22.5,,steward1938:84,Binford_2001_Tables_5.01_and_8.01, +B196,,1870,B011,107,,gifford1932a:180-89,Binford_2001_Tables_5.01_and_8.01, +B197,,1860,B011,55,,steward1938:80-84,Binford_2001_Tables_5.01_and_8.01, +B198,,1870,B011,27.8,,"hayden1936:142, 165-68, 70; kroeber1935:45",Binford_2001_Tables_5.01_and_8.01, +B199,,1860,B011,31,,voegelin1938:48,Binford_2001_Tables_5.01_and_8.01, +B2,,1968,B011,58,,eder1978:56; eder1987:105,Binford_2001_Tables_5.01_and_8.01, +B20,,1974,B011,20.5,,bhanu1992:table 1.1,Binford_2001_Tables_5.01_and_8.01, +B200,,1860,B011,30,,"steward1938:77, 78, 80",Binford_2001_Tables_5.01_and_8.01, +B201,,,B011,NA,,,, +B202,,1870,B011,64,,liljebladandfowler1986:414-15; steward1938:110,Binford_2001_Tables_5.01_and_8.01, +B203,,1860,B011,19.5,,steward1938:110,Binford_2001_Tables_5.01_and_8.01, +B204,,1860,B011,21.2,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",kelly1964:11-22,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +B204,Special reference to Kaibab Southern Paiute),1860,B011,27,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",eulerandfowler1966:35,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +B204,Special reference to Las Vegas Southern Paiute,1860,B011,26,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",stoffleandevans1978:183,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (21.2, 27, 26). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +B205,,1870,B011,25,,davis1965:36,Binford_2001_Tables_5.01_and_8.01, +B206,,1860,B011,23,,steward1938:58-59,Binford_2001_Tables_5.01_and_8.01, +B207,,1860,B011,34,,gouldperscomm1992,Binford_2001_Tables_5.01_and_8.01, +B208,,1860,B011,50,,"fowlerandliljeblad1986:443, 457",Binford_2001_Tables_5.01_and_8.01, +B209,,1860,B011,50,,"janetski1983:53-54, 75",Binford_2001_Tables_5.01_and_8.01, +B21,,1978,B011,69,,bird1983:58,Binford_2001_Tables_5.01_and_8.01, +B210,,1870,B011,46,,"fowler1992:35-37, 154",Binford_2001_Tables_5.01_and_8.01, +B211,,1860,B011,27,,steward1938:61,Binford_2001_Tables_5.01_and_8.01, +B212,,,B011,NA,,,, +B213,,1870,B011,24,,steward1938:177,Binford_2001_Tables_5.01_and_8.01, +B214,,1860,B011,33,,steward1938:132,Binford_2001_Tables_5.01_and_8.01, +B215,,1870,B011,24,,steward1938:124-27,Binford_2001_Tables_5.01_and_8.01, +B216,,1860,B011,23,,lowie1924:284; steward1938:161,Binford_2001_Tables_5.01_and_8.01, +B217,,1860,B011,32,,steward1938:117,Binford_2001_Tables_5.01_and_8.01, +B218,,1860,B011,30,,"steward1938:101, 108",Binford_2001_Tables_5.01_and_8.01, +B219,,1860,B011,29,,cook1955:37,Binford_2001_Tables_5.01_and_8.01, +B22,Special reference to Hokkaido Ainu,1900,B011,30.3,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (30.3) and the second to Kuril Island Ainu (68); this entry is one of those estimates",watanabe1964a:8-9,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (30.3) and the second to Kuril Island Ainu (68)" +B22,Special reference to Kuril Island Ainu,1900,B011,68,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (30.3) and the second to Kuril Island Ainu (68); this entry is one of those estimates","landor1893:89, 125",Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Hokkaido Ainu (30.3) and the second to Kuril Island Ainu (68)" +B221,,1860,B011,38,,steward1938:174,Binford_2001_Tables_5.01_and_8.01, +B222,,1860,B011,37,,callawayetal1986:352; smith1974:123,Binford_2001_Tables_5.01_and_8.01, +B223,,1870,B011,40,,lowie1924:284,Binford_2001_Tables_5.01_and_8.01, +B224,,1860,B011,20,,steward1938:130,Binford_2001_Tables_5.01_and_8.01, +B225,,1850,B011,29,,price1962:40,Binford_2001_Tables_5.01_and_8.01, +B226,,1870,B011,28.4,,"kelly1932:78, 105",Binford_2001_Tables_5.01_and_8.01, +B227,,1860,B011,50,,shimkin1947:255; steward1974a:373,Binford_2001_Tables_5.01_and_8.01, +B228,,1860,B011,48,,steward1938:145-46,Binford_2001_Tables_5.01_and_8.01, +B229,,1860,B011,60,,steward1938:209,Binford_2001_Tables_5.01_and_8.01, +B23,,1900,B011,60,"Binford noted this was an ""estimate""",qiu1983,Binford_2001_Tables_5.01_and_8.01, +B230,,1860,B011,43,,steward1974b:147,Binford_2001_Tables_5.01_and_8.01, +B231,,,B011,NA,,,, +B232,,,B011,NA,,,, +B233,,,B011,NA,,,, +B234,,1860,B011,45,,steward1974b:147,Binford_2001_Tables_5.01_and_8.01, +B24,,1900,B011,33,,lee1967:24; shimkin1939:150,Binford_2001_Tables_5.01_and_8.01, +B240,,1880,B011,75,,basehartperscomm1972; swanton1952:323,Binford_2001_Tables_5.01_and_8.01, +B241,,1870,B011,269,,wallaceandhoebel1952:23,Binford_2001_Tables_5.01_and_8.01, +B242,,1880,B011,95,,basehart1972:5; morice1906b:496; opler1937:177-82,Binford_2001_Tables_5.01_and_8.01, +B243,,1870,B011,313,,bamforth1988:106-9,Binford_2001_Tables_5.01_and_8.01, +B244,,1860,B011,291,,bamforth1988:106-9,Binford_2001_Tables_5.01_and_8.01, +B245,,1860,B011,275,,"moore1987:180-86, 194",Binford_2001_Tables_5.01_and_8.01, +B246,,1860,B011,325,,flannery1953:54; gussowetal1974:23,Binford_2001_Tables_5.01_and_8.01, +B248,,1870,B011,330,,bamforth1988:106-9; denig1961:165,Binford_2001_Tables_5.01_and_8.01, +B249,,1870,B011,283,,culbertson1952:135,Binford_2001_Tables_5.01_and_8.01, +B25,,1920,B011,90,,shternberg1933:385,Binford_2001_Tables_5.01_and_8.01, +B250,,1880,B011,122,,chamberlain1892:551,Binford_2001_Tables_5.01_and_8.01, +B252,,1860,B011,170,,steward1938:201-6,Binford_2001_Tables_5.01_and_8.01, +B253,,1870,B011,188,,bamforth1988:106-9; swanton1952:278,Binford_2001_Tables_5.01_and_8.01, +B254,,1850,B011,250,,skinner1914:477,Binford_2001_Tables_5.01_and_8.01, +B255,,1850,B011,254,,ewers1955:303,Binford_2001_Tables_5.01_and_8.01, +B256,,1850,B011,346,,bushnell1922:26; ewers1955:303,Binford_2001_Tables_5.01_and_8.01, +B257,,1870,B011,159,,bushnell1922:32-33; culbertson1952:107; lowrieandclarke1832,Binford_2001_Tables_5.01_and_8.01, +B258,,1850,B011,75,,"bamforth1988:106-109; bushnell1922:20, 21",Binford_2001_Tables_5.01_and_8.01, +B259,,1850,B011,250,,bamforth1988:106-109,Binford_2001_Tables_5.01_and_8.01, +B26,,1900,B011,55,,"kreynovich1979:191-92, 196",Binford_2001_Tables_5.01_and_8.01, +B260,,1880,B011,140,,bamforth1988:106-109; jenness1938:10-11,Binford_2001_Tables_5.01_and_8.01, +B268,,1880,B011,106,,"suttles1990:453, 473",Binford_2001_Tables_5.01_and_8.01, +B269,,,B011,NA,,,, +B27,,1933,B011,29,,"popov1966:12, 103",Binford_2001_Tables_5.01_and_8.01, +B270,,1870,B011,145,,smith1940a:7-14,Binford_2001_Tables_5.01_and_8.01, +B271,,1850,B011,80,,elmendorf1960:32-55,Binford_2001_Tables_5.01_and_8.01, +B272,,1880,B011,110,,taylor1974a:187,Binford_2001_Tables_5.01_and_8.01, +B273,,1881,B011,195,"Note, focal year differs from that for some other data for society",drucker1951:222-49; koppert1930a:53,Binford_2001_Tables_5.01_and_8.01, +B274,,1850,B011,52,,ray1938:38-41,Binford_2001_Tables_5.01_and_8.01, +B275,,1860,B011,58,,boyd1990:136; zenk1990:572,Binford_2001_Tables_5.01_and_8.01, +B276,,1860,B011,85,,teit1906b:199,Binford_2001_Tables_5.01_and_8.01, +B277,,1880,B011,140,,stern1934:7,Binford_2001_Tables_5.01_and_8.01, +B278,,1860,B011,36,,schalk1978:165,Binford_2001_Tables_5.01_and_8.01, +B279,,1880,B011,37,,duff1952:45,Binford_2001_Tables_5.01_and_8.01, +B28,,1860,B011,35,,krupnik1983a:94-95,Binford_2001_Tables_5.01_and_8.01, +B280,,1880,B011,48,,suttles1990:462; wilson1866:286,Binford_2001_Tables_5.01_and_8.01, +B281,,NA,B011,65,,seaburgandmiller1990:561,Binford_2001_Tables_5.01_and_8.01, +B282,,1860,B011,240,,kennedyandbouchard1990:450-51,Binford_2001_Tables_5.01_and_8.01, +B283,,1880,B011,181,,hilton1990:313,Binford_2001_Tables_5.01_and_8.01, +B284,,1880,B011,112,,pettitt1950:3-5,Binford_2001_Tables_5.01_and_8.01, +B285,,1860,B011,166,,boyd1990:136; suttles1990:456,Binford_2001_Tables_5.01_and_8.01, +B286,,1860,B011,164,,swan1870:2,Binford_2001_Tables_5.01_and_8.01, +B287,,1880,B011,650,,schalk1978:165,Binford_2001_Tables_5.01_and_8.01, +B288,,1890,B011,420,,schalk1978:165,Binford_2001_Tables_5.01_and_8.01, +B289,,1880,B011,389,,"schalk1978:126, 165",Binford_2001_Tables_5.01_and_8.01, +B290,,1890,B011,577,,"schalk1978:126, 165",Binford_2001_Tables_5.01_and_8.01, +B291,,1880,B011,58,,schalk1978:165,Binford_2001_Tables_5.01_and_8.01, +B292,,1880,B011,197,,"schalk1978:127, 165",Binford_2001_Tables_5.01_and_8.01, +B293,,1880,B011,179,,adams1973:8,Binford_2001_Tables_5.01_and_8.01, +B294,,1840,B011,162,,knechtandjordan1985:21,Binford_2001_Tables_5.01_and_8.01, +B295,,1890,B011,57,,birketsmithanddelaguna1938:19,Binford_2001_Tables_5.01_and_8.01, +B296,,1850,B011,108,,michael1967:306,Binford_2001_Tables_5.01_and_8.01, +B297,,1843,B011,40,"Note, two estimates provided by Binford, neither of which corresponds to the focal year (1843: 40, and 1890: 67); this entry is one of those estimates",michael1967:306,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, neither of which corresponds to the focal year (1843: 40, and 1890: 67)" +B297,,1890,B011,67,"Note, two estimates provided by Binford, neither of which corresponds to the focal year (1843: 40, and 1890: 67); this entry is one of those estimates",delaguna1956:256,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, neither of which corresponds to the focal year (1843: 40, and 1890: 67)" +B298,,1830,B011,55,,lantis1970a:178; mitchellanddonald1988:319-21,Binford_2001_Tables_5.01_and_8.01, +B299,,1930,B011,54.6,,lantis1946:163-64,Binford_2001_Tables_5.01_and_8.01, +B3,,,B011,NA,,,, +B315,,,B011,NA,,,, +B316,,,B011,NA,,,, +B317,,1870,B011,275,,teit1928:93-108,Binford_2001_Tables_5.01_and_8.01, +B318,,,B011,NA,,,, +B319,,1860,B011,205,,spierandsapir1930:166-67,Binford_2001_Tables_5.01_and_8.01, +B320,,1860,B011,60,,"teit1930:39, 331",Binford_2001_Tables_5.01_and_8.01, +B321,,1880,B011,83,,clineetal1938:87,Binford_2001_Tables_5.01_and_8.01, +B322,,1860,B011,50,,teit1930:207-11,Binford_2001_Tables_5.01_and_8.01, +B323,,1870,B011,50,,teit1930:211,Binford_2001_Tables_5.01_and_8.01, +B324,,1850,B011,134,,"spinden1908:174-75, 196, 240",Binford_2001_Tables_5.01_and_8.01, +B325,,1860,B011,113,,teit1900:241-48,Binford_2001_Tables_5.01_and_8.01, +B326,,1870,B011,75,,teit1930:331,Binford_2001_Tables_5.01_and_8.01, +B327,,1870,B011,65,,jenness1935:13,Binford_2001_Tables_5.01_and_8.01, +B328,,1800,B011,76,,kinietz1947:247,Binford_2001_Tables_5.01_and_8.01, +B329,,1700,B011,25,,speck1922:143-44,Binford_2001_Tables_5.01_and_8.01, +B330,,1860,B011,73,,teit1930:331; turneyhigh1937:98,Binford_2001_Tables_5.01_and_8.01, +B331,,1880,B011,57,,hickerson1967:54-55,Binford_2001_Tables_5.01_and_8.01, +B332,,1870,B011,45,,bishop1978:222-26,Binford_2001_Tables_5.01_and_8.01, +B333,,1850,B011,108,,teit1905:457-66,Binford_2001_Tables_5.01_and_8.01, +B334,,1940,B011,55,,"dunning1959:57, 58, 84; rogers1969:31",Binford_2001_Tables_5.01_and_8.01, +B335,,1900,B011,50,,"rogers1963b:67, 76, 88; rogers1969:25, 31",Binford_2001_Tables_5.01_and_8.01, +B336,,1865,B011,85,,goldman1940:334,Binford_2001_Tables_5.01_and_8.01, +B337,,1800,B011,36,,hickerson1962:30-33,Binford_2001_Tables_5.01_and_8.01, +B338,,1880,B011,37,,rogers1963a:23; rogers1969:30,Binford_2001_Tables_5.01_and_8.01, +B339,,1850,B011,50,,rogers1969:43,Binford_2001_Tables_5.01_and_8.01, +B340,,1900,B011,58,,"morantz1983:89, 106; rogers1969:31",Binford_2001_Tables_5.01_and_8.01, +B341,,1890,B011,50,,rogersandblack1976:19,Binford_2001_Tables_5.01_and_8.01, +B342,,1880,B011,95,,tanner1944:592-609,Binford_2001_Tables_5.01_and_8.01, +B343,,1880,B011,40,,dennison1981:434-35; jenness1937:14,Binford_2001_Tables_5.01_and_8.01, +B344,,1850,B011,58,,ives1985:166-67,Binford_2001_Tables_5.01_and_8.01, +B345,,1860,B011,39,,"helm1961:50-52, 169; ives1985:166-67; janes1983:50-51",Binford_2001_Tables_5.01_and_8.01, +B346,,1920,B011,58,,honigmann1949:33-37,Binford_2001_Tables_5.01_and_8.01, +B347,,1870,B011,71,,maclachlan1981:460-61,Binford_2001_Tables_5.01_and_8.01, +B348,,,B011,NA,,,, +B349,,1880,B011,54,,jenness1943:485-86,Binford_2001_Tables_5.01_and_8.01, +B35,,,B011,NA,,,, +B350,,1800,B011,60,,gillespie1981:334-35,Binford_2001_Tables_5.01_and_8.01, +B351,,,B011,NA,,,, +B352,,1860,B011,26,,"helm1961:169; savishinsky1974:47, 54",Binford_2001_Tables_5.01_and_8.01, +B353,,1900,B011,55,,honigmann1956b:58; honigmann1981:228-29,Binford_2001_Tables_5.01_and_8.01, +B354,,1880,B011,38,,clark1974:96,Binford_2001_Tables_5.01_and_8.01, +B355,,1880,B011,75,"Note, focal year differs from that for some other data for society",smith1976:19; smith1978a:81; smith1981:275,Binford_2001_Tables_5.01_and_8.01, +B356,,1880,B011,78,,"slobodin1969:58-59, 64",Binford_2001_Tables_5.01_and_8.01, +B357,Special reference to Kusk Ingalik),1880,B011,29,"Note, two estimates provided by Binford, the first refers specifically to Kusk Ingalik (29) and the second to Yukon Ingalik (77); this entry is one of those estimates",michael1967:307,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Kusk Ingalik (29) and the second to Yukon Ingalik (77)" +B357,Special reference to Yukon Ingalik,1880,B011,77,"Note, two estimates provided by Binford, the first refers specifically to Kusk Ingalik (29) and the second to Yukon Ingalik (77); this entry is one of those estimates",sullivan1942:10,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Kusk Ingalik (29) and the second to Yukon Ingalik (77)" +B358,,1860,B011,29,,mackenzie1966:49-56,Binford_2001_Tables_5.01_and_8.01, +B359,,1930,B011,39,,mckennan1959:18,Binford_2001_Tables_5.01_and_8.01, +B36,,1960,B011,50,,metraux1948:863,Binford_2001_Tables_5.01_and_8.01, +B360,,1900,B011,55,,morantz1983:106,Binford_2001_Tables_5.01_and_8.01, +B361,,1860,B011,60,,helm1968:120,Binford_2001_Tables_5.01_and_8.01, +B362,,1843,B011,68,"Note, focal year differs from that for some other data for society",michael1967:306,Binford_2001_Tables_5.01_and_8.01, +B363,,1890,B011,60,,legros1982:68-69,Binford_2001_Tables_5.01_and_8.01, +B364,,1860,B011,66,,snow1981:615,Binford_2001_Tables_5.01_and_8.01, +B365,,1890,B011,39,,"henriksen1973:58-59, 68",Binford_2001_Tables_5.01_and_8.01, +B369,,1870,B011,48,,ray1992:295,Binford_2001_Tables_5.01_and_8.01, +B37,,1968,B011,28,,kloos1977:116,Binford_2001_Tables_5.01_and_8.01, +B370,,1890,B011,30,,burch1975:257-58,Binford_2001_Tables_5.01_and_8.01, +B371,,1880,B011,49,,burch1975:269-72; burch1984:305,Binford_2001_Tables_5.01_and_8.01, +B372,,1890,B011,35,,"taylor1974:15-19, 64",Binford_2001_Tables_5.01_and_8.01, +B373,,1890,B011,40,,"willmott1960:48, 53",Binford_2001_Tables_5.01_and_8.01, +B374,,1900,B011,40,,birketsmith1929:67-69,Binford_2001_Tables_5.01_and_8.01, +B375,,1900,B011,30,,binfordfieldnotes1971; burch1975:255,Binford_2001_Tables_5.01_and_8.01, +B377,,1898-1909,B011,31.1,,amsden1977:224,Binford_2001_Tables_5.01_and_8.01, +B377,,1934-1950,B011,25.1,,amsden1977:224,Binford_2001_Tables_5.01_and_8.01, +B377,,1951-1959,B011,40.5,,amsden1977:224,Binford_2001_Tables_5.01_and_8.01, +B378,,1910,B011,45,,mcghee1988:11; tyrrell1897:167,Binford_2001_Tables_5.01_and_8.01, +B379,,1920,B011,121,,moore1923:340,Binford_2001_Tables_5.01_and_8.01, +B38,,1989,B011,57,,gragson1989:289-90; greavesperscomm1993,Binford_2001_Tables_5.01_and_8.01, +B380,,1880,B011,179,"Note, Binford Table 5.01 lists '79' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",burch1975:260-69,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '79' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B381,,1920,B011,105,,"jenness1922:30, 55, 57; rasmussen1932:70, 78-85",Binford_2001_Tables_5.01_and_8.01, +B382,,1920,B011,35,,"briggs1970:15, 372-74",Binford_2001_Tables_5.01_and_8.01, +B383,,1880,B011,26,,"rae1850:40, 48, 49",Binford_2001_Tables_5.01_and_8.01, +B384,,1920,B011,60,,mathiassen1928:32,Binford_2001_Tables_5.01_and_8.01, +B385,,1880,B011,31.5,,"perry1898:131, 171-72, 267-68, 336, 386, 431; york1875:179",Binford_2001_Tables_5.01_and_8.01, +B386,,1880,B011,70,,"boas1888:426; hantzsch1977:39, 99; low1906:57-58",Binford_2001_Tables_5.01_and_8.01, +B387,,1880,B011,85,,"mclintock1860:8, 230, 232, 235, 239, 240",Binford_2001_Tables_5.01_and_8.01, +B388,,1880,B011,30.9,,mirsky1937a:53; peterson1984:623,Binford_2001_Tables_5.01_and_8.01, +B389,,1880,B011,309,,simpson1875:237; spencer1959:15,Binford_2001_Tables_5.01_and_8.01, +B39,,1960,B011,60,,wilbert1957:90,Binford_2001_Tables_5.01_and_8.01, +B390,,1880,B011,35,,"ekblaw1948:3; steensby1910:266, 296, 324",Binford_2001_Tables_5.01_and_8.01, +B4,,1989,B011,31,,rizvi1990:8,Binford_2001_Tables_5.01_and_8.01, +B40,,1990,B011,47,,politis1992:3; politisperscomm1992,Binford_2001_Tables_5.01_and_8.01, +B41,,1920,B011,118,,baldus1937:115-23; levistrauss1936:269,Binford_2001_Tables_5.01_and_8.01, +B42,,1901,B011,37,,metraux1946guato:410,Binford_2001_Tables_5.01_and_8.01, +B43,,1940,B011,70,,holmberg1950:51,Binford_2001_Tables_5.01_and_8.01, +B44,,1968,B011,43,,"stearman1989:26, 31",Binford_2001_Tables_5.01_and_8.01, +B45,,1938,B011,47,,levistrauss1970:288; oberg1953:86,Binford_2001_Tables_5.01_and_8.01, +B46,,1600,B011,62,,"hann1991:42, 159, 168",Binford_2001_Tables_5.01_and_8.01, +B47,,1975,B011,50,"Note, Binford Table 5.01 lists '60' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.","clastres1972:163; oberg1953:18, 38",Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '60' ,but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B48,,1880,B011,50,,metrauxandbaldus1946:534,Binford_2001_Tables_5.01_and_8.01, +B49,,1954,B011,30,,kozaketal1979:360,Binford_2001_Tables_5.01_and_8.01, +B5,,1952,B011,23,,bose1964:305,Binford_2001_Tables_5.01_and_8.01, +B50,,,B011,NA,,,, +B51,,1870,B011,75,,cooper1946c:150; goni1988:145,Binford_2001_Tables_5.01_and_8.01, +B52,,,B011,NA,,,, +B53,,,B011,NA,,,, +B54,,1880,B011,45,,chapman1982:58; cooper1946b:117; gusinde1931:205,Binford_2001_Tables_5.01_and_8.01, +B55,,1870,B011,24,,"gusinde1937a:384, 387",Binford_2001_Tables_5.01_and_8.01, +B6,,1906,B011,25.8,,"temple1903:62, 77, 84",Binford_2001_Tables_5.01_and_8.01, +B60,,1980,B011,36,,"bahuchet1988:131; hudson1990:58, 63, 71",Binford_2001_Tables_5.01_and_8.01, +B61,,1976,B011,30,,"heymer1980:178, 193-96",Binford_2001_Tables_5.01_and_8.01, +B62,,1977,B011,60,,"terashima1980:234, 235, 262",Binford_2001_Tables_5.01_and_8.01, +B63,,1980,B011,32.6,"Note, two estimates provided by Binford (32.6, 31.75); this entry is one of those estimates",cavallisforza1986c:32-33,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (32.6, 31.75)" +B63,,1980,B011,31.75,"Note, two estimates provided by Binford (32.6, 31.75); this entry is one of those estimates",valloisandmarquer1976:113,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (32.6, 31.75)" +B64,,1980,B011,33,,baileyandpeacock1988:99-100; fisherandstrickland1989:476,Binford_2001_Tables_5.01_and_8.01, +B65,Special reference to Mawambo Mbuti,1930,B011,60,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (60) and the second to Epula Mbuti (104); this entry is one of those estimates","tanno1976:107, 108, 130",Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (60) and the second to Epula Mbuti (104)" +B65,Special reference to Epula Mbuti,1930,B011,104,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (60) and the second to Epula Mbuti (104); this entry is one of those estimates","turnbull1965a:97, 98",Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (60) and the second to Epula Mbuti (104)" +B66,,NA,B011,40,,kellyandpoyer1993:1,Binford_2001_Tables_5.01_and_8.01, +B67,,1950,B011,23,,clark1951:65,Binford_2001_Tables_5.01_and_8.01, +B68,,1920,B011,60,,fourie1927:51,Binford_2001_Tables_5.01_and_8.01, +B69,,1910,B011,42,,blurtonjonesetal1992:164; hawkesetal1989:344; woodburn1968b:104,Binford_2001_Tables_5.01_and_8.01, +B7,,1903,B011,35,,fox1952:188; reed1904:19,Binford_2001_Tables_5.01_and_8.01, +B70,,1920,B011,46,,huntingford1951:8; huntingford1954:128,Binford_2001_Tables_5.01_and_8.01, +B71,,1928,B011,31,,bleek1929:109; decastroandalmeida1956:9,Binford_2001_Tables_5.01_and_8.01, +B72,Special reference to Was Nyae !Kung,1950,B011,24.3,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (24.3) and the second to Dobe !Kung (23); this entry is one of those estimates",marshall1960:328,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (24.3) and the second to Dobe !Kung (23)" +B72,Special reference to Dobe !Kung,1950,B011,23,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (24.3) and the second to Dobe !Kung (23); this entry is one of those estimates",lee1972a:330,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (24.3) and the second to Dobe !Kung (23)" +B73,,1910,B011,20.2,,guenther1986:186; schapera1930:78,Binford_2001_Tables_5.01_and_8.01, +B74,,1962,B011,36,,silberbauer1972:296; silberbauer1981a:195-98,Binford_2001_Tables_5.01_and_8.01, +B75,,1976,B011,20.8,,kentandvierich1989,Binford_2001_Tables_5.01_and_8.01, +B76,,1968,B011,54,,eibleibesfeldt1972:32-33,Binford_2001_Tables_5.01_and_8.01, +B77,,1920,B011,21,,dart1937b:160-65; steyn1984:118,Binford_2001_Tables_5.01_and_8.01, +B78,,,B011,NA,,,, +B79,,NA,B011,24,,"bleek1924a:viii, ix",Binford_2001_Tables_5.01_and_8.01, +B8,,1870,B011,43,,radcliffebrown1948:28,Binford_2001_Tables_5.01_and_8.01, +B82,,1848,B011,50,,moore1979:39,Binford_2001_Tables_5.01_and_8.01, +B83,,,B011,NA,,,, +B84,,1978,B011,44,,altman1987:15-27; berndtandberndt1970:3-14,Binford_2001_Tables_5.01_and_8.01, +B85,,1970,B011,34,,peterson1970:11; peterson1973:185; peterson1992; petersonandlong1986:40,Binford_2001_Tables_5.01_and_8.01, +B86,,1973,B011,35,,meehan1982:31-41,Binford_2001_Tables_5.01_and_8.01, +B87,,1950,B011,34,,peterson1972:26; petersonandlong1986:40,Binford_2001_Tables_5.01_and_8.01, +B88,,1930,B011,36,,thomson1949:16; warner1958:127-28,Binford_2001_Tables_5.01_and_8.01, +B89,,1920,B011,32,,kaberry1935:428,Binford_2001_Tables_5.01_and_8.01, +B9,,1920,B011,34,,"brandt1961:131-33; rambo1985:4, 33; schebesta1962a:17, 220",Binford_2001_Tables_5.01_and_8.01, +B90,,1920,B011,45,Binford estimate from photos,wills1980:85,Binford_2001_Tables_5.01_and_8.01, +B91,,1920,B011,32,,leichhardt1847:507; mccarthyandmacarthur1960:90-96,Binford_2001_Tables_5.01_and_8.01, +B92,,1960,B011,30,,biernoff1979:12; mcarthur1960:95; thomson1949:4,Binford_2001_Tables_5.01_and_8.01, +B93,,,B011,NA,,,, +B94,,1937,B011,30,,"petersonandlong1986:88-89, 95-99; sharp1934:425",Binford_2001_Tables_5.01_and_8.01, +B95,,1920,B011,32,,"hartandpilling1960:35, 36, 65, 66",Binford_2001_Tables_5.01_and_8.01, +B96,,,B011,NA,,,, +B97,,1930,B011,32,,petersonandlong1986:78-79,Binford_2001_Tables_5.01_and_8.01, +B98,,1926,B011,35,,haleandtindale1933:77-78,Binford_2001_Tables_5.01_and_8.01, +B99,,1900,B011,30,"Binford noted this was an ""estimate""",stanner1933:393,Binford_2001_Tables_5.01_and_8.01, +B1,,1970,B012,62,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Tables_5.01_and_8.01, +B10,,1900,B012,72,,"bailey1863:296, 308; seligmannandseligmann1911:43-44",Binford_2001_Tables_5.01_and_8.01, +B100,,NA,B012,150,,blundell1980:106-7; love1936:93,Binford_2001_Tables_5.01_and_8.01, +B101,,,B012,NA,,,, +B102,,,B012,NA,,,, +B103,,1928,B012,85,,tindale1962a:269,Binford_2001_Tables_5.01_and_8.01, +B104,,,B012,NA,,,, +B105,,1900,B012,285,,harris1978:128,Binford_2001_Tables_5.01_and_8.01, +B106,,,B012,NA,,,, +B107,,1870,B012,250,,brayshaw1990:31; lumholtz1889:194,Binford_2001_Tables_5.01_and_8.01, +B108,,,B012,NA,,,, +B109,,1965,B012,200,,"meggitt1962:47, 50, 56",Binford_2001_Tables_5.01_and_8.01, +B11,,1972,B012,141,,"morris1982a:36-37, 174",Binford_2001_Tables_5.01_and_8.01, +B110,,1880,B012,130,,petersonandlong1986:116-17; tonkinson1978:53,Binford_2001_Tables_5.01_and_8.01, +B111,,1960,B012,250,"Note, Binford Table 5.01 lists '180', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",harris1978:128,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '180', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B112,,,B012,NA,,,, +B113,,1936,B012,300,,long1971:264-65; meggitt1962:55; petersonandlong1986:104-11,Binford_2001_Tables_5.01_and_8.01, +B114,,1848,B012,150,,colliverandwoolston1975:93,Binford_2001_Tables_5.01_and_8.01, +B115,,1840,B012,400,,morwood1987:339; winterbotham1980:41,Binford_2001_Tables_5.01_and_8.01, +B116,,,B012,NA,,,, +B117,,1965,B012,230,,binfordfieldnotes1974; denham1975:120; oconnell1987:85,Binford_2001_Tables_5.01_and_8.01, +B118,,1968,B012,150,,gould1977:21-22,Binford_2001_Tables_5.01_and_8.01, +B119,,1850,B012,250,,gardner1978:239-46,Binford_2001_Tables_5.01_and_8.01, +B12,,1965,B012,82,,headlandperscomm1993,Binford_2001_Tables_5.01_and_8.01, +B120,,1968,B012,256,,"brokensha1975:19, 33; layton1983:26; petersonandlong1986:127; tindale1972:224, 244",Binford_2001_Tables_5.01_and_8.01, +B121,,1900,B012,350,,"gason1879:257, 264; sturt1849a:1:254, 261, 296, 316, 407, 414; sturt1849a:2:70, 74",Binford_2001_Tables_5.01_and_8.01, +B122,,,B012,NA,,,, +B123,,1922,B012,225,,tindaleperscomm1965,Binford_2001_Tables_5.01_and_8.01, +B124,,1900,B012,310,,"spencerandgillen1927:15, 506",Binford_2001_Tables_5.01_and_8.01, +B125,,,B012,NA,,,, +B126,,,B012,NA,,,, +B127,,,B012,NA,,,, +B128,,,B012,NA,,,, +B129,,,B012,NA,,,, +B13,,1979,B012,70,,"rai1982:63, 66, 119",Binford_2001_Tables_5.01_and_8.01, +B130,,,B012,NA,,,, +B131,,,B012,NA,,,, +B132,,1850,B012,300,,nind1831:28,Binford_2001_Tables_5.01_and_8.01, +B133,,1850,B012,350,,williams1985:75,Binford_2001_Tables_5.01_and_8.01, +B134,,1850,B012,275,,"gaughwinandsullivan1984:92, 94",Binford_2001_Tables_5.01_and_8.01, +B135,,1850,B012,270,,fisonandhowitt1880:209; howitt1904:773-77,Binford_2001_Tables_5.01_and_8.01, +B136,,1830,B012,52,,"hiatt1967:201; jones1971:278, 279",Binford_2001_Tables_5.01_and_8.01, +B137,,1830,B012,75,,"hiatt1967:201; jones1971:278, 279",Binford_2001_Tables_5.01_and_8.01, +B14,,,B012,NA,,,, +B143,,1900,B012,188,,bowen1976:24-30; griffen1959:vii,Binford_2001_Tables_5.01_and_8.01, +B144,,1870,B012,180,,"bean1972:76; kroeber1925a:692, 706-7; strong1929a:43-56",Binford_2001_Tables_5.01_and_8.01, +B145,,1870,B012,195,,strong1929a:187-19,Binford_2001_Tables_5.01_and_8.01, +B146,,1880,B012,130,,meigs1939:18-20,Binford_2001_Tables_5.01_and_8.01, +B147,,1850,B012,120,,"kroeber1925a:712, 719; luomala1978:597",Binford_2001_Tables_5.01_and_8.01, +B148,,1860,B012,150,,cook1955:40,Binford_2001_Tables_5.01_and_8.01, +B149,,,B012,NA,,,, +B15,,,B012,NA,,,, +B150,,1860,B012,300,,oxendine1983:50-57,Binford_2001_Tables_5.01_and_8.01, +B151,,1860,B012,350,,cook1955:40,Binford_2001_Tables_5.01_and_8.01, +B152,,1850,B012,110,,voegelin1938:39-43,Binford_2001_Tables_5.01_and_8.01, +B153,,1850,B012,130,,goldschmidt1948:445,Binford_2001_Tables_5.01_and_8.01, +B154,,1850,B012,130,,cook1955:35,Binford_2001_Tables_5.01_and_8.01, +B155,,1850,B012,189,,johnson1978:352,Binford_2001_Tables_5.01_and_8.01, +B156,,,B012,NA,,,, +B157,,1870,B012,70,,gifford1932b:42-47,Binford_2001_Tables_5.01_and_8.01, +B158,,1860,B012,235,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable.",barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable." +B159,,1860,B012,450,,cook1956:116-17,Binford_2001_Tables_5.01_and_8.01, +B16,,,B012,NA,,,, +B160,,1860,B012,150,,"dubois1935:28, 29",Binford_2001_Tables_5.01_and_8.01, +B161,,,B012,NA,,,, +B162,,,B012,NA,,,, +B163,,1850,B012,165,,wilsonandtowne1978:388,Binford_2001_Tables_5.01_and_8.01, +B164,,,B012,NA,,,, +B165,,,B012,NA,,,, +B166,,,B012,NA,,,, +B167,,,B012,NA,,,, +B168,,,B012,NA,,,, +B169,,,B012,NA,,,, +B17,,1963,B012,107,,"gardner1965:101; gardner1988:93, 94",Binford_2001_Tables_5.01_and_8.01, +B170,,NA,B012,192,,cook1955:122,Binford_2001_Tables_5.01_and_8.01, +B171,,1850,B012,150,,cook1956:107,Binford_2001_Tables_5.01_and_8.01, +B172,,1860,B012,154,,cook1956:124,Binford_2001_Tables_5.01_and_8.01, +B173,,,B012,NA,,,, +B174,,,B012,NA,,,, +B175,,1850,B012,250,,cook1955:36,Binford_2001_Tables_5.01_and_8.01, +B176,,,B012,NA,,,, +B177,,,B012,NA,,,, +B178,,,B012,NA,,,, +B179,,,B012,NA,,,, +B18,,1963,B012,160,,senandsen1955:172; williams1974:79,Binford_2001_Tables_5.01_and_8.01, +B180,,,B012,NA,,,, +B181,,,B012,NA,,,, +B182,,,B012,NA,,,, +B183,,,B012,NA,,,, +B184,,,B012,NA,,,, +B185,,,B012,NA,,,, +B186,,,B012,NA,,,, +B187,,1860,B012,275,,kroeber1962:36-37,Binford_2001_Tables_5.01_and_8.01, +B188,,1860,B012,157,,ray1963:204,Binford_2001_Tables_5.01_and_8.01, +B189,,1860,B012,97,,"spier1930:5-8, 23",Binford_2001_Tables_5.01_and_8.01, +B19,,1946,B012,187,,ehrenfels1952:66-67,Binford_2001_Tables_5.01_and_8.01, +B190,,1760,B012,128,,aschmann1967:122,Binford_2001_Tables_5.01_and_8.01, +B191,,,B012,NA,,,, +B192,,1860,B012,45,,steward1938:85-91,Binford_2001_Tables_5.01_and_8.01, +B193,,1800,B012,225,,stiles1906:80-87,Binford_2001_Tables_5.01_and_8.01, +B194,,1715,B012,153,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable.",,Binford_2001_Table_5.01,"Note, does not appear in Table 8.01, so references are general to the society and not the particular variable." +B195,,,B012,NA,,,, +B196,,,B012,NA,,,, +B197,,,B012,NA,,,, +B198,,1870,B012,60,,"hayden1936:142, 165-68, 70; kroeber1935:45",Binford_2001_Tables_5.01_and_8.01, +B199,,1860,B012,45,,voegelin1938:48,Binford_2001_Tables_5.01_and_8.01, +B2,,,B012,NA,,,, +B20,,,B012,NA,,,, +B200,,1860,B012,65,,"steward1938:77, 78, 80",Binford_2001_Tables_5.01_and_8.01, +B201,,,B012,NA,,,, +B202,,1870,B012,300,,liljebladandfowler1986:414-15; steward1938:110,Binford_2001_Tables_5.01_and_8.01, +B203,,1860,B012,42,,steward1938:110,Binford_2001_Tables_5.01_and_8.01, +B204,,1860,B012,70,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",kelly1964:11-22,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +B204,Special reference to Kaibab Southern Paiute,1860,B012,116,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",eulerandfowler1966:35,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +B204,Special reference to Las Vegas Southern Paiute,1860,B012,200,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively; this entry is one of those estimates",stoffleandevans1978:183,Binford_2001_Tables_5.01_and_8.01,"Note, three estimates provided by Binford (70, 116, 200). The latter two are said to refer specifically to Kaibab and Las Vegas Southern Paiute, respectively." +B205,,,B012,NA,,,, +B206,,,B012,NA,,,, +B207,,1860,B012,119,,gouldperscomm1992,Binford_2001_Tables_5.01_and_8.01, +B208,,1860,B012,320,,"fowlerandliljeblad1986:443, 457",Binford_2001_Tables_5.01_and_8.01, +B209,,1860,B012,160,,"janetski1983:53-54, 75",Binford_2001_Tables_5.01_and_8.01, +B21,,,B012,NA,,,, +B210,,1870,B012,130,,"fowler1992:35-37, 154",Binford_2001_Tables_5.01_and_8.01, +B211,,1860,B012,101,,steward1938:61,Binford_2001_Tables_5.01_and_8.01, +B212,,,B012,NA,,,, +B213,,1870,B012,138,,steward1938:177,Binford_2001_Tables_5.01_and_8.01, +B214,,1860,B012,150,,steward1938:132,Binford_2001_Tables_5.01_and_8.01, +B215,,1870,B012,130,"Note, Binford Table 5.01 lists '180', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",steward1938:124-27,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '180', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B216,,1860,B012,180,,lowie1924:284; steward1938:161,Binford_2001_Tables_5.01_and_8.01, +B217,,1860,B012,70,,steward1938:117,Binford_2001_Tables_5.01_and_8.01, +B218,,1860,B012,132,,"steward1938:101, 108",Binford_2001_Tables_5.01_and_8.01, +B219,,,B012,NA,,,, +B22,Special reference to Hokkaido Ainu,1900,B012,122.6,,watanabe1964a:8-9,Binford_2001_Tables_5.01_and_8.01, +B221,,1860,B012,78,,steward1938:174,Binford_2001_Tables_5.01_and_8.01, +B222,,1860,B012,102,,callawayetal1986:352; smith1974:123,Binford_2001_Tables_5.01_and_8.01, +B223,,,B012,NA,,,, +B224,,1860,B012,110,,steward1938:130,Binford_2001_Tables_5.01_and_8.01, +B225,,,B012,NA,,,, +B226,,1870,B012,100,,"kelly1932:78, 105",Binford_2001_Tables_5.01_and_8.01, +B227,,1860,B012,200,,shimkin1947:255; steward1974a:373,Binford_2001_Tables_5.01_and_8.01, +B228,,1860,B012,65,,steward1938:145-46,Binford_2001_Tables_5.01_and_8.01, +B229,,,B012,NA,,,, +B23,,1900,B012,265,"Binford noted this was an ""estimate""",qiu1983,Binford_2001_Tables_5.01_and_8.01, +B230,,1860,B012,169,,steward1974b:147,Binford_2001_Tables_5.01_and_8.01, +B231,,,B012,NA,,,, +B232,,1860,B012,300,,steward1938:186-89,Binford_2001_Tables_5.01_and_8.01, +B233,,1860,B012,96,,steward1938:113,Binford_2001_Tables_5.01_and_8.01, +B234,,1860,B012,150,,steward1974b:147,Binford_2001_Tables_5.01_and_8.01, +B24,,1900,B012,182,,lee1967:24; shimkin1939:150,Binford_2001_Tables_5.01_and_8.01, +B240,,1880,B012,166,,basehartperscomm1972; swanton1952:323,Binford_2001_Tables_5.01_and_8.01, +B241,,1870,B012,650,,wallaceandhoebel1952:23,Binford_2001_Tables_5.01_and_8.01, +B242,,1880,B012,200,,basehart1972:5; morice1906b:496; opler1937:177-82,Binford_2001_Tables_5.01_and_8.01, +B243,,1870,B012,620,,bamforth1988:106-9,Binford_2001_Tables_5.01_and_8.01, +B244,,,B012,NA,,,, +B245,,1860,B012,687,,"moore1987:180-86, 194",Binford_2001_Tables_5.01_and_8.01, +B246,,1860,B012,750,,flannery1953:54; gussowetal1974:23,Binford_2001_Tables_5.01_and_8.01, +B248,,1870,B012,1500,,bamforth1988:106-9; denig1961:165,Binford_2001_Tables_5.01_and_8.01, +B249,,1870,B012,500,,culbertson1952:135,Binford_2001_Tables_5.01_and_8.01, +B25,,,B012,NA,,,, +B250,,,B012,NA,,,, +B252,,1860,B012,650,,steward1938:201-6,Binford_2001_Tables_5.01_and_8.01, +B253,,1870,B012,445,,bamforth1988:106-9; swanton1952:278,Binford_2001_Tables_5.01_and_8.01, +B254,,1850,B012,500,,skinner1914:477,Binford_2001_Tables_5.01_and_8.01, +B255,,1850,B012,762,,ewers1955:303,Binford_2001_Tables_5.01_and_8.01, +B256,,1850,B012,1100,,bushnell1922:26; ewers1955:303,Binford_2001_Tables_5.01_and_8.01, +B257,,1870,B012,850,,bushnell1922:32-33; culbertson1952:107; lowrieandclarke1832,Binford_2001_Tables_5.01_and_8.01, +B258,,1850,B012,285,,"bamforth1988:106-109; bushnell1922:20, 21",Binford_2001_Tables_5.01_and_8.01, +B259,,1850,B012,800,,bamforth1988:106-109,Binford_2001_Tables_5.01_and_8.01, +B26,,1900,B012,180,,"kreynovich1979:191-92, 196",Binford_2001_Tables_5.01_and_8.01, +B260,,1880,B012,300,,bamforth1988:106-109; jenness1938:10-11,Binford_2001_Tables_5.01_and_8.01, +B268,,,B012,NA,,,, +B269,,,B012,NA,,,, +B27,,1933,B012,116,,"popov1966:12, 103",Binford_2001_Tables_5.01_and_8.01, +B270,,,B012,NA,,,, +B271,,,B012,NA,,,, +B272,,,B012,NA,,,, +B273,,,B012,NA,,,, +B274,,,B012,NA,,,, +B275,,,B012,NA,,,, +B276,,,B012,NA,,,, +B277,,,B012,NA,,,, +B278,,,B012,NA,,,, +B279,,,B012,NA,,,, +B28,,1860,B012,90,,krupnik1983a:94-95,Binford_2001_Tables_5.01_and_8.01, +B280,,,B012,NA,,,, +B281,,,B012,NA,,,, +B282,,,B012,NA,,,, +B283,,,B012,NA,,,, +B284,,1880,B012,225,,pettitt1950:3-5,Binford_2001_Tables_5.01_and_8.01, +B285,,,B012,NA,,,, +B286,,,B012,NA,,,, +B287,,,B012,NA,,,, +B288,,,B012,NA,,,, +B289,,,B012,NA,,,, +B290,,,B012,NA,,,, +B291,,,B012,NA,,,, +B292,,,B012,NA,,,, +B293,,,B012,NA,,,, +B294,,,B012,NA,,,, +B295,,1890,B012,130,,birketsmithanddelaguna1938:19,Binford_2001_Tables_5.01_and_8.01, +B296,,,B012,NA,,,, +B297,,,B012,NA,,,, +B298,,,B012,NA,,,, +B299,,1930,B012,133,,lantis1946:163-64,Binford_2001_Tables_5.01_and_8.01, +B3,,,B012,NA,,,, +B315,,1850,B012,212,,murdock1980:130,Binford_2001_Tables_5.01_and_8.01, +B316,,,B012,NA,,,, +B317,,1870,B012,500,,teit1928:93-108,Binford_2001_Tables_5.01_and_8.01, +B318,,,B012,NA,,,, +B319,,1860,B012,700,,spierandsapir1930:166-67,Binford_2001_Tables_5.01_and_8.01, +B320,,1860,B012,350,,"teit1930:39, 331",Binford_2001_Tables_5.01_and_8.01, +B321,,1880,B012,230,,clineetal1938:87,Binford_2001_Tables_5.01_and_8.01, +B322,,1860,B012,245,,teit1930:207-11,Binford_2001_Tables_5.01_and_8.01, +B323,,,B012,NA,,,, +B324,,1850,B012,438,,"spinden1908:174-75, 196, 240",Binford_2001_Tables_5.01_and_8.01, +B325,,1860,B012,265,,teit1900:241-48,Binford_2001_Tables_5.01_and_8.01, +B326,,1870,B012,350,,teit1930:331,Binford_2001_Tables_5.01_and_8.01, +B327,,1870,B012,200,,jenness1935:13,Binford_2001_Tables_5.01_and_8.01, +B328,,,B012,NA,,,, +B329,,1700,B012,190,"Note, Binford Table 5.01 lists '150', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",speck1922:143-44,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '150', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B330,,1860,B012,300,,teit1930:331; turneyhigh1937:98,Binford_2001_Tables_5.01_and_8.01, +B331,,1880,B012,210,"Note, Binford Table 5.01 lists '190', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here.",hickerson1967:54-55,Binford_2001_Table_8.01,"Note, Binford Table 5.01 lists '190', but without attributing the value to a specific reference, so the value from table 8.01 is displayed here." +B332,,1870,B012,185,,bishop1978:222-26,Binford_2001_Tables_5.01_and_8.01, +B333,,1850,B012,266,,teit1905:457-66,Binford_2001_Tables_5.01_and_8.01, +B334,,1940,B012,160,,"dunning1959:57, 58, 84; rogers1969:31",Binford_2001_Tables_5.01_and_8.01, +B335,,1900,B012,150,,"rogers1963b:67, 76, 88; rogers1969:25, 31",Binford_2001_Tables_5.01_and_8.01, +B336,,1865,B012,235,,goldman1940:334,Binford_2001_Tables_5.01_and_8.01, +B337,,1800,B012,126,,hickerson1962:30-33,Binford_2001_Tables_5.01_and_8.01, +B338,,1880,B012,215,,rogers1963a:23; rogers1969:30,Binford_2001_Tables_5.01_and_8.01, +B339,,1850,B012,225,,rogers1969:43,Binford_2001_Tables_5.01_and_8.01, +B340,,1900,B012,235,,"morantz1983:89, 106; rogers1969:31",Binford_2001_Tables_5.01_and_8.01, +B341,,1890,B012,140,,rogersandblack1976:19,Binford_2001_Tables_5.01_and_8.01, +B342,,1880,B012,245,,tanner1944:592-609,Binford_2001_Tables_5.01_and_8.01, +B343,,1880,B012,164,,dennison1981:434-35; jenness1937:14,Binford_2001_Tables_5.01_and_8.01, +B344,,1850,B012,110,,ives1985:166-67,Binford_2001_Tables_5.01_and_8.01, +B345,,1860,B012,220,,"helm1961:50-52, 169; ives1985:166-67; janes1983:50-51",Binford_2001_Tables_5.01_and_8.01, +B346,,1920,B012,139,,honigmann1949:33-37,Binford_2001_Tables_5.01_and_8.01, +B347,,1870,B012,165,,maclachlan1981:460-61,Binford_2001_Tables_5.01_and_8.01, +B348,,,B012,NA,,,, +B349,,1880,B012,170,,jenness1943:485-86,Binford_2001_Tables_5.01_and_8.01, +B35,,,B012,NA,,,, +B350,,,B012,NA,,,, +B351,,1880,B012,214,,crowandobley1981:511,Binford_2001_Tables_5.01_and_8.01, +B352,,1860,B012,120,,"helm1961:169; savishinsky1974:47, 54",Binford_2001_Tables_5.01_and_8.01, +B353,,1900,B012,172,,honigmann1956b:58; honigmann1981:228-29,Binford_2001_Tables_5.01_and_8.01, +B354,,1880,B012,105,,clark1974:96,Binford_2001_Tables_5.01_and_8.01, +B355,,1880,B012,295,,smith1976:19; smith1978a:81; smith1981:275,Binford_2001_Tables_5.01_and_8.01, +B356,,1880,B012,210,,"slobodin1969:58-59, 64",Binford_2001_Tables_5.01_and_8.01, +B357,,,B012,NA,,,, +B358,,,B012,NA,,,, +B359,,,B012,NA,,,, +B36,,,B012,NA,,,, +B360,,1900,B012,225,,morantz1983:106,Binford_2001_Tables_5.01_and_8.01, +B361,,1860,B012,162,,helm1968:120,Binford_2001_Tables_5.01_and_8.01, +B362,,,B012,NA,,,, +B363,,,B012,NA,,,, +B364,,1860,B012,300,,snow1981:615,Binford_2001_Tables_5.01_and_8.01, +B365,,1890,B012,117,,"henriksen1973:58-59, 68",Binford_2001_Tables_5.01_and_8.01, +B369,,,B012,NA,,,, +B37,,1968,B012,66,,kloos1977:116,Binford_2001_Tables_5.01_and_8.01, +B370,,,B012,NA,,,, +B371,,1880,B012,350,,burch1975:269-72; burch1984:305,Binford_2001_Tables_5.01_and_8.01, +B372,,1890,B012,158,,"taylor1974:15-19, 64",Binford_2001_Tables_5.01_and_8.01, +B373,,1890,B012,65,,"willmott1960:48, 53",Binford_2001_Tables_5.01_and_8.01, +B374,,1900,B012,75,,birketsmith1929:67-69,Binford_2001_Tables_5.01_and_8.01, +B375,,1900,B012,105,,binfordfieldnotes1971; burch1975:255,Binford_2001_Tables_5.01_and_8.01, +B377,,1898-1909,B012,75,"Note, two estimates provided by Binford for the years 1898-1909 (75) and 1951-1959 (71); this entry is one of those estimates",amsden1977:224,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford for the years 1898-1909 (75) and 1951-1959 (71)" +B377,,1951-1959,B012,71,"Note, two estimates provided by Binford for the years 1898-1909 (75) and 1951-1959 (71); this entry is one of those estimates",amsden1977:224; binford1991a:80,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford for the years 1898-1909 (75) and 1951-1959 (71)" +B378,,1910,B012,135,,mcghee1988:11; tyrrell1897:167,Binford_2001_Tables_5.01_and_8.01, +B379,,,B012,NA,,,, +B38,,1989,B012,70,,gragson1989:289-90; greavesperscomm1993,Binford_2001_Tables_5.01_and_8.01, +B380,,,B012,NA,,,, +B381,,1920,B012,264,,"jenness1922:30, 55, 57; rasmussen1932:70, 78-85",Binford_2001_Tables_5.01_and_8.01, +B382,,,B012,NA,,,, +B383,,1880,B012,64,,"rae1850:40, 48, 49",Binford_2001_Tables_5.01_and_8.01, +B384,,1920,B012,120,,mathiassen1928:32,Binford_2001_Tables_5.01_and_8.01, +B385,,,B012,NA,,,, +B386,,1880,B012,144,,"boas1888:426; hantzsch1977:39, 99; low1906:57-58",Binford_2001_Tables_5.01_and_8.01, +B387,,1880,B012,150,,"mclintock1860:8, 230, 232, 235, 239, 240",Binford_2001_Tables_5.01_and_8.01, +B388,,1880,B012,137,,mirsky1937a:53; peterson1984:623,Binford_2001_Tables_5.01_and_8.01, +B389,,,B012,NA,,,, +B39,,1960,B012,179,,wilbert1957:90,Binford_2001_Tables_5.01_and_8.01, +B390,,1880,B012,150,,"ekblaw1948:3; steensby1910:266, 296, 324",Binford_2001_Tables_5.01_and_8.01, +B4,,,B012,NA,,,, +B40,,1990,B012,94,,politis1992:3; politisperscomm1992,Binford_2001_Tables_5.01_and_8.01, +B41,,,B012,NA,,,, +B42,,,B012,NA,,,, +B43,,,B012,NA,,,, +B44,,,B012,NA,,,, +B45,,1938,B012,75,,levistrauss1970:288; oberg1953:86,Binford_2001_Tables_5.01_and_8.01, +B46,,1600,B012,700,,"hann1991:42, 159, 168",Binford_2001_Tables_5.01_and_8.01, +B47,,1975,B012,130,"Note, does not appear in Binford Table 8.01, so references are general to the society and not this particular variable.",clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01,"Note, does not appear in Binford Table 8.01, so references are general to the society and not this particular variable." +B48,,1880,B012,84,,metrauxandbaldus1946:534,Binford_2001_Tables_5.01_and_8.01, +B49,,,B012,NA,,,, +B5,,1952,B012,70,,bose1964:305,Binford_2001_Tables_5.01_and_8.01, +B50,,1910,B012,110,,"henry1964:11, 50, 159",Binford_2001_Tables_5.01_and_8.01, +B51,,1870,B012,225,,cooper1946c:150; goni1988:145,Binford_2001_Tables_5.01_and_8.01, +B52,,,B012,NA,,,, +B53,,,B012,NA,,,, +B54,,1880,B012,290,,chapman1982:58; cooper1946b:117; gusinde1931:205,Binford_2001_Tables_5.01_and_8.01, +B55,,1870,B012,250,,"gusinde1937a:384, 387",Binford_2001_Tables_5.01_and_8.01, +B6,,1906,B012,65,,"temple1903:62, 77, 84",Binford_2001_Tables_5.01_and_8.01, +B60,,1980,B012,111,,"bahuchet1988:131; hudson1990:58, 63, 71",Binford_2001_Tables_5.01_and_8.01, +B61,,1976,B012,73,,"heymer1980:178, 193-96",Binford_2001_Tables_5.01_and_8.01, +B62,,1977,B012,95,,"terashima1980:234, 235, 262",Binford_2001_Tables_5.01_and_8.01, +B63,,1980,B012,104,"Note, two estimates provided by Binford (104, 90); this entry is one of those estimates",cavallisforza1986c:32-33,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (104, 90)" +B63,,1980,B012,90,"Note, two estimates provided by Binford (104, 90); this entry is one of those estimates",valloisandmarquer1976:113,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford (104, 90)" +B64,,1980,B012,100,,baileyandpeacock1988:99-100; fisherandstrickland1989:476,Binford_2001_Tables_5.01_and_8.01, +B65,Special reference to Mawambo Mbuti,1930,B012,87,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (87) and the second to Epula Mbuti (252); this entry is one of those estimates","tanno1976:107, 108, 130",Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (87) and the second to Epula Mbuti (252)" +B65,Special reference to Epula Mbuti,1930,B012,252,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (87) and the second to Epula Mbuti (252); this entry is one of those estimates","turnbull1965a:97, 98",Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Mawambo Mbuti (87) and the second to Epula Mbuti (252)" +B66,,,B012,NA,,,, +B67,,1950,B012,70,,clark1951:65,Binford_2001_Tables_5.01_and_8.01, +B68,,1920,B012,166,,fourie1927:51,Binford_2001_Tables_5.01_and_8.01, +B69,,,B012,NA,,,, +B7,,1903,B012,200,,fox1952:188; reed1904:19,Binford_2001_Tables_5.01_and_8.01, +B70,,1920,B012,75,,huntingford1951:8; huntingford1954:128,Binford_2001_Tables_5.01_and_8.01, +B71,,1928,B012,65,,bleek1929:109; decastroandalmeida1956:9,Binford_2001_Tables_5.01_and_8.01, +B72,Special reference to Was Nyae !Kung,1950,B012,130,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (130) and the second to Dobe !Kung (45); this entry is one of those estimates",marshall1960:328,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (130) and the second to Dobe !Kung (45)" +B72,Special reference to Dobe !Kung,1950,B012,45,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (130) and the second to Dobe !Kung (45); this entry is one of those estimates",lee1972a:330,Binford_2001_Tables_5.01_and_8.01,"Note, two estimates provided by Binford, the first refers specifically to Was Nyae !Kung (130) and the second to Dobe !Kung (45)" +B73,,1910,B012,70,,guenther1986:186; schapera1930:78,Binford_2001_Tables_5.01_and_8.01, +B74,,1962,B012,85,,silberbauer1972:296; silberbauer1981a:195-98,Binford_2001_Tables_5.01_and_8.01, +B75,,1976,B012,42,,kentandvierich1989,Binford_2001_Tables_5.01_and_8.01, +B76,,1968,B012,111,,eibleibesfeldt1972:32-33,Binford_2001_Tables_5.01_and_8.01, +B77,,1920,B012,77,,dart1937b:160-65; steyn1984:118,Binford_2001_Tables_5.01_and_8.01, +B78,,1950,B012,100,,potgieter1955:8,Binford_2001_Tables_5.01_and_8.01, +B79,,,B012,NA,,,, +B8,,1870,B012,80,,radcliffebrown1948:28,Binford_2001_Tables_5.01_and_8.01, +B82,,1848,B012,116,,moore1979:39,Binford_2001_Tables_5.01_and_8.01, +B83,,,B012,NA,,,, +B84,,1978,B012,128,,altman1987:15-27; berndtandberndt1970:3-14,Binford_2001_Tables_5.01_and_8.01, +B85,,1970,B012,77,,peterson1970:11; peterson1973:185; peterson1992; petersonandlong1986:40,Binford_2001_Tables_5.01_and_8.01, +B86,,1973,B012,250,,meehan1982:31-41,Binford_2001_Tables_5.01_and_8.01, +B87,,1950,B012,80,,peterson1972:26; petersonandlong1986:40,Binford_2001_Tables_5.01_and_8.01, +B88,,1930,B012,290,,thomson1949:16; warner1958:127-28,Binford_2001_Tables_5.01_and_8.01, +B89,,1920,B012,125,,kaberry1935:428,Binford_2001_Tables_5.01_and_8.01, +B9,,1920,B012,71,,"brandt1961:131-33; rambo1985:4, 33; schebesta1962a:17, 220",Binford_2001_Tables_5.01_and_8.01, +B90,,1920,B012,150,Binford estimate from photos,wills1980:85,Binford_2001_Tables_5.01_and_8.01, +B91,,1920,B012,200,,leichhardt1847:507; mccarthyandmacarthur1960:90-96,Binford_2001_Tables_5.01_and_8.01, +B92,,1960,B012,225,,biernoff1979:12; mcarthur1960:95; thomson1949:4,Binford_2001_Tables_5.01_and_8.01, +B93,,,B012,NA,,,, +B94,,,B012,NA,,,, +B95,,,B012,NA,,,, +B96,,1880,B012,250,,"andersonandrobins1988:187, 191-92",Binford_2001_Tables_5.01_and_8.01, +B97,,,B012,NA,,,, +B98,,1926,B012,60,,haleandtindale1933:77-78,Binford_2001_Tables_5.01_and_8.01, +B99,,1900,B012,150,"Binford noted this was an ""estimate""",stanner1933:393,Binford_2001_Tables_5.01_and_8.01, +B1,,1970,B013,45,,"harrison1949:135, 139; urquhart1951:505, 515",Binford_2001_Tables_5.01_and_8.04, +B10,,1900,B013,3,,seligmannandseligmann1911:43-44,Binford_2001_Tables_5.01_and_8.04, +B100,,NA,B013,13,,blundell1975:127-29.,Binford_2001_Tables_5.01_and_8.04, +B101,,,B013,NA,,,, +B102,,1909,B013,4,,memmott1983a:121-26,Binford_2001_Tables_5.01_and_8.04, +B103,,1928,B013,7,Binford estimate,tindale1962a; tindale1962b,Binford_2001_Tables_5.01_and_8.04, +B104,,,B013,NA,,,, +B105,,1900,B013,12,,harris1982:378-82,Binford_2001_Tables_5.01_and_8.04, +B106,,1910,B013,8,,radcliffebrown1912:144-47,Binford_2001_Tables_5.01_and_8.04, +B107,,,B013,NA,,,, +B108,,1934,B013,13,"Note, value is from Binford's Table 5.01, no value provided in Table 8.04",kaberry1939; nind1831,Binford_2001_Table_5.01,"Note, value is from Binford's Table 5.01, no value provided in Table 8.04" +B109,,1965,B013,14,,meggittperscomm1973,Binford_2001_Tables_5.01_and_8.04, +B11,,1972,B013,45,,"morris1982a:136, 174-80",Binford_2001_Tables_5.01_and_8.04, +B110,,1880,B013,15,Binford estimate; Value provided in 8.04 but not 5.01,petersonandlong1986; tonkinson1978,Binford_2001_Tables_5.01_and_8.04,Value provided in 8.04 but not 5.01 +B111,,1960,B013,15,"Note, value is from Binford's Table 5.01, no value provided in Table 8.04",harris1978; petersonandlong1986,Binford_2001_Table_5.01,"Note, value is from Binford's Table 5.01, no value provided in Table 8.04" +B112,,1968,B013,15,Binford estimate,petersonandlong1986,Binford_2001_Tables_5.01_and_8.04, +B113,,1936,B013,15,,myers1986:77-89,Binford_2001_Tables_5.01_and_8.04, +B114,,,B013,NA,,,, +B115,,1840,B013,8,,winterbotham1980:41,Binford_2001_Tables_5.01_and_8.04, +B116,,1900,B013,13,,duncankemp1964:129,Binford_2001_Tables_5.01_and_8.04, +B117,,1965,B013,14,,binfordfieldnotes1974,Binford_2001_Tables_5.01_and_8.04, +B118,,1968,B013,14,,gould1968:104-12,Binford_2001_Tables_5.01_and_8.04, +B119,,1850,B013,8,,belshaw1978:74-78,Binford_2001_Tables_5.01_and_8.04, +B12,,1965,B013,27,,headlandperscomm1992,Binford_2001_Tables_5.01_and_8.04, +B120,,1968,B013,15,,tindale1972:233-38,Binford_2001_Tables_5.01_and_8.04, +B121,,,B013,NA,,,, +B122,,,B013,NA,,,, +B123,,1922,B013,12,,tindaleperscomm196668,Binford_2001_Tables_5.01_and_8.04, +B124,,1900,B013,14,,binfordfieldnotes1993; spencerandgillen1927,Binford_2001_Tables_5.01_and_8.04, +B125,,,B013,NA,,,, +B126,,1912,B013,17,,tindaleperscomm1966,Binford_2001_Tables_5.01_and_8.04, +B127,,,B013,NA,,,, +B128,,,B013,NA,,,, +B129,,1840,B013,8,,draperperscomm1993,Binford_2001_Tables_5.01_and_8.04, +B13,,1979,B013,10,,"rai1982:105, 107",Binford_2001_Tables_5.01_and_8.04, +B130,,,B013,NA,,,, +B131,,,B013,NA,,,, +B132,,,B013,NA,,,, +B133,,,B013,NA,,,, +B134,,1850,B013,10,,gaughwinandsullivan1984:90,Binford_2001_Tables_5.01_and_8.04, +B135,,,B013,NA,,,, +B136,,1830,B013,12,,jones1972:4,Binford_2001_Tables_5.01_and_8.04, +B137,,1830,B013,7,,jones1972:4,Binford_2001_Tables_5.01_and_8.04, +B14,,1924,B013,29,,"vanoverbergh1925:195, 196-98, 432",Binford_2001_Tables_5.01_and_8.04, +B143,,1900,B013,7,,mcgee1898:152,Binford_2001_Tables_5.01_and_8.04, +B144,,1870,B013,4,Binford estimate,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Tables_5.01_and_8.04, +B145,,1870,B013,0,Binford estimate,gifford1926b; strong1929a,Binford_2001_Tables_5.01_and_8.04, +B146,,1880,B013,7,Binford estimate,meigs1939,Binford_2001_Tables_5.01_and_8.04, +B147,,1850,B013,7,Binford estimate,kroeber1925a; luomala1978,Binford_2001_Tables_5.01_and_8.04, +B148,,1860,B013,1,,gayton1948a:7-14; kroeber1925a:484,Binford_2001_Tables_5.01_and_8.04, +B149,,1870,B013,7,Binford estimate,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Tables_5.01_and_8.04, +B15,,1940,B013,4,,furerhaimendorf1943b:366,Binford_2001_Tables_5.01_and_8.04, +B150,,1860,B013,2,,sparkman1908:212,Binford_2001_Tables_5.01_and_8.04, +B151,,1860,B013,5,Binford estimate,cook1955; gayton1948a; gayton1948b,Binford_2001_Tables_5.01_and_8.04, +B152,,1850,B013,9,,voegelin1938:2-4,Binford_2001_Tables_5.01_and_8.04, +B153,,1850,B013,3,,goldschmidt1948:445,Binford_2001_Tables_5.01_and_8.04, +B154,,1850,B013,6,,"gayton1948a:56-64, 70-76",Binford_2001_Tables_5.01_and_8.04, +B155,,1850,B013,2,,kroeber1932:259-62,Binford_2001_Tables_5.01_and_8.04, +B156,,1770,B013,0,Binford estimate,,Binford_2001_Tables_5.01_and_8.04, +B157,,1870,B013,9,,gayton1948a:254-63; gifford1932b,Binford_2001_Tables_5.01_and_8.04, +B158,,1860,B013,3,,barrett1908:182-204,Binford_2001_Tables_5.01_and_8.04, +B159,,,B013,NA,,,, +B16,,1963,B013,12,,bernatzik1951:140; pookajorn1988:figures 75-77,Binford_2001_Tables_5.01_and_8.04, +B160,,1860,B013,6,,dubois1935:28-29,Binford_2001_Tables_5.01_and_8.04, +B161,,1860,B013,0,Binford estimate,cookandheizer1965,Binford_2001_Tables_5.01_and_8.04, +B162,,1860,B013,2,,dixon1910:295-302,Binford_2001_Tables_5.01_and_8.04, +B163,,1850,B013,1,,kroeber1929:407-8,Binford_2001_Tables_5.01_and_8.04, +B164,,,B013,NA,,,, +B165,,1860,B013,0,,barrett1908:210-26,Binford_2001_Tables_5.01_and_8.04, +B166,,1860,B013,4,,nomland1935:149-78,Binford_2001_Tables_5.01_and_8.04, +B167,,,B013,NA,,,, +B168,,,B013,NA,,,, +B169,,,B013,NA,,,, +B17,,1963,B013,5,,"gardner1965:27-28, 33",Binford_2001_Tables_5.01_and_8.04, +B170,,,B013,NA,,,, +B171,,,B013,NA,,,, +B172,,1860,B013,2,,driver1936:179-220,Binford_2001_Tables_5.01_and_8.04, +B173,,1860,B013,0,,barrett1908:124-35; loeb1926b:172,Binford_2001_Tables_5.01_and_8.04, +B174,,1860,B013,4,,waterman1918:37-60,Binford_2001_Tables_5.01_and_8.04, +B175,,1850,B013,4,,barrettandgifford1933:198-206,Binford_2001_Tables_5.01_and_8.04, +B176,,1860,B013,6,,gray1987:37-40,Binford_2001_Tables_5.01_and_8.04, +B177,,1860,B013,8,,"gifford1939:294, 329-30",Binford_2001_Tables_5.01_and_8.04, +B178,,1870,B013,5,,drucker1940:226-35,Binford_2001_Tables_5.01_and_8.04, +B179,,1860,B013,3,,dixon1907:421722,Binford_2001_Tables_5.01_and_8.04, +B18,,1963,B013,8,,williams1974:76-77,Binford_2001_Tables_5.01_and_8.04, +B180,,1860,B013,0,,"goddard1904:12-16, 21-29",Binford_2001_Tables_5.01_and_8.04, +B181,,1870,B013,5,,gray1987:48-51,Binford_2001_Tables_5.01_and_8.04, +B182,,1860,B013,0,,schenckandgifford1952:387-92,Binford_2001_Tables_5.01_and_8.04, +B183,,,B013,NA,,,, +B184,,1860,B013,1,,schalk1978:125,Binford_2001_Tables_5.01_and_8.04, +B185,,1850,B013,4,,"dixon1905:201, 225",Binford_2001_Tables_5.01_and_8.04, +B186,,1850,B013,2,,schalk1978:125,Binford_2001_Tables_5.01_and_8.04, +B187,,1860,B013,3,,kniffen1926:303,Binford_2001_Tables_5.01_and_8.04, +B188,,1860,B013,9,,ray1963:180-211,Binford_2001_Tables_5.01_and_8.04, +B189,,1860,B013,6,,spier1930:11,Binford_2001_Tables_5.01_and_8.04, +B19,,1946,B013,1.5,,ehrenfels1952:8,Binford_2001_Tables_5.01_and_8.04, +B190,,1760,B013,8,,baegert1863:361-65; baegert1865:391,Binford_2001_Tables_5.01_and_8.04, +B191,,,B013,NA,,,, +B192,,1860,B013,13,,steward1938:91-93,Binford_2001_Tables_5.01_and_8.04, +B193,,,B013,NA,,,, +B194,,,B013,NA,,,, +B195,,1850,B013,11,,steward1938:84-85,Binford_2001_Tables_5.01_and_8.04, +B196,,1870,B013,9,,corbusier1886:283; gifford1932a:206-13,Binford_2001_Tables_5.01_and_8.04, +B197,,1860,B013,14,,steward1936:81-83,Binford_2001_Tables_5.01_and_8.04, +B198,,1870,B013,4,,kniffen1935:38-45,Binford_2001_Tables_5.01_and_8.04, +B199,,1860,B013,9,Binford estimate,steward1938; voegelin1938; zigmond1986,Binford_2001_Tables_5.01_and_8.04, +B2,,1968,B013,6,,eder1984:843,Binford_2001_Tables_5.01_and_8.04, +B20,,1974,B013,4,,bhanu1982:225; bhanu1992:31,Binford_2001_Tables_5.01_and_8.04, +B200,,1860,B013,14,,steward1936:76-80,Binford_2001_Tables_5.01_and_8.04, +B201,,1860,B013,10,Binford estimate,kelly1964; kellyandfowler1986,Binford_2001_Tables_5.01_and_8.04, +B202,,1870,B013,2,,"steward1933:238-39, 263-66",Binford_2001_Tables_5.01_and_8.04, +B203,,1860,B013,12,,thomas1983:29-30,Binford_2001_Tables_5.01_and_8.04, +B204,,1860,B013,8,,"kelly1964:12, 14",Binford_2001_Tables_5.01_and_8.04, +B205,,1870,B013,11,,davis1965:29-31,Binford_2001_Tables_5.01_and_8.04, +B206,,1860,B013,8,,steward1938:58-60,Binford_2001_Tables_5.01_and_8.04, +B207,,1860,B013,12,,gouldandplew1996:64-66; steward1938:165-72,Binford_2001_Tables_5.01_and_8.04, +B208,,1860,B013,3,Binford estimate,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Tables_5.01_and_8.04, +B209,,,B013,NA,,,, +B21,,1978,B013,0,,bird1983:57-59; birddavid1987:153-56,Binford_2001_Tables_5.01_and_8.04, +B210,,1870,B013,5,,fowler1992:25-42,Binford_2001_Tables_5.01_and_8.04, +B211,,1860,B013,9,,steward1938:64-68,Binford_2001_Tables_5.01_and_8.04, +B212,,1870,B013,9,,riddell1960:21-44,Binford_2001_Tables_5.01_and_8.04, +B213,,1870,B013,12,,steward1938:178-79,Binford_2001_Tables_5.01_and_8.04, +B214,,1860,B013,13,,steward1938:132-39,Binford_2001_Tables_5.01_and_8.04, +B215,,,B013,NA,,,, +B216,,,B013,NA,,,, +B217,,1860,B013,5,,steward1938:118-21,Binford_2001_Tables_5.01_and_8.04, +B218,,1860,B013,8,,steward1938:100-5,Binford_2001_Tables_5.01_and_8.04, +B219,,,B013,NA,,,, +B22,,1900,B013,1.5,,watanabe1964a:8-9,Binford_2001_Tables_5.01_and_8.04, +B221,,1860,B013,14,,steward1938:173-77,Binford_2001_Tables_5.01_and_8.04, +B222,,,B013,NA,,,, +B223,,,B013,NA,,,, +B224,,,B013,NA,,,, +B225,,1850,B013,7,,downs1966:12-37,Binford_2001_Tables_5.01_and_8.04, +B226,,1870,B013,9,,"kelly1932:78, 105-6",Binford_2001_Tables_5.01_and_8.04, +B227,,,B013,NA,,,, +B228,,1860,B013,7,,"steward1938:figure 11, 147-49",Binford_2001_Tables_5.01_and_8.04, +B229,,,B013,NA,,,, +B23,,1900,B013,15,Binford estimate,qiu1983,Binford_2001_Tables_5.01_and_8.04, +B230,,,B013,NA,,,, +B231,,1870,B013,11,,whiting1950:17-19,Binford_2001_Tables_5.01_and_8.04, +B232,,1860,B013,13,,steward1938:187-92,Binford_2001_Tables_5.01_and_8.04, +B233,,1860,B013,11,,"steward1938:114-15, figure 8",Binford_2001_Tables_5.01_and_8.04, +B234,,,B013,NA,,,, +B24,,1900,B013,13,,lee1967:23-44,Binford_2001_Tables_5.01_and_8.04, +B240,,1880,B013,18,,basehartperscomm1972,Binford_2001_Tables_5.01_and_8.04, +B241,,,B013,NA,,,, +B242,,,B013,NA,,,, +B243,,,B013,NA,,,, +B244,,,B013,NA,,,, +B245,,1860,B013,18,,gussow1954; moore1987:163-75,Binford_2001_Tables_5.01_and_8.04, +B246,,,B013,NA,,,, +B248,,1870,B013,31,,denig1961:159; kelly1995:table 4.1,Binford_2001_Tables_5.01_and_8.04, +B249,,,B013,NA,,,, +B25,,1920,B013,0,,shternberg1933:67,Binford_2001_Tables_5.01_and_8.04, +B250,,1880,B013,13,,turneyhigh1941:53-55,Binford_2001_Tables_5.01_and_8.04, +B252,,,B013,NA,,,, +B253,,1870,B013,24,,flannery1953:23-24,Binford_2001_Tables_5.01_and_8.04, +B254,,,B013,NA,,,, +B255,,1850,B013,28,"Note, table 8.04 gives two estimates from different sources (28, 21)",ewers1955:125-27,Binford_2001_Table_8.04,"Note, table 8.04 gives two estimates from different sources (28, 21)" +B255,,1850,B013,21,"Note, table 8.04 gives two estimates from different sources (28, 21)",kehoe1993:89,Binford_2001_Table_8.04,"Note, table 8.04 gives two estimates from different sources (28, 21)" +B256,,1850,B013,30,,ewers1955:123-29,Binford_2001_Tables_5.01_and_8.04, +B257,,,B013,NA,,,, +B258,,,B013,NA,,,, +B259,,,B013,NA,,,, +B26,,1900,B013,17,,kreynovich1979:194-209,Binford_2001_Tables_5.01_and_8.04, +B260,,1880,B013,18,,jenness1938:12,Binford_2001_Tables_5.01_and_8.04, +B268,,1880,B013,2,,drucker1990:464; kelly1995:table 4.1,Binford_2001_Tables_5.01_and_8.04, +B269,,1860,B013,3,,drucker1939,Binford_2001_Tables_5.01_and_8.04, +B27,,1933,B013,12,,chard1963:106-8,Binford_2001_Tables_5.01_and_8.04, +B270,,1870,B013,2,,smith1940a:7-32; smith1940b:138-42,Binford_2001_Tables_5.01_and_8.04, +B271,,1850,B013,4,,elmendorf1960:253-65; kelly1995:table 4.1,Binford_2001_Tables_5.01_and_8.04, +B272,,,B013,NA,,,, +B273,,1880,B013,3,,schalk1978:126,Binford_2001_Tables_5.01_and_8.04, +B274,,1850,B013,2,,"ray1937:366; ray1938:38-42, 55",Binford_2001_Tables_5.01_and_8.04, +B275,,1860,B013,0,,zenk1990:572-74,Binford_2001_Tables_5.01_and_8.04, +B276,,1860,B013,8,,hayden1997:18-22,Binford_2001_Tables_5.01_and_8.04, +B277,,1880,B013,2,,stern1934:43-53,Binford_2001_Tables_5.01_and_8.04, +B278,,1860,B013,2,,olson1936a:93-94,Binford_2001_Tables_5.01_and_8.04, +B279,,1880,B013,4,,schalk1978:126,Binford_2001_Tables_5.01_and_8.04, +B28,,1860,B013,3,,krupnik1983a:96,Binford_2001_Tables_5.01_and_8.04, +B280,,1880,B013,6,,wilson1866:286,Binford_2001_Tables_5.01_and_8.04, +B281,,NA,B013,2,,taylor1974a:33-41,Binford_2001_Tables_5.01_and_8.04, +B282,,,B013,NA,,,, +B283,,,B013,NA,,,, +B284,,1880,B013,0,,pettitt1950:5-7,Binford_2001_Tables_5.01_and_8.04, +B285,,1860,B013,4,,schalk1978:126,Binford_2001_Tables_5.01_and_8.04, +B286,,1860,B013,2,,"schalk1978:125, 165",Binford_2001_Tables_5.01_and_8.04, +B287,,1880,B013,0,,olson1940:170,Binford_2001_Tables_5.01_and_8.04, +B288,,1890,B013,3.5,"Note Binford Table 5.01 gives value of 3, but without specific references, therefore value from table 8.04 is given here.",schalk1978:165,Binford_2001_Table_8.04,"Note Binford Table 5.01 gives value of 3, but without specific references, therefore value from table 8.04 is given here." +B289,,1880,B013,3.5,,"halpinandseguin1990:269-71; schalk1978:126, 165",Binford_2001_Tables_5.01_and_8.04, +B290,,,B013,NA,,,, +B291,,,B013,NA,,,, +B292,Special reference to Southern Tlingit,1880,B013,3,"Note, table 8.04 gives two estimates, the first refers specifically to Southern Tlingit (3) and the second to Chilkat Tlingit (2)","schalk1978:127, 165",Binford_2001_Table_8.04,"Note, table 8.04 gives two estimates, the first refers specifically to Southern Tlingit (3) and the second to Chilkat Tlingit (2)" +B292,Special reference to Chilkat Tlingit,1880,B013,2,"Note, table 8.04 gives two estimates, the first refers specifically to Southern Tlingit (3) and the second to Chilkat Tlingit (2)",mitchellanddonald1988:310,Binford_2001_Table_8.04,"Note, table 8.04 gives two estimates, the first refers specifically to Southern Tlingit (3) and the second to Chilkat Tlingit (2)" +B293,,1880,B013,4,,halpinandseguin1990:269-71,Binford_2001_Tables_5.01_and_8.04, +B294,,1840,B013,0,Binford estimate,holmberg1985; knechtandjordan1985,Binford_2001_Tables_5.01_and_8.04, +B295,,1890,B013,2,,delaguna1990:190-91,Binford_2001_Tables_5.01_and_8.04, +B296,,1850,B013,0,,oswaltperscomm1966,Binford_2001_Tables_5.01_and_8.04, +B297,,1930,B013,2,,birketsmith1953:123-28,Binford_2001_Tables_5.01_and_8.04, +B298,,1830,B013,0,,lantis1970a:174-82,Binford_2001_Tables_5.01_and_8.04, +B299,,1930,B013,0,,lantis1946:163,Binford_2001_Tables_5.01_and_8.04, +B3,,1900,B013,7,,persoon1989:512; volz1909:96-101,Binford_2001_Tables_5.01_and_8.04, +B315,,1850,B013,6,,murdock1980:131,Binford_2001_Tables_5.01_and_8.04, +B316,,,B013,NA,,,, +B317,,1870,B013,2,,"teit1928:104, 114-15",Binford_2001_Tables_5.01_and_8.04, +B318,,,B013,NA,,,, +B319,,1860,B013,0,,"spierandsapir1930:164-67, 202-5",Binford_2001_Tables_5.01_and_8.04, +B320,,1860,B013,11,,"teit1930:95-97, 150-52",Binford_2001_Tables_5.01_and_8.04, +B321,,1880,B013,7,,clineetal1938:11,Binford_2001_Tables_5.01_and_8.04, +B322,,1860,B013,3,,grabert1974:8,Binford_2001_Tables_5.01_and_8.04, +B323,,1870,B013,5,,"kelly1995:table 4.1; ray1932:15-24, 27-28",Binford_2001_Tables_5.01_and_8.04, +B324,,,B013,NA,,,, +B325,,,B013,NA,,,, +B326,,,B013,NA,,,, +B327,,1870,B013,14,,jenness1935:13-14,Binford_2001_Tables_5.01_and_8.04, +B328,,1800,B013,14,,kinietz1947:43-55,Binford_2001_Tables_5.01_and_8.04, +B329,,1700,B013,12,,"speckanddexter1951:251-55; wallisandwallis1955:64-66, 172",Binford_2001_Tables_5.01_and_8.04, +B330,,,B013,NA,,,, +B331,,1880,B013,13,,hickerson1967:48-52; landes1937a:88-95,Binford_2001_Tables_5.01_and_8.04, +B332,,1870,B013,15,Binford estimate,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Tables_5.01_and_8.04, +B333,,1850,B013,4,,dawson1891:7-10,Binford_2001_Tables_5.01_and_8.04, +B334,,,B013,NA,,,, +B335,,,B013,NA,,,, +B336,,1865,B013,5.5,,goldman1940:351-52,Binford_2001_Tables_5.01_and_8.04, +B337,,1800,B013,14,,cameron1890:256,Binford_2001_Tables_5.01_and_8.04, +B338,,1880,B013,16,,rogers1972:107-11,Binford_2001_Tables_5.01_and_8.04, +B339,,1850,B013,14,Binford estimate,dunning1959,Binford_2001_Tables_5.01_and_8.04, +B340,,,B013,NA,,,, +B341,,,B013,NA,,,, +B342,,1880,B013,19,,lane1952:13,Binford_2001_Tables_5.01_and_8.04, +B343,,1880,B013,15,,"jenness1937:32-37, 58",Binford_2001_Tables_5.01_and_8.04, +B344,,1850,B013,20,,goddard1916:212; ridington1982:472,Binford_2001_Tables_5.01_and_8.04, +B345,,1860,B013,13,,helm1961:16-27,Binford_2001_Tables_5.01_and_8.04, +B346,,1920,B013,9,,"honigmann1954:12, 31-68",Binford_2001_Tables_5.01_and_8.04, +B347,,,B013,NA,,,, +B348,,,B013,NA,,,, +B349,,1880,B013,12,,jenness1943:531-39,Binford_2001_Tables_5.01_and_8.04, +B35,,,B013,NA,,,, +B350,,,B013,NA,,,, +B351,,,B013,NA,,,, +B352,,1860,B013,16,,savishinsky1974:86-138,Binford_2001_Tables_5.01_and_8.04, +B353,,1900,B013,8,,honigmann1956b:32,Binford_2001_Tables_5.01_and_8.04, +B354,,1880,B013,14,,"mcfaydenclark1981:593, 588-89",Binford_2001_Tables_5.01_and_8.04, +B355,,1880,B013,18,,fidler1934,Binford_2001_Tables_5.01_and_8.04, +B356,,1880,B013,16,,"slobodin1969:58-64, 78-83",Binford_2001_Tables_5.01_and_8.04, +B357,,1880,B013,4,,michael1967:307,Binford_2001_Tables_5.01_and_8.04, +B358,,1860,B013,14,,hooper1853,Binford_2001_Tables_5.01_and_8.04, +B359,,1930,B013,14,,mckennan1959,Binford_2001_Tables_5.01_and_8.04, +B36,,1960,B013,33,Binford estimate,metraux1948,Binford_2001_Tables_5.01_and_8.04, +B360,,1900,B013,16,,morantz1983:33-37,Binford_2001_Tables_5.01_and_8.04, +B361,,1860,B013,13,,helm1972:63-72,Binford_2001_Tables_5.01_and_8.04, +B362,,1870,B013,2,,michael1967:306,Binford_2001_Tables_5.01_and_8.04, +B363,,1890,B013,19,,legros1982:67-69,Binford_2001_Tables_5.01_and_8.04, +B364,,1860,B013,0,,snow1981:615-16,Binford_2001_Tables_5.01_and_8.04, +B365,,1890,B013,16,,"henriksen1973:2, 4",Binford_2001_Tables_5.01_and_8.04, +B369,,1870,B013,0,Binford estimate,ray1992; seltzer1933,Binford_2001_Tables_5.01_and_8.04, +B37,,1968,B013,49,,kloos1977:119; kloos1982,Binford_2001_Tables_5.01_and_8.04, +B370,,1890,B013,9,,giddings1956:5-55,Binford_2001_Tables_5.01_and_8.04, +B371,,1880,B013,0,Binford estimate,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Tables_5.01_and_8.04, +B372,,1890,B013,4,,taylor1974:51-58,Binford_2001_Tables_5.01_and_8.04, +B373,,1890,B013,3,,saladindanglure1984:497-99,Binford_2001_Tables_5.01_and_8.04, +B374,,1900,B013,16,Binford estimate,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Tables_5.01_and_8.04, +B375,,1900,B013,12,,binfordfieldnotes1972,Binford_2001_Tables_5.01_and_8.04, +B377,,1950,B013,11,,"amsden1977:159, 163",Binford_2001_Tables_5.01_and_8.04, +B378,,1910,B013,6,,mcghee1988:7-24,Binford_2001_Tables_5.01_and_8.04, +B379,,1920,B013,1,"Note Binford Table 5.01 gives value of 2, but without specific references, therefore value from table 8.04 is given here.",moore1923:349,Binford_2001_Table_8.04,"Note Binford Table 5.01 gives value of 2, but without specific references, therefore value from table 8.04 is given here." +B38,,1989,B013,7,,gragson1989:285-88,Binford_2001_Tables_5.01_and_8.04, +B380,,1880,B013,2,,"burch1975:260-69; rainey1947:240, 244-67",Binford_2001_Tables_5.01_and_8.04, +B381,,1920,B013,14,,"jenness1932:32, 55, 56",Binford_2001_Tables_5.01_and_8.04, +B382,,1920,B013,15,,"briggs1970:30, 32-40",Binford_2001_Tables_5.01_and_8.04, +B383,,1880,B013,14,,"mathiassen1928:15-17, 24",Binford_2001_Tables_5.01_and_8.04, +B384,,1920,B013,12,,mathiassen1928:29-36,Binford_2001_Tables_5.01_and_8.04, +B385,,1880,B013,3,,grnnowetal1983:13-37,Binford_2001_Tables_5.01_and_8.04, +B386,,1880,B013,4,,"boas1888:422-24; hantzsch1977:39, 99",Binford_2001_Tables_5.01_and_8.04, +B387,,1880,B013,11,,balikci1970:23-90,Binford_2001_Tables_5.01_and_8.04, +B388,,1880,B013,2,,holm1914:97; thalbitzer1914:618-26,Binford_2001_Tables_5.01_and_8.04, +B389,,1880,B013,3,,simpson1875:237; spencer1959:139-46,Binford_2001_Tables_5.01_and_8.04, +B39,,1960,B013,40,,kirchhoff1945:449,Binford_2001_Tables_5.01_and_8.04, +B390,,1880,B013,11,,"steensby1910:279, 289-305",Binford_2001_Tables_5.01_and_8.04, +B4,,,B013,NA,,,, +B40,,1990,B013,55,,politisperscomm1992,Binford_2001_Tables_5.01_and_8.04, +B41,,1920,B013,0,,baldus1937:123-24; levistrauss1936:269; levistrauss1970:140,Binford_2001_Tables_5.01_and_8.04, +B42,,,B013,NA,,,, +B43,,1940,B013,17,,holmberg1950:51,Binford_2001_Tables_5.01_and_8.04, +B44,,1968,B013,53,"Binford noted this was an ""estimate""",stearman1989,Binford_2001_Tables_5.01_and_8.04, +B45,,1938,B013,13,"Note, first of two estimates from different sources provided by Binford for this society","levistrauss1948a:266, 288",Binford_2001_Tables_5.01_and_8.04, +B45,,1938,B013,13,"Note, second of two estimates from different sources provided by Binford for this society",aspelin1976:9-16,Binford_2001_Tables_5.01_and_8.04, +B46,,1600,B013,0,,widmer1983:15-18,Binford_2001_Tables_5.01_and_8.04, +B47,,1975,B013,58,,"clastres1972:163; oberg1953:18, 38",Binford_2001_Tables_5.01_and_8.04, +B48,,1880,B013,7,Binford estimate,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Tables_5.01_and_8.04, +B49,,,B013,NA,,,, +B5,,1952,B013,8,,cooper1991,Binford_2001_Tables_5.01_and_8.04, +B50,,1910,B013,30,,henry1964:159,Binford_2001_Tables_5.01_and_8.04, +B51,,1870,B013,17,Binford estimate,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Tables_5.01_and_8.04, +B52,,,B013,NA,,,, +B53,,,B013,NA,,,, +B54,,1880,B013,24,,chapman1982:19,Binford_2001_Tables_5.01_and_8.04, +B55,,1870,B013,7,,"gusinde1937a:366, 511",Binford_2001_Tables_5.01_and_8.04, +B6,,1906,B013,9,,temple1903:69-90,Binford_2001_Tables_5.01_and_8.04, +B60,,1980,B013,6,,hudson1990:57-80,Binford_2001_Tables_5.01_and_8.04, +B61,,1976,B013,10,,heymer1980:189,Binford_2001_Tables_5.01_and_8.04, +B62,,1977,B013,7,,"terashima1980:241, 261",Binford_2001_Tables_5.01_and_8.04, +B63,,1980,B013,16,,valloisandmarquer1976:112-19,Binford_2001_Tables_5.01_and_8.04, +B64,,1980,B013,12,,bailey1985:48-58; peacock1985:47-48,Binford_2001_Tables_5.01_and_8.04, +B65,,1930,B013,13,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area.","harako1976:44, 114-17",Binford_2001_Table_8.04,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area." +B65,Special reference to Mawambo Mbuti,1930,B013,11,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area.",tanno1976:123,Binford_2001_Table_8.04,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area." +B65,Special reference to Mbuti of Tetri Area,1930,B013,18,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area.",ichikawa1978:173-75,Binford_2001_Table_8.04,"Three values are given in Table 8.04 (13, 11, 18). The second refers specifically to Mawambo Mbuti, and the third to Mbuti of the Tetri Area." +B66,,,B013,NA,,,, +B67,,1950,B013,8,Binford estimate,clark1951,Binford_2001_Tables_5.01_and_8.04, +B68,,,B013,NA,,,, +B69,,1910,B013,7,,leeanddevore1968a:194,Binford_2001_Tables_5.01_and_8.04, +B7,,1903,B013,0,,reed1904:39-43,Binford_2001_Tables_5.01_and_8.04, +B70,,1920,B013,0,,huntingford1929:340; huntingford1955a:623-34,Binford_2001_Tables_5.01_and_8.04, +B71,,,B013,NA,,,, +B72,Special reference to Nyae Nyae !Kung,1950,B013,11,"Note, two estimates are provided by Binford in Table 8.04 (11, 5.5). The first refers to Nyae Nyae !Kung, the second to Dobe !Kung; this entry is one of those estimates",hitchcockandebert1989:55,Binford_2001_Table_8.04,"Note, two estimates are provided by Binford in Table 8.04 (11, 5.5). The first refers to Nyae Nyae !Kung, the second to Dobe !Kung." +B72,Special reference to Dobe !Kung,1950,B013,5.5,"Note, two estimates are provided by Binford in Table 8.04 (11, 5.5). The first refers to Nyae Nyae !Kung, the second to Dobe !Kung; this entry is one of those estimates","lee1972a:330; lee1979:168, 182-204",Binford_2001_Table_8.04,"Note, two estimates are provided by Binford in Table 8.04 (11, 5.5). The first refers to Nyae Nyae !Kung, the second to Dobe !Kung." +B73,,1910,B013,2,,hitchcockandebert1989:55,Binford_2001_Tables_5.01_and_8.04, +B74,,1962,B013,11.5,,"silberbauer1972:295-97; silberbauer1981a:193, 196, 246; silberbauer1981b:460",Binford_2001_Tables_5.01_and_8.04, +B75,,1976,B013,9,,hitchcockandebert1989:55,Binford_2001_Tables_5.01_and_8.04, +B76,,1968,B013,12,,hitchcockandebert1989:55,Binford_2001_Tables_5.01_and_8.04, +B77,,1920,B013,13,,informantfrommoloporivernd,Binford_2001_Tables_5.01_and_8.04, +B78,,,B013,NA,,,, +B79,,,B013,NA,,,, +B8,,1870,B013,12,,radcliffebrown1948:28,Binford_2001_Tables_5.01_and_8.04, +B82,,1848,B013,4,,moore1979:238,Binford_2001_Tables_5.01_and_8.04, +B83,,1900,B013,7,,parkhouse1895:639-41,Binford_2001_Tables_5.01_and_8.04, +B84,,1978,B013,14,,altman1987:22-27,Binford_2001_Tables_5.01_and_8.04, +B85,,1970,B013,6,,peterson1970:11; peterson1973:185,Binford_2001_Tables_5.01_and_8.04, +B86,,1973,B013,3,,meehan1982:26-41,Binford_2001_Tables_5.01_and_8.04, +B87,,1950,B013,0,,hiatt1965:31-32,Binford_2001_Tables_5.01_and_8.04, +B88,,1930,B013,15,,tindaleperscomm1967,Binford_2001_Tables_5.01_and_8.04, +B89,,1920,B013,14,Binford estimate,kaberry1935; kaberry1939,Binford_2001_Tables_5.01_and_8.04, +B9,,1920,B013,36,,schebesta1962a:143-44,Binford_2001_Tables_5.01_and_8.04, +B90,,1920,B013,14,,thomson1939:211-20,Binford_2001_Tables_5.01_and_8.04, +B91,,1920,B013,12,,chaloupka1981:163-71,Binford_2001_Tables_5.01_and_8.04, +B92,,1960,B013,10,,biernoff1979:156,Binford_2001_Tables_5.01_and_8.04, +B93,,1930,B013,6,,thomson1934:241,Binford_2001_Tables_5.01_and_8.04, +B94,,1937,B013,13,Binford estimate,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Tables_5.01_and_8.04, +B95,,1920,B013,10,,"hartandpilling1960:35, 36, 66",Binford_2001_Tables_5.01_and_8.04, +B96,,1880,B013,6,,andersonandrobins1988:184-87,Binford_2001_Tables_5.01_and_8.04, +B97,,1930,B013,8,,tindaleperscomm1967,Binford_2001_Tables_5.01_and_8.04, +B98,,1926,B013,4,,"haleandtindale1933:64, 77",Binford_2001_Tables_5.01_and_8.04, +B99,,1900,B013,7,Binford estimate,stanner1933,Binford_2001_Tables_5.01_and_8.04, +B1,,1970,B014,386.2416,,"harrison1949:135, 139; urquhart1951:505, 515",Binford_2001_Tables_5.01_and_8.04, +B10,,1900,B014,57.93624,,seligmannandseligmann1911:43-44,Binford_2001_Tables_5.01_and_8.04, +B100,,NA,B014,241.401,,blundell1975:127-29.,Binford_2001_Tables_5.01_and_8.04, +B101,,,B014,NA,,,, +B102,,1909,B014,56.3269,,memmott1983a:121-26,Binford_2001_Tables_5.01_and_8.04, +B103,,1928,B014,56.3269,Binford estimate,tindale1962a; tindale1962b,Binford_2001_Tables_5.01_and_8.04, +B104,,,B014,NA,,,, +B105,,1900,B014,112.6538,,harris1982:378-82,Binford_2001_Tables_5.01_and_8.04, +B106,,1910,B014,209.2142,,radcliffebrown1912:144-47,Binford_2001_Tables_5.01_and_8.04, +B107,,,B014,NA,,,, +B108,,1934,B014,563.269,"Note, value provided in Table 5.01 but not Table 8.04",kaberry1939; nind1831,Binford_2001_Table_5.01,"Note, value provided in Table 5.01 but not Table 8.04" +B109,,1965,B014,611.5492,,meggittperscomm1973,Binford_2001_Tables_5.01_and_8.04, +B11,,1972,B014,241.401,,"morris1982a:136, 174-80",Binford_2001_Tables_5.01_and_8.04, +B110,,1880,B014,669.48544,Binford estimate,petersonandlong1986; tonkinson1978,Binford_2001_Tables_5.01_and_8.04, +B111,,1960,B014,669.48544,"Note, value provided in Table 5.01 but not Table 8.04",harris1978; petersonandlong1986,Binford_2001_Table_5.01,"Note, value provided in Table 5.01 but not Table 8.04" +B112,,1968,B014,611.5492,Binford estimate,petersonandlong1986,Binford_2001_Tables_5.01_and_8.04, +B113,,1936,B014,523.0355,,myers1986:77-89,Binford_2001_Tables_5.01_and_8.04, +B114,,,B014,NA,,,, +B115,,1840,B014,51.49888,,winterbotham1980:41,Binford_2001_Tables_5.01_and_8.04, +B116,,1900,B014,442.5685,,duncankemp1964:129,Binford_2001_Tables_5.01_and_8.04, +B117,,1965,B014,523.0355,,binfordfieldnotes1974,Binford_2001_Tables_5.01_and_8.04, +B118,,1968,B014,600.28382,,gould1968:104-12,Binford_2001_Tables_5.01_and_8.04, +B119,,1850,B014,144.8406,,belshaw1978:74-78,Binford_2001_Tables_5.01_and_8.04, +B12,,1965,B014,217.2609,,headlandperscomm1992,Binford_2001_Tables_5.01_and_8.04, +B120,,1968,B014,465.09926,,tindale1972:233-38,Binford_2001_Tables_5.01_and_8.04, +B121,,,B014,NA,,,, +B122,,,B014,NA,,,, +B123,,1922,B014,479.58332,,tindaleperscomm196668,Binford_2001_Tables_5.01_and_8.04, +B124,,1900,B014,458.6619,,binfordfieldnotes1993; spencerandgillen1927,Binford_2001_Tables_5.01_and_8.04, +B125,,,B014,NA,,,, +B126,,1912,B014,579.3624,,tindaleperscomm1966,Binford_2001_Tables_5.01_and_8.04, +B127,,,B014,NA,,,, +B128,,,B014,NA,,,, +B129,,1840,B014,160.934,,draperperscomm1993,Binford_2001_Tables_5.01_and_8.04, +B13,,1979,B014,273.5878,,"rai1982:105, 107",Binford_2001_Tables_5.01_and_8.04, +B130,,,B014,NA,,,, +B131,,,B014,NA,,,, +B132,,,B014,NA,,,, +B133,,,B014,NA,,,, +B134,,1850,B014,144.8406,,gaughwinandsullivan1984:90,Binford_2001_Tables_5.01_and_8.04, +B135,,,B014,NA,,,, +B136,,1830,B014,265.5411,,jones1972:4,Binford_2001_Tables_5.01_and_8.04, +B137,,1830,B014,104.6071,,jones1972:4,Binford_2001_Tables_5.01_and_8.04, +B14,,1924,B014,193.1208,,"vanoverbergh1925:195, 196-98, 432",Binford_2001_Tables_5.01_and_8.04, +B143,,1900,B014,152.8873,,mcgee1898:152,Binford_2001_Tables_5.01_and_8.04, +B144,,1870,B014,64.3736,Binford estimate,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Tables_5.01_and_8.04, +B145,,1870,B014,0,Binford estimate,gifford1926b; strong1929a,Binford_2001_Tables_5.01_and_8.04, +B146,,1880,B014,144.8406,Binford estimate,meigs1939,Binford_2001_Tables_5.01_and_8.04, +B147,,1850,B014,128.7472,Binford estimate,kroeber1925a; luomala1978,Binford_2001_Tables_5.01_and_8.04, +B148,,1860,B014,6.43736,,gayton1948a:7-14; kroeber1925a:484,Binford_2001_Tables_5.01_and_8.04, +B149,,1870,B014,144.8406,Binford estimate,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Tables_5.01_and_8.04, +B15,,1940,B014,22.53076,,furerhaimendorf1943b:366,Binford_2001_Tables_5.01_and_8.04, +B150,,1860,B014,28.96812,,sparkman1908:212,Binford_2001_Tables_5.01_and_8.04, +B151,,1860,B014,80.467,Binford estimate,cook1955; gayton1948a; gayton1948b,Binford_2001_Tables_5.01_and_8.04, +B152,,1850,B014,177.0274,,voegelin1938:2-4,Binford_2001_Tables_5.01_and_8.04, +B153,,1850,B014,53.10822,,goldschmidt1948:445,Binford_2001_Tables_5.01_and_8.04, +B154,,1850,B014,112.6538,,"gayton1948a:56-64, 70-76",Binford_2001_Tables_5.01_and_8.04, +B155,,1850,B014,22.53076,,kroeber1932:259-62,Binford_2001_Tables_5.01_and_8.04, +B156,,1770,B014,0,Binford estimate,,Binford_2001_Tables_5.01_and_8.04, +B157,,1870,B014,136.7939,,gayton1948a:254-63; gifford1932b,Binford_2001_Tables_5.01_and_8.04, +B158,,1860,B014,57.93624,,barrett1908:182-204,Binford_2001_Tables_5.01_and_8.04, +B159,,,B014,NA,,,, +B16,,1963,B014,152.8873,,bernatzik1951:140; pookajorn1988:figures 75-77,Binford_2001_Tables_5.01_and_8.04, +B160,,1860,B014,223.69826,,dubois1935:28-29,Binford_2001_Tables_5.01_and_8.04, +B161,,1860,B014,0,Binford estimate,cookandheizer1965,Binford_2001_Tables_5.01_and_8.04, +B162,,1860,B014,54.71756,,dixon1910:295-302,Binford_2001_Tables_5.01_and_8.04, +B163,,1850,B014,8.0467,,kroeber1929:407-8,Binford_2001_Tables_5.01_and_8.04, +B164,,,B014,NA,,,, +B165,,1860,B014,0,,barrett1908:210-26,Binford_2001_Tables_5.01_and_8.04, +B166,,1860,B014,96.5604,,nomland1935:149-78,Binford_2001_Tables_5.01_and_8.04, +B167,,,B014,NA,,,, +B168,,,B014,NA,,,, +B169,,,B014,NA,,,, +B17,,1963,B014,88.5137,,"gardner1965:27-28, 33",Binford_2001_Tables_5.01_and_8.04, +B170,,,B014,NA,,,, +B171,,,B014,NA,,,, +B172,,1860,B014,12.87472,,driver1936:179-220,Binford_2001_Tables_5.01_and_8.04, +B173,,1860,B014,0,,barrett1908:124-35; loeb1926b:172,Binford_2001_Tables_5.01_and_8.04, +B174,,1860,B014,136.7939,,waterman1918:37-60,Binford_2001_Tables_5.01_and_8.04, +B175,,1850,B014,51.49888,,barrettandgifford1933:198-206,Binford_2001_Tables_5.01_and_8.04, +B176,,1860,B014,112.6538,,gray1987:37-40,Binford_2001_Tables_5.01_and_8.04, +B177,,1860,B014,160.934,,"gifford1939:294, 329-30",Binford_2001_Tables_5.01_and_8.04, +B178,,1870,B014,96.5604,,drucker1940:226-35,Binford_2001_Tables_5.01_and_8.04, +B179,,1860,B014,88.5137,,dixon1907:421722,Binford_2001_Tables_5.01_and_8.04, +B18,,1963,B014,144.8406,,williams1974:76-77,Binford_2001_Tables_5.01_and_8.04, +B180,,1860,B014,0,,"goddard1904:12-16, 21-29",Binford_2001_Tables_5.01_and_8.04, +B181,,1870,B014,120.7005,,gray1987:48-51,Binford_2001_Tables_5.01_and_8.04, +B182,,1860,B014,0,,schenckandgifford1952:387-92,Binford_2001_Tables_5.01_and_8.04, +B183,,,B014,NA,,,, +B184,,1860,B014,19.31208,,schalk1978:125,Binford_2001_Tables_5.01_and_8.04, +B185,,1850,B014,45.06152,,"dixon1905:201, 225",Binford_2001_Tables_5.01_and_8.04, +B186,,1850,B014,38.62416,,schalk1978:125,Binford_2001_Tables_5.01_and_8.04, +B187,,1860,B014,102.99776,,kniffen1926:303,Binford_2001_Tables_5.01_and_8.04, +B188,,1860,B014,72.4203,,ray1963:180-211,Binford_2001_Tables_5.01_and_8.04, +B189,,1860,B014,135.18456,,spier1930:11,Binford_2001_Tables_5.01_and_8.04, +B19,,1946,B014,30.57746,,ehrenfels1952:8,Binford_2001_Tables_5.01_and_8.04, +B190,,1760,B014,217.2609,,baegert1863:361-65; baegert1865:391,Binford_2001_Tables_5.01_and_8.04, +B191,,,B014,NA,,,, +B192,,1860,B014,362.1015,,steward1938:91-93,Binford_2001_Tables_5.01_and_8.04, +B193,,,B014,NA,,,, +B194,,,B014,NA,,,, +B195,,1850,B014,354.0548,,steward1938:84-85,Binford_2001_Tables_5.01_and_8.04, +B196,,1870,B014,28.96812,,corbusier1886:283; gifford1932a:206-13,Binford_2001_Tables_5.01_and_8.04, +B197,,1860,B014,354.0548,,steward1936:81-83,Binford_2001_Tables_5.01_and_8.04, +B198,,1870,B014,168.9807,,kniffen1935:38-45,Binford_2001_Tables_5.01_and_8.04, +B199,,1860,B014,241.401,Binford estimate,steward1938; voegelin1938; zigmond1986,Binford_2001_Tables_5.01_and_8.04, +B2,,1968,B014,80.467,,eder1984:843,Binford_2001_Tables_5.01_and_8.04, +B20,,1974,B014,120.7005,,bhanu1982:225; bhanu1992:31,Binford_2001_Tables_5.01_and_8.04, +B200,,1860,B014,289.6812,,steward1936:76-80,Binford_2001_Tables_5.01_and_8.04, +B201,,1860,B014,321.868,Binford estimate,kelly1964; kellyandfowler1986,Binford_2001_Tables_5.01_and_8.04, +B202,,1870,B014,27.35878,,"steward1933:238-39, 263-66",Binford_2001_Tables_5.01_and_8.04, +B203,,1860,B014,434.5218,,thomas1983:29-30,Binford_2001_Tables_5.01_and_8.04, +B204,,1860,B014,321.868,,"kelly1964:12, 14",Binford_2001_Tables_5.01_and_8.04, +B205,,1870,B014,346.0081,,davis1965:29-31,Binford_2001_Tables_5.01_and_8.04, +B206,,1860,B014,313.8213,,steward1938:58-60,Binford_2001_Tables_5.01_and_8.04, +B207,,1860,B014,337.9614,,gouldandplew1996:64-66; steward1938:165-72,Binford_2001_Tables_5.01_and_8.04, +B208,,1860,B014,53.10822,Binford estimate,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Tables_5.01_and_8.04, +B209,,,B014,NA,,,, +B21,,1978,B014,0,,bird1983:57-59; birddavid1987:153-56,Binford_2001_Tables_5.01_and_8.04, +B210,,1870,B014,144.8406,,fowler1992:25-42,Binford_2001_Tables_5.01_and_8.04, +B211,,1860,B014,241.401,,steward1938:64-68,Binford_2001_Tables_5.01_and_8.04, +B212,,1870,B014,265.5411,,riddell1960:21-44,Binford_2001_Tables_5.01_and_8.04, +B213,,1870,B014,402.335,,steward1938:178-79,Binford_2001_Tables_5.01_and_8.04, +B214,,1860,B014,366.92952,,steward1938:132-39,Binford_2001_Tables_5.01_and_8.04, +B215,,,B014,NA,,,, +B216,,,B014,NA,,,, +B217,,1860,B014,144.8406,,steward1938:118-21,Binford_2001_Tables_5.01_and_8.04, +B218,,1860,B014,209.2142,,steward1938:100-5,Binford_2001_Tables_5.01_and_8.04, +B219,,,B014,NA,,,, +B22,,1900,B014,12.87472,,watanabe1964a:8-9,Binford_2001_Tables_5.01_and_8.04, +B221,,1860,B014,506.9421,,steward1938:173-77,Binford_2001_Tables_5.01_and_8.04, +B222,,,B014,NA,,,, +B223,,,B014,NA,,,, +B224,,,B014,NA,,,, +B225,,1850,B014,318.64932,,downs1966:12-37,Binford_2001_Tables_5.01_and_8.04, +B226,,1870,B014,337.9614,,"kelly1932:78, 105-6",Binford_2001_Tables_5.01_and_8.04, +B227,,,B014,NA,,,, +B228,,1860,B014,193.1208,,"steward1938:figure 11, 147-49",Binford_2001_Tables_5.01_and_8.04, +B229,,,B014,NA,,,, +B23,,1900,B014,563.269,Binford estimate,qiu1983,Binford_2001_Tables_5.01_and_8.04, +B230,,,B014,NA,,,, +B231,,1870,B014,402.335,,whiting1950:17-19,Binford_2001_Tables_5.01_and_8.04, +B232,,1860,B014,434.5218,,steward1938:187-92,Binford_2001_Tables_5.01_and_8.04, +B233,,1860,B014,418.4284,,"steward1938:114-15, figure 8",Binford_2001_Tables_5.01_and_8.04, +B234,,,B014,NA,,,, +B24,,1900,B014,675.9228,,lee1967:23-44,Binford_2001_Tables_5.01_and_8.04, +B240,,1880,B014,772.4832,,basehartperscomm1972,Binford_2001_Tables_5.01_and_8.04, +B241,,,B014,NA,,,, +B242,,,B014,NA,,,, +B243,,,B014,NA,,,, +B244,,,B014,NA,,,, +B245,,1860,B014,627.6426,,gussow1954; moore1987:163-75,Binford_2001_Tables_5.01_and_8.04, +B246,,,B014,NA,,,, +B248,,1870,B014,917.3238,,denig1961:159; kelly1995:table 4.1,Binford_2001_Tables_5.01_and_8.04, +B249,,,B014,NA,,,, +B25,,1920,B014,0,,shternberg1933:67,Binford_2001_Tables_5.01_and_8.04, +B250,,1880,B014,458.6619,,turneyhigh1941:53-55,Binford_2001_Tables_5.01_and_8.04, +B252,,,B014,NA,,,, +B253,,1870,B014,675.9228,,flannery1953:23-24,Binford_2001_Tables_5.01_and_8.04, +B254,,,B014,NA,,,, +B255,,1850,B014,1351.8456,"Note, two estimates provided by Binford (1351.8 km, 901.2 km); this entry is one of those estimates",ewers1955:125-27,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford (1351.8 km, 901.2 km)" +B255,,1850,B014,901.2304,"Note, two estimates provided by Binford (1351.8 km, 901.2 km); this entry is one of those estimates",kehoe1993:89,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford (1351.8 km, 901.2 km)" +B256,,1850,B014,869.0436,,ewers1955:123-29,Binford_2001_Tables_5.01_and_8.04, +B257,,,B014,NA,,,, +B258,,,B014,NA,,,, +B259,,,B014,NA,,,, +B26,,1900,B014,659.8294,,kreynovich1979:194-209,Binford_2001_Tables_5.01_and_8.04, +B260,,1880,B014,708.1096,,jenness1938:12,Binford_2001_Tables_5.01_and_8.04, +B268,,1880,B014,54.71756,,drucker1990:464; kelly1995:table 4.1,Binford_2001_Tables_5.01_and_8.04, +B269,,1860,B014,35.40548,,drucker1939,Binford_2001_Tables_5.01_and_8.04, +B27,,1933,B014,603.5025,,chard1963:106-8,Binford_2001_Tables_5.01_and_8.04, +B270,,1870,B014,80.467,,smith1940a:7-32; smith1940b:138-42,Binford_2001_Tables_5.01_and_8.04, +B271,,1850,B014,104.6071,,elmendorf1960:253-65; kelly1995:table 4.1,Binford_2001_Tables_5.01_and_8.04, +B272,,,B014,NA,,,, +B273,,1880,B014,40.2335,,schalk1978:126,Binford_2001_Tables_5.01_and_8.04, +B274,,1850,B014,45.06152,,"ray1937:366; ray1938:38-42, 55",Binford_2001_Tables_5.01_and_8.04, +B275,,1860,B014,0,,zenk1990:572-74,Binford_2001_Tables_5.01_and_8.04, +B276,,1860,B014,144.8406,,hayden1997:18-22,Binford_2001_Tables_5.01_and_8.04, +B277,,1880,B014,32.1868,,stern1934:43-53,Binford_2001_Tables_5.01_and_8.04, +B278,,1860,B014,19.31208,,olson1936a:93-94,Binford_2001_Tables_5.01_and_8.04, +B279,,1880,B014,64.3736,,schalk1978:126,Binford_2001_Tables_5.01_and_8.04, +B28,,1860,B014,144.8406,,krupnik1983a:96,Binford_2001_Tables_5.01_and_8.04, +B280,,1880,B014,96.5604,,wilson1866:286,Binford_2001_Tables_5.01_and_8.04, +B281,,NA,B014,25.74944,,taylor1974a:33-41,Binford_2001_Tables_5.01_and_8.04, +B282,,,B014,NA,,,, +B283,,,B014,NA,,,, +B284,,1880,B014,0,,pettitt1950:5-7,Binford_2001_Tables_5.01_and_8.04, +B285,,1860,B014,72.4203,,schalk1978:126,Binford_2001_Tables_5.01_and_8.04, +B286,,1860,B014,24.1401,,"schalk1978:125, 165",Binford_2001_Tables_5.01_and_8.04, +B287,,1880,B014,0,,olson1940:170,Binford_2001_Tables_5.01_and_8.04, +B288,,1890,B014,49.88954,,schalk1978:165,Binford_2001_Tables_5.01_and_8.04, +B289,,1880,B014,220.147895,"Note, Binford Table 5.01 lists '64.3736 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here.","halpinandseguin1990:269-71; schalk1978:126, 165",Binford_2001_Table_8.04,"Note, Binford Table 5.01 lists '64.3736 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here." +B290,,,B014,NA,,,, +B291,,,B014,NA,,,, +B292,Special reference to Southern Tlingit,1880,B014,48.2802,"Note, two estimates provided by Binford, the first refers specifically to Southern Tlingit (48.3 km) and the second to Chilkat Tlingit (88.5 km); this entry is one of those estimates","schalk1978:127, 165",Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Southern Tlingit (48.3 km) and the second to Chilkat Tlingit (88.5 km)" +B292,Special reference to Chilkat Tlingit,1880,B014,88.5137,"Note, two estimates provided by Binford, the first refers specifically to Southern Tlingit (48.3 km) and the second to Chilkat Tlingit (88.5 km); this entry is one of those estimates",mitchellanddonald1988:310,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Southern Tlingit (48.3 km) and the second to Chilkat Tlingit (88.5 km)" +B293,,1880,B014,72.4203,,halpinandseguin1990:269-71,Binford_2001_Tables_5.01_and_8.04, +B294,,1840,B014,0,Binford estimate,holmberg1985; knechtandjordan1985,Binford_2001_Tables_5.01_and_8.04, +B295,,1890,B014,40.2335,,delaguna1990:190-91,Binford_2001_Tables_5.01_and_8.04, +B296,,1850,B014,0,,oswaltperscomm1966,Binford_2001_Tables_5.01_and_8.04, +B297,,1930,B014,38.84962853,"Note, Binford Table 5.01 lists '64.3736 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here.",birketsmith1953:123-28,Binford_2001_Table_8.04,"Note, Binford Table 5.01 lists '64.3736 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here." +B298,,1830,B014,0,,lantis1970a:174-82,Binford_2001_Tables_5.01_and_8.04, +B299,,1930,B014,0,,lantis1946:163,Binford_2001_Tables_5.01_and_8.04, +B3,,1900,B014,225.3076,,persoon1989:512; volz1909:96-101,Binford_2001_Tables_5.01_and_8.04, +B315,,1850,B014,112.6538,,murdock1980:131,Binford_2001_Tables_5.01_and_8.04, +B316,,,B014,NA,,,, +B317,,1870,B014,30.57746,,"teit1928:104, 114-15",Binford_2001_Tables_5.01_and_8.04, +B318,,,B014,NA,,,, +B319,,1860,B014,0,,"spierandsapir1930:164-67, 202-5",Binford_2001_Tables_5.01_and_8.04, +B320,,1860,B014,482.802,,"teit1930:95-97, 150-52",Binford_2001_Tables_5.01_and_8.04, +B321,,1880,B014,144.8406,,clineetal1938:11,Binford_2001_Tables_5.01_and_8.04, +B322,,1860,B014,64.3736,,grabert1974:8,Binford_2001_Tables_5.01_and_8.04, +B323,,1870,B014,120.7005,,"kelly1995:table 4.1; ray1932:15-24, 27-28",Binford_2001_Tables_5.01_and_8.04, +B324,,,B014,NA,,,, +B325,,,B014,NA,,,, +B326,,,B014,NA,,,, +B327,,1870,B014,362.1015,,jenness1935:13-14,Binford_2001_Tables_5.01_and_8.04, +B328,,1800,B014,450.6152,,kinietz1947:43-55,Binford_2001_Tables_5.01_and_8.04, +B329,,1700,B014,405.55368,,"speckanddexter1951:251-55; wallisandwallis1955:64-66, 172",Binford_2001_Tables_5.01_and_8.04, +B330,,,B014,NA,,,, +B331,,1880,B014,563.269,,hickerson1967:48-52; landes1937a:88-95,Binford_2001_Tables_5.01_and_8.04, +B332,,1870,B014,603.5025,Binford estimate,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Tables_5.01_and_8.04, +B333,,1850,B014,96.5604,,dawson1891:7-10,Binford_2001_Tables_5.01_and_8.04, +B334,,,B014,NA,,,, +B335,,,B014,NA,,,, +B336,,1865,B014,144.8406,,goldman1940:351-52,Binford_2001_Tables_5.01_and_8.04, +B337,,1800,B014,563.269,,cameron1890:256,Binford_2001_Tables_5.01_and_8.04, +B338,,1880,B014,724.203,,rogers1972:107-11,Binford_2001_Tables_5.01_and_8.04, +B339,,1850,B014,442.5685,Binford estimate,dunning1959,Binford_2001_Tables_5.01_and_8.04, +B340,,,B014,NA,,,, +B341,,,B014,NA,,,, +B342,,1880,B014,511.77012,,lane1952:13,Binford_2001_Tables_5.01_and_8.04, +B343,,1880,B014,643.736,,"jenness1937:32-37, 58",Binford_2001_Tables_5.01_and_8.04, +B344,,1850,B014,643.736,,goddard1916:212; ridington1982:472,Binford_2001_Tables_5.01_and_8.04, +B345,,1860,B014,716.1563,,helm1961:16-27,Binford_2001_Tables_5.01_and_8.04, +B346,,1920,B014,450.6152,,"honigmann1954:12, 31-68",Binford_2001_Tables_5.01_and_8.04, +B347,,,B014,NA,,,, +B348,,,B014,NA,,,, +B349,,1880,B014,442.5685,,jenness1943:531-39,Binford_2001_Tables_5.01_and_8.04, +B35,,,B014,NA,,,, +B350,,,B014,NA,,,, +B351,,,B014,NA,,,, +B352,,1860,B014,724.203,,savishinsky1974:86-138,Binford_2001_Tables_5.01_and_8.04, +B353,,1900,B014,346.0081,,honigmann1956b:32,Binford_2001_Tables_5.01_and_8.04, +B354,,1880,B014,563.269,,"mcfaydenclark1981:593, 588-89",Binford_2001_Tables_5.01_and_8.04, +B355,,1880,B014,798.23264,,fidler1934,Binford_2001_Tables_5.01_and_8.04, +B356,,1880,B014,724.203,,"slobodin1969:58-64, 78-83",Binford_2001_Tables_5.01_and_8.04, +B357,,1880,B014,102.99776,,michael1967:307,Binford_2001_Tables_5.01_and_8.04, +B358,,1860,B014,603.5025,,hooper1853,Binford_2001_Tables_5.01_and_8.04, +B359,,1930,B014,514.9888,,mckennan1959,Binford_2001_Tables_5.01_and_8.04, +B36,,1960,B014,275.19714,Binford estimate,metraux1948,Binford_2001_Tables_5.01_and_8.04, +B360,,1900,B014,547.1756,,morantz1983:33-37,Binford_2001_Tables_5.01_and_8.04, +B361,,1860,B014,724.203,,helm1972:63-72,Binford_2001_Tables_5.01_and_8.04, +B362,,1843,B014,57.93624,"Note, focal year differs from that for some other data for society",michael1967:306,Binford_2001_Tables_5.01_and_8.04, +B363,,1890,B014,724.203,,legros1982:67-69,Binford_2001_Tables_5.01_and_8.04, +B364,,1860,B014,0,,snow1981:615-16,Binford_2001_Tables_5.01_and_8.04, +B365,,1890,B014,675.9228,,"henriksen1973:2, 4",Binford_2001_Tables_5.01_and_8.04, +B369,,1870,B014,0,Binford estimate,ray1992; seltzer1933,Binford_2001_Tables_5.01_and_8.04, +B37,,1968,B014,458.6619,,kloos1977:119; kloos1982,Binford_2001_Tables_5.01_and_8.04, +B370,,1890,B014,362.1015,,giddings1956:5-55,Binford_2001_Tables_5.01_and_8.04, +B371,,1880,B014,0,Binford estimate,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Tables_5.01_and_8.04, +B372,,1890,B014,217.2609,,taylor1974:51-58,Binford_2001_Tables_5.01_and_8.04, +B373,,1890,B014,136.7939,,saladindanglure1984:497-99,Binford_2001_Tables_5.01_and_8.04, +B374,,1900,B014,708.1096,Binford estimate,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Tables_5.01_and_8.04, +B375,,1900,B014,579.3624,,binfordfieldnotes1972,Binford_2001_Tables_5.01_and_8.04, +B377,,1950,B014,806.27934,,"amsden1977:159, 163",Binford_2001_Tables_5.01_and_8.04, +B378,,1910,B014,233.3543,,mcghee1988:7-24,Binford_2001_Tables_5.01_and_8.04, +B379,,1920,B014,25.74944,,moore1923:349,Binford_2001_Tables_5.01_and_8.04, +B38,,1989,B014,53.10822,,gragson1989:285-88,Binford_2001_Tables_5.01_and_8.04, +B380,,1880,B014,120.7005,,"burch1975:260-69; rainey1947:240, 244-67",Binford_2001_Tables_5.01_and_8.04, +B381,,1920,B014,714.54696,,"jenness1932:32, 55, 56",Binford_2001_Tables_5.01_and_8.04, +B382,,1920,B014,611.5492,,"briggs1970:30, 32-40",Binford_2001_Tables_5.01_and_8.04, +B383,,1880,B014,643.736,,"mathiassen1928:15-17, 24",Binford_2001_Tables_5.01_and_8.04, +B384,,1920,B014,619.5959,,mathiassen1928:29-36,Binford_2001_Tables_5.01_and_8.04, +B385,,1880,B014,112.6538,,grnnowetal1983:13-37,Binford_2001_Tables_5.01_and_8.04, +B386,,1880,B014,281.6345,,"boas1888:422-24; hantzsch1977:39, 99",Binford_2001_Tables_5.01_and_8.04, +B387,,1880,B014,494.06738,,balikci1970:23-90,Binford_2001_Tables_5.01_and_8.04, +B388,,1880,B014,20.92142,,holm1914:97; thalbitzer1914:618-26,Binford_2001_Tables_5.01_and_8.04, +B389,,1880,B014,96.5604,,simpson1875:237; spencer1959:139-46,Binford_2001_Tables_5.01_and_8.04, +B39,,1960,B014,281.6345,,kirchhoff1945:449,Binford_2001_Tables_5.01_and_8.04, +B390,,1880,B014,563.269,,"steensby1910:279, 289-305",Binford_2001_Tables_5.01_and_8.04, +B4,,,B014,NA,,,, +B40,,1990,B014,362.1015,,politisperscomm1992,Binford_2001_Tables_5.01_and_8.04, +B41,,1920,B014,0,,baldus1937:123-24; levistrauss1936:269; levistrauss1970:140,Binford_2001_Tables_5.01_and_8.04, +B42,,,B014,NA,,,, +B43,,1940,B014,284.8972759,"Note, Binford Table 5.01 lists '337.9614 km', but without attributing the value to a specific reference, so the value from table 8.04 is displayed here.",holmberg1950:51,Binford_2001_Table_8.04,"Note, Binford Table 5.01 lists '337.9614 km', but without attributing the value to a specific reference, so the value from table 8.04is displayed here." +B44,,1968,B014,502.11408,"Binford noted this was an ""estimate""",stearman1989,Binford_2001_Tables_5.01_and_8.04, +B45,,1938,B014,20.9215,"Note, two estimates provided by Binford (20.92 km, 112.6 km); this entry is one of those estimates","levistrauss1948a:266, 288",Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford (20.92 km, 112.6 km)" +B45,,1938,B014,112.6538,"Note, two estimates provided by Binford (20.92 km, 112.6 km); this entry is one of those estimates",aspelin1976:9-16,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford (20.92 km, 112.6 km)" +B46,,1600,B014,0,,widmer1983:15-18,Binford_2001_Tables_5.01_and_8.04, +B47,,1975,B014,466.7086,,"clastres1972:163; oberg1953:18, 38",Binford_2001_Tables_5.01_and_8.04, +B48,,1880,B014,217.2609,Binford estimate,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Tables_5.01_and_8.04, +B49,,,B014,NA,,,, +B5,,1952,B014,64.3736,,cooper1991,Binford_2001_Tables_5.01_and_8.04, +B50,,1910,B014,273.5878,,henry1964:159,Binford_2001_Tables_5.01_and_8.04, +B51,,1870,B014,579.3624,Binford estimate,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Tables_5.01_and_8.04, +B52,,,B014,NA,,,, +B53,,,B014,NA,,,, +B54,,1880,B014,514.9888,,chapman1982:19,Binford_2001_Tables_5.01_and_8.04, +B55,,1870,B014,144.8406,,"gusinde1937a:366, 511",Binford_2001_Tables_5.01_and_8.04, +B6,,1906,B014,94.95106,,temple1903:69-90,Binford_2001_Tables_5.01_and_8.04, +B60,,1980,B014,120.7005,,hudson1990:57-80,Binford_2001_Tables_5.01_and_8.04, +B61,,1976,B014,59.54558,,heymer1980:189,Binford_2001_Tables_5.01_and_8.04, +B62,,1977,B014,96.5604,,"terashima1980:241, 261",Binford_2001_Tables_5.01_and_8.04, +B63,,1980,B014,136.7939,,valloisandmarquer1976:112-19,Binford_2001_Tables_5.01_and_8.04, +B64,,1980,B014,104.6071,,bailey1985:48-58; peacock1985:47-48,Binford_2001_Tables_5.01_and_8.04, +B65,,1930,B014,102.99776,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km); this entry is one of those estimates","harako1976:44, 114-17",Binford_2001_Tables_5.01_and_8.04,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km)" +B65,Special reference to Mawambo Mbuti,1930,B014,104.6071,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km); this entry is one of those estimates",tanno1976:123,Binford_2001_Tables_5.01_and_8.04,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km)" +B65,Special reference to Mbuti of Tetri Area,1930,B014,233.3543,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km); this entry is one of those estimates",ichikawa1978:173-75,Binford_2001_Tables_5.01_and_8.04,"Note, three estimates provided by Binford: the first is general or refers to an unspecified Mbuti case (103 km), the second refers specifically to Mawambo Mbuti (104 km) and the third to Mbuti of the Tetri Area (233.3 km)" +B66,,,B014,NA,,,, +B67,,1950,B014,201.1675,Binford estimate,clark1951,Binford_2001_Tables_5.01_and_8.04, +B68,,,B014,NA,,,, +B69,,1910,B014,128.7472,,leeanddevore1968a:194,Binford_2001_Tables_5.01_and_8.04, +B7,,1903,B014,0,,reed1904:39-43,Binford_2001_Tables_5.01_and_8.04, +B70,,1920,B014,0,,huntingford1929:340; huntingford1955a:623-34,Binford_2001_Tables_5.01_and_8.04, +B71,,,B014,NA,,,, +B72,Special reference to Nyae Nyae !Kung,1950,B014,482.802,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (300) and the second to Dobe !Kung (75); this entry is one of those estimates",hitchcockandebert1989:55,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (300) and the second to Dobe !Kung (75)" +B72,Special reference to Dobe !Kung,1950,B014,120.7005,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (120.7) and the second to Dobe !Kung (466.2); this entry is one of those estimates","lee1972a:330; lee1979:168, 182-204",Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (120.7) and the second to Dobe !Kung (466.2)" +B73,,1910,B014,49.88954,,hitchcockandebert1989:55,Binford_2001_Tables_5.01_and_8.04, +B74,,1962,B014,434.5218,,"silberbauer1972:295-97; silberbauer1981a:193, 196, 246; silberbauer1981b:460",Binford_2001_Tables_5.01_and_8.04, +B75,,1976,B014,346.0081,,hitchcockandebert1989:55,Binford_2001_Tables_5.01_and_8.04, +B76,,1968,B014,498.8954,,hitchcockandebert1989:55,Binford_2001_Tables_5.01_and_8.04, +B77,,1920,B014,566.48768,,informantfrommoloporivernd,Binford_2001_Tables_5.01_and_8.04, +B78,,,B014,NA,,,, +B79,,,B014,NA,,,, +B8,,1870,B014,122.30984,"Note, value provided in Table 5.01 but not Table 8.04",radcliffebrown1948:28,Binford_2001_Table_5.01,"Note, value provided in Table 5.01 but not Table 8.04" +B82,,1848,B014,51.49888,,moore1979:238,Binford_2001_Tables_5.01_and_8.04, +B83,,1900,B014,96.5604,,parkhouse1895:639-41,Binford_2001_Tables_5.01_and_8.04, +B84,,1978,B014,225.3076,,altman1987:22-27,Binford_2001_Tables_5.01_and_8.04, +B85,,1970,B014,22.53076,,peterson1970:11; peterson1973:185,Binford_2001_Tables_5.01_and_8.04, +B86,,1973,B014,27.35878,,meehan1982:26-41,Binford_2001_Tables_5.01_and_8.04, +B87,,1950,B014,0,,hiatt1965:31-32,Binford_2001_Tables_5.01_and_8.04, +B88,,1930,B014,466.1955424,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (120.7) and the second to Dobe !Kung (466.2); this entry is one of those estimates",tindaleperscomm1967,Binford_2001_Tables_5.01_and_8.04,"Note, two estimates provided by Binford, the first refers specifically to Nyae Nyae !Kung (120.7) and the second to Dobe !Kung (466.2)" +B89,,1920,B014,350.83612,Binford estimate,kaberry1935; kaberry1939,Binford_2001_Tables_5.01_and_8.04, +B9,,1920,B014,236.57298,,schebesta1962a:143-44,Binford_2001_Tables_5.01_and_8.04, +B90,,1920,B014,383.02292,,thomson1939:211-20,Binford_2001_Tables_5.01_and_8.04, +B91,,1920,B014,241.401,,chaloupka1981:163-71,Binford_2001_Tables_5.01_and_8.04, +B92,,1960,B014,136.7939,,biernoff1979:156,Binford_2001_Tables_5.01_and_8.04, +B93,,1930,B014,40.2335,,thomson1934:241,Binford_2001_Tables_5.01_and_8.04, +B94,,1937,B014,233.3543,Binford estimate,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Tables_5.01_and_8.04, +B95,,1920,B014,120.7005,,"hartandpilling1960:35, 36, 66",Binford_2001_Tables_5.01_and_8.04, +B96,,1880,B014,28.96812,,andersonandrobins1988:184-87,Binford_2001_Tables_5.01_and_8.04, +B97,,1930,B014,96.5604,,tindaleperscomm1967,Binford_2001_Tables_5.01_and_8.04, +B98,,1926,B014,48.2802,,"haleandtindale1933:64, 77",Binford_2001_Tables_5.01_and_8.04, +B99,,1900,B014,64.3736,Binford estimate,stanner1933,Binford_2001_Tables_5.01_and_8.04, +B1,Settled Punan,1970,B015,6.59,,kedit1982:261-71,Binford_2001_Table_8.08, +B1,Mobile Punan,1970,B015,2.91,,harrison1949:139,Binford_2001_Table_8.08, +B1,Settled Punan,1970,B015,5.76,,avadhani1975:131,Binford_2001_Table_8.08, +B1,,1970,B015,5.91,,harrison1949:139,Binford_2001_Table_8.08, +B10,,1900,B015,4.23,,bailey1863:292; seligmannandseligmann1911:63; spittel1945:8,Binford_2001_Table_8.08, +B100,,,B015,NA,,,, +B101,,,B015,NA,,,, +B102,,1909,B015,3.47,,memmott1983a:123,Binford_2001_Table_8.08, +B103,,,B015,NA,,,, +B104,,,B015,NA,,,, +B105,,,B015,NA,,,, +B106,,,B015,NA,,,, +B107,,,B015,NA,,,, +B108,,,B015,NA,,,, +B109,,1965,B015,3.86,,meggitt1962:81,Binford_2001_Table_8.08, +B11,,1972,B015,4.64,,"morris1982a:97-98, 174",Binford_2001_Table_8.08, +B110,,,B015,NA,,,, +B111,,1960,B015,4.12,,petersonandlong1986:116-17,Binford_2001_Table_8.08, +B112,,,B015,NA,,,, +B113,,1936,B015,4.33,,myers1986:45; petersonandlong1986:104-11,Binford_2001_Table_8.08, +B113,"Papunya, Settled",1936,B015,4.42,,gargettandhayden1991:13-22; haydenperscomm1992,Binford_2001_Table_8.08, +B114,,,B015,NA,,,, +B115,,,B015,NA,,,, +B116,,,B015,NA,,,, +B117,,1965,B015,4.93,,oconnell1987:77,Binford_2001_Table_8.08, +B117,,1965,B015,5.2,,denham1975:142,Binford_2001_Table_8.08, +B118,,1968,B015,3.55,,gould1971:168; gould1977:43,Binford_2001_Table_8.08, +B118,"Large, Settled Groups - Wanampi Well",1968,B015,4.46,,gould1977:85,Binford_2001_Table_8.08, +B118,"Large, Settled Groups - Warburton",1968,B015,4.5,,gould1977:43,Binford_2001_Table_8.08, +B118,"Large, Settled Groups - Leverton",1968,B015,4.62,,gould1977:43,Binford_2001_Table_8.08, +B118,"Summer, Mulyangiri",1968,B015,2.76,,gould1977:43,Binford_2001_Table_8.08, +B118,"Summer (December), Partjar",1966,B015,3.5,,gould1977:43,Binford_2001_Table_8.08, +B118,"Winter, Tika-Tika",1966,B015,3.33,,gould1977:43,Binford_2001_Table_8.08, +B118,"Winter, Partjar",1966,B015,3.33,,gould1977:43,Binford_2001_Table_8.08, +B118,"Winter (April), Pulykara",1970,B015,3,,gould1977:43,Binford_2001_Table_8.08, +B119,,,B015,NA,,,, +B12,,1965,B015,4.33,,headland1986:141; headlandperscomm1992,Binford_2001_Table_8.08, +B120,,1968,B015,5.75,,tindale1972:243,Binford_2001_Table_8.08, +B121,,,B015,NA,,,, +B122,,,B015,NA,,,, +B123,,,B015,NA,,,, +B124,,,B015,NA,,,, +B125,,,B015,NA,,,, +B126,,,B015,NA,,,, +B127,,,B015,NA,,,, +B128,,,B015,NA,,,, +B129,,,B015,NA,,,, +B13,,1979,B015,4.11,,rai1982:228,Binford_2001_Table_8.08, +B130,,,B015,NA,,,, +B131,,,B015,NA,,,, +B132,,1850,B015,3.5,,nind1831:22,Binford_2001_Table_8.08, +B133,,1850,B015,5,,williams1985:74-75,Binford_2001_Table_8.08, +B134,,1850,B015,5,,gaughwinandsullivan1984:94,Binford_2001_Table_8.08, +B135,,,B015,NA,,,, +B136,East Coast,1830,B015,6.86,,plomley1983:166,Binford_2001_Table_8.08, +B136,West Coast,1830,B015,8.5,,jones1972:6,Binford_2001_Table_8.08, +B137,,,B015,NA,,,, +B14,,1924,B015,5.96,,vanoverbergh1925:196,Binford_2001_Table_8.08, +B143,,1938,B015,6.48,Note: household made up of two nuclear families,"griffen1959:vii, 50, 188",Binford_2001_Table_8.08, +B144,,1870,B015,9.3,Note: presence of communal structure in household,strong1929a:45,Binford_2001_Table_8.08, +B145,,1865,B015,6.45,Note: household made up of two nuclear families,strong1929a:189-214,Binford_2001_Table_8.08, +B146,,1880,B015,7.2,Note: household made up of two nuclear families,meigs1939:1,Binford_2001_Table_8.08, +B147,,,B015,NA,,,, +B148,,,B015,NA,,,, +B149,,,B015,NA,,,, +B15,,1940,B015,3.98,,furerhaimendorf1943b:366,Binford_2001_Table_8.08, +B150,,,B015,NA,,,, +B151,,1860,B015,3.81,,gayton1948a:57,Binford_2001_Table_8.08, +B152,,1850,B015,7,Note: household made up of two nuclear families,voegelin1938:43-44,Binford_2001_Table_8.08, +B153,,1850,B015,3.88,,goldschmidtperscomm1966,Binford_2001_Table_8.08, +B154,,1850,B015,6.43,Note: household made up of two nuclear families,cook1955:54,Binford_2001_Table_8.08, +B155,,1855,B015,3.47,Focal time given as '1850s',barrett1908:290-92,Binford_2001_Table_8.08, +B156,,,B015,NA,,,, +B157,,,B015,NA,,,, +B158,,1860,B015,11.7,Note: presence of communal structure in household,"barrett1908:186, 191",Binford_2001_Table_8.08, +B159,,1860,B015,13.06,Note: presence of communal structure in household,gifford1926a:292-97,Binford_2001_Table_8.08, +B16,,1963,B015,6.05,,nimmanahaemindaandhartlandswam1962:173; pookajorn1988:187; velder1963:186-88,Binford_2001_Table_8.08, +B160,,1860,B015,6,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates",cookandheizer1965:71,Binford_2001_Table_8.08, +B160,,1855,B015,4,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates. For this entry, focal time was given as '1850s'",barrett1908:289,Binford_2001_Table_8.08, +B161,,1860,B015,9.5,Note: presence of communal structure in household,cookandheizer1965:51,Binford_2001_Table_8.08, +B162,,,B015,NA,,,, +B163,,1850,B015,3.61,,cookandheizer1965:71,Binford_2001_Table_8.08, +B164,,,B015,NA,,,, +B165,,1860,B015,3.81,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates","barrett1908:205, 214",Binford_2001_Table_8.08, +B165,Southwest Dialect,1860,B015,2.91,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates","barrett1908:235-36, 244",Binford_2001_Table_8.08, +B166,,1860,B015,4.4,,goddard1923:97-101,Binford_2001_Table_8.08, +B167,,,B015,NA,,,, +B168,,1850,B015,6.25,,collierandthalman1991:331-33,Binford_2001_Table_8.08, +B169,,,B015,NA,,,, +B17,,1962,B015,3.31,,gardner1972:420,Binford_2001_Table_8.08, +B170,,,B015,NA,,,, +B171,,1850,B015,5.62,,cook1956:107,Binford_2001_Table_8.08, +B172,Hill,1860,B015,3.75,"Note, for this society, Binford provided 3 estimates, including separate estimates for ""Hill,"" and ""Valley,"" and ""Valley, traditional""; this entry is one of those estimates",barrett1908:268,Binford_2001_Table_8.08, +B172,Valley,1860,B015,8.36,"Note, for this society, Binford provided 3 estimates, including separate estimates for ""Hill,"" and ""Valley,"" and ""Valley, traditional""; this entry is one of those estimates. For this entry, note presence of communal structure in household",driver1936:201,Binford_2001_Table_8.08, +B172,Valley (Estimate Of Traditional Households),1860,B015,12,"Note, for this society, Binford provided 3 estimates, including separate estimates for ""Hill,"" and ""Valley,"" and ""Valley, traditional""; this entry is one of those estimates. For this entry, note presence of communal structure in household; estimate is for ""Traditional"" Wappo households",cookandheizer1965:71,Binford_2001_Table_8.08, +B173,,1860,B015,3.76,,barrett1908:131-32,Binford_2001_Table_8.08, +B174,,,B015,NA,,,, +B175,Mountain (Estimate),1850,B015,6,,cookandheizer1965:71,Binford_2001_Table_8.08, +B175,,1855,B015,4.16,Focal time given as '1850s',barrett1908:316,Binford_2001_Table_8.08, +B176,,1860,B015,8.34,,gray1987:37-38,Binford_2001_Table_8.08, +B177,,,B015,NA,,,, +B178,,1870,B015,8,Note: household made up of two nuclear families,cook1956:101,Binford_2001_Table_8.08, +B179,,1860,B015,8,Note: household made up of two nuclear families,cookandheizer1965:70,Binford_2001_Table_8.08, +B18,Ranchi,1963,B015,2.6,,"senandsen1955:170, 174-75",Binford_2001_Table_8.08, +B18,,1963,B015,2.91,,williams1974:79,Binford_2001_Table_8.08, +B180,,1860,B015,6.4,,"kroeber1925a:131, 138",Binford_2001_Table_8.08, +B181,,,B015,NA,,,, +B182,,1860,B015,7.5,Note: household made up of two nuclear families,cookandheizer1965:70,Binford_2001_Table_8.08, +B183,,,B015,NA,,,, +B184,,1860,B015,9.2,Note: presence of communal structure in household,"loud1918:266, 339",Binford_2001_Table_8.08, +B185,,1850,B015,6,,cookandheizer1965:71,Binford_2001_Table_8.08, +B186,,1850,B015,7.46,Note: household made up of two nuclear families,kroeber1925a:16,Binford_2001_Table_8.08, +B187,,,B015,NA,,,, +B188,,1934,B015,5.5,"Note, for this society, Binford provided 2 estimates, one for focal year 1934, and one for ""traditional"" case; this entry is one of those estimates",ray1963:159,Binford_2001_Table_8.08, +B188,(Traditional),1860,B015,13.08,"Note, for this society, Binford provided 2 estimates, one for focal year 1934, and one for ""traditional"" case; this entry is one of those estimates. For this entry, note presence of communal structure in household; estimate is for ""Traditional"" Modoc",ray1963:149,Binford_2001_Table_8.08, +B189,,1890,B015,9.9,Note: presence of communal structure in household,spier1930:54,Binford_2001_Table_8.08, +B19,Base Camp,1946,B015,9.1,Note: presence of communal structure in household; Focal time given as '1946-47',ehrenfels1952:65-67,Binford_2001_Table_8.08, +B19,Dry Season,1946,B015,2.89,,ehrenfels1952:50,Binford_2001_Table_8.08, +B190,,,B015,NA,,,, +B191,,,B015,NA,,,, +B192,,1860,B015,3.94,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)","steward1938:87-88, 941",Binford_2001_Table_8.08, +B193,,1800,B015,7.5,Note: household made up of two nuclear families,bolton1916:199; schaedel1949:124,Binford_2001_Table_8.08, +B194,,,B015,NA,,,, +B195,,1850,B015,4.01,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)","steward1938:84, 87-88",Binford_2001_Table_8.08, +B196,,1870,B015,3.3,,corbusier1886:283; gifford1932a:180-81,Binford_2001_Table_8.08, +B197,,,B015,NA,,,, +B198,,1870,B015,5.61,,"hayden1936:70, 165-68",Binford_2001_Table_8.08, +B199,,1860,B015,4.27,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:79,Binford_2001_Table_8.08, +B2,Palawan,1968,B015,5.06,,eder1987:105,Binford_2001_Table_8.08, +B20,,1974,B015,3.59,,bhanu1992:33,Binford_2001_Table_8.08, +B200,,,B015,NA,,,, +B201,,,B015,NA,,,, +B202,,1870,B015,4.9,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1933:290; steward1938:127,Binford_2001_Table_8.08,"Note: original references were to Steward 1933:290, 1977:127; assume this is an error and that the second should be 1938:127." +B203,,,B015,NA,,,, +B204,Kaibab,1865,B015,5.66,"Note, for this society, Binford provided 3 estimates, including estimates referring specifically to the Kaibab in the 1860s and one to ""Reservation"" households in 1973; this entry is one of those estimates. For this entry, focal time was given as '1860s'",kelly1964:13,Binford_2001_Table_8.08, +B204,,1860,B015,7.6,"Note, for this society, Binford provided 3 estimates, including estimates referring specifically to the Kaibab in the 1860s and one to ""Reservation"" households in 1973; this entry is one of those estimates",euler1972:100,Binford_2001_Table_8.08, +B204,Reservation,1973,B015,5.4,"Note, for this society, Binford provided 3 estimates, including estimates referring specifically to the Kaibab in the 1860s and one to ""Reservation"" households in 1973; this entry is one of those estimates",knack1975:115,Binford_2001_Table_8.08, +B205,,1870,B015,3.82,Binford estimate,davis1965:36,Binford_2001_Table_8.08, +B206,,1860,B015,4.6,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:58,Binford_2001_Table_8.08, +B207,,1860,B015,9,,murphyandmurphy1960:325,Binford_2001_Table_8.08, +B208,,1860,B015,4.4,,fowler1966:61-62,Binford_2001_Table_8.08, +B209,,,B015,NA,,,, +B21,,1978,B015,3.6,,birddavid1987:153,Binford_2001_Table_8.08, +B210,,1870,B015,4.4,,fowler1992:36-38,Binford_2001_Table_8.08, +B211,,1860,B015,4.38,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:62-64,Binford_2001_Table_8.08, +B212,,,B015,NA,,,, +B213,,1870,B015,4.33,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:178,Binford_2001_Table_8.08, +B214,,,B015,NA,,,, +B215,,1870,B015,4.53,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:124,Binford_2001_Table_8.08, +B216,,1827,B015,4.12,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates",ewers1955:26,Binford_2001_Table_8.08, +B216,Battle Mountain,1860,B015,5.7,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates. For this entry, ""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:163,Binford_2001_Table_8.08, +B217,,1860,B015,4.19,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:118,Binford_2001_Table_8.08, +B218,,,B015,NA,,,, +B219,,1860,B015,4.27,,cook1955:37; gayton1948a:145,Binford_2001_Table_8.08, +B219,,1860,B015,5.15,"Focal time given as ""post-1850""",gifford1932b:57-61,Binford_2001_Table_8.08, +B22,Hokkaido,1822,B015,4.55,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates",watanabe1972:449,Binford_2001_Table_8.08, +B22,Hokkaido,1854,B015,4.73,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates",watanabe1972:449,Binford_2001_Table_8.08, +B22,Hokkaido,1873,B015,4.52,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates",watanabe1972:449,Binford_2001_Table_8.08, +B22,Sakhalin,1822,B015,7.2,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates. For this entry, note household made up of two nuclear families",watanabe1972:449,Binford_2001_Table_8.08, +B22,Sakhalin,1854,B015,7.16,"Note, for this society, Binford provided 5 estimates, including estimates for different focal years (1822, 1854,1873) and/or with special reference to Hokkaido or Sakhalin; this entry is one of those estimates. For this entry, note household made up of two nuclear families",watanabe1972:449,Binford_2001_Table_8.08, +B221,,1860,B015,4.17,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:174-75,Binford_2001_Table_8.08, +B222,,1860,B015,5,,smith1974:123,Binford_2001_Table_8.08, +B223,,,B015,NA,,,, +B224,,1860,B015,4.27,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)","steward1938:126, 129",Binford_2001_Table_8.08, +B225,,1895,B015,4,,price1962:8-10,Binford_2001_Table_8.08, +B226,,,B015,NA,,,, +B227,,,B015,NA,,,, +B228,,,B015,NA,,,, +B229,,,B015,NA,,,, +B23,,1900,B015,6.31,Binford estimate from photo; Note: household made up of two nuclear families,qiu1983,Binford_2001_Table_8.08, +B230,,1860,B015,7.77,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",smith1974:123; steward1974b:117,Binford_2001_Table_8.08, +B231,,1870,B015,4.19,,whiting1950:19-20,Binford_2001_Table_8.08, +B232,,,B015,NA,,,, +B233,,1860,B015,6.85,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)",steward1938:114,Binford_2001_Table_8.08, +B234,,1860,B015,5.96,"""The values for ""households"" are proportionally reduced for the cases documented by Steward, since he apparently counted the size of an economic unit as a household rather than the literal occupants of a house. Throughout the early literature there are clear indications of ""house clusters,"" which were apparently what Steward considered the 'household'"" (Binford (2001:297)","steward1974b:140, 147",Binford_2001_Table_8.08, +B24,,1850,B015,5,Focal time given as '1800s',shimkin1939:155,Binford_2001_Table_8.08, +B240,,,B015,NA,,,, +B241,,1870,B015,6.28,,wallaceandhoebel1952:27,Binford_2001_Table_8.08, +B242,,,B015,NA,,,, +B243,,,B015,NA,,,, +B244,,1860,B015,7.81,,ewers1955:25,Binford_2001_Table_8.08, +B245,,1806,B015,7.93,"Note, for this society, Binford provided 2 estimates, for different focal years (1806, 1880); this entry is one of those estimates",bushnell1922:24,Binford_2001_Table_8.08, +B245,,1880,B015,5.6,"Note, for this society, Binford provided 2 estimates, for different focal years (1806, 1880); this entry is one of those estimates","moore1991:179, 298, 320",Binford_2001_Table_8.08, +B246,,1860,B015,7.36,,gussowetal1974:23,Binford_2001_Table_8.08, +B248,,1833,B015,8.8,Note: presence of communal structure in household,ewers1955:25,Binford_2001_Table_8.08, +B249,,1849,B015,7.5,,bushnell1922:50,Binford_2001_Table_8.08, +B249,,1850,B015,10,Note: presence of communal structure in household,culbertson1952:135,Binford_2001_Table_8.08, +B25,Summer,1920,B015,5.28,,"shternberg1933:288, 387",Binford_2001_Table_8.08, +B25,Winter,1920,B015,10.4,Note: presence of communal structure in household,"shternberg1933:288, 387",Binford_2001_Table_8.08, +B250,,,B015,NA,,,, +B252,,1834,B015,6,,murphyandmurphy1960:325,Binford_2001_Table_8.08, +B253,,1850,B015,8.24,"Note, for this society, Binford provided 2 estimates, for different focal years (1850, 1860); this entry is one of those estimates",culbertson1952:137,Binford_2001_Table_8.08, +B253,,1860,B015,7.92,"Note, for this society, Binford provided 2 estimates, for different focal years (1850, 1860); this entry is one of those estimates",ewers1955:25,Binford_2001_Table_8.08, +B254,,,B015,NA,,,, +B255,,1850,B015,8.04,,ewers1955:21,Binford_2001_Table_8.08, +B256,,1921,B015,4.91,"Note, for this society, Binford provided 3 estimates, some referring to different focal years (1860, 1921); this entry is one of those estimates",robbins1971:42,Binford_2001_Table_8.08, +B256,,1860,B015,8,"Note, for this society, Binford provided 3 estimates, some referring to different focal years (1860, 1921); this entry is one of those estimates",ewers1955:21,Binford_2001_Table_8.08, +B256,,1850,B015,8,"Note, for this society, Binford provided 3 estimates, some referring to different focal years (1860, 1921); this entry is one of those estimates",ewers1971:94,Binford_2001_Table_8.08, +B257,,1800,B015,7.95,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1800, 1854); this entry is one of those estimates",lowrieandclarke1832:716,Binford_2001_Table_8.08, +B257,,1854,B015,4.5,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1800, 1854); this entry is one of those estimates",denig1930:431,Binford_2001_Table_8.08, +B258,Spring,1850,B015,4.28,,bushnell1922:20,Binford_2001_Table_8.08, +B259,,1860,B015,8,,ewers1955:21,Binford_2001_Table_8.08, +B26,Summer,1900,B015,7.85,"Note, for this society, Binford provided 2 estimates, including separate estimates for summer and winter; this entry is one of those estimates. For this entry, note household made up of two nuclear families",kreynovich1979:191-92,Binford_2001_Table_8.08, +B26,Winter,1900,B015,24,"Note, for this society, Binford provided 2 estimates, including separate estimates for summer and winter; this entry is one of those estimates. For this entry, note presence of communal structure in household",kreynovich1979:196,Binford_2001_Table_8.08, +B260,,1865,B015,7.55,Focal time given as '1800s',jenness1938:2,Binford_2001_Table_8.08, +B268,,,B015,NA,,,, +B269,,1860,B015,12,Note: presence of communal structure in household,drucker1939:85,Binford_2001_Table_8.08, +B27,,1935,B015,9.4,Note: presence of communal structure in household; Focal time given as '1930s',chard1963:112,Binford_2001_Table_8.08, +B270,,1870,B015,30,Note: presence of communal structure in household,smith1940a:6-7,Binford_2001_Table_8.08, +B271,,,B015,NA,,,, +B272,,1824,B015,26,Note: presence of communal structure in household,schalk1978:187; taylor1974b:431,Binford_2001_Table_8.08, +B273,,1880,B015,40,Note: presence of communal structure in household,"drucker1951:71, 280-81",Binford_2001_Table_8.08, +B274,,1850,B015,20,Note: presence of communal structure in household,ray1938:124-27,Binford_2001_Table_8.08, +B274,Winter,1850,B015,15.8,Note: presence of communal structure in household,silverstein1990:538,Binford_2001_Table_8.08, +B274,Summer,1850,B015,7,,silverstein1990:538,Binford_2001_Table_8.08, +B275,,,B015,NA,,,, +B276,,1860,B015,9.5,Note: presence of communal structure in household,teit1906b:199,Binford_2001_Table_8.08, +B277,,1880,B015,16,Note: presence of communal structure in household,stern1934:7,Binford_2001_Table_8.08, +B278,,1860,B015,18.44,Note: presence of communal structure in household,"olson1936a:22, 96",Binford_2001_Table_8.08, +B279,,,B015,NA,,,, +B28,,1860,B015,10,Note: presence of communal structure in household,haydenetal1996:154,Binford_2001_Table_8.08, +B280,,,B015,NA,,,, +B281,,,B015,NA,,,, +B282,,,B015,NA,,,, +B283,,,B015,NA,,,, +B284,,1880,B015,24,Note: presence of communal structure in household,pettitt1950:5,Binford_2001_Table_8.08, +B285,,1860,B015,14.97,Note: presence of communal structure in household,eells1884:35,Binford_2001_Table_8.08, +B286,,1860,B015,14.56,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates. For this entry, note presence of communal structure in household",gunther1962:544; swan1870:5-6,Binford_2001_Table_8.08, +B286,,1942,B015,4.23,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates",gunther1962:544,Binford_2001_Table_8.08, +B287,,,B015,NA,,,, +B288,"""Communal"" Kwakiutl",1890,B015,26.4,Note: presence of communal structure in household,kane1859:appendix,Binford_2001_Table_8.08, +B289,"""Communal"" Tsimshim",1880,B015,9.63,Note: presence of communal structure in household,kane1859:appendix,Binford_2001_Table_8.08, +B290,"""Communal"" Haida",1890,B015,15.5,Note: presence of communal structure in household,kane1859:appendix,Binford_2001_Table_8.08, +B291,,,B015,NA,,,, +B292,"""Communal"" Tlingit",1880,B015,19,Note: presence of communal structure in household,kane1859:appendix,Binford_2001_Table_8.08, +B293,,1880,B015,8.53,Note: presence of communal structure in household,kane1859:appendix,Binford_2001_Table_8.08, +B293,,1920,B015,16,Note: presence of communal structure in household,adams1973:28,Binford_2001_Table_8.08, +B294,,1840,B015,17,Note: presence of communal structure in household,knechtandjordan1985:21,Binford_2001_Table_8.08, +B295,,1884,B015,16.4,Note: presence of communal structure in household,"birketsmithanddelaguna1938:19-20, 123",Binford_2001_Table_8.08, +B296,,1890,B015,13.65,Note: presence of communal structure in household,porter1893:Table 6,Binford_2001_Table_8.08, +B296,,1843,B015,19.9,Note: presence of communal structure in household,michael1967:306,Binford_2001_Table_8.08, +B296,,1850,B015,18,Note: presence of communal structure in household,oswaltandvanstone1967:4,Binford_2001_Table_8.08, +B297,,1843,B015,11.79,Note: presence of communal structure in household,michael1967:306,Binford_2001_Table_8.08, +B298,,1790,B015,17.55,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note presence of communal structure in household",lantis1970a:173,Binford_2001_Table_8.08, +B298,Unalaska,1830,B015,7.32,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a:173,Binford_2001_Table_8.08, +B298,Akun,1830,B015,5.71,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a:173,Binford_2001_Table_8.08, +B298,Borka,1830,B015,7.33,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a:173,Binford_2001_Table_8.08, +B298,Unalga,1830,B015,7.67,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a:173,Binford_2001_Table_8.08, +B298,Avatanak,1830,B015,9.8,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a:173,Binford_2001_Table_8.08, +B298,Akutan,1830,B015,6.5,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a:173,Binford_2001_Table_8.08, +B298,Alaska Main,1830,B015,8.45,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a:173,Binford_2001_Table_8.08, +B298,Unga,1830,B015,8.92,"Note, for this society, Binford provided 9 estimates, including separate estimates for Akun, Akutan, Alaska Main, Avatanak, Borka, Unalaska, Unalga, and Unga; this entry is one of those estimates. For this entry, note household made up of two nuclear families",lantis1970a:173,Binford_2001_Table_8.08, +B299,,1930,B015,10.7,Note: presence of communal structure in household,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_8.08, +B299,Summer,1930,B015,11.3,Note: presence of communal structure in household,lantis1946:164,Binford_2001_Table_8.08, +B299,(Traditional),1930,B015,10.1,"Note: presence of communal structure in household; estimate is for ""Traditional"" Nunivak",lantis1946:164,Binford_2001_Table_8.08, +B299,Spring Camp,1945,B015,7.2,Note: household made up of two nuclear families; Focal time given as '1940s',lantis1946:164,Binford_2001_Table_8.08, +B299,Large Village,1945,B015,5.13,Focal time given as '1940s',"lantis1946:164, 317",Binford_2001_Table_8.08, +B3,,,B015,NA,,,, +B315,,,B015,NA,,,, +B316,,,B015,NA,,,, +B317,,,B015,NA,,,, +B318,,,B015,NA,,,, +B319,,1860,B015,10.5,Note: presence of communal structure in household,"spierandsapir1930:164-67, 221",Binford_2001_Table_8.08, +B320,,1860,B015,7.16,Note: household made up of two nuclear families,teit1930:331,Binford_2001_Table_8.08, +B321,,1880,B015,20.9,Note: presence of communal structure in household,clineetal1938:87,Binford_2001_Table_8.08, +B322,,,B015,NA,,,, +B323,,1870,B015,11.1,Note: presence of communal structure in household,ray1932:16,Binford_2001_Table_8.08, +B324,,,B015,NA,,,, +B325,,1860,B015,22.5,Note: presence of communal structure in household,"haydenetal1996:154, table 1",Binford_2001_Table_8.08, +B326,,1870,B015,7.24,Note: household made up of two nuclear families,teit1930:331,Binford_2001_Table_8.08, +B327,,1763,B015,7,Note: household made up of two nuclear families,quimby1962:219,Binford_2001_Table_8.08, +B328,,1939,B015,5.43,,kinietz1947:246-47,Binford_2001_Table_8.08, +B329,,1700,B015,7.2,Note: household made up of two nuclear families,speck1922:143; wallisandwallis1955,Binford_2001_Table_8.08, +B330,,1805,B015,12.12,Note: presence of communal structure in household,ewers1955:25,Binford_2001_Table_8.08, +B331,,1880,B015,8.2,Note: household made up of two nuclear families,hickerson1967:57,Binford_2001_Table_8.08, +B332,,1965,B015,6.82,"Note, for this society, Binford provided 3 estimates, with separate estimates for what he referred to as ""native houses"" vs. ""welfare houses"", as well as one ""mean"" value (this one). Binford noted households were made up of two nuclear families",bishop1969:52,Binford_2001_Table_8.08, +B332,"""Welfare House""",1870,B015,6.82,"Note, for this society, Binford provided 3 estimates, with separate estimates for what he referred to as ""native houses"" vs. ""welfare houses"", as well as one ""mean"" value; this entry is one of those estimates. For this entry, note household made up of two nuclear families",bishop1969:52,Binford_2001_Table_8.08, +B332,"""Native House""",1870,B015,4.4,"Note, for this society, Binford provided 3 estimates, with separate estimates for what he referred to as ""native houses"" vs. ""welfare houses"", as well as one ""mean"" value; this entry is one of those estimates",bishop1969:52,Binford_2001_Table_8.08, +B333,,,B015,NA,,,, +B334,,1940,B015,8.2,Note: household made up of two nuclear families,dunning1959:63-64,Binford_2001_Table_8.08, +B335,,1900,B015,5.1,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates",rogers1963b:75-77,Binford_2001_Table_8.08, +B335,,1952,B015,4.63,"Note, for this society, Binford provided 2 estimates; this entry is one of those estimates","rogers1963a:B8, 67",Binford_2001_Table_8.08, +B336,,1865,B015,18,Note: presence of communal structure in household,"jenness1943:486; smithnd:Field notes on file, National Museum of Canada",Binford_2001_Table_8.08, +B337,,,B015,NA,,,, +B338,,1828,B015,5.3,"Note, for this society, Binford provided 3 estimates, referring to different focal years (1828, 1910, 1953-54 (Autumn)); this entry is one of those estimates","lips1947a:397-98, 453-54",Binford_2001_Table_8.08, +B338,,1910,B015,6.03,"Note, for this society, Binford provided 3 estimates, referring to different focal years (1828, 1910, 1953-54 (Autumn)); this entry is one of those estimates",rogers1963a:23,Binford_2001_Table_8.08, +B338,Autumn,1953,B015,3.25,"Note, for this society, Binford provided 3 estimates, referring to different focal years (1828, 1910, 1953-54 (Autumn)); this entry is one of those estimates. For this entry, focal time was given as '1953-54'",rogers1973:3-4; speck1923:454,Binford_2001_Table_8.08, +B339,,,B015,NA,,,, +B340,,,B015,NA,,,, +B341,,,B015,NA,,,, +B342,Winter,1633,B015,15,Note: presence of communal structure in household,lane1952:12-13,Binford_2001_Table_8.08, +B343,,,B015,NA,,,, +B344,,1807,B015,3.87,,keith1960:68; nicks1980:34-43,Binford_2001_Table_8.08, +B345,,1952,B015,6.22,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1789, 1951-54, 1974) or cases (Willow Lake); this entry is one of those estimates. For this entry, focal time was given as '1951-54'",helm1961:48,Binford_2001_Table_8.08, +B345,Willow Lake,1974,B015,5,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1789, 1951-54, 1974) or cases (Willow Lake); this entry is one of those estimates",janes1983:102,Binford_2001_Table_8.08, +B345,,1789,B015,4.5,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1789, 1951-54, 1974) or cases (Willow Lake); this entry is one of those estimates",mackenzie1966:56,Binford_2001_Table_8.08, +B345,,1860,B015,5.83,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1789, 1951-54, 1974) or cases (Willow Lake); this entry is one of those estimates",mackenzie1966:57,Binford_2001_Table_8.08, +B346,,,B015,NA,,,, +B347,,,B015,NA,,,, +B348,,,B015,NA,,,, +B349,,1870,B015,13,Note: presence of communal structure in household,jenness1943:486-87,Binford_2001_Table_8.08, +B35,,,B015,NA,,,, +B350,,1800,B015,5.87,Note: household made up of two nuclear families,gillespie1981,Binford_2001_Table_8.08, +B351,,1880,B015,9,Note: household made up of two nuclear families,adney1900:500,Binford_2001_Table_8.08, +B352,,1967,B015,5.06,,"savishinsky1974:60, 230",Binford_2001_Table_8.08, +B352,Summer Camp,1789,B015,4.99,,mackenzie1966:58-59,Binford_2001_Table_8.08, +B352,,1860,B015,4.5,,mackenzie1966:59,Binford_2001_Table_8.08, +B353,,1900,B015,6,,honigmann1956b:35,Binford_2001_Table_8.08, +B354,,1880,B015,15.27,Note: presence of communal structure in household,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_8.08, +B354,,1843,B015,14.45,Note: presence of communal structure in household,michael1967:306,Binford_2001_Table_8.08, +B354,Tents,1880,B015,40,Note: presence of communal structure in household,sullivan1942:10,Binford_2001_Table_8.08, +B354,Winter,1880,B015,11.2,Note: presence of communal structure in household,sullivan1942:10,Binford_2001_Table_8.08, +B354,Winter,1880,B015,11.56,Note: presence of communal structure in household,clark1974:124,Binford_2001_Table_8.08, +B355,,1850,B015,9,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, note household made up of two nuclear families; Focal time given as '1800s'",smith1981:276,Binford_2001_Table_8.08, +B355,,1933,B015,5.23,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1920-46'",brumbachandjarvenpa1989:250-58,Binford_2001_Table_8.08, +B355,Fall Camp,1935,B015,4.25,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1930s'",irimoto1981:73,Binford_2001_Table_8.08, +B355,Early Winter,1935,B015,4.17,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1930s'",irimoto1981:73,Binford_2001_Table_8.08, +B355,Late Winter,1935,B015,3.79,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1930s'",irimoto1981:73,Binford_2001_Table_8.08, +B355,Base Camp,1972,B015,6.81,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1972-73'",mullerwille1974:7,Binford_2001_Table_8.08, +B355,Upper Al Nu-1,1975,B015,5.57,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates",irimoto1981:59,Binford_2001_Table_8.08, +B355,Lower Al Nu-1,1975,B015,4.75,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates",irimoto1981:60,Binford_2001_Table_8.08, +B355,Be Nue-2,1975,B015,5,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates",irimoto1981:61,Binford_2001_Table_8.08, +B355,Nu-2,1975,B015,4.66,"Note, for this society, Binford provided 11 estimate, with some referring to different focal years (1800s, 1920-46, 1930s (Fall Camp, Early Winter, Late Winter), 1972-73 (Base camp), 1975), or cases (Be Nue-2, Lower Al Nu-1, Nu-2, Upper Al Nu-1); this entry is one of those estimates",irimoto1981:61,Binford_2001_Table_8.08, +B356,,1880,B015,7.8,Note: household made up of two nuclear families,"mckennan1965:20, 43",Binford_2001_Table_8.08, +B357,,1890,B015,6.08,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1843 and 1890), or cases (""Crow Village"", ""Proper"", ""Yukon""); this entry is one of those estimates. For this entry, note household made up of two nuclear families",porter1893:164,Binford_2001_Table_8.08, +B357,Proper,1843,B015,11,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1843 and 1890), or cases (""Crow Village"", ""Proper"", ""Yukon""); this entry is one of those estimates. For this entry, note presence of communal structure in household",michael1967:306,Binford_2001_Table_8.08, +B357,Yukon,1843,B015,17.9,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1843 and 1890), or cases (""Crow Village"", ""Proper"", ""Yukon""); this entry is one of those estimates. For this entry, note presence of communal structure in household",michael1967:306,Binford_2001_Table_8.08, +B357,Crow Village,1843,B015,18,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1843 and 1890), or cases (""Crow Village"", ""Proper"", ""Yukon""); this entry is one of those estimates. For this entry, note presence of communal structure in household",oswaltandvanstone1967:4,Binford_2001_Table_8.08, +B358,,,B015,NA,,,, +B359,,1929,B015,8,Note: household made up of two nuclear families,mckennan1959:106; pitts1972:118,Binford_2001_Table_8.08, +B36,,1960,B015,5.5,,metraux1948:863,Binford_2001_Table_8.08, +B360,,1823,B015,5.13,Note: household made up of two nuclear families,morantz1983:89,Binford_2001_Table_8.08, +B361,Summer Camp,1789,B015,5.76,Note: household made up of two nuclear families,mackenzie1966:49-56,Binford_2001_Table_8.08, +B362,,1843,B015,17.92,Note: presence of communal structure in household,michael1967:306,Binford_2001_Table_8.08, +B363,,,B015,NA,,,, +B364,,1860,B015,15,Note: presence of communal structure in household,michael1967:307,Binford_2001_Table_8.08, +B365,,1937,B015,8.3,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1937-38, 1966-68); this entry is one of those estimates. For this entry, note household made up of two nuclear families; Focal time given as '1937-38'","tanner1944:593, 627-28",Binford_2001_Table_8.08, +B365,,1967,B015,5.1,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1937-38, 1966-68); this entry is one of those estimates. For this entry, focal time was given as '1966-68'",henriksen1973:58,Binford_2001_Table_8.08, +B369,,,B015,NA,,,, +B37,,,B015,NA,,,, +B370,,1890,B015,7.25,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_8.08, +B370,,1890,B015,6,,burch1975:257-58,Binford_2001_Table_8.08, +B370,Shungnak,1925,B015,4.73,Focal time given as '1910-40',foote1966:43,Binford_2001_Table_8.08, +B370,Shungnak,1957,B015,5.42,Focal time given as '1950-65',foote1966:43,Binford_2001_Table_8.08, +B370,Kobuk,1957,B015,5.8,Focal time given as '1950-65',foote1966:43,Binford_2001_Table_8.08, +B370,Ambler,1962,B015,6.3,Focal time given as '1959-65',foote1966:43,Binford_2001_Table_8.08, +B371,,1900,B015,9.8,,burch1975:269-72,Binford_2001_Table_8.08, +B372,Winter,1890,B015,22.8,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates. For this entry, note presence of communal structure in household",taylor1974:71,Binford_2001_Table_8.08, +B372,Spring,1890,B015,7.36,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates",taylor1974:71,Binford_2001_Table_8.08, +B372,Early Summer,1890,B015,7.14,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates",taylor1974:71,Binford_2001_Table_8.08, +B372,Late Summer,1890,B015,7.5,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates",taylor1974:71,Binford_2001_Table_8.08, +B372,Sugluk,1964,B015,7.49,"Note, for this society, Binford provided 5 estimates, referring to different cases (Sugluk) or seasons (early summer, late summer, winter and spring); this entry is one of those estimates","graburn1969:148, 169",Binford_2001_Table_8.08, +B373,,1958,B015,5.76,,willmott1960:53,Binford_2001_Table_8.08, +B373,,1970,B015,5.82,,barger1981:675,Binford_2001_Table_8.08, +B374,"Summer, Tents",1893,B015,7.1,"Note, for this society, Binford provided 4 estimates, referring to different focal years, seasons and cases, including: 1893 (Summer, Tents), 1960 (Summer, Tents), 1960, with special reference to Baker Lake, and, year unspecified, Winter, Igloo; this entry is one of those estimates","haydenetal1996:154, table 1",Binford_2001_Table_8.08, +B374,"Winter, Igloo",1900,B015,4.3,"Note, for this society, Binford provided 4 estimates, referring to different focal years, seasons and cases, including: 1893 (Summer, Tents), 1960 (Summer, Tents), 1960, with special reference to Baker Lake, and, year unspecified, Winter, Igloo; this entry is one of those estimates",tyrrell1897:167,Binford_2001_Table_8.08, +B374,Baker Lake,1960,B015,4.19,"Note, for this society, Binford provided 4 estimates, referring to different focal years, seasons and cases, including: 1893 (Summer, Tents), 1960 (Summer, Tents), 1960, with special reference to Baker Lake, and, year unspecified, Winter, Igloo; this entry is one of those estimates",vallee1967:17,Binford_2001_Table_8.08, +B374,"Summer, Tents",1960,B015,4.35,"Note, for this society, Binford provided 4 estimates, referring to different focal years, seasons and cases, including: 1893 (Summer, Tents), 1960 (Summer, Tents), 1960, with special reference to Baker Lake, and, year unspecified, Winter, Igloo; this entry is one of those estimates",vallee1967:60-63,Binford_2001_Table_8.08, +B375,,1885,B015,7.5,,burch1975:255,Binford_2001_Table_8.08, +B377,,1880,B015,7.5,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1880, 1947-48, with separate estimates for Summer and Winter; this entry is one of those estimates",binford1971,Binford_2001_Table_8.08, +B377,Summer,1947,B015,3.81,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1880, 1947-48, with separate estimates for Summer and Winter; this entry is one of those estimates. For this entry, focal time was given as '1947-48'",binford1991a:89,Binford_2001_Table_8.08, +B377,Winter ,1947,B015,5.75,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1880, 1947-48, with separate estimates for Summer and Winter; this entry is one of those estimates. For this entry, focal time was given as '1947-48'",binford1991a:89,Binford_2001_Table_8.08, +B378,Land,1910,B015,20,Note: presence of communal structure in household,"haydenetal1996:154, table 1",Binford_2001_Table_8.08, +B378,"Winter, Igloo",1910,B015,5,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_8.08, +B379,,1920,B015,6.75,,hughes1960:14-48,Binford_2001_Table_8.08, +B38,"Wet Season, Base Camp",1989,B015,7.4,Note: presence of communal structure in household,"gragson1989:127, 288-89",Binford_2001_Table_8.08, +B38,"Dry Season, Base Camp",1989,B015,4.25,,gragson1989:288-89,Binford_2001_Table_8.08, +B38,"Dry Season, Mobile Yaruro-Pume",1989,B015,2.71,,gragson1989:288-89,Binford_2001_Table_8.08, +B380,,1909,B015,8.15,,burch1975:260-69,Binford_2001_Table_8.08, +B381,"Winter, Igloo",1920,B015,5,,"haydenetal1996:154, table 1",Binford_2001_Table_8.08, +B381,Winter Camp,1920,B015,6.06,,jenness1932:30,Binford_2001_Table_8.08, +B381,"Summer, Tents",1920,B015,3.6,,"jenness1932:66, 71",Binford_2001_Table_8.08, +B381,Summer,1920,B015,3.48,,rasmussen1932:78-85,Binford_2001_Table_8.08, +B382,"August, Tents",1963,B015,3.66,,"briggs1970:30, 170-71",Binford_2001_Table_8.08, +B382,"August, Tents",1963,B015,5.5,,"briggs1970:24, 370-71",Binford_2001_Table_8.08, +B382,"Winter, Snow",1963,B015,8.33,,briggs1970:372,Binford_2001_Table_8.08, +B383,July,1846,B015,6.5,,rae1850:40,Binford_2001_Table_8.08, +B383,"August, Tents",1846,B015,5.5,,rae1850:49,Binford_2001_Table_8.08, +B383,Southampton Island - Coral Harbour,1959,B015,7.07,,vanstone1960:82,Binford_2001_Table_8.08, +B383,,1880,B015,12.66,Note: presence of communal structure in household,vanstone1960:82,Binford_2001_Table_8.08, +B384,July,1822,B015,7.05,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1822 (July), 1921, 1960s (Winter); this entry is one of those estimates",lyon1924:230,Binford_2001_Table_8.08, +B384,,1921,B015,7.5,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1822 (July), 1921, 1960s (Winter); this entry is one of those estimates","mathiassen1928:17, 19, 32",Binford_2001_Table_8.08, +B384,Winter,1965,B015,8.14,"Note, for this society, Binford provided 3 estimates, referring to different focal years and seasons, including: 1822 (July), 1921, 1960s (Winter); this entry is one of those estimates. For this entry, focal time was given as '1960s'",damas1992:letter 7/6/92,Binford_2001_Table_8.08, +B385,Winter,1870,B015,9.73,,"rink1877:166, 182, 191",Binford_2001_Table_8.08, +B385,Summer,1896,B015,8.75,,"perry1898:131, 171-72",Binford_2001_Table_8.08, +B385,Winter,1897,B015,6.25,,"perry1898:336, 386",Binford_2001_Table_8.08, +B385,Tents,1880,B015,7.5,,birketsmith1928a:78,Binford_2001_Table_8.08, +B386,"Summer, Tents",1615,B015,7,"Note, for this society, Binford provided 2 estimates, referring to different focal years and/or seasons (1615 (Summer, Tents), 1909); this entry is one of those estimates",christy1894:208,Binford_2001_Table_8.08, +B386,,1909,B015,4.38,"Note, for this society, Binford provided 2 estimates, referring to different focal years and/or seasons (1615 (Summer, Tents), 1909); this entry is one of those estimates","hantzsch1977:39, 99",Binford_2001_Table_8.08, +B387,Snow,1830,B015,5.5,,savelle1987:229,Binford_2001_Table_8.08, +B387,"August, Tents",1831,B015,5.75,,ross1835:589; savelle1987:429-31,Binford_2001_Table_8.08, +B387,"August, Tents",1846,B015,5.5,,rae1850:49,Binford_2001_Table_8.08, +B387,"August, Tents",1858,B015,3.57,,mclintock1860:141-43,Binford_2001_Table_8.08, +B387,Winter,1859,B015,3.18,,mclintock1860:235,Binford_2001_Table_8.08, +B388,,1895,B015,22,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates. For this entry, note presence of communal structure in household; Focal time given as '1890s'",birketsmith1928a:79,Binford_2001_Table_8.08, +B388,,1895,B015,25.8,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates. For this entry, note presence of communal structure in household; Focal time given as '1890s'","haydenetal1996:154, table 1",Binford_2001_Table_8.08, +B388,Summer,1880,B015,9.5,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates",mirsky1937a:53,Binford_2001_Table_8.08, +B389,Nuvuk,1855,B015,5.72,Focal time given as '1850s',simpson1875:237,Binford_2001_Table_8.08, +B389,Point Belcher,1885,B015,6.2,Focal time given as '1880s',ray1885:41,Binford_2001_Table_8.08, +B39,"Hiwi Base Camp, Hiwi",1960,B015,10.28,"Note, for this society, Binford provided 2 estimates, one referring specifically to ""Base Camp""; this entry is one of those estimates. For this entry, note presence of communal structure in household",hurtadoandhill1986:18,Binford_2001_Table_8.08, +B39,,1960,B015,6.94,"Note, for this society, Binford provided 2 estimates, one referring specifically to ""Base Camp""; this entry is one of those estimates",metzger1968:268-71,Binford_2001_Table_8.08, +B390,,1895,B015,5.8,Focal time given as '1890s',steensby1910:324,Binford_2001_Table_8.08, +B4,,1989,B015,3.05,,rizvi1990:16-18,Binford_2001_Table_8.08, +B40,Dry Season,1990,B015,5.2,,politis1992:3,Binford_2001_Table_8.08, +B40,"""Communal"" Nukak",1990,B015,20.6,Note: presence of communal structure in household,politis1992:3,Binford_2001_Table_8.08, +B41,,1920,B015,16.66,Note: presence of communal structure in household,"baldus1937:115, 123-24; levistrauss1936:269",Binford_2001_Table_8.08, +B41,,1920,B015,9.8,,levistrauss1936:269,Binford_2001_Table_8.08, +B42,,1901,B015,4,,schmidt1942:47,Binford_2001_Table_8.08, +B43,,1940,B015,16.88,Note: presence of communal structure in household,"holmberg1950:51, 82-83",Binford_2001_Table_8.08, +B44,Settled Yuqui,1968,B015,4.62,,stearman1989:113-15,Binford_2001_Table_8.08, +B45,Dry Season,1938,B015,5.15,"Note, for this society, Binford provided 3 estimates, including separate estimates for Wet and Dry Seasons ; this entry is one of those estimates","levistrauss1970:268-69, 288",Binford_2001_Table_8.08, +B45,Wet Season,1938,B015,15,"Note, for this society, Binford provided 3 estimates, including separate estimates for Wet and Dry Seasons ; this entry is one of those estimates. For this entry, note presence of communal structure in household",levistrauss1970:288,Binford_2001_Table_8.08, +B45,,1938,B015,15.8,"Note, for this society, Binford provided 3 estimates, including separate estimates for Wet and Dry Seasons ; this entry is one of those estimates. For this entry, note presence of communal structure in household",oberg1953:88,Binford_2001_Table_8.08, +B46,,,B015,NA,,,, +B47,,1975,B015,4.16,,jones1983:176,Binford_2001_Table_8.08, +B48,,1880,B015,6.25,,metraux1946botocudo:534-36,Binford_2001_Table_8.08, +B48,Wet Season,1880,B015,19,Note: presence of communal structure in household,ehrenreich1887:22,Binford_2001_Table_8.08, +B49,,1954,B015,4.75,,kozaketal1979:369,Binford_2001_Table_8.08, +B5,Dry Season,1952,B015,2.08,,"cooper1991:17, figures 3 and 4",Binford_2001_Table_8.08, +B5,Wet Season,1952,B015,26,Note: presence of communal structure in household,"cooper1991:17, figures 3 and 4",Binford_2001_Table_8.08, +B50,,1910,B015,27,Note: presence of communal structure in household,"henry1964:10-11, 159",Binford_2001_Table_8.08, +B51,,1870,B015,9.8,Note: household made up of two nuclear families,boschinandmacuzzi1979:33; cooper1946c:150,Binford_2001_Table_8.08, +B52,,,B015,NA,,,, +B53,,1900,B015,7.25,Note: household made up of two nuclear families,bird1988:16-19,Binford_2001_Table_8.08, +B54,,1880,B015,8.2,Note: household made up of two nuclear families,chapman1982:19; gusinde1931:205,Binford_2001_Table_8.08, +B55,,1870,B015,7,Note: household made up of two nuclear families,gusinde1937a:32,Binford_2001_Table_8.08, +B6,Dry Season,1906,B015,4.1,"Note, for this society, Binford provided 4 estimates, including separate estimates for Wet and Dry Seasons and for ""Open Camp""; this entry is one of those estimates",temple1903:62,Binford_2001_Table_8.08, +B6,Open Camp,1906,B015,3.57,"Note, for this society, Binford provided 4 estimates, including separate estimates for Wet and Dry Seasons and for ""Open Camp""; this entry is one of those estimates",temple1903:61,Binford_2001_Table_8.08, +B6,Dry Season,1906,B015,3.5,"Note, for this society, Binford provided 4 estimates, including separate estimates for Wet and Dry Seasons and for ""Open Camp""; this entry is one of those estimates",temple1903:61,Binford_2001_Table_8.08, +B6,Wet Season,1906,B015,32,"Note, for this society, Binford provided 4 estimates, including separate estimates for Wet and Dry Seasons and for ""Open Camp""; this entry is one of those estimates. For this entry, note presence of communal structure in household",temple1903:61,Binford_2001_Table_8.08, +B60,,1980,B015,2.98,,hudson1990:88,Binford_2001_Table_8.08, +B61,,1976,B015,2.82,,heymer1980:193-97,Binford_2001_Table_8.08, +B62,,1977,B015,3.16,,"terashima1980:233, 235",Binford_2001_Table_8.08, +B63,,1980,B015,3.4,,cavallisforza1986c:33,Binford_2001_Table_8.08, +B63,,1980,B015,3.47,,"valloisandmarquer1976:113, 123",Binford_2001_Table_8.08, +B64,,1980,B015,3.26,,"fisher1987:104, 111",Binford_2001_Table_8.08, +B65,Net Hunters,1930,B015,4.48,"Note, for this society, Binford provided 2 estimates, including separate estimates with special reference to Mawambo and to Net Hunters; this entry is one of those estimates",harako1976:46-47,Binford_2001_Table_8.08, +B65,Mawambo,1930,B015,4.63,"Note, for this society, Binford provided 2 estimates, including separate estimates with special reference to Mawambo and to Net Hunters; this entry is one of those estimates",tanno1976:108,Binford_2001_Table_8.08, +B66,,,B015,NA,,,, +B67,Dry Season,1950,B015,2.86,,"clark1951:58, 65",Binford_2001_Table_8.08, +B68,,,B015,NA,,,, +B69,,1910,B015,3.63,,"oconnelletal1991:63, table 1; oconnellperscomm1977",Binford_2001_Table_8.08, +B7,,,B015,NA,,,, +B70,,1920,B015,5.07,,huntingford1942:183; huntingford1955a:631-34,Binford_2001_Table_8.08, +B71,Dry Season,1928,B015,2.5,,bleek1929:109-12,Binford_2001_Table_8.08, +B72,General,1950,B015,2.51,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates","howell1979:43, 45",Binford_2001_Table_8.08, +B72,"Rainy Season, Mobile !Kung, Camps 1, 3, 5, 6, 9",1950,B015,4.46,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",yellen1977a:237-53,Binford_2001_Table_8.08, +B72,"Dry Season, Mobile !Kung, Camps 2, 4, 7, 10-16",1950,B015,3.38,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",yellen1977a:237-53,Binford_2001_Table_8.08, +B72,"Dry Season, Dobe !Kung",1950,B015,2.53,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",brooksetal1984:300-5; lee1979:254,Binford_2001_Table_8.08, +B72,"Dry Season, Dobe !Kung",1950,B015,2.6,"Note, for this society, Binford provided 5 estimates. One general estimate, and separate estiamtes for Dry Season, with special reference to Dobe !Kung, another for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy Season, with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",lee1979:254,Binford_2001_Table_8.08, +B73,,1910,B015,3.46,,guenther1986:186,Binford_2001_Table_8.08, +B74,"Wet Season, Hunting Camp",1962,B015,4.55,"Note, for this society, Binford provided 2 estimates; Wet Season, Hunting Camp; this entry is one of those estimates",hitchcockperscomm1990,Binford_2001_Table_8.08, +B74,,1962,B015,4.6,"Note, for this society, Binford provided 2 estimates; Wet Season, Hunting Camp; this entry is one of those estimates",weissnerandhitchcockperscomm1991,Binford_2001_Table_8.08, +B75,General,1976,B015,4.54,,hitchcockperscomm1990,Binford_2001_Table_8.08, +B75,"Rainy Season, Mobile Kua",1976,B015,4.28,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_8.08, +B75,"Dry Season, Mobile Kua",1976,B015,6.65,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_8.08, +B76,,1968,B015,3.99,,hitchcockperscomm1990,Binford_2001_Table_8.08, +B76,Base Camp,1968,B015,3.53,,eibleibesfeldt1972:32-34,Binford_2001_Table_8.08, +B77,,,B015,NA,,,, +B78,,,B015,NA,,,, +B79,,,B015,NA,,,, +B8,,1870,B015,4.1,,radcliffebrown1948:28-35,Binford_2001_Table_8.08, +B82,,,B015,NA,,,, +B83,,,B015,NA,,,, +B84,,1978,B015,3.94,,altman1987:100,Binford_2001_Table_8.08, +B84,Wet Season,1978,B015,4.5,,altman1987:100,Binford_2001_Table_8.08, +B84,April-May,1978,B015,3.83,,altman1987:106,Binford_2001_Table_8.08, +B85,General,1970,B015,5.54,,peterson1976:268; petersonperscomm1992,Binford_2001_Table_8.08, +B85,Rainy Season,1970,B015,6.66,,petersonandlong1986:135; petersonperscomm1994,Binford_2001_Table_8.08, +B85,Dry Season,1970,B015,5,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_8.08, +B86,,,B015,NA,,,, +B87,,1950,B015,5.94,,hiatt1965:33-37,Binford_2001_Table_8.08, +B88,,,B015,NA,,,, +B89,,,B015,NA,,,, +B9,Dry Season,1920,B015,3.01,"Note, for this society, Binford provided 4 estimates, including some referring to the Dry Season vs. Wet Season; this entry is one of those estimates","schebesta1954:10, 17, 220",Binford_2001_Table_8.08, +B9,,1920,B015,2.81,"Note, for this society, Binford provided 4 estimates, including some referring to the Dry Season vs. Wet Season; this entry is one of those estimates",skeatandblagden1906:176,Binford_2001_Table_8.08, +B9,Wet Season,1920,B015,19,"Note, for this society, Binford provided 4 estimates, including some referring to the Dry Season vs. Wet Season; this entry is one of those estimates. For this entry, note presence of communal structure in household",skeatandblagden1906:176,Binford_2001_Table_8.08, +B9,,1920,B015,28,"Note, for this society, Binford provided 4 estimates, including some referring to the Dry Season vs. Wet Season; this entry is one of those estimates. For this entry, note presence of communal structure in household","schebesta1954:11, 222",Binford_2001_Table_8.08, +B90,,,B015,NA,,,, +B91,,,B015,NA,,,, +B92,,,B015,NA,,,, +B93,,,B015,NA,,,, +B94,,1937,B015,3.69,,petersonandlong1986:87-89,Binford_2001_Table_8.08, +B95,,,B015,NA,,,, +B96,,1880,B015,7,,andersonandrobins1988:191-92,Binford_2001_Table_8.08, +B97,,1930,B015,4.65,,"petersonandlong1986:80-83, 135",Binford_2001_Table_8.08, +B98,,1926,B015,3.71,,haleandtindale1933:77,Binford_2001_Table_8.08, +B99,,,B015,NA,,,, +B1,Settled Punan,1970,B016,3.47,,kedit1982:261-71,Binford_2001_Table_8.08, +B1,Settled Punan,1970,B016,3.75,,avadhani1975:131,Binford_2001_Table_8.08, +B10,,1900,B016,3.85,,bailey1863:292; seligmannandseligmann1911:63; spittel1945:8,Binford_2001_Table_8.08, +B100,,,B016,NA,,,, +B101,,,B016,NA,,,, +B102,,1909,B016,6.33,,memmott1983a:123,Binford_2001_Table_8.08, +B103,,1928,B016,6.68,,tindale1962b:319-21,Binford_2001_Table_8.08, +B104,,,B016,NA,,,, +B105,,,B016,NA,,,, +B106,,,B016,NA,,,, +B107,,,B016,NA,,,, +B108,,,B016,NA,,,, +B109,,1965,B016,4.51,,meggitt1962:81,Binford_2001_Table_8.08, +B11,,1972,B016,3.33,,"morris1982a:97-98, 174",Binford_2001_Table_8.08, +B110,,,B016,NA,,,, +B111,,1960,B016,5.2,,petersonandlong1986:116-17,Binford_2001_Table_8.08, +B112,,1968,B016,6.94,,"petersonandlong1986:112-15, 124",Binford_2001_Table_8.08, +B113,,1936,B016,5.8,,myers1986:45; petersonandlong1986:104-11,Binford_2001_Table_8.08, +B113,"Papunya, Settled",1936,B016,6.68,,gargettandhayden1991:13-22; haydenperscomm1992,Binford_2001_Table_8.08, +B114,,,B016,NA,,,, +B115,,,B016,NA,,,, +B116,,,B016,NA,,,, +B117,,1965,B016,6.75,,oconnell1987:77,Binford_2001_Table_8.08, +B118,,1968,B016,6.18,,gould1971:168; gould1977:43,Binford_2001_Table_8.08, +B118,"Large, Settled Groups - Wanampi Well",1968,B016,6.29,,gould1977:85,Binford_2001_Table_8.08, +B118,"Large, Settled Groups - Warburton",1968,B016,9,,gould1977:43,Binford_2001_Table_8.08, +B118,"Summer, Mulyangiri",1968,B016,8.28,,gould1977:43,Binford_2001_Table_8.08, +B118,"Summer (December), Partjar",1966,B016,4.66,,gould1977:43,Binford_2001_Table_8.08, +B118,"Winter, Tika-Tika",1966,B016,5,,gould1977:43,Binford_2001_Table_8.08, +B118,"Winter, Partjar",1966,B016,5,,gould1977:43,Binford_2001_Table_8.08, +B118,"Winter (April), Pulykara",1970,B016,5,,gould1977:43,Binford_2001_Table_8.08, +B119,,,B016,NA,,,, +B12,,1965,B016,3.57,,headland1986:141; headlandperscomm1992,Binford_2001_Table_8.08, +B120,,1968,B016,6.96,,tindale1972:243,Binford_2001_Table_8.08, +B121,,,B016,NA,,,, +B122,,,B016,NA,,,, +B123,,1922,B016,6.26,,tindaleperscomm1966,Binford_2001_Table_8.08, +B124,,1900,B016,6.4,,spencerandgillen1927:70-71,Binford_2001_Table_8.08, +B125,,,B016,NA,,,, +B126,,1912,B016,8,,petersonandlong1986:129-34,Binford_2001_Table_8.08, +B127,,,B016,NA,,,, +B128,,,B016,NA,,,, +B129,,,B016,NA,,,, +B13,,,B016,NA,,,, +B130,,,B016,NA,,,, +B131,,,B016,NA,,,, +B132,,1850,B016,6.66,,nind1831:22,Binford_2001_Table_8.08, +B133,,1850,B016,5.61,,williams1985:74-75,Binford_2001_Table_8.08, +B134,,,B016,NA,,,, +B135,,,B016,NA,,,, +B136,,,B016,NA,,,, +B137,,,B016,NA,,,, +B14,,1924,B016,4.81,,vanoverbergh1925:196,Binford_2001_Table_8.08, +B143,,1938,B016,5.53,,"griffen1959:vii, 50, 188",Binford_2001_Table_8.08, +B144,,,B016,NA,,,, +B145,,,B016,NA,,,, +B146,,,B016,NA,,,, +B147,,,B016,NA,,,, +B148,,,B016,NA,,,, +B149,,,B016,NA,,,, +B15,,1940,B016,3.98,,furerhaimendorf1943b:366,Binford_2001_Table_8.08, +B150,,,B016,NA,,,, +B151,,,B016,NA,,,, +B152,,1850,B016,3.81,,voegelin1938:43-44,Binford_2001_Table_8.08, +B153,,,B016,NA,,,, +B154,,,B016,NA,,,, +B155,,,B016,NA,,,, +B156,,,B016,NA,,,, +B157,,,B016,NA,,,, +B158,,1860,B016,4.33,,"barrett1908:186, 191",Binford_2001_Table_8.08, +B159,,1860,B016,4.75,,gifford1926a:292-97,Binford_2001_Table_8.08, +B16,,1963,B016,4,,nimmanahaemindaandhartlandswam1962:173; pookajorn1988:187; velder1963:186-88,Binford_2001_Table_8.08, +B160,,,B016,NA,,,, +B161,,,B016,NA,,,, +B162,,,B016,NA,,,, +B163,,,B016,NA,,,, +B164,,,B016,NA,,,, +B165,,,B016,NA,,,, +B166,,,B016,NA,,,, +B167,,,B016,NA,,,, +B168,,,B016,NA,,,, +B169,,,B016,NA,,,, +B17,,1962,B016,4.08,,gardner1972:420,Binford_2001_Table_8.08, +B170,,,B016,NA,,,, +B171,,,B016,NA,,,, +B172,Valley,1860,B016,4.5,,driver1936:201,Binford_2001_Table_8.08, +B173,,,B016,NA,,,, +B174,,,B016,NA,,,, +B175,,,B016,NA,,,, +B176,,,B016,NA,,,, +B177,,,B016,NA,,,, +B178,,,B016,NA,,,, +B179,,,B016,NA,,,, +B18,Ranchi,1963,B016,4.88,,"senandsen1955:170, 174-75",Binford_2001_Table_8.08, +B18,,1963,B016,4.49,,williams1974:79,Binford_2001_Table_8.08, +B180,,,B016,NA,,,, +B181,,,B016,NA,,,, +B182,,,B016,NA,,,, +B183,,,B016,NA,,,, +B184,,,B016,NA,,,, +B185,,,B016,NA,,,, +B186,,,B016,NA,,,, +B187,,,B016,NA,,,, +B188,,,B016,NA,,,, +B189,,,B016,NA,,,, +B19,Base Camp,1946,B016,4.43,Focal time given as '1946-47',ehrenfels1952:65-67,Binford_2001_Table_8.08, +B190,,,B016,NA,,,, +B191,,,B016,NA,,,, +B192,,,B016,NA,,,, +B193,,1800,B016,3.7,,bolton1916:199; schaedel1949:124,Binford_2001_Table_8.08, +B194,,,B016,NA,,,, +B195,,,B016,NA,,,, +B196,,,B016,NA,,,, +B197,,,B016,NA,,,, +B198,,1870,B016,3.53,,"hayden1936:70, 165-68",Binford_2001_Table_8.08, +B199,,,B016,NA,,,, +B2,Palawan,1968,B016,3.89,,eder1987:105,Binford_2001_Table_8.08, +B2,Negros,1968,B016,4,,cadelina1982:68,Binford_2001_Table_8.08, +B20,,1974,B016,3.59,,bhanu1992:33,Binford_2001_Table_8.08, +B200,,,B016,NA,,,, +B201,,,B016,NA,,,, +B202,,1870,B016,305,,steward1933:290; steward1938:127,Binford_2001_Table_8.08,"Note: original references were to Steward 1933:290, 1977:127; assume this is an error and that the second should be 1938:127." +B203,,,B016,NA,,,, +B204,,,B016,NA,,,, +B205,,,B016,NA,,,, +B206,,,B016,NA,,,, +B207,,,B016,NA,,,, +B208,,,B016,NA,,,, +B209,,,B016,NA,,,, +B21,,,B016,NA,,,, +B210,,,B016,NA,,,, +B211,,1860,B016,3.67,,steward1938:62-64,Binford_2001_Table_8.08, +B212,,,B016,NA,,,, +B213,,,B016,NA,,,, +B214,,,B016,NA,,,, +B215,,,B016,NA,,,, +B216,,1827,B016,5,,ewers1955:26,Binford_2001_Table_8.08, +B217,,,B016,NA,,,, +B218,,,B016,NA,,,, +B219,,1860,B016,4.93,,cook1955:37; gayton1948a:145,Binford_2001_Table_8.08, +B22,,,B016,NA,,,, +B221,,1860,B016,4.38,,steward1938:174-75,Binford_2001_Table_8.08, +B222,,,B016,NA,,,, +B223,,,B016,NA,,,, +B224,,1860,B016,4.37,,"steward1938:126, 129",Binford_2001_Table_8.08, +B225,,,B016,NA,,,, +B226,,,B016,NA,,,, +B227,,,B016,NA,,,, +B228,,,B016,NA,,,, +B229,,,B016,NA,,,, +B23,,,B016,NA,,,, +B230,,1860,B016,3.06,,smith1974:123; steward1974b:117,Binford_2001_Table_8.08, +B231,,1870,B016,5.28,,whiting1950:19-20,Binford_2001_Table_8.08, +B232,,,B016,NA,,,, +B233,,,B016,NA,,,, +B234,,,B016,NA,,,, +B24,,,B016,NA,,,, +B240,,,B016,NA,,,, +B241,,,B016,NA,,,, +B242,,,B016,NA,,,, +B243,,,B016,NA,,,, +B244,,,B016,NA,,,, +B245,,1880,B016,7.72,,"moore1991:179, 298, 320",Binford_2001_Table_8.08, +B246,,,B016,NA,,,, +B248,,,B016,NA,,,, +B249,,,B016,NA,,,, +B25,Summer,1920,B016,4.15,,"shternberg1933:288, 387",Binford_2001_Table_8.08, +B25,Winter,1920,B016,4.15,,"shternberg1933:288, 387",Binford_2001_Table_8.08, +B250,,,B016,NA,,,, +B252,,,B016,NA,,,, +B253,,,B016,NA,,,, +B254,,,B016,NA,,,, +B255,,,B016,NA,,,, +B256,,,B016,NA,,,, +B257,,,B016,NA,,,, +B258,,,B016,NA,,,, +B259,,,B016,NA,,,, +B26,Summer,1900,B016,4.08,,kreynovich1979:191-92,Binford_2001_Table_8.08, +B260,,,B016,NA,,,, +B268,,,B016,NA,,,, +B269,,,B016,NA,,,, +B27,,,B016,NA,,,, +B270,,1870,B016,5,,smith1940a:6-7,Binford_2001_Table_8.08, +B271,,1850,B016,3.61,,eells1884:37,Binford_2001_Table_8.08, +B272,,,B016,NA,,,, +B273,,1880,B016,4.44,,"drucker1951:71, 280-81",Binford_2001_Table_8.08, +B274,,,B016,NA,,,, +B275,,,B016,NA,,,, +B276,,,B016,NA,,,, +B277,,,B016,NA,,,, +B278,,1860,B016,4.61,,"olson1936a:22, 96",Binford_2001_Table_8.08, +B279,,1880,B016,4.75,,duff1952:130,Binford_2001_Table_8.08, +B28,,1860,B016,4.72,,haydenetal1996:154,Binford_2001_Table_8.08, +B280,,,B016,NA,,,, +B281,,,B016,NA,,,, +B282,,,B016,NA,,,, +B283,,,B016,NA,,,, +B284,,,B016,NA,,,, +B285,,,B016,NA,,,, +B286,,1860,B016,3.13,,gunther1962:544; swan1870:5-6,Binford_2001_Table_8.08, +B287,,,B016,NA,,,, +B288,,,B016,NA,,,, +B289,,,B016,NA,,,, +B290,,,B016,NA,,,, +B291,,,B016,NA,,,, +B292,,,B016,NA,,,, +B293,,,B016,NA,,,, +B294,,,B016,NA,,,, +B295,,1884,B016,5.2,,"birketsmithanddelaguna1938:19-20, 123",Binford_2001_Table_8.08, +B296,,,B016,NA,,,, +B297,,,B016,NA,,,, +B298,,,B016,NA,,,, +B299,Large Village,1945,B016,4.17,Focal time given as '1940s',"lantis1946:164, 317",Binford_2001_Table_8.08, +B3,,,B016,NA,,,, +B315,,,B016,NA,,,, +B316,,,B016,NA,,,, +B317,,,B016,NA,,,, +B318,,,B016,NA,,,, +B319,,,B016,NA,,,, +B320,,1860,B016,3.58,,teit1930:331,Binford_2001_Table_8.08, +B321,,1880,B016,3.66,,clineetal1938:87,Binford_2001_Table_8.08, +B322,,,B016,NA,,,, +B323,,,B016,NA,,,, +B324,,,B016,NA,,,, +B325,,,B016,NA,,,, +B326,,1870,B016,3.62,,teit1930:331,Binford_2001_Table_8.08, +B327,,1763,B016,3.5,,quimby1962:219,Binford_2001_Table_8.08, +B328,,,B016,NA,,,, +B329,,1700,B016,5.45,,speck1922:143; wallisandwallis1955,Binford_2001_Table_8.08, +B330,,,B016,NA,,,, +B331,,1880,B016,4.2,,hickerson1967:57,Binford_2001_Table_8.08, +B332,,,B016,NA,,,, +B333,,,B016,NA,,,, +B334,,,B016,NA,,,, +B335,,1952,B016,5.59,,"rogers1963a:B8, 67",Binford_2001_Table_8.08, +B336,,,B016,NA,,,, +B337,,,B016,NA,,,, +B338,,1823,B016,4.55,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1823, 1910); this entry is one of those estimates",morantz1983:89,Binford_2001_Table_8.08, +B338,,1910,B016,3.11,"Note, for this society, Binford provided 2 estimates, referring to different focal years (1823, 1910); this entry is one of those estimates",rogers1963a:23,Binford_2001_Table_8.08, +B339,,,B016,NA,,,, +B340,,1823,B016,5.65,,morantz1983:89,Binford_2001_Table_8.08, +B341,,,B016,NA,,,, +B342,Winter,1633,B016,6.6,,lane1952:12-13,Binford_2001_Table_8.08, +B343,,,B016,NA,,,, +B344,,1807,B016,4.12,,keith1960:68; nicks1980:34-43,Binford_2001_Table_8.08, +B345,,,B016,NA,,,, +B346,,1945,B016,3.43,,honigmann1949:37,Binford_2001_Table_8.08, +B347,,,B016,NA,,,, +B348,,,B016,NA,,,, +B349,,,B016,NA,,,, +B35,,,B016,NA,,,, +B350,,1800,B016,4.72,,gillespie1981,Binford_2001_Table_8.08, +B351,,1880,B016,4.5,,adney1900:500,Binford_2001_Table_8.08, +B352,,,B016,NA,,,, +B353,,1947,B016,4.18,,honigmann1949:20,Binford_2001_Table_8.08, +B354,,,B016,NA,,,, +B355,,1838,B016,4.52,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1838, 1881, 1920-46, 1975) or cases (Lower Al Nu-1); this entry is one of those estimates",brumbachandjarvenpa1989:54,Binford_2001_Table_8.08, +B355,,1881,B016,3.71,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1838, 1881, 1920-46, 1975) or cases (Lower Al Nu-1); this entry is one of those estimates",brumbachandjarvenpa1989:64,Binford_2001_Table_8.08, +B355,,1933,B016,4.34,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1838, 1881, 1920-46, 1975) or cases (Lower Al Nu-1); this entry is one of those estimates. For this entry, focal time was given as '1920-46'",brumbachandjarvenpa1989:250-58,Binford_2001_Table_8.08, +B355,Lower Al Nu-1,1975,B016,6.57,"Note, for this society, Binford provided 4 estimates, with some referring to different focal years (1838, 1881, 1920-46, 1975) or cases (Lower Al Nu-1); this entry is one of those estimates",irimoto1981:60,Binford_2001_Table_8.08, +B356,,,B016,NA,,,, +B357,,,B016,NA,,,, +B358,,,B016,NA,,,, +B359,,1929,B016,4,,mckennan1959:106; pitts1972:118,Binford_2001_Table_8.08, +B359,Scotty Creek,1938,B016,4.5,,pitts1972:229,Binford_2001_Table_8.08, +B359,Nabesna,1938,B016,4.38,,pitts1972:229-31,Binford_2001_Table_8.08, +B359,Tetlin,1938,B016,5.78,,pitts1972:232-34,Binford_2001_Table_8.08, +B359,Tanacross,1938,B016,3.66,,pitts1972:235-38,Binford_2001_Table_8.08, +B359,Healy Lake,1938,B016,3.93,,pitts1972:239-40,Binford_2001_Table_8.08, +B36,,,B016,NA,,,, +B360,,,B016,NA,,,, +B361,,,B016,NA,,,, +B362,,,B016,NA,,,, +B363,,1890,B016,3.33,,oleary1985:88,Binford_2001_Table_8.08, +B364,,1890,B016,4.07,,snow1981:615,Binford_2001_Table_8.08, +B365,,1937,B016,4.81,Focal time given as '1937-38',"tanner1944:593, 627-28",Binford_2001_Table_8.08, +B369,,,B016,NA,,,, +B37,,,B016,NA,,,, +B370,,1890,B016,4.5,,burch1975:257-58,Binford_2001_Table_8.08, +B371,,1900,B016,4.9,,burch1975:269-72,Binford_2001_Table_8.08, +B372,,1882,B016,5.7,,turner1894:176,Binford_2001_Table_8.08, +B373,,1970,B016,4.72,,barger1981:675,Binford_2001_Table_8.08, +B374,"May, General",1922,B016,3.54,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",rasmussen1930:11-13,Binford_2001_Table_8.08, +B374,"May, Aaernermuit",1922,B016,3.6,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Haune Tormiut",1922,B016,4.5,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Padlimiut Coast",1922,B016,4.86,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Harva Tormiut",1922,B016,4.47,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"Summer, Tents",1947,B016,2.71,"Note, for this society, Binford provided 6 estimates, referring to different focal years, seasons and cases, including: 1922 (May) - General, Aaernermuit, Harva Tormiut, Padlimiut Coast; 1947 (summer, tents); this entry is one of those estimates",harper1964:10,Binford_2001_Table_8.08, +B375,,1885,B016,3,,burch1975:255,Binford_2001_Table_8.08, +B377,,1947,B016,4.69,Focal time given as '1947-48',binford1991a:90,Binford_2001_Table_8.08, +B378,,,B016,NA,,,, +B379,,,B016,NA,,,, +B38,"Wet Season, Base Camp",1989,B016,3.92,,"gragson1989:127, 288-89",Binford_2001_Table_8.08, +B380,,1909,B016,3.39,,burch1975:260-69,Binford_2001_Table_8.08, +B381,Summer,1920,B016,3.42,,rasmussen1932:78-85,Binford_2001_Table_8.08, +B382,,1920,B016,3.33,,amundsen1908:281,Binford_2001_Table_8.08, +B382,,1963,B016,4.37,,briggs1970:15,Binford_2001_Table_8.08, +B383,,1921,B016,3.03,,mathiassen1928:15-16,Binford_2001_Table_8.08, +B383,Southampton Island,1921,B016,3.03,,mathiassen1928:16,Binford_2001_Table_8.08, +B383,Southampton Island - Snafu,1959,B016,6,,vanstone1960:82,Binford_2001_Table_8.08, +B384,,1921,B016,3.05,,"mathiassen1928:17, 19, 32",Binford_2001_Table_8.08, +B385,Winter,1870,B016,5.1,,"rink1877:166, 182, 191",Binford_2001_Table_8.08, +B385,Summer,1896,B016,4.57,,"perry1898:131, 171-72",Binford_2001_Table_8.08, +B386,,1880,B016,4.11,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates",low1906:57-58,Binford_2001_Table_8.08, +B386,,1888,B016,3.41,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates",boas1964:18,Binford_2001_Table_8.08, +B386,,1909,B016,3.96,"Note, for this society, Binford provided 3 estimates; this entry is one of those estimates","hantzsch1977:39, 99",Binford_2001_Table_8.08, +B387,,1898,B016,3.74,,boas1907:377-78,Binford_2001_Table_8.08, +B387,Winter,1956,B016,3.93,,vandersteenhoven1959:2,Binford_2001_Table_8.08, +B388,,,B016,NA,,,, +B389,,,B016,NA,,,, +B39,,1960,B016,5.84,,metzger1968:268-71,Binford_2001_Table_8.08, +B390,,1880,B016,3.74,,ekblaw1928:41,Binford_2001_Table_8.08, +B390,,1895,B016,4.83,Focal time given as '1890s',steensby1910:324,Binford_2001_Table_8.08, +B4,,1989,B016,3.62,,rizvi1990:16-18,Binford_2001_Table_8.08, +B40,Dry Season,1990,B016,4,,politis1992:3,Binford_2001_Table_8.08, +B40,"""Communal"" Nukak",1990,B016,3.97,,politis1992:3,Binford_2001_Table_8.08, +B41,,1920,B016,4.9,,"baldus1937:115, 123-24; levistrauss1936:269",Binford_2001_Table_8.08, +B42,,,B016,NA,,,, +B43,,1940,B016,3.97,,"holmberg1950:51, 82-83",Binford_2001_Table_8.08, +B44,Settled Yuqui,1968,B016,4.43,,stearman1989:113-15,Binford_2001_Table_8.08, +B45,Dry Season,1938,B016,3.6,,"levistrauss1970:268-69, 288",Binford_2001_Table_8.08, +B46,,,B016,NA,,,, +B47,,1975,B016,3.5,,jones1983:176,Binford_2001_Table_8.08, +B48,,,B016,NA,,,, +B49,,,B016,NA,,,, +B5,,1952,B016,3.15,,heinegeldernandhoehngerlachstein1958:25,Binford_2001_Table_8.08, +B5,,1952,B016,3.06,,sen1962:72,Binford_2001_Table_8.08, +B50,,1910,B016,6.8,,"henry1964:10-11, 159",Binford_2001_Table_8.08, +B51,,1870,B016,5,,boschinandmacuzzi1979:33; cooper1946c:150,Binford_2001_Table_8.08, +B52,,,B016,NA,,,, +B53,,1900,B016,4.8,,bird1988:16-19,Binford_2001_Table_8.08, +B54,,,B016,NA,,,, +B55,,1870,B016,3.5,,gusinde1937a:32,Binford_2001_Table_8.08, +B6,,,B016,NA,,,, +B60,,,B016,NA,,,, +B61,,1976,B016,3.88,,heymer1980:193-97,Binford_2001_Table_8.08, +B62,,1977,B016,4.87,,"terashima1980:233, 235",Binford_2001_Table_8.08, +B63,,1980,B016,4.39,,"valloisandmarquer1976:113, 123",Binford_2001_Table_8.08, +B64,,,B016,NA,,,, +B65,Mawambo,1930,B016,4.28,,tanno1976:108,Binford_2001_Table_8.08, +B66,,,B016,NA,,,, +B67,,,B016,NA,,,, +B68,,,B016,NA,,,, +B69,,1910,B016,4.5,,"oconnelletal1991:63, table 1; oconnellperscomm1977",Binford_2001_Table_8.08, +B7,,,B016,NA,,,, +B70,,1920,B016,5.14,,huntingford1942:183; huntingford1955a:631-34,Binford_2001_Table_8.08, +B71,,,B016,NA,,,, +B72,General,1950,B016,3.37,"Note, for this society, Binford provided 3 estimates; Estimates for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy season with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates","howell1979:43, 45",Binford_2001_Table_8.08, +B72,"Rainy Season, Mobile !Kung, Camps 1, 3, 5, 6, 9",1950,B016,5.58,"Note, for this society, Binford provided 3 estimates; Estimates for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy season with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",yellen1977a:237-53,Binford_2001_Table_8.08, +B72,"Dry Season, Mobile !Kung, Camps 2, 4, 7, 10-16",1950,B016,4.57,"Note, for this society, Binford provided 3 estimates; Estimates for Dry Season, with special reference to Mobile !Kung, Camps 2, 4, 7, 10-16, and for Rainy season with special reference to Mobile !Kung, Camps 1, 3, 5, 6, 9; this entry is one of those estimates",yellen1977a:237-53,Binford_2001_Table_8.08, +B73,,,B016,NA,,,, +B74,"Wet Season, Hunting Camp",1962,B016,2.92,,hitchcockperscomm1990,Binford_2001_Table_8.08, +B75,,,B016,NA,,,, +B76,,,B016,NA,,,, +B77,,,B016,NA,,,, +B78,,,B016,NA,,,, +B79,,,B016,NA,,,, +B8,,1870,B016,3.77,,radcliffebrown1948:28-35,Binford_2001_Table_8.08, +B82,,,B016,NA,,,, +B83,,,B016,NA,,,, +B84,,1978,B016,6.42,,altman1987:100,Binford_2001_Table_8.08, +B85,General,1970,B016,6.1,,peterson1976:268; petersonperscomm1992,Binford_2001_Table_8.08, +B86,,,B016,NA,,,, +B87,,1950,B016,6.9,,hiatt1965:33-37,Binford_2001_Table_8.08, +B88,,,B016,NA,,,, +B89,,,B016,NA,,,, +B9,Dry Season,1920,B016,3.2,"Note, for this society, Binford provided 3 estimates, referring to different focal years, seasons and cases, including: Dry Season, Focal year: 1980s, with special reference to Semaq Seri; this entry is one of those estimates","schebesta1954:10, 17, 220",Binford_2001_Table_8.08, +B9,,1920,B016,3.33,"Note, for this society, Binford provided 3 estimates, referring to different focal years, seasons and cases, including: Dry Season, Focal year: 1980s, with special reference to Semaq Seri; this entry is one of those estimates","schebesta1954:11, 222",Binford_2001_Table_8.08, +B9,Semaq Seri,1985,B016,3.81,"Note, for this society, Binford provided 3 estimates, referring to different focal years, seasons and cases, including: Dry Season, Focal year: 1980s, with special reference to Semaq Seri; this entry is one of those estimates. For this entry, focal time was given as '1980s'",kuchikura1988:277,Binford_2001_Table_8.08, +B90,,,B016,NA,,,, +B91,,,B016,NA,,,, +B92,,,B016,NA,,,, +B93,,,B016,NA,,,, +B94,,1937,B016,4.2,,petersonandlong1986:87-89,Binford_2001_Table_8.08, +B95,,1920,B016,7.4,,hart1970:299; hartandpilling1960:66; petersonandlong1986:135,Binford_2001_Table_8.08, +B96,,,B016,NA,,,, +B97,,1930,B016,6,,"petersonandlong1986:80-83, 135",Binford_2001_Table_8.08, +B98,,1926,B016,6.2,,haleandtindale1933:77,Binford_2001_Table_8.08, +B99,,,B016,NA,,,, +B1,Settled Punan,1970,B017,7,"Note, first of two estimates provided for “Settled Punan.” Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",kedit1982:261-71,Binford_2001_Table_8.08, +B1,Mobile Punan,1970,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",harrison1949:139,Binford_2001_Table_8.08, +B1,Settled Punan,1970,B017,7,"Note, second of two estimates provided for “Settled Punan.” Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",avadhani1975:131,Binford_2001_Table_8.08, +B10,,1900,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bailey1863:292; seligmannandseligmann1911:63; spittel1945:8,Binford_2001_Table_8.08, +B100,,,B017,NA,,,, +B101,,,B017,NA,,,, +B102,,,B017,NA,,,, +B103,,,B017,NA,,,, +B104,,,B017,NA,,,, +B105,,,B017,NA,,,, +B106,,,B017,NA,,,, +B107,,,B017,NA,,,, +B108,,,B017,NA,,,, +B109,,1965,B017,5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",meggitt1962:81,Binford_2001_Table_8.08, +B11,,1972,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","morris1982a:97-98, 174",Binford_2001_Table_8.08, +B110,,,B017,NA,,,, +B111,,,B017,NA,,,, +B112,,,B017,NA,,,, +B113,,1936,B017,5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",myers1986:45; petersonandlong1986:104-11,Binford_2001_Table_8.08, +B113,"Papunya, Settled",1936,B017,5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gargettandhayden1991:13-22; haydenperscomm1992,Binford_2001_Table_8.08, +B114,,,B017,NA,,,, +B115,,,B017,NA,,,, +B116,,,B017,NA,,,, +B117,,1965,B017,5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",oconnell1987:77,Binford_2001_Table_8.08, +B118,,1968,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gould1971:168; gould1977:43,Binford_2001_Table_8.08, +B119,,,B017,NA,,,, +B12,,1965,B017,1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",headland1986:141; headlandperscomm1992,Binford_2001_Table_8.08, +B120,,1968,B017,5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",tindale1972:243,Binford_2001_Table_8.08, +B121,,,B017,NA,,,, +B122,,,B017,NA,,,, +B123,,,B017,NA,,,, +B124,,,B017,NA,,,, +B125,,,B017,NA,,,, +B126,,,B017,NA,,,, +B127,,,B017,NA,,,, +B128,,,B017,NA,,,, +B129,,,B017,NA,,,, +B13,,,B017,NA,,,, +B130,,,B017,NA,,,, +B131,,,B017,NA,,,, +B132,,,B017,NA,,,, +B133,,,B017,NA,,,, +B134,,,B017,NA,,,, +B135,,,B017,NA,,,, +B136,,,B017,NA,,,, +B137,,,B017,NA,,,, +B14,,,B017,NA,,,, +B143,,1938,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","griffen1959:vii, 50, 188",Binford_2001_Table_8.08, +B144,,,B017,NA,,,, +B145,,1865,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",strong1929a:189-214,Binford_2001_Table_8.08, +B146,,1880,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",meigs1939:1,Binford_2001_Table_8.08, +B147,,,B017,NA,,,, +B148,,,B017,NA,,,, +B149,,,B017,NA,,,, +B15,,1940,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",furerhaimendorf1943b:366,Binford_2001_Table_8.08, +B150,,,B017,NA,,,, +B151,,1860,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gayton1948a:57,Binford_2001_Table_8.08, +B152,,1850,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",voegelin1938:43-44,Binford_2001_Table_8.08, +B153,,,B017,NA,,,, +B154,,,B017,NA,,,, +B155,,1855,B017,1,"Focal time given as '1850s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908:290-92,Binford_2001_Table_8.08, +B156,,,B017,NA,,,, +B157,,,B017,NA,,,, +B158,,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","barrett1908:186, 191",Binford_2001_Table_8.08, +B159,,,B017,NA,,,, +B16,,1963,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",nimmanahaemindaandhartlandswam1962:173; pookajorn1988:187; velder1963:186-88,Binford_2001_Table_8.08, +B160,,1855,B017,1,"Focal time given as '1850s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908:289,Binford_2001_Table_8.08, +B161,,1860,B017,8,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cookandheizer1965:51,Binford_2001_Table_8.08, +B162,,,B017,NA,,,, +B163,,,B017,NA,,,, +B164,,,B017,NA,,,, +B165,Southwest Dialect,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","barrett1908:235-36, 244",Binford_2001_Table_8.08, +B166,,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",goddard1923:97-101,Binford_2001_Table_8.08, +B167,,,B017,NA,,,, +B168,,,B017,NA,,,, +B169,,,B017,NA,,,, +B17,,1962,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gardner1972:420,Binford_2001_Table_8.08, +B170,,,B017,NA,,,, +B171,,,B017,NA,,,, +B172,Hill,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908:268,Binford_2001_Table_8.08, +B173,,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908:131-32,Binford_2001_Table_8.08, +B174,,,B017,NA,,,, +B175,,,B017,NA,,,, +B176,,,B017,NA,,,, +B177,,,B017,NA,,,, +B178,,,B017,NA,,,, +B179,,,B017,NA,,,, +B18,Ranchi,1963,B017,6,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","senandsen1955:170, 174-75",Binford_2001_Table_8.08, +B18,,1963,B017,6,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",williams1974:79,Binford_2001_Table_8.08, +B180,,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","kroeber1925a:131, 138",Binford_2001_Table_8.08, +B181,,,B017,NA,,,, +B182,,,B017,NA,,,, +B183,,,B017,NA,,,, +B184,,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","loud1918:266, 339",Binford_2001_Table_8.08, +B185,,,B017,NA,,,, +B186,,1850,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kroeber1925a:16,Binford_2001_Table_8.08, +B187,,,B017,NA,,,, +B188,,1934,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ray1963:159,Binford_2001_Table_8.08, +B189,,1890,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",spier1930:54,Binford_2001_Table_8.08, +B19,Base Camp,1946,B017,7,"Focal time given as '1946-47'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",ehrenfels1952:65-67,Binford_2001_Table_8.08, +B190,,,B017,NA,,,, +B191,,,B017,NA,,,, +B192,,1860,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","steward1938:87-88, 941",Binford_2001_Table_8.08, +B193,,,B017,NA,,,, +B194,,,B017,NA,,,, +B195,,,B017,NA,,,, +B196,,,B017,NA,,,, +B197,,,B017,NA,,,, +B198,,,B017,NA,,,, +B199,,,B017,NA,,,, +B2,Palawan,1968,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",eder1987:105,Binford_2001_Table_8.08, +B20,,,B017,NA,,,, +B200,,,B017,NA,,,, +B201,,,B017,NA,,,, +B202,,,B017,NA,,,, +B203,,,B017,NA,,,, +B204,,1860,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",euler1972:100,Binford_2001_Table_8.08, +B205,,,B017,NA,,,, +B206,,1860,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938:58,Binford_2001_Table_8.08, +B207,,,B017,NA,,,, +B208,,,B017,NA,,,, +B209,,,B017,NA,,,, +B21,,,B017,NA,,,, +B210,,,B017,NA,,,, +B211,,,B017,NA,,,, +B212,,,B017,NA,,,, +B213,,,B017,NA,,,, +B214,,,B017,NA,,,, +B215,,,B017,NA,,,, +B216,Battle Mountain,1860,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938:163,Binford_2001_Table_8.08, +B217,,1860,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938:118,Binford_2001_Table_8.08, +B218,,,B017,NA,,,, +B219,,1860,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cook1955:37; gayton1948a:145,Binford_2001_Table_8.08, +B219,,1860,B017,2,"Focal time given as ""post-1850""; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gifford1932b:57-61,Binford_2001_Table_8.08, +B22,Hokkaido,1822,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972:449,Binford_2001_Table_8.08, +B22,Hokkaido,1854,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972:449,Binford_2001_Table_8.08, +B22,Hokkaido,1873,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972:449,Binford_2001_Table_8.08, +B221,,,B017,NA,,,, +B222,,,B017,NA,,,, +B223,,,B017,NA,,,, +B224,,,B017,NA,,,, +B225,,1895,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",price1962:8-10,Binford_2001_Table_8.08, +B226,,,B017,NA,,,, +B227,,,B017,NA,,,, +B228,,,B017,NA,,,, +B229,,,B017,NA,,,, +B23,,,B017,NA,,,, +B230,,,B017,NA,,,, +B231,,1870,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",whiting1950:19-20,Binford_2001_Table_8.08, +B232,,,B017,NA,,,, +B233,,1860,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938:114,Binford_2001_Table_8.08, +B234,,,B017,NA,,,, +B24,,1850,B017,1,"Focal time given as '1800s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",shimkin1939:155,Binford_2001_Table_8.08, +B240,,,B017,NA,,,, +B241,,,B017,NA,,,, +B242,,,B017,NA,,,, +B243,,,B017,NA,,,, +B244,,1860,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:25,Binford_2001_Table_8.08, +B245,,1880,B017,4,"Coded by Murdock (1967), according to note by Binford (2001: 297)","moore1991:179, 298, 320",Binford_2001_Table_8.08, +B246,,,B017,NA,,,, +B248,,1833,B017,5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:25,Binford_2001_Table_8.08, +B249,,,B017,NA,,,, +B25,,,B017,NA,,,, +B250,,,B017,NA,,,, +B252,,,B017,NA,,,, +B253,,1860,B017,5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:25,Binford_2001_Table_8.08, +B254,,,B017,NA,,,, +B255,,,B017,NA,,,, +B256,,1921,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",robbins1971:42,Binford_2001_Table_8.08, +B256,,1860,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:21,Binford_2001_Table_8.08, +B257,,1800,B017,5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lowrieandclarke1832:716,Binford_2001_Table_8.08, +B257,,1854,B017,5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",denig1930:431,Binford_2001_Table_8.08, +B258,,,B017,NA,,,, +B259,,,B017,NA,,,, +B26,Summer,1900,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kreynovich1979:191-92,Binford_2001_Table_8.08, +B260,,1865,B017,5,"Focal time given as '1800s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",jenness1938:2,Binford_2001_Table_8.08, +B268,,,B017,NA,,,, +B269,,,B017,NA,,,, +B27,,,B017,NA,,,, +B270,,,B017,NA,,,, +B271,,,B017,NA,,,, +B272,,,B017,NA,,,, +B273,,1880,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","drucker1951:71, 280-81",Binford_2001_Table_8.08, +B274,,,B017,NA,,,, +B275,,,B017,NA,,,, +B276,,,B017,NA,,,, +B277,,,B017,NA,,,, +B278,,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","olson1936a:22, 96",Binford_2001_Table_8.08, +B279,,,B017,NA,,,, +B28,,,B017,NA,,,, +B280,,,B017,NA,,,, +B281,,,B017,NA,,,, +B282,,,B017,NA,,,, +B283,,,B017,NA,,,, +B284,,,B017,NA,,,, +B285,,,B017,NA,,,, +B286,,1860,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gunther1962:544; swan1870:5-6,Binford_2001_Table_8.08, +B287,,,B017,NA,,,, +B288,"""Communal"" Kwakiutl",1890,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859:appendix,Binford_2001_Table_8.08, +B289,"""Communal"" Tsimshim",1880,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859:appendix,Binford_2001_Table_8.08, +B290,"""Communal"" Haida",1890,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859:appendix,Binford_2001_Table_8.08, +B291,,,B017,NA,,,, +B292,"""Communal"" Tlingit",1880,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859:appendix,Binford_2001_Table_8.08, +B293,,,B017,NA,,,, +B294,,,B017,NA,,,, +B295,,,B017,NA,,,, +B296,,,B017,NA,,,, +B297,,,B017,NA,,,, +B298,,1790,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lantis1970a:173,Binford_2001_Table_8.08, +B299,,,B017,NA,,,, +B3,,,B017,NA,,,, +B315,,,B017,NA,,,, +B316,,,B017,NA,,,, +B317,,,B017,NA,,,, +B318,,,B017,NA,,,, +B319,,,B017,NA,,,, +B320,,,B017,NA,,,, +B321,,,B017,NA,,,, +B322,,,B017,NA,,,, +B323,,,B017,NA,,,, +B324,,,B017,NA,,,, +B325,,,B017,NA,,,, +B326,,,B017,NA,,,, +B327,,,B017,NA,,,, +B328,,1939,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kinietz1947:246-47,Binford_2001_Table_8.08, +B329,,,B017,NA,,,, +B330,,1805,B017,5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:25,Binford_2001_Table_8.08, +B331,,,B017,NA,,,, +B332,,1965,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969:52,Binford_2001_Table_8.08, +B332,"""Welfare House""",1870,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969:52,Binford_2001_Table_8.08, +B332,"""Native House""",1870,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969:52,Binford_2001_Table_8.08, +B333,,,B017,NA,,,, +B334,,1940,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",dunning1959:63-64,Binford_2001_Table_8.08, +B335,,1952,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)","rogers1963a:B8, 67",Binford_2001_Table_8.08, +B336,,,B017,NA,,,, +B337,,,B017,NA,,,, +B338,,1823,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983:89,Binford_2001_Table_8.08, +B338,,1910,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",rogers1963a:23,Binford_2001_Table_8.08, +B338,Autumn,1953,B017,7,"Focal time given as '1953-54'; Coded by Murdock (1967), according to note by Binford (2001: 297)",rogers1973:3-4; speck1923:454,Binford_2001_Table_8.08, +B339,,,B017,NA,,,, +B340,,1823,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983:89,Binford_2001_Table_8.08, +B341,,,B017,NA,,,, +B342,,,B017,NA,,,, +B343,,,B017,NA,,,, +B344,,1807,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",keith1960:68; nicks1980:34-43,Binford_2001_Table_8.08, +B345,,1952,B017,5,"Focal time given as '1951-54'; Coded by Murdock (1967), according to note by Binford (2001: 297)",helm1961:48,Binford_2001_Table_8.08, +B345,,1789,B017,5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966:56,Binford_2001_Table_8.08, +B345,,1860,B017,5,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966:57,Binford_2001_Table_8.08, +B346,,1945,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1949:37,Binford_2001_Table_8.08, +B347,,,B017,NA,,,, +B348,,,B017,NA,,,, +B349,,1870,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",jenness1943:486-87,Binford_2001_Table_8.08, +B35,,,B017,NA,,,, +B350,,,B017,NA,,,, +B351,,,B017,NA,,,, +B352,,,B017,NA,,,, +B353,,1900,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1956b:35,Binford_2001_Table_8.08, +B353,,1947,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1949:20,Binford_2001_Table_8.08, +B354,,,B017,NA,,,, +B355,,1838,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989:54,Binford_2001_Table_8.08, +B355,,1881,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989:64,Binford_2001_Table_8.08, +B355,,1933,B017,2,"Focal time given as '1920-46'; Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989:250-58,Binford_2001_Table_8.08, +B356,,,B017,NA,,,, +B357,,1890,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",porter1893:164,Binford_2001_Table_8.08, +B357,Proper,1843,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967:306,Binford_2001_Table_8.08, +B357,Yukon,1843,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967:306,Binford_2001_Table_8.08, +B357,Crow Village,1843,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",oswaltandvanstone1967:4,Binford_2001_Table_8.08, +B358,,,B017,NA,,,, +B359,,1929,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mckennan1959:106; pitts1972:118,Binford_2001_Table_8.08, +B359,Scotty Creek,1938,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:229,Binford_2001_Table_8.08, +B359,Nabesna,1938,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:229-31,Binford_2001_Table_8.08, +B359,Tetlin,1938,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:232-34,Binford_2001_Table_8.08, +B359,Tanacross,1938,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:235-38,Binford_2001_Table_8.08, +B359,Healy Lake,1938,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:239-40,Binford_2001_Table_8.08, +B36,,,B017,NA,,,, +B360,,1823,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983:89,Binford_2001_Table_8.08, +B361,Summer Camp,1789,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966:49-56,Binford_2001_Table_8.08, +B362,,1843,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967:306,Binford_2001_Table_8.08, +B363,,,B017,NA,,,, +B364,,,B017,NA,,,, +B365,,1967,B017,7,"Focal time given as '1966-68'; Coded by Murdock (1967), according to note by Binford (2001: 297)",henriksen1973:58,Binford_2001_Table_8.08, +B369,,,B017,NA,,,, +B37,,,B017,NA,,,, +B370,Shungnak,1925,B017,6,"Focal time given as '1910-40'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966:43,Binford_2001_Table_8.08, +B370,Shungnak,1957,B017,6,"Focal time given as '1950-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966:43,Binford_2001_Table_8.08, +B370,Kobuk,1957,B017,6,"Focal time given as '1950-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966:43,Binford_2001_Table_8.08, +B370,Ambler,1962,B017,6,"Focal time given as '1959-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966:43,Binford_2001_Table_8.08, +B371,,,B017,NA,,,, +B372,Winter,1890,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974:71,Binford_2001_Table_8.08, +B372,Spring,1890,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974:71,Binford_2001_Table_8.08, +B372,Early Summer,1890,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974:71,Binford_2001_Table_8.08, +B372,Late Summer,1890,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974:71,Binford_2001_Table_8.08, +B372,Sugluk,1964,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","graburn1969:148, 169",Binford_2001_Table_8.08, +B373,,,B017,NA,,,, +B374,"Summer, Tents",1893,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","haydenetal1996:154, table 1",Binford_2001_Table_8.08, +B374,"May, General",1922,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",rasmussen1930:11-13,Binford_2001_Table_8.08, +B374,"May, Aaernermuit",1922,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Haune Tormiut",1922,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Padlimiut Coast",1922,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Harva Tormiut",1922,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,Baker Lake,1960,B017,6,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vallee1967:17,Binford_2001_Table_8.08, +B374,"Summer, Tents",1960,B017,6,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vallee1967:60-63,Binford_2001_Table_8.08, +B375,,,B017,NA,,,, +B377,Summer,1947,B017,6,"Focal time given as '1947-48'; Coded by Murdock (1967), according to note by Binford (2001: 297)",binford1991a:89,Binford_2001_Table_8.08, +B377,Winter ,1947,B017,6,"Focal time given as '1947-48'; Coded by Murdock (1967), according to note by Binford (2001: 297)",binford1991a:89,Binford_2001_Table_8.08, +B378,,,B017,NA,,,, +B379,,,B017,NA,,,, +B38,,,B017,NA,,,, +B380,,1909,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",burch1975:260-69,Binford_2001_Table_8.08, +B381,,,B017,NA,,,, +B382,"August, Tents",1963,B017,6,"Note, first of two identical estimates for this subcase/society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","briggs1970:30, 170-71",Binford_2001_Table_8.08, +B382,"August, Tents",1963,B017,6,"Note, second of two identical estimates for this subcase/society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","briggs1970:24, 370-71",Binford_2001_Table_8.08, +B382,"Winter, Snow",1963,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",briggs1970:372,Binford_2001_Table_8.08, +B383,,,B017,NA,,,, +B384,July,1822,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lyon1924:230,Binford_2001_Table_8.08, +B385,Tents,1880,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",birketsmith1928a:78,Binford_2001_Table_8.08, +B386,,1880,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",low1906:57-58,Binford_2001_Table_8.08, +B386,,1888,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",boas1964:18,Binford_2001_Table_8.08, +B387,Snow,1830,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",savelle1987:229,Binford_2001_Table_8.08, +B387,"August, Tents",1831,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",ross1835:589; savelle1987:429-31,Binford_2001_Table_8.08, +B387,"August, Tents",1858,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",mclintock1860:141-43,Binford_2001_Table_8.08, +B387,Winter,1859,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",mclintock1860:235,Binford_2001_Table_8.08, +B387,Winter,1956,B017,7,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vandersteenhoven1959:2,Binford_2001_Table_8.08, +B388,,1895,B017,8,"Focal time given as '1890s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1928a:79,Binford_2001_Table_8.08, +B389,,,B017,NA,,,, +B39,"Hiwi Base Camp, Hiwi",1960,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hurtadoandhill1986:18,Binford_2001_Table_8.08, +B39,,1960,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",metzger1968:268-71,Binford_2001_Table_8.08, +B390,,1880,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ekblaw1928:41,Binford_2001_Table_8.08, +B390,,1895,B017,2,"Focal time given as '1890s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",steensby1910:324,Binford_2001_Table_8.08, +B4,,1989,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",rizvi1990:16-18,Binford_2001_Table_8.08, +B40,,,B017,NA,,,, +B41,,,B017,NA,,,, +B42,,,B017,NA,,,, +B43,,1940,B017,8,"Coded by Murdock (1967), according to note by Binford (2001: 297)","holmberg1950:51, 82-83",Binford_2001_Table_8.08, +B44,,,B017,NA,,,, +B45,Dry Season,1938,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","levistrauss1970:268-69, 288",Binford_2001_Table_8.08, +B46,,,B017,NA,,,, +B47,,1975,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",jones1983:176,Binford_2001_Table_8.08, +B48,,,B017,NA,,,, +B49,,1954,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",kozaketal1979:369,Binford_2001_Table_8.08, +B5,,1952,B017,1,"Note, first of two identical estimates for this society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",heinegeldernandhoehngerlachstein1958:25,Binford_2001_Table_8.08, +B5,,1952,B017,1,"Note, second of two identical estimates for this society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",sen1962:72,Binford_2001_Table_8.08, +B50,,1910,B017,4,"Coded by Murdock (1967), according to note by Binford (2001: 297)","henry1964:10-11, 159",Binford_2001_Table_8.08, +B51,,1870,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",boschinandmacuzzi1979:33; cooper1946c:150,Binford_2001_Table_8.08, +B52,,,B017,NA,,,, +B53,,,B017,NA,,,, +B54,,1880,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",chapman1982:19; gusinde1931:205,Binford_2001_Table_8.08, +B55,,1870,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gusinde1937a:32,Binford_2001_Table_8.08, +B6,Dry Season,1906,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",temple1903:61,Binford_2001_Table_8.08, +B6,Wet Season,1906,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",temple1903:61,Binford_2001_Table_8.08, +B60,,1980,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hudson1990:88,Binford_2001_Table_8.08, +B61,,,B017,NA,,,, +B62,,,B017,NA,,,, +B63,,1980,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cavallisforza1986c:33,Binford_2001_Table_8.08, +B64,,1980,B017,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","fisher1987:104, 111",Binford_2001_Table_8.08, +B65,Net Hunters,1930,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",harako1976:46-47,Binford_2001_Table_8.08, +B66,,,B017,NA,,,, +B67,,,B017,NA,,,, +B68,,,B017,NA,,,, +B69,,1910,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","oconnelletal1991:63, table 1; oconnellperscomm1977",Binford_2001_Table_8.08, +B7,,,B017,NA,,,, +B70,,,B017,NA,,,, +B71,,,B017,NA,,,, +B72,General,1950,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)","howell1979:43, 45",Binford_2001_Table_8.08, +B72,"Rainy Season, Mobile !Kung, Camps 1, 3, 5, 6, 9",1950,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",yellen1977a:237-53,Binford_2001_Table_8.08, +B72,"Dry Season, Mobile !Kung, Camps 2, 4, 7, 10-16",1950,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",yellen1977a:237-53,Binford_2001_Table_8.08, +B73,,,B017,NA,,,, +B74,"Wet Season, Hunting Camp",1962,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hitchcockperscomm1990,Binford_2001_Table_8.08, +B74,,1962,B017,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",weissnerandhitchcockperscomm1991,Binford_2001_Table_8.08, +B75,,,B017,NA,,,, +B76,,,B017,NA,,,, +B77,,,B017,NA,,,, +B78,,,B017,NA,,,, +B79,,,B017,NA,,,, +B8,,1870,B017,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",radcliffebrown1948:28-35,Binford_2001_Table_8.08, +B82,,,B017,NA,,,, +B83,,,B017,NA,,,, +B84,,,B017,NA,,,, +B85,,,B017,NA,,,, +B86,,,B017,NA,,,, +B87,,1950,B017,5,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",hiatt1965:33-37,Binford_2001_Table_8.08, +B88,,,B017,NA,,,, +B89,,,B017,NA,,,, +B9,,1920,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",skeatandblagden1906:176,Binford_2001_Table_8.08, +B9,Wet Season,1920,B017,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",skeatandblagden1906:176,Binford_2001_Table_8.08, +B90,,,B017,NA,,,, +B91,,,B017,NA,,,, +B92,,,B017,NA,,,, +B93,,,B017,NA,,,, +B94,,,B017,NA,,,, +B95,,1920,B017,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hart1970:299; hartandpilling1960:66; petersonandlong1986:135,Binford_2001_Table_8.08, +B96,,,B017,NA,,,, +B97,,,B017,NA,,,, +B98,,,B017,NA,,,, +B99,,,B017,NA,,,, +B1,Settled Punan,1970,B018,2,"Note, first of two identical estimates for “Settled Punan”. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",kedit1982:261-71,Binford_2001_Table_8.08, +B1,Mobile Punan,1970,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",harrison1949:139,Binford_2001_Table_8.08, +B1,Settled Punan,1970,B018,2,"Note, second of two identical estimates for “Settled Punan”. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",avadhani1975:131,Binford_2001_Table_8.08, +B10,,1900,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bailey1863:292; seligmannandseligmann1911:63; spittel1945:8,Binford_2001_Table_8.08, +B100,,,B018,NA,,,, +B101,,,B018,NA,,,, +B102,,,B018,NA,,,, +B103,,,B018,NA,,,, +B104,,,B018,NA,,,, +B105,,,B018,NA,,,, +B106,,,B018,NA,,,, +B107,,,B018,NA,,,, +B108,,,B018,NA,,,, +B109,,1965,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",meggitt1962:81,Binford_2001_Table_8.08, +B11,,1972,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","morris1982a:97-98, 174",Binford_2001_Table_8.08, +B110,,,B018,NA,,,, +B111,,,B018,NA,,,, +B112,,,B018,NA,,,, +B113,,1936,B018,3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",myers1986:45; petersonandlong1986:104-11,Binford_2001_Table_8.08, +B113,"Papunya, Settled",1936,B018,3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gargettandhayden1991:13-22; haydenperscomm1992,Binford_2001_Table_8.08, +B114,,,B018,NA,,,, +B115,,,B018,NA,,,, +B116,,,B018,NA,,,, +B117,,1965,B018,3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",oconnell1987:77,Binford_2001_Table_8.08, +B118,,1968,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gould1971:168; gould1977:43,Binford_2001_Table_8.08, +B119,,,B018,NA,,,, +B12,,1965,B018,1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",headland1986:141; headlandperscomm1992,Binford_2001_Table_8.08, +B120,,1968,B018,3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",tindale1972:243,Binford_2001_Table_8.08, +B121,,,B018,NA,,,, +B122,,,B018,NA,,,, +B123,,,B018,NA,,,, +B124,,,B018,NA,,,, +B125,,,B018,NA,,,, +B126,,,B018,NA,,,, +B127,,,B018,NA,,,, +B128,,,B018,NA,,,, +B129,,,B018,NA,,,, +B13,,,B018,NA,,,, +B130,,,B018,NA,,,, +B131,,,B018,NA,,,, +B132,,,B018,NA,,,, +B133,,,B018,NA,,,, +B134,,,B018,NA,,,, +B135,,,B018,NA,,,, +B136,,,B018,NA,,,, +B137,,,B018,NA,,,, +B14,,,B018,NA,,,, +B143,,1938,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)","griffen1959:vii, 50, 188",Binford_2001_Table_8.08, +B144,,,B018,NA,,,, +B145,,1865,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",strong1929a:189-214,Binford_2001_Table_8.08, +B146,,1880,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",meigs1939:1,Binford_2001_Table_8.08, +B147,,,B018,NA,,,, +B148,,,B018,NA,,,, +B149,,,B018,NA,,,, +B15,,1940,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",furerhaimendorf1943b:366,Binford_2001_Table_8.08, +B150,,,B018,NA,,,, +B151,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gayton1948a:57,Binford_2001_Table_8.08, +B152,,1850,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",voegelin1938:43-44,Binford_2001_Table_8.08, +B153,,,B018,NA,,,, +B154,,,B018,NA,,,, +B155,,1855,B018,1,"Focal time given as '1850s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908:290-92,Binford_2001_Table_8.08, +B156,,,B018,NA,,,, +B157,,,B018,NA,,,, +B158,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","barrett1908:186, 191",Binford_2001_Table_8.08, +B159,,,B018,NA,,,, +B16,,1963,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",nimmanahaemindaandhartlandswam1962:173; pookajorn1988:187; velder1963:186-88,Binford_2001_Table_8.08, +B160,,1855,B018,1,"Focal time given as '1850s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908:289,Binford_2001_Table_8.08, +B161,,,B018,NA,,,, +B162,,,B018,NA,,,, +B163,,,B018,NA,,,, +B164,,,B018,NA,,,, +B165,Southwest Dialect,1860,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)","barrett1908:235-36, 244",Binford_2001_Table_8.08, +B166,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",goddard1923:97-101,Binford_2001_Table_8.08, +B167,,,B018,NA,,,, +B168,,,B018,NA,,,, +B169,,,B018,NA,,,, +B17,,1962,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gardner1972:420,Binford_2001_Table_8.08, +B170,,,B018,NA,,,, +B171,,,B018,NA,,,, +B172,Hill,1860,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908:268,Binford_2001_Table_8.08, +B173,,1860,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",barrett1908:131-32,Binford_2001_Table_8.08, +B174,,,B018,NA,,,, +B175,,,B018,NA,,,, +B176,,,B018,NA,,,, +B177,,,B018,NA,,,, +B178,,,B018,NA,,,, +B179,,,B018,NA,,,, +B18,,,B018,NA,,,, +B180,,1860,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","kroeber1925a:131, 138",Binford_2001_Table_8.08, +B181,,,B018,NA,,,, +B182,,,B018,NA,,,, +B183,,,B018,NA,,,, +B184,,1860,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","loud1918:266, 339",Binford_2001_Table_8.08, +B185,,,B018,NA,,,, +B186,,1850,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kroeber1925a:16,Binford_2001_Table_8.08, +B187,,,B018,NA,,,, +B188,,1934,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ray1963:159,Binford_2001_Table_8.08, +B189,,1890,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",spier1930:54,Binford_2001_Table_8.08, +B19,Base Camp,1946,B018,2,"Focal time given as '1946-47'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",ehrenfels1952:65-67,Binford_2001_Table_8.08, +B190,,,B018,NA,,,, +B191,,,B018,NA,,,, +B192,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","steward1938:87-88, 941",Binford_2001_Table_8.08, +B193,,,B018,NA,,,, +B194,,,B018,NA,,,, +B195,,,B018,NA,,,, +B196,,,B018,NA,,,, +B197,,,B018,NA,,,, +B198,,,B018,NA,,,, +B199,,,B018,NA,,,, +B2,Palawan,1968,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",eder1987:105,Binford_2001_Table_8.08, +B20,,,B018,NA,,,, +B200,,,B018,NA,,,, +B201,,,B018,NA,,,, +B202,,,B018,NA,,,, +B203,,,B018,NA,,,, +B204,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",euler1972:100,Binford_2001_Table_8.08, +B205,,,B018,NA,,,, +B206,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938:58,Binford_2001_Table_8.08, +B207,,,B018,NA,,,, +B208,,,B018,NA,,,, +B209,,,B018,NA,,,, +B21,,,B018,NA,,,, +B210,,,B018,NA,,,, +B211,,,B018,NA,,,, +B212,,,B018,NA,,,, +B213,,,B018,NA,,,, +B214,,,B018,NA,,,, +B215,,,B018,NA,,,, +B216,Battle Mountain,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938:163,Binford_2001_Table_8.08, +B217,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938:118,Binford_2001_Table_8.08, +B218,,,B018,NA,,,, +B219,,1860,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cook1955:37; gayton1948a:145,Binford_2001_Table_8.08, +B219,,1860,B018,2,"Focal time given as ""post-1850""; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",gifford1932b:57-61,Binford_2001_Table_8.08, +B22,Hokkaido,1822,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972:449,Binford_2001_Table_8.08, +B22,Hokkaido,1854,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972:449,Binford_2001_Table_8.08, +B22,Hokkaido,1873,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",watanabe1972:449,Binford_2001_Table_8.08, +B221,,,B018,NA,,,, +B222,,,B018,NA,,,, +B223,,,B018,NA,,,, +B224,,,B018,NA,,,, +B225,,1895,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",price1962:8-10,Binford_2001_Table_8.08, +B226,,,B018,NA,,,, +B227,,,B018,NA,,,, +B228,,,B018,NA,,,, +B229,,,B018,NA,,,, +B23,,,B018,NA,,,, +B230,,,B018,NA,,,, +B231,,1870,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",whiting1950:19-20,Binford_2001_Table_8.08, +B232,,,B018,NA,,,, +B233,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",steward1938:114,Binford_2001_Table_8.08, +B234,,,B018,NA,,,, +B24,,1850,B018,1,"Focal time given as '1800s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",shimkin1939:155,Binford_2001_Table_8.08, +B240,,,B018,NA,,,, +B241,,,B018,NA,,,, +B242,,,B018,NA,,,, +B243,,,B018,NA,,,, +B244,,1860,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:25,Binford_2001_Table_8.08, +B245,,1880,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","moore1991:179, 298, 320",Binford_2001_Table_8.08, +B246,,,B018,NA,,,, +B248,,1833,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:25,Binford_2001_Table_8.08, +B249,,,B018,NA,,,, +B25,,,B018,NA,,,, +B250,,,B018,NA,,,, +B252,,,B018,NA,,,, +B253,,1860,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:25,Binford_2001_Table_8.08, +B254,,,B018,NA,,,, +B255,,,B018,NA,,,, +B256,,1921,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",robbins1971:42,Binford_2001_Table_8.08, +B256,,1860,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:21,Binford_2001_Table_8.08, +B257,,1800,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lowrieandclarke1832:716,Binford_2001_Table_8.08, +B257,,1854,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",denig1930:431,Binford_2001_Table_8.08, +B258,,,B018,NA,,,, +B259,,,B018,NA,,,, +B26,Summer,1900,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kreynovich1979:191-92,Binford_2001_Table_8.08, +B260,,1865,B018,3,"Focal time given as '1800s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",jenness1938:2,Binford_2001_Table_8.08, +B268,,,B018,NA,,,, +B269,,,B018,NA,,,, +B27,,,B018,NA,,,, +B270,,,B018,NA,,,, +B271,,,B018,NA,,,, +B272,,,B018,NA,,,, +B273,,1880,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","drucker1951:71, 280-81",Binford_2001_Table_8.08, +B274,,,B018,NA,,,, +B275,,,B018,NA,,,, +B276,,,B018,NA,,,, +B277,,,B018,NA,,,, +B278,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","olson1936a:22, 96",Binford_2001_Table_8.08, +B279,,,B018,NA,,,, +B28,,,B018,NA,,,, +B280,,,B018,NA,,,, +B281,,,B018,NA,,,, +B282,,,B018,NA,,,, +B283,,,B018,NA,,,, +B284,,,B018,NA,,,, +B285,,,B018,NA,,,, +B286,,1860,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gunther1962:544; swan1870:5-6,Binford_2001_Table_8.08, +B287,,,B018,NA,,,, +B288,"""Communal"" Kwakiutl",1890,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859:appendix,Binford_2001_Table_8.08, +B289,"""Communal"" Tsimshim",1880,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859:appendix,Binford_2001_Table_8.08, +B290,"""Communal"" Haida",1890,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859:appendix,Binford_2001_Table_8.08, +B291,,,B018,NA,,,, +B292,"""Communal"" Tlingit",1880,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kane1859:appendix,Binford_2001_Table_8.08, +B293,,,B018,NA,,,, +B294,,,B018,NA,,,, +B295,,,B018,NA,,,, +B296,,,B018,NA,,,, +B297,,,B018,NA,,,, +B298,,1790,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lantis1970a:173,Binford_2001_Table_8.08, +B299,,,B018,NA,,,, +B3,,,B018,NA,,,, +B315,,,B018,NA,,,, +B316,,,B018,NA,,,, +B317,,,B018,NA,,,, +B318,,,B018,NA,,,, +B319,,,B018,NA,,,, +B320,,,B018,NA,,,, +B321,,,B018,NA,,,, +B322,,,B018,NA,,,, +B323,,,B018,NA,,,, +B324,,,B018,NA,,,, +B325,,,B018,NA,,,, +B326,,,B018,NA,,,, +B327,,,B018,NA,,,, +B328,,1939,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",kinietz1947:246-47,Binford_2001_Table_8.08, +B329,,,B018,NA,,,, +B330,,1805,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ewers1955:25,Binford_2001_Table_8.08, +B331,,,B018,NA,,,, +B332,,1965,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969:52,Binford_2001_Table_8.08, +B332,"""Welfare House""",1870,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969:52,Binford_2001_Table_8.08, +B332,"""Native House""",1870,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",bishop1969:52,Binford_2001_Table_8.08, +B333,,,B018,NA,,,, +B334,,1940,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",dunning1959:63-64,Binford_2001_Table_8.08, +B335,,1952,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","rogers1963a:B8, 67",Binford_2001_Table_8.08, +B336,,,B018,NA,,,, +B337,,,B018,NA,,,, +B338,,1823,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983:89,Binford_2001_Table_8.08, +B338,,1910,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",rogers1963a:23,Binford_2001_Table_8.08, +B338,Autumn,1953,B018,2,"Focal time given as '1953-54'; Coded by Murdock (1967), according to note by Binford (2001: 297)",rogers1973:3-4; speck1923:454,Binford_2001_Table_8.08, +B339,,,B018,NA,,,, +B340,,1823,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983:89,Binford_2001_Table_8.08, +B341,,,B018,NA,,,, +B342,,,B018,NA,,,, +B343,,,B018,NA,,,, +B344,,1807,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",keith1960:68; nicks1980:34-43,Binford_2001_Table_8.08, +B345,,1952,B018,3,"Focal time given as '1951-54'; Coded by Murdock (1967), according to note by Binford (2001: 297)",helm1961:48,Binford_2001_Table_8.08, +B345,,1789,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966:56,Binford_2001_Table_8.08, +B345,,1860,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966:57,Binford_2001_Table_8.08, +B346,,,B018,NA,,,, +B347,,,B018,NA,,,, +B348,,,B018,NA,,,, +B349,,1870,B018,7,"Coded by Murdock (1967), according to note by Binford (2001: 297)",jenness1943:486-87,Binford_2001_Table_8.08, +B35,,,B018,NA,,,, +B350,,,B018,NA,,,, +B351,,,B018,NA,,,, +B352,,,B018,NA,,,, +B353,,1900,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1956b:35,Binford_2001_Table_8.08, +B353,,1947,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",honigmann1949:20,Binford_2001_Table_8.08, +B354,,,B018,NA,,,, +B355,,1838,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989:54,Binford_2001_Table_8.08, +B355,,1881,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989:64,Binford_2001_Table_8.08, +B355,,1933,B018,2,"Focal time given as '1920-46'; Coded by Murdock (1967), according to note by Binford (2001: 297)",brumbachandjarvenpa1989:250-58,Binford_2001_Table_8.08, +B356,,,B018,NA,,,, +B357,,1890,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",porter1893:164,Binford_2001_Table_8.08, +B357,Proper,1843,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967:306,Binford_2001_Table_8.08, +B357,Yukon,1843,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967:306,Binford_2001_Table_8.08, +B357,Crow Village,1843,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",oswaltandvanstone1967:4,Binford_2001_Table_8.08, +B358,,,B018,NA,,,, +B359,,1929,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mckennan1959:106; pitts1972:118,Binford_2001_Table_8.08, +B359,Scotty Creek,1938,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:229,Binford_2001_Table_8.08, +B359,Nabesna,1938,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:229-31,Binford_2001_Table_8.08, +B359,Tetlin,1938,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:232-34,Binford_2001_Table_8.08, +B359,Tanacross,1938,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:235-38,Binford_2001_Table_8.08, +B359,Healy Lake,1938,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",pitts1972:239-40,Binford_2001_Table_8.08, +B36,,,B018,NA,,,, +B360,,1823,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",morantz1983:89,Binford_2001_Table_8.08, +B361,Summer Camp,1789,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",mackenzie1966:49-56,Binford_2001_Table_8.08, +B362,,1843,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",michael1967:306,Binford_2001_Table_8.08, +B363,,,B018,NA,,,, +B364,,,B018,NA,,,, +B365,,1967,B018,2,"Focal time given as '1966-68'; Coded by Murdock (1967), according to note by Binford (2001: 297)",henriksen1973:58,Binford_2001_Table_8.08, +B369,,,B018,NA,,,, +B37,,,B018,NA,,,, +B370,Shungnak,1925,B018,2,"Focal time given as '1910-40'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966:43,Binford_2001_Table_8.08, +B370,Shungnak,1957,B018,2,"Focal time given as '1950-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966:43,Binford_2001_Table_8.08, +B370,Kobuk,1957,B018,2,"Focal time given as '1950-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966:43,Binford_2001_Table_8.08, +B370,Ambler,1962,B018,2,"Focal time given as '1959-65'; Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",foote1966:43,Binford_2001_Table_8.08, +B371,,,B018,NA,,,, +B372,Winter,1890,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974:71,Binford_2001_Table_8.08, +B372,Spring,1890,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974:71,Binford_2001_Table_8.08, +B372,Early Summer,1890,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974:71,Binford_2001_Table_8.08, +B372,Late Summer,1890,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",taylor1974:71,Binford_2001_Table_8.08, +B372,Sugluk,1964,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","graburn1969:148, 169",Binford_2001_Table_8.08, +B373,,,B018,NA,,,, +B374,"Summer, Tents",1893,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","haydenetal1996:154, table 1",Binford_2001_Table_8.08, +B374,"May, General",1922,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",rasmussen1930:11-13,Binford_2001_Table_8.08, +B374,"May, Aaernermuit",1922,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Haune Tormiut",1922,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Padlimiut Coast",1922,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,"May, Harva Tormiut",1922,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1929:67-68,Binford_2001_Table_8.08, +B374,Baker Lake,1960,B018,1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vallee1967:17,Binford_2001_Table_8.08, +B374,"Summer, Tents",1960,B018,1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vallee1967:60-63,Binford_2001_Table_8.08, +B375,,,B018,NA,,,, +B377,Summer,1947,B018,2,"Focal time given as '1947-48'; Coded by Murdock (1967), according to note by Binford (2001: 297)",binford1991a:89,Binford_2001_Table_8.08, +B377,Winter ,1947,B018,2,"Focal time given as '1947-48'; Coded by Murdock (1967), according to note by Binford (2001: 297)",binford1991a:89,Binford_2001_Table_8.08, +B378,,,B018,NA,,,, +B379,,,B018,NA,,,, +B38,,,B018,NA,,,, +B380,,1909,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",burch1975:260-69,Binford_2001_Table_8.08, +B381,,,B018,NA,,,, +B382,"Winter, Snow",1963,B018,1,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",briggs1970:372,Binford_2001_Table_8.08, +B383,,,B018,NA,,,, +B384,July,1822,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",lyon1924:230,Binford_2001_Table_8.08, +B385,Tents,1880,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",birketsmith1928a:78,Binford_2001_Table_8.08, +B386,,1880,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",low1906:57-58,Binford_2001_Table_8.08, +B386,,1888,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)",boas1964:18,Binford_2001_Table_8.08, +B387,Snow,1830,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",savelle1987:229,Binford_2001_Table_8.08, +B387,"August, Tents",1831,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",ross1835:589; savelle1987:429-31,Binford_2001_Table_8.08, +B387,"August, Tents",1858,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",mclintock1860:141-43,Binford_2001_Table_8.08, +B387,Winter,1859,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",mclintock1860:235,Binford_2001_Table_8.08, +B387,Winter,1956,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",vandersteenhoven1959:2,Binford_2001_Table_8.08, +B388,,1895,B018,2,"Focal time given as '1890s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",birketsmith1928a:79,Binford_2001_Table_8.08, +B389,,,B018,NA,,,, +B39,"Hiwi Base Camp, Hiwi",1960,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hurtadoandhill1986:18,Binford_2001_Table_8.08, +B39,,1960,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",metzger1968:268-71,Binford_2001_Table_8.08, +B390,,1880,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",ekblaw1928:41,Binford_2001_Table_8.08, +B390,,1895,B018,2,"Focal time given as '1890s'; Coded by Murdock (1967), according to note by Binford (2001: 297)",steensby1910:324,Binford_2001_Table_8.08, +B4,,1989,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",rizvi1990:16-18,Binford_2001_Table_8.08, +B40,,,B018,NA,,,, +B41,,,B018,NA,,,, +B42,,,B018,NA,,,, +B43,,1940,B018,3,"Coded by Murdock (1967), according to note by Binford (2001: 297)","holmberg1950:51, 82-83",Binford_2001_Table_8.08, +B44,,,B018,NA,,,, +B45,Dry Season,1938,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","levistrauss1970:268-69, 288",Binford_2001_Table_8.08, +B46,,,B018,NA,,,, +B47,,1975,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",jones1983:176,Binford_2001_Table_8.08, +B48,,,B018,NA,,,, +B49,,1954,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",kozaketal1979:369,Binford_2001_Table_8.08, +B5,,1952,B018,1,"Note, first of two identical estimates for this society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",heinegeldernandhoehngerlachstein1958:25,Binford_2001_Table_8.08, +B5,,1952,B018,1,"Note, second of two identical estimates for this society. Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",sen1962:72,Binford_2001_Table_8.08, +B50,,1910,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)","henry1964:10-11, 159",Binford_2001_Table_8.08, +B51,,1870,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",boschinandmacuzzi1979:33; cooper1946c:150,Binford_2001_Table_8.08, +B52,,,B018,NA,,,, +B53,,,B018,NA,,,, +B54,,1880,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",chapman1982:19; gusinde1931:205,Binford_2001_Table_8.08, +B55,,1870,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",gusinde1937a:32,Binford_2001_Table_8.08, +B6,Dry Season,1906,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",temple1903:61,Binford_2001_Table_8.08, +B6,Wet Season,1906,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",temple1903:61,Binford_2001_Table_8.08, +B60,,1980,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hudson1990:88,Binford_2001_Table_8.08, +B61,,,B018,NA,,,, +B62,,,B018,NA,,,, +B63,,1980,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",cavallisforza1986c:33,Binford_2001_Table_8.08, +B64,,1980,B018,2,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)","fisher1987:104, 111",Binford_2001_Table_8.08, +B65,Net Hunters,1930,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",harako1976:46-47,Binford_2001_Table_8.08, +B66,,,B018,NA,,,, +B67,,,B018,NA,,,, +B68,,,B018,NA,,,, +B69,,1910,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","oconnelletal1991:63, table 1; oconnellperscomm1977",Binford_2001_Table_8.08, +B7,,,B018,NA,,,, +B70,,,B018,NA,,,, +B71,,,B018,NA,,,, +B72,General,1950,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)","howell1979:43, 45",Binford_2001_Table_8.08, +B72,"Rainy Season, Mobile !Kung, Camps 1, 3, 5, 6, 9",1950,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",yellen1977a:237-53,Binford_2001_Table_8.08, +B72,"Dry Season, Mobile !Kung, Camps 2, 4, 7, 10-16",1950,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",yellen1977a:237-53,Binford_2001_Table_8.08, +B73,,,B018,NA,,,, +B74,"Wet Season, Hunting Camp",1962,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hitchcockperscomm1990,Binford_2001_Table_8.08, +B74,,1962,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",weissnerandhitchcockperscomm1991,Binford_2001_Table_8.08, +B75,,,B018,NA,,,, +B76,,,B018,NA,,,, +B77,,,B018,NA,,,, +B78,,,B018,NA,,,, +B79,,,B018,NA,,,, +B8,,1870,B018,1,"Coded by Murdock (1967), according to note by Binford (2001: 297)",radcliffebrown1948:28-35,Binford_2001_Table_8.08, +B82,,,B018,NA,,,, +B83,,,B018,NA,,,, +B84,,,B018,NA,,,, +B85,,,B018,NA,,,, +B86,,,B018,NA,,,, +B87,,1950,B018,3,"Coded by Binford (coder is specified, as some societies in Binford dataset coded by Murdock (1967) for this variable; see Binford (2001:297) for detail)",hiatt1965:33-37,Binford_2001_Table_8.08, +B88,,,B018,NA,,,, +B89,,,B018,NA,,,, +B9,,1920,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",skeatandblagden1906:176,Binford_2001_Table_8.08, +B9,Wet Season,1920,B018,2,"Coded by Murdock (1967), according to note by Binford (2001: 297)",skeatandblagden1906:176,Binford_2001_Table_8.08, +B90,,,B018,NA,,,, +B91,,,B018,NA,,,, +B92,,,B018,NA,,,, +B93,,,B018,NA,,,, +B94,,,B018,NA,,,, +B95,,1920,B018,6,"Coded by Murdock (1967), according to note by Binford (2001: 297)",hart1970:299; hartandpilling1960:66; petersonandlong1986:135,Binford_2001_Table_8.08, +B96,,,B018,NA,,,, +B97,,,B018,NA,,,, +B98,,,B018,NA,,,, +B99,,,B018,NA,,,, +B1,,1970,B019,4,,kedit1982:261-64,Binford_2001_Table_8.07, +B10,,1900,B019,5,"Note, original entry was: <5","spittel1945:8, 65",Binford_2001_Table_8.07, +B100,,NA,B019,35,,love1917:21; love1936:36,Binford_2001_Table_8.07, +B101,,1934,B019,12.6,,kaberry1939:113-15,Binford_2001_Table_8.07, +B102,,1909,B019,33,,memmott1983b:53-54,Binford_2001_Table_8.07, +B103,,1928,B019,52,,tindale1962b:319-21,Binford_2001_Table_8.07, +B104,,,B019,NA,,,, +B105,,,B019,NA,,,, +B106,,1910,B019,36,,clement1903:13; radcliffebrown1912:158,Binford_2001_Table_8.07, +B107,,1870,B019,45,,"lumholtz1889:179, 201",Binford_2001_Table_8.07, +B108,,1934,B019,7.4,,kaberry1939:114,Binford_2001_Table_8.07, +B109,,1965,B019,38,,meggitt1962:77-79,Binford_2001_Table_8.07, +B11,,1972,B019,9,,"morris1982a:150, 250",Binford_2001_Table_8.07, +B110,,1880,B019,30,,tonkinson1978:67,Binford_2001_Table_8.07, +B111,,,B019,NA,,,, +B112,,1968,B019,41,,petersonandlong1986:112-15,Binford_2001_Table_8.07, +B113,,1936,B019,31,,haydenperscomm1990; haydenperscomm1992; long1970:296-97,Binford_2001_Table_8.07, +B114,,,B019,NA,,,, +B115,,,B019,NA,,,, +B116,,,B019,NA,,,, +B117,,1965,B019,30,,denham1975:137-38,Binford_2001_Table_8.07, +B118,,1968,B019,13,,gould1969:184,Binford_2001_Table_8.07, +B119,,,B019,NA,,,, +B12,,1965,B019,5,"Note, original entry was: <5","headland1986:146, 366-67",Binford_2001_Table_8.07, +B120,,1968,B019,25,,"long1970:299; tindale1972:259, 260; yengoyan1970:89",Binford_2001_Table_8.07, +B121,,,B019,NA,,,, +B122,,,B019,NA,,,, +B123,,1922,B019,27,,tindaleperscomm1965; white1915:726-28,Binford_2001_Table_8.07, +B124,,1900,B019,26,,"long1970:293; spencerandgillen1927:70-71, 472",Binford_2001_Table_8.07, +B125,,,B019,NA,,,, +B126,,,B019,NA,,,, +B127,,1941,B019,21,,berndtandberndt1944:232; long1970:298,Binford_2001_Table_8.07, +B128,,,B019,NA,,,, +B129,,,B019,NA,,,, +B13,,1979,B019,2,,rai1982:67,Binford_2001_Table_8.07, +B130,,,B019,NA,,,, +B131,,,B019,NA,,,, +B132,,,B019,NA,,,, +B133,,,B019,NA,,,, +B134,,1850,B019,18,,cannon1983:606-7,Binford_2001_Table_8.07, +B135,,,B019,NA,,,, +B136,,1830,B019,29,,plomley1983:166,Binford_2001_Table_8.07, +B137,,,B019,NA,,,, +B14,,1924,B019,0,,vanoverbergh1925:425-26,Binford_2001_Table_8.07, +B143,,1900,B019,20,"Note, for this society, Binford provided two estimates (20, 0); this entry is one of those estimates",mcgee1898:279,Binford_2001_Table_8.07, +B143,,1900,B019,0,"Note, for this society, Binford provided two estimates (20, 0); this entry is one of those estimates",gilg1965:51; kroeber1931:8,Binford_2001_Table_8.07, +B144,,,B019,NA,,,, +B145,,,B019,NA,,,, +B146,,1880,B019,3,,meigs1939:47-50,Binford_2001_Table_8.07, +B147,,,B019,NA,,,, +B148,,,B019,NA,,,, +B149,,1870,B019,2,,benedict1924:371-74,Binford_2001_Table_8.07, +B15,,1940,B019,3,,"furerhaimendorf1943b:134, 142",Binford_2001_Table_8.07, +B150,,1860,B019,5,,"sparkman1908:214, 225",Binford_2001_Table_8.07, +B151,,1860,B019,4,"Note, original entry was: <4",gayton1948b:105,Binford_2001_Table_8.07, +B152,,1850,B019,0,,voegelin1938:43-44,Binford_2001_Table_8.07, +B153,,,B019,NA,,,, +B154,,,B019,NA,,,, +B155,,,B019,NA,,,, +B156,,,B019,NA,,,, +B157,,1870,B019,7,,gayton1948b:235,Binford_2001_Table_8.07, +B158,,,B019,NA,,,, +B159,,1860,B019,9,,gifford1926a:299,Binford_2001_Table_8.07, +B16,,1963,B019,0,,bernatzik1951:145-46,Binford_2001_Table_8.07, +B160,,1860,B019,5,"Note, original entry was: <5",dubois1935:55,Binford_2001_Table_8.07, +B161,,,B019,NA,,,, +B162,,,B019,NA,,,, +B163,,,B019,NA,,,, +B164,,,B019,NA,,,, +B165,,,B019,NA,,,, +B166,,1860,B019,7,"Note, original entry was: <7",nomland1935:159,Binford_2001_Table_8.07, +B167,,,B019,NA,,,, +B168,,,B019,NA,,,, +B169,,NA,B019,3,"Note, original entry was: <3",nomland1938:100,Binford_2001_Table_8.07, +B17,,1963,B019,4,,"gardner1965:18, 100; gardner1972:421",Binford_2001_Table_8.07, +B170,,,B019,NA,,,, +B171,,1850,B019,3,"Note, original entry was: <3","foster1944:184, 185",Binford_2001_Table_8.07, +B172,,1860,B019,0,,driver1936:208,Binford_2001_Table_8.07, +B173,,,B019,NA,,,, +B174,,,B019,NA,,,, +B175,,1850,B019,7,"Note, original entry was: <7",gifford1916:162,Binford_2001_Table_8.07, +B176,,,B019,NA,,,, +B177,,1860,B019,3,"Note, original entry was: <3",miller1978:250,Binford_2001_Table_8.07, +B178,,,B019,NA,,,, +B179,,,B019,NA,,,, +B18,,1963,B019,2,,williams1974:73,Binford_2001_Table_8.07, +B180,,1860,B019,4,"Note, original entry was: <4",wallace1978a:173,Binford_2001_Table_8.07, +B181,,,B019,NA,,,, +B182,,,B019,NA,,,, +B183,,,B019,NA,,,, +B184,,,B019,NA,,,, +B185,,,B019,NA,,,, +B186,,1850,B019,4,,heizerandmills1952:145,Binford_2001_Table_8.07, +B187,,,B019,NA,,,, +B188,,1860,B019,5,,"ray1963:83, 90",Binford_2001_Table_8.07, +B189,,1860,B019,20,,"spier1930:45, 52-54",Binford_2001_Table_8.07, +B19,,1946,B019,6,,"ehrenfels1952:66-68, 139-40",Binford_2001_Table_8.07, +B190,,1760,B019,18,,baegert1863:367-68,Binford_2001_Table_8.07, +B191,,,B019,NA,,,, +B192,,1860,B019,13,,"smith1978a:439; steward1938:87-88, 91",Binford_2001_Table_8.07, +B193,,1800,B019,2,"Note, original entry was: <2",schaedel1949:124,Binford_2001_Table_8.07, +B194,,,B019,NA,,,, +B195,,1850,B019,5,,steward1938:85,Binford_2001_Table_8.07, +B196,,1870,B019,4.5,,"corbusier1886:330; gifford1932a:191, 195",Binford_2001_Table_8.07, +B197,,,B019,NA,,,, +B198,,1870,B019,4.5,,"kroeber1935:141, 143",Binford_2001_Table_8.07, +B199,,1860,B019,3,,zigmond1986:404,Binford_2001_Table_8.07, +B2,,1968,B019,5,,"cadelina1982:72-74; warren1964:28, 76",Binford_2001_Table_8.07, +B20,,,B019,NA,,,, +B200,,,B019,NA,,,, +B201,,1860,B019,3.5,,kelly1964:100; kellyandfowler1986:377-80,Binford_2001_Table_8.07, +B202,,1870,B019,4,,lowie1909:210,Binford_2001_Table_8.07, +B203,,,B019,NA,,,, +B204,,1860,B019,3,,kelly1964:99-100; kellyandfowler1986:377,Binford_2001_Table_8.07, +B205,,1870,B019,10,"Note, original entry was: <10",davis1965:17,Binford_2001_Table_8.07, +B206,,1860,B019,11,,fowlerandliljeblad1986:449; steward1938:58-59,Binford_2001_Table_8.07, +B207,,,B019,NA,,,, +B208,,,B019,NA,,,, +B209,,1860,B019,10,,callawayetal1986:352,Binford_2001_Table_8.07, +B21,,,B019,NA,,,, +B210,,1870,B019,17,,"fowler1992:152, 155",Binford_2001_Table_8.07, +B211,,1860,B019,5,,steward1938:62-64,Binford_2001_Table_8.07, +B212,,,B019,NA,,,, +B213,,,B019,NA,,,, +B214,,,B019,NA,,,, +B215,,,B019,NA,,,, +B216,,1860,B019,10,"Note, original entry was: <10",harris1940:49,Binford_2001_Table_8.07, +B217,,1860,B019,20,,steward1938:118,Binford_2001_Table_8.07, +B218,,,B019,NA,,,, +B219,,1860,B019,18,,whiting1964:531,Binford_2001_Table_8.07, +B22,,1900,B019,6,,hitchcock1891:465,Binford_2001_Table_8.07, +B221,,1860,B019,15,,steward1938:174-75,Binford_2001_Table_8.07, +B222,,,B019,NA,,,, +B223,,,B019,NA,,,, +B224,,,B019,NA,,,, +B225,,1850,B019,6.6,,dazevedo1963:109; price1962:8-9,Binford_2001_Table_8.07, +B226,,1870,B019,14.5,,"kelly1932:163, 164",Binford_2001_Table_8.07, +B227,,,B019,NA,,,, +B228,,,B019,NA,,,, +B229,,,B019,NA,,,, +B23,,1900,B019,5,,qiu1983:37,Binford_2001_Table_8.07, +B230,,,B019,NA,,,, +B231,,1870,B019,12,,whiting1950:100,Binford_2001_Table_8.07, +B232,,,B019,NA,,,, +B233,,1860,B019,10,,steward1938:113-14,Binford_2001_Table_8.07, +B234,,,B019,NA,,,, +B24,,1900,B019,0,,lee1967:52; shimkin1939:155,Binford_2001_Table_8.07, +B240,,,B019,NA,,,, +B241,,1870,B019,25,,"wallaceandhoebel1952:126, 133, 142",Binford_2001_Table_8.07, +B242,,1880,B019,17.5,,"opler1937:201, 204",Binford_2001_Table_8.07, +B243,,1850,B019,57,"Note: estimate is said to be for ""1800s""",mishkin1940:55; newcomb1961:201,Binford_2001_Table_8.07, +B244,,,B019,NA,,,, +B245,,1860,B019,26,,"moore1987:178, 179, 320",Binford_2001_Table_8.07, +B246,,1860,B019,22,,"eggan1937:61-62; hilger1952:193, 197, 198",Binford_2001_Table_8.07, +B248,,1870,B019,48,,denig1953:34,Binford_2001_Table_8.07, +B249,,,B019,NA,,,, +B25,,1920,B019,5.3,,"shternberg1933:165, 167",Binford_2001_Table_8.07, +B250,,,B019,NA,,,, +B252,,,B019,NA,,,, +B253,,,B019,NA,,,, +B254,,,B019,NA,,,, +B255,,1850,B019,20,,dejong1912:192-97,Binford_2001_Table_8.07, +B256,,1850,B019,21,"Note, for this society, Binford provided two estimates, the focal year for the first estimate is not specified (21), but focal year of the second is 1787 (23); this entry is one of those estimates",wissler1911:11,Binford_2001_Table_8.07, +B256,,1787,B019,23,"Note, for this society, Binford provided two estimates, the focal year for the first estimate is not specified (21), but focal year of the second is 1787 (23); this entry is one of those estimates. For this entry, Focal year is 1787",lewis1973:40,Binford_2001_Table_8.07, +B257,,1870,B019,25,,"denig1930:504, 511",Binford_2001_Table_8.07, +B258,,,B019,NA,,,, +B259,,,B019,NA,,,, +B26,,1900,B019,3,,"jochelson191926:79-85, 110-11",Binford_2001_Table_8.07, +B260,,,B019,NA,,,, +B268,,,B019,NA,,,, +B269,,,B019,NA,,,, +B27,,,B019,NA,,,, +B270,,1870,B019,10,,"smith1940b:38-39, 166",Binford_2001_Table_8.07, +B271,,1850,B019,6,,eells1887a:612-15,Binford_2001_Table_8.07, +B272,,,B019,NA,,,, +B273,,1880,B019,9,,"drucker1951:281, 284, 287, 297",Binford_2001_Table_8.07, +B274,,1850,B019,8,,"ray1938:63-67, 73",Binford_2001_Table_8.07, +B275,,,B019,NA,,,, +B276,,,B019,NA,,,, +B277,,,B019,NA,,,, +B278,,,B019,NA,,,, +B279,,,B019,NA,,,, +B28,,1860,B019,3,,bogoras1904:30; moore1923:367,Binford_2001_Table_8.07, +B280,,,B019,NA,,,, +B281,,,B019,NA,,,, +B282,,,B019,NA,,,, +B283,,,B019,NA,,,, +B284,,,B019,NA,,,, +B285,,1860,B019,8,,eells1884:35-36,Binford_2001_Table_8.07, +B286,,1860,B019,6,,"swan1870:12, 13",Binford_2001_Table_8.07, +B287,,,B019,NA,,,, +B288,,,B019,NA,,,, +B289,,,B019,NA,,,, +B290,,,B019,NA,,,, +B291,,1880,B019,9,,"mcilwraith1948:371-72, 379",Binford_2001_Table_8.07, +B292,,,B019,NA,,,, +B293,,,B019,NA,,,, +B294,,,B019,NA,,,, +B295,,,B019,NA,,,, +B296,,,B019,NA,,,, +B297,,,B019,NA,,,, +B298,,1830,B019,20,,lantis1984:179; mickey1955:15,Binford_2001_Table_8.07, +B299,,1930,B019,19,,"lantis1960:204-14, 233",Binford_2001_Table_8.07, +B3,,,B019,NA,,,, +B315,,1850,B019,12,,"murdock1980:130, 141",Binford_2001_Table_8.07, +B316,,,B019,NA,,,, +B317,,,B019,NA,,,, +B318,,,B019,NA,,,, +B319,,1860,B019,10,,"spierandsapir1930:22, 171, 218",Binford_2001_Table_8.07, +B320,,,B019,NA,,,, +B321,,,B019,NA,,,, +B322,,,B019,NA,,,, +B323,,,B019,NA,,,, +B324,,1850,B019,40,,spinden1908:250,Binford_2001_Table_8.07, +B325,,1860,B019,25,,"teit1900:321, 326",Binford_2001_Table_8.07, +B326,,,B019,NA,,,, +B327,,,B019,NA,,,, +B328,,1800,B019,12,,"kinietz1947:31-33, 128, 137",Binford_2001_Table_8.07, +B329,,1700,B019,13,,"speck1922:144; wallisandwallis1955:233, 237, 240",Binford_2001_Table_8.07, +B330,,1860,B019,20,,"teit1930:382; turneyhigh1937:86, 94",Binford_2001_Table_8.07, +B331,Emo,1880,B019,17,,hickerson1967:56; landes1937a:69-71,Binford_2001_Table_8.07, +B332,,1870,B019,15,"Note, for this society, Binford provided two estimates, the focal year for the first estimate is not specified (15), but focal year of the second is 871-1878 (8); this entry is one of those estimates. For this entry, Focal year not specified, assume same as other data",hallowell1938:240; hallowell1955:300; skinner1911:151,Binford_2001_Table_8.07, +B332,,1875,B019,8,"Note, for this society, Binford provided two estimates, the focal year for the first estimate is not specified (15), but focal year of the second is 871-1878 (8); this entry is one of those estimates. For this entry, focal time was given as ""1871-1878""",hallowell1938:240; hallowell1955:300; skinner1911:151,Binford_2001_Table_8.07, +B333,,1850,B019,23,,teit1900:324,Binford_2001_Table_8.07, +B334,,1940,B019,13,,dunning1959:138,Binford_2001_Table_8.07, +B335,,,B019,NA,,,, +B336,,,B019,NA,,,, +B337,,1800,B019,13,,cameron1890:265; grant1890:320,Binford_2001_Table_8.07, +B338,,1828,B019,16.3,Note: estimate is for the year 1828,lips1947a:419-54; rogers1963a,Binford_2001_Table_8.07, +B339,,,B019,NA,,,, +B340,,1900,B019,16,,"morantz1983:87, 89",Binford_2001_Table_8.07, +B341,,1890,B019,17,,rogersandblack1976:19,Binford_2001_Table_8.07, +B342,,1880,B019,7,,lane1952:29,Binford_2001_Table_8.07, +B343,,1880,B019,10,,jenness1937:52,Binford_2001_Table_8.07, +B344,,1880,B019,24,Note: estimate is for the year 1880,goddard1916:221; ives1985:156,Binford_2001_Table_8.07, +B345,,1860,B019,9,,"helm1961:48, 53, 72",Binford_2001_Table_8.07, +B346,,1920,B019,6,"Note, original entry was: >6",honigmann1954:131,Binford_2001_Table_8.07, +B347,,1870,B019,5,"Note, original entry was: <5",emmons1911:98; maclachlan1981:464,Binford_2001_Table_8.07, +B348,,1880,B019,3,,lane1981:405,Binford_2001_Table_8.07, +B349,,,B019,NA,,,, +B35,,,B019,NA,,,, +B350,,,B019,NA,,,, +B351,,1880,B019,3,,crowandobley1981:509,Binford_2001_Table_8.07, +B352,,1860,B019,5,"Note, original entry was: <5",savishinskyandhara1981:319; whiting1964:530,Binford_2001_Table_8.07, +B353,,1900,B019,5,"Note, original entry was: <5","honigmann1956b:61, 62",Binford_2001_Table_8.07, +B354,,,B019,NA,,,, +B355,,1880,B019,11,,smith1981:277-79,Binford_2001_Table_8.07, +B356,,1880,B019,4,,osgood1936:142; slobodin1981:524,Binford_2001_Table_8.07, +B357,,1880,B019,3,,"osgood1958:160; snow1981:609, 610",Binford_2001_Table_8.07, +B358,,,B019,NA,,,, +B359,,,B019,NA,,,, +B36,,,B019,NA,,,, +B360,,1900,B019,18,,morantz1983:87; skinner1911:151,Binford_2001_Table_8.07, +B361,,1807,B019,4,Note: estimate is for the year 1807,helm1972:74; keith1960:114,Binford_2001_Table_8.07, +B362,,1870,B019,8,,"osgood1937:161, 164; townsend1963:214; townsend1981:633",Binford_2001_Table_8.07, +B363,,,B019,NA,,,, +B364,,,B019,NA,,,, +B365,,,B019,NA,,,, +B369,,1870,B019,4,,ray1992:286,Binford_2001_Table_8.07, +B37,,,B019,NA,,,, +B370,,1890,B019,2,,giddings1956:26; giddingsperscomm1963,Binford_2001_Table_8.07, +B371,,1880,B019,9,,burch1975:269-72,Binford_2001_Table_8.07, +B372,,1890,B019,36,,taylor1974:68-69,Binford_2001_Table_8.07, +B373,,1890,B019,25,,saladindanglure1984:493,Binford_2001_Table_8.07, +B374,,1922,B019,22,Note: estimate is for the year 1922,"arima1984:455; rasmussen1930:11-13, 22-23, 37-38",Binford_2001_Table_8.07, +B375,,1900,B019,10,,binford1969,Binford_2001_Table_8.07, +B377,,1950,B019,12,,binfordandchasko1976:73-77,Binford_2001_Table_8.07, +B378,,1910,B019,5,,smith1984:353,Binford_2001_Table_8.07, +B379,,1920,B019,12,,moore1923:367,Binford_2001_Table_8.07, +B38,,1989,B019,23,,gragson1989:123; petrullo1939:232,Binford_2001_Table_8.07, +B380,,1880,B019,2,,burch1975:260-69,Binford_2001_Table_8.07, +B381,,1920,B019,5.6,,damas1972:42; damas1984:401; rasmussen1932:78-85,Binford_2001_Table_8.07, +B382,,1920,B019,3.1,,rasmussen1931:85-90,Binford_2001_Table_8.07, +B383,,1880,B019,3,,mathiassen1928:15-17; vandeveldeetal1992:3,Binford_2001_Table_8.07, +B384,,1920,B019,13,,mathiassen1928:29-36,Binford_2001_Table_8.07, +B385,,1880,B019,5,,rink1875:23,Binford_2001_Table_8.07, +B386,,1880,B019,3,,"boas1964:18, 69, 115",Binford_2001_Table_8.07, +B387,,1880,B019,6.3,,"balikci1970:102, 156; rasmussen1931:85-90",Binford_2001_Table_8.07, +B388,,,B019,NA,,,, +B389,,1852,B019,12,"Note, one of two original entries was <12 (the other was 7.4); this entry is one of those estimates. For this entry, Note, original entry was ""<12."" Focal year is 1852.",burch1975:102; simpson1875:254; spencer1959:250,Binford_2001_Table_8.07, +B389,,1852,B019,7.4,"Note, one of two original entries was <12 (the other was 7.4); this entry is one of those estimates",burch1975:102; simpson1875:254; spencer1959:250,Binford_2001_Table_8.07, +B39,,1960,B019,3,,"metzger1968:83, 85; wilbert1957:89",Binford_2001_Table_8.07, +B390,,1880,B019,0.5,,"gilberg1984:587; steensby1910:325, 369",Binford_2001_Table_8.07, +B4,,1989,B019,7,,"rizvi1990:20, 41",Binford_2001_Table_8.07, +B40,,1990,B019,16,,politisperscomm1993,Binford_2001_Table_8.07, +B41,,1920,B019,5,,cook1908:387; levistrauss1936:276,Binford_2001_Table_8.07, +B42,,1901,B019,25,,metraux1946guato:417,Binford_2001_Table_8.07, +B43,,1940,B019,28,,"holmberg1950:51, 82-83, 216",Binford_2001_Table_8.07, +B44,,1968,B019,4,,stearman1989:94,Binford_2001_Table_8.07, +B45,,1938,B019,17,,levistrauss1948b:366; levistrauss1970:269; oberg1953:103-04,Binford_2001_Table_8.07, +B46,,1600,B019,12,,gogginandsturtevant1964:189,Binford_2001_Table_8.07, +B47,,1975,B019,6,,clastres1968:19-23; metrauxandbaldus1946:442,Binford_2001_Table_8.07, +B48,,1880,B019,8,,metraux1946botocudo:537,Binford_2001_Table_8.07, +B49,,1954,B019,30,,kozaketal1979:360,Binford_2001_Table_8.07, +B5,,1952,B019,0,,temple1903:65,Binford_2001_Table_8.07, +B50,,1910,B019,32,,henry1964:45,Binford_2001_Table_8.07, +B51,,1870,B019,4,"Note, original entry was: <4",cooper1946c:149,Binford_2001_Table_8.07, +B52,,1880,B019,2,,cooper1946d:52,Binford_2001_Table_8.07, +B53,,1900,B019,4,,bird1946:77,Binford_2001_Table_8.07, +B54,,1880,B019,8,"Note, for this society, Binford provided two estimates (8, 28); this entry is one of those estimates",chapman1982:58; cooper1946b:115,Binford_2001_Table_8.07, +B54,,1880,B019,28,"Note, for this society, Binford provided two estimates (8, 28); this entry is one of those estimates","gusinde1931:444, 479",Binford_2001_Table_8.07, +B55,,1870,B019,3,,cooper1946a:92,Binford_2001_Table_8.07, +B6,,,B019,NA,,,, +B60,,1980,B019,5,,bahuchet1979:1001,Binford_2001_Table_8.07, +B61,,1976,B019,0,,heymer1980:200; lalouel1950:179,Binford_2001_Table_8.07, +B62,,1977,B019,4,,terashima1980:233,Binford_2001_Table_8.07, +B63,,1980,B019,16,,cavallisforza1986a:37,Binford_2001_Table_8.07, +B64,,1980,B019,36,,baileyandpeacock1988:59; schebesta1962a:244,Binford_2001_Table_8.07, +B65,,1930,B019,11,,harako1976:46-47; putnam1948:336,Binford_2001_Table_8.07, +B66,,,B019,NA,,,, +B67,,,B019,NA,,,, +B68,,,B019,NA,,,, +B69,,1910,B019,3,,bleek1931a:427; oconnellperscomm1982,Binford_2001_Table_8.07, +B7,,1903,B019,8,,"reed1904:57, 60",Binford_2001_Table_8.07, +B70,,1920,B019,0.5,,blackburn1971:266,Binford_2001_Table_8.07, +B71,,,B019,NA,,,, +B72,Nyae Nyae !Kung,1955,B019,10,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (10), the second to Dobe !Kung in the 1960s (5), and the third to the Southern Auen !Kung (3); this entry is one of those estimates. For this entry, focal time was given as ""1950s""","marshall1959:336, 350",Binford_2001_Table_8.07, +B72,Dobe !Kung,1965,B019,5,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (10), the second to Dobe !Kung in the 1960s (5), and the third to the Southern Auen !Kung (3); this entry is one of those estimates. For this entry, focal time was given as ""1960s""",howell1979:243-44; lee1972a:358,Binford_2001_Table_8.07, +B72,Southern Auen !Kung,1950,B019,3,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (10), the second to Dobe !Kung in the 1960s (5), and the third to the Southern Auen !Kung (3); this entry is one of those estimates. For this entry, Focal time not specified, assumed to be 1950, as for data in other tables",kaufmann1910:156; schapera1930:104,Binford_2001_Table_8.07, +B73,,1910,B019,4,"Note, original entry was: <4",bleek1928:33-34; schapera1930:104,Binford_2001_Table_8.07, +B74,,1962,B019,12,,"silberbauer1981a:149, 155",Binford_2001_Table_8.07, +B75,,1976,B019,12,,vierich1981:146,Binford_2001_Table_8.07, +B76,,1968,B019,2,,eibleibesfeldt1948:29-34,Binford_2001_Table_8.07, +B77,,1920,B019,3,,dart1937b,Binford_2001_Table_8.07, +B78,,,B019,NA,,,, +B79,,,B019,NA,,,, +B8,,1870,B019,0,,man1883:81; whiting1964:529,Binford_2001_Table_8.07, +B82,,,B019,NA,,,, +B83,,,B019,NA,,,, +B84,,1978,B019,45,,berndtandberndt1970:95; petersonandlong1986:137,Binford_2001_Table_8.07, +B85,,1970,B019,45,,long1970:303,Binford_2001_Table_8.07, +B86,,1973,B019,42,,petersonandlong1986:137,Binford_2001_Table_8.07, +B87,,1950,B019,38,"Note, for this society, Binford provided two estimates (38, 36.2); this entry is one of those estimates","hiatt1965:36, 77",Binford_2001_Table_8.07, +B87,,1950,B019,36.2,"Note, for this society, Binford provided two estimates (38, 36.2); this entry is one of those estimates",long1970:302,Binford_2001_Table_8.07, +B88,,1930,B019,43,,long1970:303; petersonandlong1986:154,Binford_2001_Table_8.07, +B89,,,B019,NA,,,, +B9,,1920,B019,3,,"evans1937:250; schebesta1962a:220, 239; whiting1964:529",Binford_2001_Table_8.07, +B90,,1920,B019,18,,petersonandlong1986:137,Binford_2001_Table_8.07, +B91,,1920,B019,40,,spencer1966:49,Binford_2001_Table_8.07, +B92,,,B019,NA,,,, +B93,,,B019,NA,,,, +B94,,1937,B019,43,,petersonandlong1986:95-99; sharp1934:427; sharp1940:490,Binford_2001_Table_8.07, +B95,,1920,B019,53.8,,"goodale1962:455; hart1970:296; hartandpilling1960:16, 36, 66; petersonandlong1986:137",Binford_2001_Table_8.07, +B96,,,B019,NA,,,, +B97,,1930,B019,48,,"rose1960:12, 69, 248",Binford_2001_Table_8.07, +B98,,,B019,NA,,,, +B99,,1900,B019,40,,stanner1933:391,Binford_2001_Table_8.07, +B1,,1970,B002,30,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_5.01, +B10,,1900,B002,30,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_5.01, +B100,,NA,B002,30,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_5.01, +B101,,1934,B002,35,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B002,5,,memmott1983a; memmott1983b,Binford_2001_Table_5.01, +B103,,1928,B002,7,,tindale1962a; tindale1962b,Binford_2001_Table_5.01, +B104,,NA,B002,40,,,Binford_2001_Table_5.01, +B105,,1900,B002,7,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_5.01, +B106,,1910,B002,10,,clement1903; radcliffebrown1912,Binford_2001_Table_5.01, +B107,,1870,B002,42,,brayshaw1990; lumholtz1889,Binford_2001_Table_5.01, +B108,,1934,B002,30,,kaberry1939; nind1831,Binford_2001_Table_5.01, +B109,,1965,B002,30,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_5.01, +B11,,1972,B002,16,,morris1982a,Binford_2001_Table_5.01, +B110,,1880,B002,15,,petersonandlong1986; tonkinson1978,Binford_2001_Table_5.01, +B111,,1960,B002,30,,harris1978; petersonandlong1986,Binford_2001_Table_5.01, +B112,,1968,B002,20,,petersonandlong1986,Binford_2001_Table_5.01, +B113,,1936,B002,35,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_5.01, +B114,,1848,B002,5,,colliverandwoolston1975,Binford_2001_Table_5.01, +B115,,1840,B002,30,,morwood1987; winterbotham1980,Binford_2001_Table_5.01, +B116,,1900,B002,35,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B002,35,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_5.01, +B118,,1968,B002,25,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_5.01, +B119,,1850,B002,25,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_5.01, +B12,,1965,B002,15,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B002,35,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_5.01, +B121,,1900,B002,25,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_5.01, +B122,,1870,B002,30,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B002,35,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_5.01, +B124,,1900,B002,45,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_5.01, +B125,,1880,B002,35,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B002,45,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_5.01, +B127,,1941,B002,45,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B002,25,,,Binford_2001_Table_5.01, +B129,,1840,B002,20,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B002,20,,rai1982; wastl1957,Binford_2001_Table_5.01, +B130,,1910,B002,35,,,Binford_2001_Table_5.01, +B131,,1850,B002,15,,,Binford_2001_Table_5.01, +B132,,1850,B002,30,,nind1831,Binford_2001_Table_5.01, +B133,,1850,B002,20,,williams1985,Binford_2001_Table_5.01, +B134,,1850,B002,25,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_5.01, +B135,,1850,B002,30,,fisonandhowitt1880; howitt1904,Binford_2001_Table_5.01, +B136,,1830,B002,35,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_5.01, +B137,,1830,B002,25,,hiatt1967; jones1971; jones1972,Binford_2001_Table_5.01, +B14,,1924,B002,35,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_5.01, +B143,,1900,B002,10,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_5.01, +B144,,1870,B002,25,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_5.01, +B145,,1870,B002,25,,gifford1926b; strong1929a,Binford_2001_Table_5.01, +B146,,1880,B002,15,,meigs1939,Binford_2001_Table_5.01, +B147,,1850,B002,25,,kroeber1925a; luomala1978,Binford_2001_Table_5.01, +B148,,1860,B002,20,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_5.01, +B149,,1870,B002,40,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_5.01, +B15,,1940,B002,10,,furerhaimendorf1943b,Binford_2001_Table_5.01, +B150,,1860,B002,15,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_5.01, +B151,,1860,B002,40,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_5.01, +B152,,1850,B002,35,,voegelin1938,Binford_2001_Table_5.01, +B153,,1850,B002,30,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_5.01, +B154,,1850,B002,25,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_5.01, +B155,,1850,B002,30,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_5.01, +B156,,1770,B002,10,,,Binford_2001_Table_5.01, +B157,,1870,B002,30,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_5.01, +B158,,1860,B002,15,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B002,10,,cook1956; gifford1926a,Binford_2001_Table_5.01, +B16,,1963,B002,20,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_5.01, +B160,,1860,B002,25,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_5.01, +B161,,1860,B002,5,,cookandheizer1965,Binford_2001_Table_5.01, +B162,,1860,B002,30,,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B002,30,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_5.01, +B164,,1805,B002,20,,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B002,15,,barrett1908; cook1956,Binford_2001_Table_5.01, +B166,,1860,B002,15,,cook1956; goddard1923; nomland1935,Binford_2001_Table_5.01, +B167,,NA,B002,20,,,Binford_2001_Table_5.01, +B168,,1850,B002,10,,collierandthalman1991,Binford_2001_Table_5.01, +B169,,NA,B002,10,,cook1956; nomland1938,Binford_2001_Table_5.01, +B17,,1963,B002,14,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_5.01, +B170,,NA,B002,10,,cook1955,Binford_2001_Table_5.01, +B171,,1850,B002,15,,cook1956; foster1944; gifford1926b,Binford_2001_Table_5.01, +B172,,1860,B002,15,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_5.01, +B173,,1860,B002,20,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B174,,1860,B002,25,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B002,35,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_5.01, +B176,,1860,B002,20,,gray1987,Binford_2001_Table_5.01, +B177,,1860,B002,15,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B002,10,,cook1956; drucker1940,Binford_2001_Table_5.01, +B179,,1860,B002,25,,cookandheizer1965; dixon1907,Binford_2001_Table_5.01, +B18,,1963,B002,35,,senandsen1955; williams1974,Binford_2001_Table_5.01, +B180,,1860,B002,10,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_5.01, +B181,,1870,B002,30,,gray1987,Binford_2001_Table_5.01, +B182,,1860,B002,10,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_5.01, +B183,,1860,B002,40,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B002,5,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_5.01, +B185,,1850,B002,30,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_5.01, +B186,,1850,B002,10,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_5.01, +B187,,1860,B002,40,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_5.01, +B188,,1860,B002,30,,gifford1926b; ray1963,Binford_2001_Table_5.01, +B189,,1860,B002,20,,gifford1926b; spier1930,Binford_2001_Table_5.01, +B19,,1946,B002,5,,ehrenfels1952,Binford_2001_Table_5.01, +B190,,1760,B002,15,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_5.01, +B191,,1570,B002,20,,,Binford_2001_Table_5.01, +B192,,1860,B002,25,,smith1978a; steward1938,Binford_2001_Table_5.01, +B193,,1800,B002,15,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_5.01, +B194,,1715,B002,30,,,Binford_2001_Table_5.01, +B195,,1850,B002,35,,steward1938,Binford_2001_Table_5.01, +B196,,1870,B002,35,,corbusier1886; gifford1932a,Binford_2001_Table_5.01, +B197,,1860,B002,40,,steward1936; steward1938,Binford_2001_Table_5.01, +B198,,1870,B002,35,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_5.01, +B199,,1860,B002,40,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_5.01, +B2,,1968,B002,30,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_5.01, +B20,,1974,B002,15,,bhanu1982; bhanu1992,Binford_2001_Table_5.01, +B200,,1860,B002,40,,steward1936; steward1938,Binford_2001_Table_5.01, +B201,,1860,B002,35,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B002,30,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_5.01, +B203,,1860,B002,45,,steward1938; thomas1983,Binford_2001_Table_5.01, +B204,,1860,B002,40,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_5.01, +B205,,1870,B002,45,,davis1965,Binford_2001_Table_5.01, +B206,,1860,B002,45,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_5.01, +B207,,1860,B002,50,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B208,,1860,B002,20,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_5.01, +B209,,1860,B002,30,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_5.01, +B21,,1978,B002,10,,bird1983; birddavid1987,Binford_2001_Table_5.01, +B210,,1870,B002,30,,fowler1992,Binford_2001_Table_5.01, +B211,,1860,B002,30,,steward1938,Binford_2001_Table_5.01, +B212,,1870,B002,50,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B002,35,,steward1938,Binford_2001_Table_5.01, +B214,,1860,B002,40,,steward1938,Binford_2001_Table_5.01, +B215,,1870,B002,55,,steward1938,Binford_2001_Table_5.01, +B216,,1860,B002,45,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_5.01, +B217,,1860,B002,45,,steward1938,Binford_2001_Table_5.01, +B218,,1860,B002,40,,steward1938,Binford_2001_Table_5.01, +B219,,1860,B002,45,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_5.01, +B22,,1900,B002,15,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_5.01, +B221,,1860,B002,45,,steward1938,Binford_2001_Table_5.01, +B222,,1860,B002,55,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_5.01, +B223,,1870,B002,50,,lowie1924,Binford_2001_Table_5.01, +B224,,1860,B002,40,,steward1938,Binford_2001_Table_5.01, +B225,,1850,B002,37,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_5.01, +B226,,1870,B002,30,,brink1969; kelly1932,Binford_2001_Table_5.01, +B227,,1860,B002,65,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_5.01, +B228,,1860,B002,37,,steward1938,Binford_2001_Table_5.01, +B229,,1860,B002,55,,steward1938,Binford_2001_Table_5.01, +B23,,1900,B002,65,,qiu1983,Binford_2001_Table_5.01, +B230,,1860,B002,35,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_5.01, +B231,,1870,B002,35,,whiting1950,Binford_2001_Table_5.01, +B232,,1860,B002,55,,boas1899; steward1938,Binford_2001_Table_5.01, +B233,,1860,B002,55,,steward1938,Binford_2001_Table_5.01, +B234,,1860,B002,50,,boas1899; steward1974b,Binford_2001_Table_5.01, +B24,,1900,B002,45,,lee1967; shimkin1939,Binford_2001_Table_5.01, +B240,,1880,B002,35,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_5.01, +B241,,1870,B002,80,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_5.01, +B242,,1880,B002,40,,basehart1972; morice1906b; opler1937,Binford_2001_Table_5.01, +B243,,1870,B002,80,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_5.01, +B244,,1860,B002,90,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B245,,1860,B002,80,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_5.01, +B246,,1860,B002,80,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_5.01, +B248,,1870,B002,80,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_5.01, +B249,,1870,B002,90,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_5.01, +B25,,1920,B002,12,,shternberg1933,Binford_2001_Table_5.01, +B250,,1880,B002,45,,chamberlain1892; turneyhigh1941,Binford_2001_Table_5.01, +B252,,1860,B002,50,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B253,,1870,B002,80,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_5.01, +B254,,1850,B002,75,,skinner1914,Binford_2001_Table_5.01, +B255,,1850,B002,80,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_5.01, +B256,,1850,B002,75,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_5.01, +B257,,1870,B002,70,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B002,75,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_5.01, +B259,,1850,B002,85,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B26,,1900,B002,55,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_5.01, +B260,,1880,B002,82,,bamforth1988; jenness1938,Binford_2001_Table_5.01, +B268,,1880,B002,25,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_5.01, +B269,,1860,B002,15,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B002,55,,chard1963; popov1966,Binford_2001_Table_5.01, +B270,,1870,B002,15,,smith1940a; smith1940b,Binford_2001_Table_5.01, +B271,,1850,B002,20,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_5.01, +B272,,1880,B002,20,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_5.01, +B273,,1880,B002,5,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_5.01, +B274,,1850,B002,10,,ray1937; ray1938; silverstein1990,Binford_2001_Table_5.01, +B275,,1860,B002,10,,boyd1990; zenk1990,Binford_2001_Table_5.01, +B276,,1860,B002,40,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_5.01, +B277,,1880,B002,15,,stern1934,Binford_2001_Table_5.01, +B278,,1860,B002,15,,olson1936a; schalk1978,Binford_2001_Table_5.01, +B279,,1880,B002,15,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_5.01, +B28,,1860,B002,30,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_5.01, +B280,,1880,B002,30,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_5.01, +B281,,NA,B002,25,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_5.01, +B282,,1860,B002,15,,kennedyandbouchard1990,Binford_2001_Table_5.01, +B283,,1880,B002,20,,cybulski1990b; hilton1990,Binford_2001_Table_5.01, +B284,,1880,B002,15,,pettitt1950,Binford_2001_Table_5.01, +B285,,1860,B002,20,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_5.01, +B286,,1860,B002,10,,gunther1962; schalk1978; swan1870,Binford_2001_Table_5.01, +B287,,1880,B002,35,,olson1940; schalk1978,Binford_2001_Table_5.01, +B288,,1890,B002,10,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B289,,1880,B002,20,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_5.01, +B290,,1890,B002,10,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B291,,1880,B002,25,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_5.01, +B292,,1880,B002,15,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_5.01, +B293,,1880,B002,30,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_5.01, +B294,,1840,B002,5,,holmberg1985; knechtandjordan1985,Binford_2001_Table_5.01, +B295,,1890,B002,10,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_5.01, +B296,,1850,B002,20,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_5.01, +B297,,1930,B002,10,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_5.01, +B298,,1830,B002,5,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_5.01, +B299,,1930,B002,15,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_5.01, +B3,,1900,B002,25,,hagen1908; persoon1989; volz1909,Binford_2001_Table_5.01, +B315,,1850,B002,20,,murdock1980,Binford_2001_Table_5.01, +B316,,1860,B002,30,,,Binford_2001_Table_5.01, +B317,,1870,B002,25,,teit1928,Binford_2001_Table_5.01, +B318,,1880,B002,25,,,Binford_2001_Table_5.01, +B319,,1860,B002,15,,spierandsapir1930,Binford_2001_Table_5.01, +B320,,1860,B002,55,,teit1930,Binford_2001_Table_5.01, +B321,,1880,B002,25,,clineetal1938,Binford_2001_Table_5.01, +B322,,1860,B002,30,,grabert1974; teit1930,Binford_2001_Table_5.01, +B323,,1870,B002,35,,kelly1995; ray1932; teit1930,Binford_2001_Table_5.01, +B324,,1850,B002,15,,spinden1908,Binford_2001_Table_5.01, +B325,,1860,B002,25,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_5.01, +B326,,1870,B002,35,,teit1930,Binford_2001_Table_5.01, +B327,,1870,B002,40,,jenness1935; quimby1962,Binford_2001_Table_5.01, +B328,,1800,B002,45,,kinietz1947,Binford_2001_Table_5.01, +B329,,1700,B002,55,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_5.01, +B330,,1860,B002,60,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_5.01, +B331,,1880,B002,60,,hickerson1967; landes1937a,Binford_2001_Table_5.01, +B332,,1870,B002,65,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_5.01, +B333,,1850,B002,30,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_5.01, +B334,,1940,B002,60,,dunning1959; grant1924; rogers1969,Binford_2001_Table_5.01, +B335,,1900,B002,65,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_5.01, +B336,,1865,B002,55,,goldman1940; jenness1943; smithnd,Binford_2001_Table_5.01, +B337,,1800,B002,55,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_5.01, +B338,,1880,B002,74,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_5.01, +B339,,1850,B002,60,,dunning1959; rogers1969,Binford_2001_Table_5.01, +B340,,1900,B002,55,,morantz1983; rogers1969,Binford_2001_Table_5.01, +B341,,1890,B002,55,,boas1895a; rogersandblack1976,Binford_2001_Table_5.01, +B342,,1880,B002,50,,lane1952; tanner1944,Binford_2001_Table_5.01, +B343,,1880,B002,60,,dennison1981; grant1936; jenness1937,Binford_2001_Table_5.01, +B344,,1850,B002,55,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_5.01, +B345,,1860,B002,60,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_5.01, +B346,,1920,B002,65,,honigmann1949; honigmann1954,Binford_2001_Table_5.01, +B347,,1870,B002,60,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_5.01, +B348,,1880,B002,40,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B002,47,,grant1936; jenness1937; jenness1943,Binford_2001_Table_5.01, +B35,,1950,B002,10,,,Binford_2001_Table_5.01, +B350,,1800,B002,75,,gillespie1981,Binford_2001_Table_5.01, +B351,,1880,B002,70,,adney1900; crowandobley1981,Binford_2001_Table_5.01, +B352,,1860,B002,65,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_5.01, +B353,,1900,B002,40,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_5.01, +B354,,1880,B002,60,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_5.01, +B355,,1880,B002,70,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_5.01, +B356,,1880,B002,65,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_5.01, +B357,,1880,B002,43,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_5.01, +B358,,1860,B002,75,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_5.01, +B359,,1930,B002,40,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_5.01, +B36,,1960,B002,35,,metraux1948,Binford_2001_Table_5.01, +B360,,1900,B002,56,,morantz1983; skinner1911,Binford_2001_Table_5.01, +B361,,1860,B002,66,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_5.01, +B362,,1870,B002,51,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_5.01, +B363,,1890,B002,62,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_5.01, +B364,,1860,B002,36,,michael1967; snow1981,Binford_2001_Table_5.01, +B365,,1890,B002,73,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_5.01, +B369,,1870,B002,15,,ray1992; seltzer1933,Binford_2001_Table_5.01, +B37,,1968,B002,40,,kloos1977; kloos1982,Binford_2001_Table_5.01, +B370,,1890,B002,63,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_5.01, +B371,,1880,B002,21,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_5.01, +B372,,1890,B002,29,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_5.01, +B373,,1890,B002,18,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_5.01, +B374,,1900,B002,55,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_5.01, +B375,,1900,B002,75,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_5.01, +B377,,1950,B002,89,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_5.01, +B378,,1910,B002,38,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_5.01, +B379,,1920,B002,10,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_5.01, +B38,,1989,B002,6,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_5.01, +B380,,1880,B002,35,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_5.01, +B381,,1920,B002,25,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_5.01, +B382,,1920,B002,30,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_5.01, +B383,,1880,B002,35,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_5.01, +B384,,1920,B002,15,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_5.01, +B385,,1880,B002,15,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_5.01, +B386,,1880,B002,5,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_5.01, +B387,,1880,B002,25,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_5.01, +B388,,1880,B002,10,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_5.01, +B389,,1880,B002,25,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_5.01, +B39,,1960,B002,20,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_5.01, +B390,,1880,B002,30,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_5.01, +B4,,1989,B002,15,,agrawal1967; rizvi1990,Binford_2001_Table_5.01, +B40,,1990,B002,11,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_5.01, +B41,,1920,B002,20,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_5.01, +B42,,1901,B002,10,,metraux1946guato; schmidt1942,Binford_2001_Table_5.01, +B43,,1940,B002,50,,holmberg1950,Binford_2001_Table_5.01, +B44,,1968,B002,60,,stearman1989,Binford_2001_Table_5.01, +B45,,1938,B002,20,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_5.01, +B46,,1600,B002,10,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_5.01, +B47,,1975,B002,62,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01, +B48,,1880,B002,30,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_5.01, +B49,,1954,B002,35,,kozaketal1979,Binford_2001_Table_5.01, +B5,,1952,B002,20,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_5.01, +B50,,1910,B002,60,,henry1964,Binford_2001_Table_5.01, +B51,,1870,B002,65,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_5.01, +B52,,1880,B002,20,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B002,20,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_5.01, +B54,,1880,B002,75,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_5.01, +B55,,1870,B002,25,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_5.01, +B6,,1906,B002,20,,temple1903,Binford_2001_Table_5.01, +B60,,1980,B002,20,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_5.01, +B61,,1976,B002,9,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_5.01, +B62,,1977,B002,14,,skeatandblagden1906; terashima1980,Binford_2001_Table_5.01, +B63,,1980,B002,14,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_5.01, +B64,,1980,B002,11,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_5.01, +B65,,1930,B002,9,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_5.01, +B66,,NA,B002,15,,kellyandpoyer1993,Binford_2001_Table_5.01, +B67,,1950,B002,35,,clark1951,Binford_2001_Table_5.01, +B68,,1920,B002,45,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_5.01, +B69,,1910,B002,40,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_5.01, +B7,,1903,B002,8,,fox1952; reed1904,Binford_2001_Table_5.01, +B70,,1920,B002,55,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_5.01, +B71,,1928,B002,35,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_5.01, +B72,,1950,B002,33,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_5.01, +B73,,1910,B002,32.5,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_5.01, +B74,,1962,B002,45,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_5.01, +B75,,1976,B002,45,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_5.01, +B76,,1968,B002,45,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_5.01, +B77,,1920,B002,48,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_5.01, +B78,,1950,B002,50,,potgieter1955; toerien1958,Binford_2001_Table_5.01, +B79,,NA,B002,30,,bleek1924a,Binford_2001_Table_5.01, +B8,,1870,B002,35,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_5.01, +B82,,1848,B002,0,,moore1979,Binford_2001_Table_5.01, +B83,,1900,B002,15,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B002,35,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_5.01, +B85,,1970,B002,10,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_5.01, +B86,,1973,B002,10,,meehan1982; petersonandlong1986,Binford_2001_Table_5.01, +B87,,1950,B002,10,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_5.01, +B88,,1930,B002,35,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_5.01, +B89,,1920,B002,15,,kaberry1935; kaberry1939,Binford_2001_Table_5.01, +B9,,1920,B002,40,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_5.01, +B90,,1920,B002,30,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_5.01, +B91,,1920,B002,20,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_5.01, +B92,,1960,B002,10,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_5.01, +B93,,1930,B002,5,,thomson1933; thomson1934,Binford_2001_Table_5.01, +B94,,1937,B002,25,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_5.01, +B95,,1920,B002,25,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_5.01, +B96,,1880,B002,10,,andersonandrobins1988; roth1909,Binford_2001_Table_5.01, +B97,,1930,B002,10,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_5.01, +B98,,1926,B002,5,,haleandtindale1933; roth1909,Binford_2001_Table_5.01, +B99,,1900,B002,10,,stanner1933,Binford_2001_Table_5.01, +B1,,,B020,NA,,,, +B10,,,B020,NA,,,, +B100,,NA,B020,31,,love1917:21; love1936:36,Binford_2001_Table_8.07, +B101,,1934,B020,23,,kaberry1939:113-15,Binford_2001_Table_8.07, +B102,,,B020,NA,,,, +B103,,1928,B020,30,,tindale1962b:319-21,Binford_2001_Table_8.07, +B104,,,B020,NA,,,, +B105,,,B020,NA,,,, +B106,,,B020,NA,,,, +B107,,1870,B020,29,,"lumholtz1889:179, 201",Binford_2001_Table_8.07, +B108,,1934,B020,19,,kaberry1939:114,Binford_2001_Table_8.07, +B109,,1965,B020,24,,meggitt1962:77-79,Binford_2001_Table_8.07, +B11,,1972,B020,15,,"morris1982a:150, 250",Binford_2001_Table_8.07, +B110,,1880,B020,24,,tonkinson1978:67,Binford_2001_Table_8.07, +B111,,1960,B020,30,,harris1978:128,Binford_2001_Table_8.07, +B112,,,B020,NA,,,, +B113,,1936,B020,25,,haydenperscomm1990; haydenperscomm1992; long1970:296-97,Binford_2001_Table_8.07, +B114,,,B020,NA,,,, +B115,,1840,B020,23,,winterbotham1980:34,Binford_2001_Table_8.07, +B116,,,B020,NA,,,, +B117,,1965,B020,27,,denham1975:137-38,Binford_2001_Table_8.07, +B118,,1968,B020,23,,gould1969:184,Binford_2001_Table_8.07, +B119,,1850,B020,20,,debertrodano1978:283,Binford_2001_Table_8.07, +B12,,1965,B020,21.7,,"headland1986:146, 366-67",Binford_2001_Table_8.07, +B120,,1968,B020,27,,"long1970:299; tindale1972:259, 260; yengoyan1970:89",Binford_2001_Table_8.07, +B121,,1900,B020,25,,howitt1891:79-87,Binford_2001_Table_8.07, +B122,,1870,B020,24,,schulze1891:236,Binford_2001_Table_8.07, +B123,,1922,B020,26,,tindaleperscomm1965; white1915:726-28,Binford_2001_Table_8.07, +B124,,,B020,NA,,,, +B125,,1880,B020,28,,parker1905:56,Binford_2001_Table_8.07, +B126,,,B020,NA,,,, +B127,,,B020,NA,,,, +B128,,,B020,NA,,,, +B129,,1840,B020,25,,cawthorne1844:76,Binford_2001_Table_8.07, +B13,,,B020,NA,,,, +B130,,,B020,NA,,,, +B131,,,B020,NA,,,, +B132,,1850,B020,30,,nind1831:38-39,Binford_2001_Table_8.07, +B133,,,B020,NA,,,, +B134,,,B020,NA,,,, +B135,,,B020,NA,,,, +B136,,,B020,NA,,,, +B137,,,B020,NA,,,, +B14,,1924,B020,15,"Note, for this society, Binford provided two estimates (15, 19); this entry is one of those estimates",vanoverbergh1925:425-26,Binford_2001_Table_8.07, +B14,,1924,B020,19,"Note, for this society, Binford provided two estimates (15, 19); this entry is one of those estimates",goodmanetal1985:171,Binford_2001_Table_8.07, +B143,,1900,B020,17,,gilg1965:51; kroeber1931:8,Binford_2001_Table_8.07, +B144,,1870,B020,17.5,,strong1929a:74,Binford_2001_Table_8.07, +B145,,1870,B020,17,,strong1929a:239,Binford_2001_Table_8.07, +B146,,1880,B020,18,,meigs1939:47-50,Binford_2001_Table_8.07, +B147,,1850,B020,17,,luomala1978:602,Binford_2001_Table_8.07, +B148,,1860,B020,13,,wallace1978b:455,Binford_2001_Table_8.07, +B149,,,B020,NA,,,, +B15,,1940,B020,16,,"furerhaimendorf1943b:134, 142",Binford_2001_Table_8.07, +B150,,,B020,NA,,,, +B151,,1860,B020,12.5,,gayton1948b:105,Binford_2001_Table_8.07, +B152,,1850,B020,20,,voegelin1938:43-44,Binford_2001_Table_8.07, +B153,,,B020,NA,,,, +B154,,1850,B020,15,,spier1978:479,Binford_2001_Table_8.07, +B155,,,B020,NA,,,, +B156,,,B020,NA,,,, +B157,,1870,B020,16,,gayton1948b:235,Binford_2001_Table_8.07, +B158,,1860,B020,22,,loeb1926b:277-79,Binford_2001_Table_8.07, +B159,,,B020,NA,,,, +B16,,1963,B020,15.5,,bernatzik1951:145-46,Binford_2001_Table_8.07, +B160,,,B020,NA,,,, +B161,,,B020,NA,,,, +B162,,,B020,NA,,,, +B163,,1850,B020,14.5,,faye1923:36,Binford_2001_Table_8.07, +B164,,,B020,NA,,,, +B165,,,B020,NA,,,, +B166,,,B020,NA,,,, +B167,,,B020,NA,,,, +B168,,,B020,NA,,,, +B169,,NA,B020,21,,nomland1938:100,Binford_2001_Table_8.07, +B17,,1963,B020,25,,"gardner1965:18, 100; gardner1972:421",Binford_2001_Table_8.07, +B170,,,B020,NA,,,, +B171,,1850,B020,18,,"foster1944:184, 185",Binford_2001_Table_8.07, +B172,,1860,B020,16.5,,driver1936:208,Binford_2001_Table_8.07, +B173,,1860,B020,32,,loeb1926b:280,Binford_2001_Table_8.07, +B174,,,B020,NA,,,, +B175,,,B020,NA,,,, +B176,,,B020,NA,,,, +B177,,,B020,NA,,,, +B178,,,B020,NA,,,, +B179,,,B020,NA,,,, +B18,,,B020,NA,,,, +B180,,1860,B020,17,,wallace1978a:173,Binford_2001_Table_8.07, +B181,,,B020,NA,,,, +B182,,,B020,NA,,,, +B183,,,B020,NA,,,, +B184,,,B020,NA,,,, +B185,,1850,B020,17.5,,dixon1905:370,Binford_2001_Table_8.07, +B186,,1850,B020,18,,heizerandmills1952:145,Binford_2001_Table_8.07, +B187,,,B020,NA,,,, +B188,,1860,B020,18,,"ray1963:83, 90",Binford_2001_Table_8.07, +B189,,,B020,NA,,,, +B19,,1946,B020,27,,"ehrenfels1952:66-68, 139-40",Binford_2001_Table_8.07, +B190,,,B020,NA,,,, +B191,,,B020,NA,,,, +B192,,1860,B020,20,,"smith1978a:439; steward1938:87-88, 91",Binford_2001_Table_8.07, +B193,,,B020,NA,,,, +B194,,,B020,NA,,,, +B195,,,B020,NA,,,, +B196,,1870,B020,17,,"corbusier1886:330; gifford1932a:191, 195",Binford_2001_Table_8.07, +B197,,,B020,NA,,,, +B198,,1870,B020,21,,"kroeber1935:141, 143",Binford_2001_Table_8.07, +B199,,,B020,NA,,,, +B2,,1968,B020,19.9,,"cadelina1982:72-74; warren1964:28, 76",Binford_2001_Table_8.07, +B20,,,B020,NA,,,, +B200,,,B020,NA,,,, +B201,,1860,B020,15,,kelly1964:100; kellyandfowler1986:377-80,Binford_2001_Table_8.07, +B202,,1870,B020,15,,lowie1909:210,Binford_2001_Table_8.07, +B203,,,B020,NA,,,, +B204,,1860,B020,19,,kelly1964:99-100; kellyandfowler1986:377,Binford_2001_Table_8.07, +B205,,,B020,NA,,,, +B206,,1860,B020,18,,fowlerandliljeblad1986:449; steward1938:58-59,Binford_2001_Table_8.07, +B207,,,B020,NA,,,, +B208,,,B020,NA,,,, +B209,,,B020,NA,,,, +B21,,,B020,NA,,,, +B210,,1870,B020,18,,"fowler1992:152, 155",Binford_2001_Table_8.07, +B211,,,B020,NA,,,, +B212,,,B020,NA,,,, +B213,,,B020,NA,,,, +B214,,,B020,NA,,,, +B215,,,B020,NA,,,, +B216,,,B020,NA,,,, +B217,,,B020,NA,,,, +B218,,,B020,NA,,,, +B219,,,B020,NA,,,, +B22,,1900,B020,18,"Note, for this society, Binford provided two estimates (18, 19.5); this entry is one of those estimates",hitchcock1891:465,Binford_2001_Table_8.07, +B22,,1900,B020,19.5,"Note, for this society, Binford provided two estimates (18, 19.5); this entry is one of those estimates",batchelor1927:196,Binford_2001_Table_8.07, +B221,,,B020,NA,,,, +B222,,,B020,NA,,,, +B223,,,B020,NA,,,, +B224,,,B020,NA,,,, +B225,,1850,B020,14.5,,dazevedo1963:109; price1962:8-9,Binford_2001_Table_8.07, +B226,,1870,B020,20,"Note, for this society, Binford provided two estimates (20, 18); this entry is one of those estimates","kelly1932:163, 164",Binford_2001_Table_8.07, +B226,,1870,B020,18,"Note, for this society, Binford provided two estimates (20, 18); this entry is one of those estimates",brink1969:70-72,Binford_2001_Table_8.07, +B227,,,B020,NA,,,, +B228,,,B020,NA,,,, +B229,,,B020,NA,,,, +B23,,1900,B020,16,,qiu1983:37,Binford_2001_Table_8.07, +B230,,,B020,NA,,,, +B231,,1870,B020,19,,whiting1950:100,Binford_2001_Table_8.07, +B232,,,B020,NA,,,, +B233,,,B020,NA,,,, +B234,,,B020,NA,,,, +B24,,,B020,NA,,,, +B240,,,B020,NA,,,, +B241,,1870,B020,27,,"wallaceandhoebel1952:126, 133, 142",Binford_2001_Table_8.07, +B242,,1880,B020,21,,"opler1937:201, 204",Binford_2001_Table_8.07, +B243,,1850,B020,16,"Note: estimate is said to be for ""1800s""",mishkin1940:55; newcomb1961:201,Binford_2001_Table_8.07, +B244,,,B020,NA,,,, +B245,,,B020,NA,,,, +B246,,1860,B020,27,,"eggan1937:61-62; hilger1952:193, 197, 198",Binford_2001_Table_8.07, +B248,,1870,B020,27,,denig1953:34,Binford_2001_Table_8.07, +B249,,,B020,NA,,,, +B25,,1920,B020,16,,"shternberg1933:165, 167",Binford_2001_Table_8.07, +B250,,1880,B020,20,,"turneyhigh1941:119, 130",Binford_2001_Table_8.07, +B252,,,B020,NA,,,, +B253,,1870,B020,20,,flannery1953:171,Binford_2001_Table_8.07, +B254,,,B020,NA,,,, +B255,,,B020,NA,,,, +B256,,1787,B020,23,"Note, for this society, Binford provided two estimates, the focal year for the first is 1787 (23), and for the second is 1875 (35); this entry is one of those estimates",lewis1973:40,Binford_2001_Table_8.07, +B256,,1875,B020,35,"Note, for this society, Binford provided two estimates, the focal year for the first is 1787 (23), and for the second is 1875 (35); this entry is one of those estimates",lewis1973:40,Binford_2001_Table_8.07, +B257,,1870,B020,23,,"denig1930:504, 511",Binford_2001_Table_8.07, +B258,,1850,B020,25,,mandelbaum1940:246,Binford_2001_Table_8.07, +B259,,,B020,NA,,,, +B26,,1900,B020,22,,"jochelson191926:79-85, 110-11",Binford_2001_Table_8.07, +B260,,1880,B020,16.5,,jenness1938:21-24,Binford_2001_Table_8.07, +B268,,,B020,NA,,,, +B269,,,B020,NA,,,, +B27,,,B020,NA,,,, +B270,,1870,B020,20,,"smith1940b:38-39, 166",Binford_2001_Table_8.07, +B271,,,B020,NA,,,, +B272,,,B020,NA,,,, +B273,,1880,B020,20,,"drucker1951:281, 284, 287, 297",Binford_2001_Table_8.07, +B274,,1850,B020,19,,"ray1938:63-67, 73",Binford_2001_Table_8.07, +B275,,,B020,NA,,,, +B276,,1860,B020,26,,teit1906b:264-65,Binford_2001_Table_8.07, +B277,,1880,B020,19,,stern1934:23-26,Binford_2001_Table_8.07, +B278,,,B020,NA,,,, +B279,,1880,B020,17,,"duff1952:52, 92",Binford_2001_Table_8.07, +B28,,1860,B020,23,,bogoras1904:30; moore1923:367,Binford_2001_Table_8.07, +B280,,1880,B020,17,,hilltout1904:319,Binford_2001_Table_8.07, +B281,,,B020,NA,,,, +B282,,1860,B020,17,,kennedyandbouchard1990:448,Binford_2001_Table_8.07, +B283,,,B020,NA,,,, +B284,,1880,B020,22,,pettitt1950:16,Binford_2001_Table_8.07, +B285,,,B020,NA,,,, +B286,,,B020,NA,,,, +B287,,,B020,NA,,,, +B288,,,B020,NA,,,, +B289,,,B020,NA,,,, +B290,,,B020,NA,,,, +B291,,1880,B020,14.5,,"mcilwraith1948:371-72, 379",Binford_2001_Table_8.07, +B292,,,B020,NA,,,, +B293,,,B020,NA,,,, +B294,,,B020,NA,,,, +B295,,,B020,NA,,,, +B296,,1850,B020,18,,nelson1899:292; oswalt1966:107,Binford_2001_Table_8.07, +B297,,,B020,NA,,,, +B298,,1830,B020,18,,lantis1984:179; mickey1955:15,Binford_2001_Table_8.07, +B299,,1930,B020,20,,"lantis1960:204-14, 233",Binford_2001_Table_8.07, +B3,,,B020,NA,,,, +B315,,1850,B020,20,,"murdock1980:130, 141",Binford_2001_Table_8.07, +B316,,,B020,NA,,,, +B317,,,B020,NA,,,, +B318,,,B020,NA,,,, +B319,,,B020,NA,,,, +B320,,,B020,NA,,,, +B321,,1880,B020,14.5,,clineetal1938:113,Binford_2001_Table_8.07, +B322,,,B020,NA,,,, +B323,,1870,B020,18,,ray1932:137,Binford_2001_Table_8.07, +B324,,1850,B020,14,,spinden1908:250,Binford_2001_Table_8.07, +B325,,1860,B020,24,,"teit1900:321, 326",Binford_2001_Table_8.07, +B326,,,B020,NA,,,, +B327,,1870,B020,19,,jenness1935:98,Binford_2001_Table_8.07, +B328,,1800,B020,15,,"kinietz1947:31-33, 128, 137",Binford_2001_Table_8.07, +B329,,1700,B020,25,,"speck1922:144; wallisandwallis1955:233, 237, 240",Binford_2001_Table_8.07, +B330,,1860,B020,21,,"teit1930:382; turneyhigh1937:86, 94",Binford_2001_Table_8.07, +B331,Emo,1880,B020,27,,hickerson1967:56; landes1937a:69-71,Binford_2001_Table_8.07, +B332,,1870,B020,21,,hallowell1938:240; hallowell1955:300; skinner1911:151,Binford_2001_Table_8.07, +B333,,1850,B020,23,,teit1900:324,Binford_2001_Table_8.07, +B334,,,B020,NA,,,, +B335,,1900,B020,21.7,,rogers1963a:B54,Binford_2001_Table_8.07, +B336,,,B020,NA,,,, +B337,,1800,B020,15,,cameron1890:265; grant1890:320,Binford_2001_Table_8.07, +B338,Note: estimate is for the year 1828,1828,B020,21,,lips1947a:419-54; rogers1963a,Binford_2001_Table_8.07, +B339,,,B020,NA,,,, +B340,,,B020,NA,,,, +B341,,,B020,NA,,,, +B342,,,B020,NA,,,, +B343,,,B020,NA,,,, +B344,Note: estimate is for the year 1880,1880,B020,14,,goddard1916:221; ives1985:156,Binford_2001_Table_8.07, +B345,,1860,B020,25,,"helm1961:48, 53, 72",Binford_2001_Table_8.07, +B346,,1920,B020,18,,honigmann1954:131,Binford_2001_Table_8.07, +B347,,1870,B020,19,,emmons1911:98; maclachlan1981:464,Binford_2001_Table_8.07, +B348,,1880,B020,17,,lane1981:405,Binford_2001_Table_8.07, +B349,,1880,B020,21,,jenness1937:524-25,Binford_2001_Table_8.07, +B35,,,B020,NA,,,, +B350,,,B020,NA,,,, +B351,,1880,B020,19,,crowandobley1981:509,Binford_2001_Table_8.07, +B352,,1860,B020,16,,savishinskyandhara1981:319; whiting1964:530,Binford_2001_Table_8.07, +B353,,1900,B020,19,,"honigmann1956b:61, 62",Binford_2001_Table_8.07, +B354,,1880,B020,19.5,,clark1975:174-75,Binford_2001_Table_8.07, +B355,,1880,B020,26,,smith1981:277-79,Binford_2001_Table_8.07, +B356,,1880,B020,16,,osgood1936:142; slobodin1981:524,Binford_2001_Table_8.07, +B357,,1880,B020,24,,"osgood1958:160; snow1981:609, 610",Binford_2001_Table_8.07, +B358,,1860,B020,24,,rushforth1977:119-21,Binford_2001_Table_8.07, +B359,,1930,B020,28,,mckennan1959:118,Binford_2001_Table_8.07, +B36,,,B020,NA,,,, +B360,,1900,B020,21,,morantz1983:87; skinner1911:151,Binford_2001_Table_8.07, +B361,Note: estimate is for the year 1807,1807,B020,18,,helm1972:74; keith1960:114,Binford_2001_Table_8.07, +B362,,1870,B020,30,,"osgood1937:161, 164; townsend1963:214; townsend1981:633",Binford_2001_Table_8.07, +B363,,1890,B020,25,,mcclellan1981:500,Binford_2001_Table_8.07, +B364,,1860,B020,24,,snow1981:615,Binford_2001_Table_8.07, +B365,,1890,B020,22,,tanner1944:685,Binford_2001_Table_8.07, +B369,,,B020,NA,,,, +B37,,1968,B020,12,,kloos1977:117,Binford_2001_Table_8.07, +B370,,1890,B020,24,,giddings1956:26; giddingsperscomm1963,Binford_2001_Table_8.07, +B371,,,B020,NA,,,, +B372,,1890,B020,24,,taylor1974:68-69,Binford_2001_Table_8.07, +B373,,,B020,NA,,,, +B374,Note: estimate is for the year 1922,1922,B020,19,,"arima1984:455; rasmussen1930:11-13, 22-23, 37-38",Binford_2001_Table_8.07, +B375,,1900,B020,25,,binford1969,Binford_2001_Table_8.07, +B377,,1950,B020,28,,binfordandchasko1976:73-77,Binford_2001_Table_8.07, +B378,,,B020,NA,,,, +B379,,1920,B020,23,,moore1923:367,Binford_2001_Table_8.07, +B38,,1989,B020,15,,gragson1989:123; petrullo1939:232,Binford_2001_Table_8.07, +B380,,,B020,NA,,,, +B381,,1920,B020,25,,damas1972:42; damas1984:401; rasmussen1932:78-85,Binford_2001_Table_8.07, +B382,,1920,B020,19,,rasmussen1931:85-90,Binford_2001_Table_8.07, +B383,,1880,B020,18,,mathiassen1928:15-17; vandeveldeetal1992:3,Binford_2001_Table_8.07, +B384,,,B020,NA,,,, +B385,,,B020,NA,,,, +B386,,,B020,NA,,,, +B387,,1880,B020,20,,"balikci1970:102, 156; rasmussen1931:85-90",Binford_2001_Table_8.07, +B388,,,B020,NA,,,, +B389,,1852,B020,17,,burch1975:102; simpson1875:254; spencer1959:250,Binford_2001_Table_8.07, +B39,,1960,B020,17,,"metzger1968:83, 85; wilbert1957:89",Binford_2001_Table_8.07, +B390,,1880,B020,25,,"gilberg1984:587; steensby1910:325, 369",Binford_2001_Table_8.07, +B4,,1989,B020,18,,"rizvi1990:20, 41",Binford_2001_Table_8.07, +B40,,1990,B020,17.5,,politisperscomm1993,Binford_2001_Table_8.07, +B41,,,B020,NA,,,, +B42,,1901,B020,16,,metraux1946guato:417,Binford_2001_Table_8.07, +B43,,1940,B020,15,,"holmberg1950:51, 82-83, 216",Binford_2001_Table_8.07, +B44,,,B020,NA,,,, +B45,,1938,B020,14.5,,levistrauss1948b:366; levistrauss1970:269; oberg1953:103-04,Binford_2001_Table_8.07, +B46,,,B020,NA,,,, +B47,,1975,B020,19,,clastres1968:19-23; metrauxandbaldus1946:442,Binford_2001_Table_8.07, +B48,,,B020,NA,,,, +B49,,,B020,NA,,,, +B5,,,B020,NA,,,, +B50,,1910,B020,19,,henry1964:45,Binford_2001_Table_8.07, +B51,,1870,B020,20,,cooper1946c:149,Binford_2001_Table_8.07, +B52,,,B020,NA,,,, +B53,,,B020,NA,,,, +B54,,1880,B020,19,"Note, for this society, Binford provided two estimates (19, 20); this entry is one of those estimates",chapman1982:58; cooper1946b:115,Binford_2001_Table_8.07, +B54,,1880,B020,20,"Note, for this society, Binford provided two estimates (19, 20); this entry is one of those estimates","gusinde1931:444, 479",Binford_2001_Table_8.07, +B55,,1870,B020,18,,cooper1946a:92,Binford_2001_Table_8.07, +B6,,,B020,NA,,,, +B60,,,B020,NA,,,, +B61,,,B020,NA,,,, +B62,,,B020,NA,,,, +B63,,1980,B020,18,,cavallisforza1986a:37,Binford_2001_Table_8.07, +B64,,1980,B020,18,,baileyandpeacock1988:59; schebesta1962a:244,Binford_2001_Table_8.07, +B65,,1930,B020,17,,harako1976:46-47; putnam1948:336,Binford_2001_Table_8.07, +B66,,,B020,NA,,,, +B67,,,B020,NA,,,, +B68,,1920,B020,20,,fourie1928:92,Binford_2001_Table_8.07, +B69,,1910,B020,20,,bleek1931a:427; oconnellperscomm1982,Binford_2001_Table_8.07, +B7,,1903,B020,14,,"reed1904:57, 60",Binford_2001_Table_8.07, +B70,,1920,B020,23,,blackburn1971:266,Binford_2001_Table_8.07, +B71,,,B020,NA,,,, +B72,Nyae Nyae !Kung,1955,B020,19.5,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (19.5), the second to Dobe !Kung in the 1960s (25), and the third to the Southern Auen !Kung (17); this entry is one of those estimates. For this entry, focal time was given as ""1950s""","marshall1959:336, 350",Binford_2001_Table_8.07, +B72,Dobe !Kung,1965,B020,25,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (19.5), the second to Dobe !Kung in the 1960s (25), and the third to the Southern Auen !Kung (17); this entry is one of those estimates. For this entry, focal time was given as ""1960s""",howell1979:243-44; lee1972a:358,Binford_2001_Table_8.07, +B72,Southern Auen !Kung,1950,B020,17,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (19.5), the second to Dobe !Kung in the 1960s (25), and the third to the Southern Auen !Kung (17); this entry is one of those estimates. For this entry, Focal time not specified, assumed to be 1950, as for data in other tables",kaufmann1910:156; schapera1930:104,Binford_2001_Table_8.07, +B73,,1910,B020,19,,bleek1928:33-34; schapera1930:104,Binford_2001_Table_8.07, +B74,,1962,B020,15,,"silberbauer1981a:149, 155",Binford_2001_Table_8.07, +B75,,,B020,NA,,,, +B76,,,B020,NA,,,, +B77,,1920,B020,18,,dart1937b,Binford_2001_Table_8.07, +B78,,,B020,NA,,,, +B79,,,B020,NA,,,, +B8,,1870,B020,20,,man1883:81; whiting1964:529,Binford_2001_Table_8.07, +B82,,1848,B020,23,,moore1979:146,Binford_2001_Table_8.07, +B83,,,B020,NA,,,, +B84,,1978,B020,33,,berndtandberndt1970:95; petersonandlong1986:137,Binford_2001_Table_8.07, +B85,,,B020,NA,,,, +B86,,1973,B020,25,,petersonandlong1986:137,Binford_2001_Table_8.07, +B87,,1950,B020,25,,"hiatt1965:36, 77",Binford_2001_Table_8.07, +B88,,1930,B020,29,,long1970:303; petersonandlong1986:154,Binford_2001_Table_8.07, +B89,,1920,B020,26,,kaberry1939:420,Binford_2001_Table_8.07, +B9,,1920,B020,19,,"evans1937:250; schebesta1962a:220, 239; whiting1964:529",Binford_2001_Table_8.07, +B90,,,B020,NA,,,, +B91,,,B020,NA,,,, +B92,,,B020,NA,,,, +B93,,1930,B020,22,,thomson1933:509,Binford_2001_Table_8.07, +B94,,1937,B020,30,,petersonandlong1986:95-99; sharp1934:427; sharp1940:490,Binford_2001_Table_8.07, +B95,,1920,B020,35,,"goodale1962:455; hart1970:296; hartandpilling1960:16, 36, 66; petersonandlong1986:137",Binford_2001_Table_8.07, +B96,,,B020,NA,,,, +B97,,1930,B020,33,,"rose1960:12, 69, 248",Binford_2001_Table_8.07, +B98,,,B020,NA,,,, +B99,,1900,B020,28,,stanner1933:391,Binford_2001_Table_8.07, +B1,,,B021,NA,,,, +B10,,1900,B021,14,,"spittel1945:8, 65",Binford_2001_Table_8.07, +B100,,NA,B021,11,,love1917:21; love1936:36,Binford_2001_Table_8.07, +B101,,1934,B021,13,,kaberry1939:113-15,Binford_2001_Table_8.07, +B102,,,B021,NA,,,, +B103,,1928,B021,14,,tindale1962b:319-21,Binford_2001_Table_8.07, +B104,,,B021,NA,,,, +B105,,1900,B021,10,,roth1909:12,Binford_2001_Table_8.07, +B106,,1910,B021,13,,clement1903:13; radcliffebrown1912:158,Binford_2001_Table_8.07, +B107,,1870,B021,9.5,,"lumholtz1889:179, 201",Binford_2001_Table_8.07, +B108,,1934,B021,11,,kaberry1939:114,Binford_2001_Table_8.07, +B109,,1965,B021,11,,meggitt1962:77-79,Binford_2001_Table_8.07, +B11,,1972,B021,9,,"morris1982a:150, 250",Binford_2001_Table_8.07, +B110,,1880,B021,13.5,,tonkinson1978:67,Binford_2001_Table_8.07, +B111,,1960,B021,16,,harris1978:128,Binford_2001_Table_8.07, +B112,,,B021,NA,,,, +B113,,1936,B021,12,,haydenperscomm1990; haydenperscomm1992; long1970:296-97,Binford_2001_Table_8.07, +B114,,,B021,NA,,,, +B115,,1840,B021,14,,winterbotham1980:34,Binford_2001_Table_8.07, +B116,,,B021,NA,,,, +B117,,1965,B021,13,,denham1975:137-38,Binford_2001_Table_8.07, +B118,,1968,B021,15,,gould1969:184,Binford_2001_Table_8.07, +B119,,1850,B021,12.5,,debertrodano1978:283,Binford_2001_Table_8.07, +B12,,1965,B021,18.4,,"headland1986:146, 366-67",Binford_2001_Table_8.07, +B120,,1968,B021,16,,"long1970:299; tindale1972:259, 260; yengoyan1970:89",Binford_2001_Table_8.07, +B121,,1900,B021,13,,howitt1891:79-87,Binford_2001_Table_8.07, +B122,,1870,B021,8,,schulze1891:236,Binford_2001_Table_8.07, +B123,,1922,B021,12,,tindaleperscomm1965; white1915:726-28,Binford_2001_Table_8.07, +B124,,1900,B021,14,,"long1970:293; spencerandgillen1927:70-71, 472",Binford_2001_Table_8.07, +B125,,1880,B021,13.5,,parker1905:56,Binford_2001_Table_8.07, +B126,,,B021,NA,,,, +B127,,1941,B021,15,,berndtandberndt1944:232; long1970:298,Binford_2001_Table_8.07, +B128,,,B021,NA,,,, +B129,,1840,B021,12,,cawthorne1844:76,Binford_2001_Table_8.07, +B13,,,B021,NA,,,, +B130,,,B021,NA,,,, +B131,,,B021,NA,,,, +B132,,1850,B021,11.5,,nind1831:38-39,Binford_2001_Table_8.07, +B133,,,B021,NA,,,, +B134,,,B021,NA,,,, +B135,,,B021,NA,,,, +B136,,,B021,NA,,,, +B137,,,B021,NA,,,, +B14,,1924,B021,13,"Note, for this society, Binford provided two estimates (13, 17); this entry is one of those estimates",vanoverbergh1925:425-26,Binford_2001_Table_8.07, +B14,,1924,B021,17,"Note, for this society, Binford provided two estimates (13, 17); this entry is one of those estimates",goodmanetal1985:171,Binford_2001_Table_8.07, +B143,,,B021,NA,,,, +B144,,1870,B021,12.5,,strong1929a:74,Binford_2001_Table_8.07, +B145,,1870,B021,13,,strong1929a:239,Binford_2001_Table_8.07, +B146,,1880,B021,14,,meigs1939:47-50,Binford_2001_Table_8.07, +B147,,1850,B021,14,,luomala1978:602,Binford_2001_Table_8.07, +B148,,1860,B021,11,,wallace1978b:455,Binford_2001_Table_8.07, +B149,,1870,B021,14.5,,benedict1924:371-74,Binford_2001_Table_8.07, +B15,,1940,B021,14,,"furerhaimendorf1943b:134, 142",Binford_2001_Table_8.07, +B150,,1860,B021,14,,"sparkman1908:214, 225",Binford_2001_Table_8.07, +B151,,1860,B021,11,,gayton1948b:105,Binford_2001_Table_8.07, +B152,,1850,B021,16,,voegelin1938:43-44,Binford_2001_Table_8.07, +B153,,,B021,NA,,,, +B154,,1850,B021,13.5,,spier1978:479,Binford_2001_Table_8.07, +B155,,,B021,NA,,,, +B156,,,B021,NA,,,, +B157,,1870,B021,14,,gayton1948b:235,Binford_2001_Table_8.07, +B158,,1860,B021,20,,loeb1926b:277-79,Binford_2001_Table_8.07, +B159,,,B021,NA,,,, +B16,,1963,B021,13,,bernatzik1951:145-46,Binford_2001_Table_8.07, +B160,,,B021,NA,,,, +B161,,,B021,NA,,,, +B162,,,B021,NA,,,, +B163,,1850,B021,14.5,,faye1923:36,Binford_2001_Table_8.07, +B164,,,B021,NA,,,, +B165,,,B021,NA,,,, +B166,,,B021,NA,,,, +B167,,,B021,NA,,,, +B168,,,B021,NA,,,, +B169,,NA,B021,18,,nomland1938:100,Binford_2001_Table_8.07, +B17,,1963,B021,11,,"gardner1965:18, 100; gardner1972:421",Binford_2001_Table_8.07, +B170,,,B021,NA,,,, +B171,,1850,B021,15,,"foster1944:184, 185",Binford_2001_Table_8.07, +B172,,1860,B021,13.5,,driver1936:208,Binford_2001_Table_8.07, +B173,,1860,B021,20,,loeb1926b:280,Binford_2001_Table_8.07, +B174,,,B021,NA,,,, +B175,,,B021,NA,,,, +B176,,,B021,NA,,,, +B177,,,B021,NA,,,, +B178,,,B021,NA,,,, +B179,,1860,B021,15,,dixon1907:462,Binford_2001_Table_8.07, +B18,,,B021,NA,,,, +B180,,1860,B021,15.5,,wallace1978a:173,Binford_2001_Table_8.07, +B181,,,B021,NA,,,, +B182,,,B021,NA,,,, +B183,,,B021,NA,,,, +B184,,,B021,NA,,,, +B185,,1850,B021,15.5,,dixon1905:370,Binford_2001_Table_8.07, +B186,,1850,B021,14.5,,heizerandmills1952:145,Binford_2001_Table_8.07, +B187,,,B021,NA,,,, +B188,,1860,B021,15,,"ray1963:83, 90",Binford_2001_Table_8.07, +B189,,1860,B021,14.5,,"spier1930:45, 52-54",Binford_2001_Table_8.07, +B19,,1946,B021,16,,"ehrenfels1952:66-68, 139-40",Binford_2001_Table_8.07, +B190,,1760,B021,12,,baegert1863:367-68,Binford_2001_Table_8.07, +B191,,,B021,NA,,,, +B192,,1860,B021,18,,"smith1978a:439; steward1938:87-88, 91",Binford_2001_Table_8.07, +B193,,,B021,NA,,,, +B194,,,B021,NA,,,, +B195,,,B021,NA,,,, +B196,,1870,B021,14.5,,"corbusier1886:330; gifford1932a:191, 195",Binford_2001_Table_8.07, +B197,,,B021,NA,,,, +B198,,1870,B021,18.5,,"kroeber1935:141, 143",Binford_2001_Table_8.07, +B199,,,B021,NA,,,, +B2,,1968,B021,15.1,,"cadelina1982:72-74; warren1964:28, 76",Binford_2001_Table_8.07, +B20,,,B021,NA,,,, +B200,,,B021,NA,,,, +B201,,1860,B021,12,,kelly1964:100; kellyandfowler1986:377-80,Binford_2001_Table_8.07, +B202,,1870,B021,12,"Note, for this society, Binford provided two estimates (12, 13); this entry is one of those estimates",lowie1909:210,Binford_2001_Table_8.07, +B202,,1870,B021,13,"Note, for this society, Binford provided two estimates (12, 13); this entry is one of those estimates",steward1933:295,Binford_2001_Table_8.07, +B203,,,B021,NA,,,, +B204,,1860,B021,15.5,,kelly1964:99-100; kellyandfowler1986:377,Binford_2001_Table_8.07, +B205,,,B021,NA,,,, +B206,,1860,B021,15,,fowlerandliljeblad1986:449; steward1938:58-59,Binford_2001_Table_8.07, +B207,,,B021,NA,,,, +B208,,,B021,NA,,,, +B209,,,B021,NA,,,, +B21,,1978,B021,14,,birddavid1987:157,Binford_2001_Table_8.07, +B210,,1870,B021,16,,"fowler1992:152, 155",Binford_2001_Table_8.07, +B211,,,B021,NA,,,, +B212,,,B021,NA,,,, +B213,,,B021,NA,,,, +B214,,,B021,NA,,,, +B215,,,B021,NA,,,, +B216,,,B021,NA,,,, +B217,,,B021,NA,,,, +B218,,,B021,NA,,,, +B219,,,B021,NA,,,, +B22,,1900,B021,16,"Note, first of two estimates provided by Binford for this society (16, 16)",hitchcock1891:465,Binford_2001_Table_8.07, +B22,,1900,B021,16,"Note, second of two estimates provided by Binford for this society (16, 16)",batchelor1927:196,Binford_2001_Table_8.07, +B221,,,B021,NA,,,, +B222,,,B021,NA,,,, +B223,,,B021,NA,,,, +B224,,,B021,NA,,,, +B225,,1850,B021,13,,dazevedo1963:109; price1962:8-9,Binford_2001_Table_8.07, +B226,,1870,B021,13.5,"Note, for this society, Binford provided two estimates (13.5, 15); this entry is one of those estimates","kelly1932:163, 164",Binford_2001_Table_8.07, +B226,,1870,B021,15,"Note, for this society, Binford provided two estimates (13.5, 15); this entry is one of those estimates",brink1969:70-72,Binford_2001_Table_8.07, +B227,,1860,B021,17.5,,lowie1924:227,Binford_2001_Table_8.07, +B228,,,B021,NA,,,, +B229,,,B021,NA,,,, +B23,,1900,B021,13,,qiu1983:37,Binford_2001_Table_8.07, +B230,,1860,B021,15.5,,stewart1941:296,Binford_2001_Table_8.07, +B231,,1870,B021,16.5,,whiting1950:100,Binford_2001_Table_8.07, +B232,,1860,B021,14,,steward1938:195,Binford_2001_Table_8.07, +B233,,,B021,NA,,,, +B234,,,B021,NA,,,, +B24,,1900,B021,14.5,,lee1967:52; shimkin1939:155,Binford_2001_Table_8.07, +B240,,,B021,NA,,,, +B241,,1870,B021,16,,"wallaceandhoebel1952:126, 133, 142",Binford_2001_Table_8.07, +B242,,1880,B021,18.5,,"opler1937:201, 204",Binford_2001_Table_8.07, +B243,,1850,B021,14,"Note: estimate is said to be for ""1800s""",mishkin1940:55; newcomb1961:201,Binford_2001_Table_8.07, +B244,,,B021,NA,,,, +B245,,,B021,NA,,,, +B246,,1860,B021,15,,"eggan1937:61-62; hilger1952:193, 197, 198",Binford_2001_Table_8.07, +B248,,1870,B021,16,,denig1953:34,Binford_2001_Table_8.07, +B249,,,B021,NA,,,, +B25,,1920,B021,5,,"shternberg1933:165, 167",Binford_2001_Table_8.07, +B250,,1880,B021,16,,"turneyhigh1941:119, 130",Binford_2001_Table_8.07, +B252,,,B021,NA,,,, +B253,,1870,B021,10.5,,flannery1953:171,Binford_2001_Table_8.07, +B254,,,B021,NA,,,, +B255,,,B021,NA,,,, +B256,,1875,B021,13,"Note, the focal year for this estimate is 1875",lewis1973:40,Binford_2001_Table_8.07, +B257,,1870,B021,14,,"denig1930:504, 511",Binford_2001_Table_8.07, +B258,,1850,B021,17.5,,mandelbaum1940:246,Binford_2001_Table_8.07, +B259,,,B021,NA,,,, +B26,,1900,B021,16,,"jochelson191926:79-85, 110-11",Binford_2001_Table_8.07, +B260,,1880,B021,14,,jenness1938:21-24,Binford_2001_Table_8.07, +B268,,,B021,NA,,,, +B269,,,B021,NA,,,, +B27,,,B021,NA,,,, +B270,,1870,B021,14,,"smith1940b:38-39, 166",Binford_2001_Table_8.07, +B271,,,B021,NA,,,, +B272,,,B021,NA,,,, +B273,,1880,B021,16,,"drucker1951:281, 284, 287, 297",Binford_2001_Table_8.07, +B274,,1850,B021,15,,"ray1938:63-67, 73",Binford_2001_Table_8.07, +B275,,,B021,NA,,,, +B276,,1860,B021,17,,teit1906b:264-65,Binford_2001_Table_8.07, +B277,,1880,B021,15,,stern1934:23-26,Binford_2001_Table_8.07, +B278,,,B021,NA,,,, +B279,,1880,B021,14,,"duff1952:52, 92",Binford_2001_Table_8.07, +B28,,1860,B021,15,,bogoras1904:30; moore1923:367,Binford_2001_Table_8.07, +B280,,1880,B021,15,,hilltout1904:319,Binford_2001_Table_8.07, +B281,,,B021,NA,,,, +B282,,1860,B021,14,,kennedyandbouchard1990:448,Binford_2001_Table_8.07, +B283,,,B021,NA,,,, +B284,,1880,B021,17,,pettitt1950:16,Binford_2001_Table_8.07, +B285,,,B021,NA,,,, +B286,,1860,B021,15,,"swan1870:12, 13",Binford_2001_Table_8.07, +B287,,,B021,NA,,,, +B288,,,B021,NA,,,, +B289,,,B021,NA,,,, +B290,,,B021,NA,,,, +B291,,1880,B021,16,,"mcilwraith1948:371-72, 379",Binford_2001_Table_8.07, +B292,,,B021,NA,,,, +B293,,,B021,NA,,,, +B294,,1840,B021,14,,holmberg1985:53,Binford_2001_Table_8.07, +B295,,1890,B021,13,,birketsmithanddelaguna1938:133,Binford_2001_Table_8.07, +B296,,,B021,NA,,,, +B297,,,B021,NA,,,, +B298,,1830,B021,13,,lantis1984:179; mickey1955:15,Binford_2001_Table_8.07, +B299,,1930,B021,12,,"lantis1960:204-14, 233",Binford_2001_Table_8.07, +B3,,,B021,NA,,,, +B315,,1850,B021,16.5,,"murdock1980:130, 141",Binford_2001_Table_8.07, +B316,,,B021,NA,,,, +B317,,,B021,NA,,,, +B318,,,B021,NA,,,, +B319,,1860,B021,14.5,,"spierandsapir1930:22, 171, 218",Binford_2001_Table_8.07, +B320,,1860,B021,14.5,,teit1930:170,Binford_2001_Table_8.07, +B321,,1880,B021,14.5,,clineetal1938:113,Binford_2001_Table_8.07, +B322,,,B021,NA,,,, +B323,,1870,B021,15,,ray1932:137,Binford_2001_Table_8.07, +B324,,1850,B021,12,,spinden1908:250,Binford_2001_Table_8.07, +B325,,1860,B021,20,,"teit1900:321, 326",Binford_2001_Table_8.07, +B326,,,B021,NA,,,, +B327,,1870,B021,16,,jenness1935:98,Binford_2001_Table_8.07, +B328,,1800,B021,12.5,,"kinietz1947:31-33, 128, 137",Binford_2001_Table_8.07, +B329,,1700,B021,16,,"speck1922:144; wallisandwallis1955:233, 237, 240",Binford_2001_Table_8.07, +B330,,1860,B021,17,,"teit1930:382; turneyhigh1937:86, 94",Binford_2001_Table_8.07, +B331,Emo,1880,B021,22,,hickerson1967:56; landes1937a:69-71,Binford_2001_Table_8.07, +B332,,1870,B021,13,,hallowell1938:240; hallowell1955:300; skinner1911:151,Binford_2001_Table_8.07, +B333,,1850,B021,17.5,,teit1900:324,Binford_2001_Table_8.07, +B334,,,B021,NA,,,, +B335,,1900,B021,16.7,,rogers1963a:B54,Binford_2001_Table_8.07, +B336,,,B021,NA,,,, +B337,,1800,B021,6.5,,cameron1890:265; grant1890:320,Binford_2001_Table_8.07, +B338,,1828,B021,18,Note: estimate is for the year 1828,lips1947a:419-54; rogers1963a,Binford_2001_Table_8.07, +B339,,,B021,NA,,,, +B340,,,B021,NA,,,, +B341,,,B021,NA,,,, +B342,,,B021,NA,,,, +B343,,,B021,NA,,,, +B344,,1880,B021,11,Note: estimate is for the year 1828,goddard1916:221; ives1985:156,Binford_2001_Table_8.07, +B345,,1860,B021,17.5,,"helm1961:48, 53, 72",Binford_2001_Table_8.07, +B346,,1920,B021,16,,honigmann1954:131,Binford_2001_Table_8.07, +B347,,1870,B021,15,,emmons1911:98; maclachlan1981:464,Binford_2001_Table_8.07, +B348,,1880,B021,16,,lane1981:405,Binford_2001_Table_8.07, +B349,,1880,B021,17.5,,jenness1937:524-25,Binford_2001_Table_8.07, +B35,,,B021,NA,,,, +B350,,,B021,NA,,,, +B351,,1880,B021,14,,crowandobley1981:509,Binford_2001_Table_8.07, +B352,,1860,B021,13,,savishinskyandhara1981:319; whiting1964:530,Binford_2001_Table_8.07, +B353,,1900,B021,16.5,,"honigmann1956b:61, 62",Binford_2001_Table_8.07, +B354,,1880,B021,14.5,,clark1975:174-75,Binford_2001_Table_8.07, +B355,,1880,B021,12,,smith1981:277-79,Binford_2001_Table_8.07, +B356,,1880,B021,15,,osgood1936:142; slobodin1981:524,Binford_2001_Table_8.07, +B357,,1880,B021,15,,"osgood1958:160; snow1981:609, 610",Binford_2001_Table_8.07, +B358,,1860,B021,10,,rushforth1977:119-21,Binford_2001_Table_8.07, +B359,,1930,B021,14,,mckennan1959:118,Binford_2001_Table_8.07, +B36,,,B021,NA,,,, +B360,,1900,B021,14,,morantz1983:87; skinner1911:151,Binford_2001_Table_8.07, +B361,,1807,B021,12,Note: estimate is for the year 1828,helm1972:74; keith1960:114,Binford_2001_Table_8.07, +B362,,1870,B021,16.5,,"osgood1937:161, 164; townsend1963:214; townsend1981:633",Binford_2001_Table_8.07, +B363,,1890,B021,16,,mcclellan1981:500,Binford_2001_Table_8.07, +B364,,1860,B021,14.5,,snow1981:615,Binford_2001_Table_8.07, +B365,,1890,B021,15,,tanner1944:685,Binford_2001_Table_8.07, +B369,,1870,B021,13,,ray1992:286,Binford_2001_Table_8.07, +B37,,1968,B021,9,,kloos1977:117,Binford_2001_Table_8.07, +B370,,1890,B021,15,,giddings1956:26; giddingsperscomm1963,Binford_2001_Table_8.07, +B371,,,B021,NA,,,, +B372,,1890,B021,13,,taylor1974:68-69,Binford_2001_Table_8.07, +B373,,,B021,NA,,,, +B374,,1922,B021,14.5,Note: estimate is for the year 1922,"arima1984:455; rasmussen1930:11-13, 22-23, 37-38",Binford_2001_Table_8.07, +B375,,1900,B021,16,,binford1969,Binford_2001_Table_8.07, +B377,,1950,B021,15,,binfordandchasko1976:73-77,Binford_2001_Table_8.07, +B378,,,B021,NA,,,, +B379,,1920,B021,15,,moore1923:367,Binford_2001_Table_8.07, +B38,,1989,B021,13,,gragson1989:123; petrullo1939:232,Binford_2001_Table_8.07, +B380,,,B021,NA,,,, +B381,,1920,B021,13,,damas1972:42; damas1984:401; rasmussen1932:78-85,Binford_2001_Table_8.07, +B382,,1920,B021,14,,rasmussen1931:85-90,Binford_2001_Table_8.07, +B383,,1880,B021,12.5,,mathiassen1928:15-17; vandeveldeetal1992:3,Binford_2001_Table_8.07, +B384,,,B021,NA,,,, +B385,,,B021,NA,,,, +B386,,,B021,NA,,,, +B387,,1880,B021,14,,"balikci1970:102, 156; rasmussen1931:85-90",Binford_2001_Table_8.07, +B388,,,B021,NA,,,, +B389,,1852,B021,14.5,,burch1975:102; simpson1875:254; spencer1959:250,Binford_2001_Table_8.07, +B389,,1852,B021,15.5,,burch1975:102; simpson1875:254; spencer1959:250,Binford_2001_Table_8.07, +B39,,1960,B021,13,,"metzger1968:83, 85; wilbert1957:89",Binford_2001_Table_8.07, +B390,,1880,B021,14,,"gilberg1984:587; steensby1910:325, 369",Binford_2001_Table_8.07, +B4,,1989,B021,15,,"rizvi1990:20, 41",Binford_2001_Table_8.07, +B40,,1990,B021,12,,politisperscomm1993,Binford_2001_Table_8.07, +B41,,1920,B021,11,,cook1908:387; levistrauss1936:276,Binford_2001_Table_8.07, +B42,,1901,B021,14,,metraux1946guato:417,Binford_2001_Table_8.07, +B43,,1940,B021,12.5,,"holmberg1950:51, 82-83, 216",Binford_2001_Table_8.07, +B44,,,B021,NA,,,, +B45,,1938,B021,13,,levistrauss1948b:366; levistrauss1970:269; oberg1953:103-04,Binford_2001_Table_8.07, +B46,,,B021,NA,,,, +B47,,1975,B021,10,,clastres1968:19-23; metrauxandbaldus1946:442,Binford_2001_Table_8.07, +B48,,1880,B021,13,,metraux1946botocudo:537,Binford_2001_Table_8.07, +B49,,,B021,NA,,,, +B5,,,B021,NA,,,, +B50,,1910,B021,9,,henry1964:45,Binford_2001_Table_8.07, +B51,,1870,B021,15,,cooper1946c:149,Binford_2001_Table_8.07, +B52,,,B021,NA,,,, +B53,,,B021,NA,,,, +B54,,1880,B021,17,"Note, first of two estimates provided by Binford for this society (17, 17)",chapman1982:58; cooper1946b:115,Binford_2001_Table_8.07, +B54,,1880,B021,17,"Note, second of two estimates provided by Binford for this society (17, 17)","gusinde1931:444, 479",Binford_2001_Table_8.07, +B55,,1870,B021,15.5,,cooper1946a:92,Binford_2001_Table_8.07, +B6,,,B021,NA,,,, +B60,,,B021,NA,,,, +B61,,,B021,NA,,,, +B62,,,B021,NA,,,, +B63,,1980,B021,16,,cavallisforza1986a:37,Binford_2001_Table_8.07, +B64,,1980,B021,15,,baileyandpeacock1988:59; schebesta1962a:244,Binford_2001_Table_8.07, +B65,,1930,B021,14.5,,harako1976:46-47; putnam1948:336,Binford_2001_Table_8.07, +B66,,,B021,NA,,,, +B67,,,B021,NA,,,, +B68,,1920,B021,15,,fourie1928:92,Binford_2001_Table_8.07, +B69,,1910,B021,16,,bleek1931a:427; oconnellperscomm1982,Binford_2001_Table_8.07, +B7,,1903,B021,12,,"reed1904:57, 60",Binford_2001_Table_8.07, +B70,,1920,B021,15,,blackburn1971:266,Binford_2001_Table_8.07, +B71,,,B021,NA,,,, +B72,Nyae Nyae !Kung,1955,B021,13.5,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (13.5), the second to Dobe !Kung in the 1960s (17), and the third to the Southern Auen !Kung (14.5); this entry is one of those estimates. For this entry, focal time was given as ""1950s""","marshall1959:336, 350",Binford_2001_Table_8.07, +B72,Dobe !Kung,1965,B021,17,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (13.5), the second to Dobe !Kung in the 1960s (17), and the third to the Southern Auen !Kung (14.5); this entry is one of those estimates. For this entry, focal time was given as ""1960s""",howell1979:243-44; lee1972a:358,Binford_2001_Table_8.07, +B72,Southern Auen !Kung,1950,B021,14.5,"Note, for this society, Binford provided three estimates, the first refers specifically to Nyae Nyae !Kung in the 1950s (13.5), the second to Dobe !Kung in the 1960s (17), and the third to the Southern Auen !Kung (14.5); this entry is one of those estimates. For this entry, Focal time not specified, assumed to be 1950, as for data in other tables",kaufmann1910:156; schapera1930:104,Binford_2001_Table_8.07, +B73,,1910,B021,17,,bleek1928:33-34; schapera1930:104,Binford_2001_Table_8.07, +B74,,1962,B021,8,,"silberbauer1981a:149, 155",Binford_2001_Table_8.07, +B75,,,B021,NA,,,, +B76,,,B021,NA,,,, +B77,,1920,B021,14,,dart1937b,Binford_2001_Table_8.07, +B78,,,B021,NA,,,, +B79,,,B021,NA,,,, +B8,,1870,B021,18,,man1883:81; whiting1964:529,Binford_2001_Table_8.07, +B82,,1848,B021,21,,moore1979:146,Binford_2001_Table_8.07, +B83,,1900,B021,13,,basedow1907:14,Binford_2001_Table_8.07, +B84,,1978,B021,14,,berndtandberndt1970:95; petersonandlong1986:137,Binford_2001_Table_8.07, +B85,,,B021,NA,,,, +B86,,1973,B021,13.5,,petersonandlong1986:137,Binford_2001_Table_8.07, +B87,,1950,B021,13,,"hiatt1965:36, 77",Binford_2001_Table_8.07, +B88,,1930,B021,11,,long1970:303; petersonandlong1986:154,Binford_2001_Table_8.07, +B89,,1920,B021,14.5,,kaberry1939:420,Binford_2001_Table_8.07, +B9,,1920,B021,14.5,,"evans1937:250; schebesta1962a:220, 239; whiting1964:529",Binford_2001_Table_8.07, +B90,,,B021,NA,,,, +B91,,,B021,NA,,,, +B92,,,B021,NA,,,, +B93,,1930,B021,9,,thomson1933:509,Binford_2001_Table_8.07, +B94,,1937,B021,13,,petersonandlong1986:95-99; sharp1934:427; sharp1940:490,Binford_2001_Table_8.07, +B95,,1920,B021,9,,"goodale1962:455; hart1970:296; hartandpilling1960:16, 36, 66; petersonandlong1986:137",Binford_2001_Table_8.07, +B96,refers specifically to Yalandji,1880,B021,13,,roth1909:5,Binford_2001_Table_8.07, +B97,,1930,B021,9,,"rose1960:12, 69, 248",Binford_2001_Table_8.07, +B98,,1926,B021,13,,roth1909:4,Binford_2001_Table_8.07, +B99,,1900,B021,13,,stanner1933:391,Binford_2001_Table_8.07, +B1,,,B022,NA,,,, +B10,,1900,B022,3.312,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,,B022,NA,,,, +B101,,,B022,NA,,,, +B102,,,B022,NA,,,, +B103,,,B022,NA,,,, +B104,,,B022,NA,,,, +B105,,,B022,NA,,,, +B106,,,B022,NA,,,, +B107,,,B022,NA,,,, +B108,,,B022,NA,,,, +B109,,1965,B022,2.33,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B022,2.161,,morris1982a,Binford_2001_Table_9.01, +B110,,,B022,NA,,,, +B111,,1960,B022,1.94,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,,B022,NA,,,, +B113,,1936,B022,1.96,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,,B022,NA,,,, +B115,,,B022,NA,,,, +B116,,,B022,NA,,,, +B117,,1965,B022,3.16,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B022,2.46,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,,B022,NA,,,, +B12,,1965,B022,3.931,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B022,1.74,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,,B022,NA,,,, +B122,,,B022,NA,,,, +B123,,,B022,NA,,,, +B124,,,B022,NA,,,, +B125,,,B022,NA,,,, +B126,,,B022,NA,,,, +B127,,,B022,NA,,,, +B128,,,B022,NA,,,, +B129,,,B022,NA,,,, +B13,,1979,B022,2.921,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,,B022,NA,,,, +B131,,,B022,NA,,,, +B132,,1850,B022,1.95,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B022,5,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B022,1.46,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,,B022,NA,,,, +B136,,1830,B022,1.09,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B022,0.88,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B022,3.171,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B022,2.62,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B022,2.15,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,,B022,NA,,,, +B146,,,B022,NA,,,, +B147,,,B022,NA,,,, +B148,,,B022,NA,,,, +B149,,,B022,NA,,,, +B15,,1940,B022,4.852,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,,B022,NA,,,, +B151,,,B022,NA,,,, +B152,,1850,B022,1.43,,voegelin1938,Binford_2001_Table_9.01, +B153,,,B022,NA,,,, +B154,,1850,B022,2.49,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,,B022,NA,,,, +B156,,,B022,NA,,,, +B157,,1870,B022,2.52,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,,B022,NA,,,, +B159,,,B022,NA,,,, +B16,,1963,B022,3.222,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B022,5,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,,B022,NA,,,, +B162,,,B022,NA,,,, +B163,,1850,B022,3.05,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,,B022,NA,,,, +B165,,,B022,NA,,,, +B166,,,B022,NA,,,, +B167,,,B022,NA,,,, +B168,,,B022,NA,,,, +B169,,,B022,NA,,,, +B17,,1963,B022,4.232,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,,B022,NA,,,, +B171,,,B022,NA,,,, +B172,,,B022,NA,,,, +B173,,,B022,NA,,,, +B174,,,B022,NA,,,, +B175,,1850,B022,3.74,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B022,2.16,,gray1987,Binford_2001_Table_9.01, +B177,,,B022,NA,,,, +B178,,1870,B022,2.25,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,,B022,NA,,,, +B18,,1963,B022,9.212,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,,B022,NA,,,, +B181,,,B022,NA,,,, +B182,,,B022,NA,,,, +B183,,,B022,NA,,,, +B184,,,B022,NA,,,, +B185,,,B022,NA,,,, +B186,,,B022,NA,,,, +B187,,,B022,NA,,,, +B188,,1860,B022,1.5,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B022,1.82,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B022,1.921,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,,B022,NA,,,, +B191,,,B022,NA,,,, +B192,,1860,B022,1.9,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,,B022,NA,,,, +B194,,1715,B022,3.26,,,Binford_2001_Table_9.01, +B195,,1850,B022,1.87,,steward1938,Binford_2001_Table_9.01, +B196,,,B022,NA,,,, +B197,,,B022,NA,,,, +B198,,1870,B022,1.25,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B022,1.87,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B022,3.752,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B022,2.84,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,,B022,NA,,,, +B201,,,B022,NA,,,, +B202,,1870,B022,2.65,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,,B022,NA,,,, +B204,,1860,B022,2.47,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B022,2.51,,davis1965,Binford_2001_Table_9.01, +B206,,,B022,NA,,,, +B207,,1860,B022,2.33,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,,B022,NA,,,, +B209,,,B022,NA,,,, +B21,,1978,B022,3.83,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B022,4.05,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B022,2.4,,steward1938,Binford_2001_Table_9.01, +B212,,,B022,NA,,,, +B213,,,B022,NA,,,, +B214,,,B022,NA,,,, +B215,,1870,B022,2.43,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B022,2.77,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B022,2.63,,steward1938,Binford_2001_Table_9.01, +B218,,,B022,NA,,,, +B219,,,B022,NA,,,, +B22,,1900,B022,3.28,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B022,3.84,,steward1938,Binford_2001_Table_9.01, +B222,,,B022,NA,,,, +B223,,,B022,NA,,,, +B224,,1860,B022,2.93,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B022,2.25,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,,B022,NA,,,, +B227,,,B022,NA,,,, +B228,,,B022,NA,,,, +B229,,1860,B022,2.08,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B022,3.17,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B022,2.63,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B022,2.03,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B022,3.38,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B022,2.85,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B022,5,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B022,4.8,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,,B022,NA,,,, +B241,,1870,B022,9.55,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,,B022,NA,,,, +B243,,,B022,NA,,,, +B244,,1860,B022,4.48,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B022,5.67,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B022,4.89,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B022,7.5,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B022,4.34,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B022,2.21,,shternberg1933,Binford_2001_Table_9.01, +B250,,,B022,NA,,,, +B252,,1860,B022,7.17,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B022,4.21,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,,B022,NA,,,, +B255,,1850,B022,5.6,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B022,8.85,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B022,6.92,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B022,9.35,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B022,5.25,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B022,1.57,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B022,5.7,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,,B022,NA,,,, +B269,,,B022,NA,,,, +B27,,1933,B022,1.49,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B022,0.93,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,,B022,NA,,,, +B272,,,B022,NA,,,, +B273,,,B022,NA,,,, +B274,,,B022,NA,,,, +B275,,,B022,NA,,,, +B276,,,B022,NA,,,, +B277,,,B022,NA,,,, +B278,,,B022,NA,,,, +B279,,,B022,NA,,,, +B28,,1860,B022,1.5,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,,B022,NA,,,, +B281,,,B022,NA,,,, +B282,,,B022,NA,,,, +B283,,,B022,NA,,,, +B284,,1880,B022,1.21,,pettitt1950,Binford_2001_Table_9.01, +B285,,,B022,NA,,,, +B286,,,B022,NA,,,, +B287,,,B022,NA,,,, +B288,,,B022,NA,,,, +B289,,,B022,NA,,,, +B290,,,B022,NA,,,, +B291,,,B022,NA,,,, +B292,,,B022,NA,,,, +B293,,,B022,NA,,,, +B294,,,B022,NA,,,, +B295,,,B022,NA,,,, +B296,,1850,B022,1.39,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,,B022,NA,,,, +B298,,,B022,NA,,,, +B299,,,B022,NA,,,, +B3,,,B022,NA,,,, +B315,,,B022,NA,,,, +B316,,,B022,NA,,,, +B317,,,B022,NA,,,, +B318,,,B022,NA,,,, +B319,,1860,B022,2.5,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B022,2.93,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B022,0.96,,clineetal1938,Binford_2001_Table_9.01, +B322,,,B022,NA,,,, +B323,,,B022,NA,,,, +B324,,,B022,NA,,,, +B325,,1860,B022,0.8,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B022,3.04,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B022,2.14,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,,B022,NA,,,, +B329,,1700,B022,2.08,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B022,1.98,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B022,2.56,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B022,1.79,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,,B022,NA,,,, +B334,,1940,B022,2.68,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B022,1.37,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B022,1.9,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,,B022,NA,,,, +B338,,1880,B022,2.49,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,,B022,NA,,,, +B340,,,B022,NA,,,, +B341,,,B022,NA,,,, +B342,,1880,B022,1.47,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,,B022,NA,,,, +B344,,,B022,NA,,,, +B345,,1860,B022,2.52,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,,B022,NA,,,, +B347,,,B022,NA,,,, +B348,,,B022,NA,,,, +B349,,1880,B022,1.38,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,,B022,NA,,,, +B350,,,B022,NA,,,, +B351,,,B022,NA,,,, +B352,,1860,B022,2.74,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B022,2.83,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B022,0.92,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B022,2.56,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B022,4.1,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,,B022,NA,,,, +B358,,1860,B022,2.17,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B022,2.13,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,,B022,NA,,,, +B360,,,B022,NA,,,, +B361,,1860,B022,5.5,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,,B022,NA,,,, +B363,,,B022,NA,,,, +B364,,,B022,NA,,,, +B365,,1890,B022,2.77,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,,B022,NA,,,, +B37,,,B022,NA,,,, +B370,,1890,B022,2.48,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B022,2.5,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B022,0.48,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B022,3.45,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B022,2.75,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B022,2.33,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B022,2.47,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B022,1.09,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B022,2.81,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B022,2.04,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B022,1.6,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B022,3.25,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B022,2.16,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B022,2.26,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B022,2.84,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B022,1.97,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B022,1.71,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B022,3.94,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B022,0.59,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B022,2.45,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B022,2.88,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B022,1.98,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B022,6.332,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B022,3.62,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,,B022,NA,,,, +B42,,1901,B022,4.15,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B022,0.95,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B022,4.06,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B022,3.04,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B022,0.97,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B022,6.42,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,,B022,NA,,,, +B49,,1954,B022,2.11,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B022,0.882,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B022,1,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B022,2.55,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,,B022,NA,,,, +B53,,1900,B022,1.85,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B022,2.44,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B022,1.86,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B022,0.272,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B022,6.04,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B022,6.99,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B022,6.23,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B022,3.54,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B022,5.46,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B022,6.74,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,,B022,NA,,,, +B67,,,B022,NA,,,, +B68,,,B022,NA,,,, +B69,,1910,B022,4.55,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B022,2.622,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B022,3.35,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B022,4.8,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B022,4.14,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,,B022,NA,,,, +B74,,1962,B022,1.23,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B022,1.76,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B022,3.47,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B022,2,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,,B022,NA,,,, +B79,,,B022,NA,,,, +B8,,1870,B022,4.392,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,,B022,NA,,,, +B83,,,B022,NA,,,, +B84,,1978,B022,4.7,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B022,2.89,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,,B022,NA,,,, +B87,,1950,B022,2.69,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,,B022,NA,,,, +B89,,,B022,NA,,,, +B9,,1920,B022,0.592,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,,B022,NA,,,, +B91,,,B022,NA,,,, +B92,,,B022,NA,,,, +B93,,,B022,NA,,,, +B94,,1937,B022,3.88,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,,B022,NA,,,, +B96,,,B022,NA,,,, +B97,,1930,B022,2.15,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,,B022,NA,,,, +B99,,,B022,NA,,,, +B1,,1970,B023,6.09,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B023,3.64,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,,B023,NA,,,, +B101,,,B023,NA,,,, +B102,,,B023,NA,,,, +B103,,1928,B023,3.34,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,,B023,NA,,,, +B105,,,B023,NA,,,, +B106,,,B023,NA,,,, +B107,,,B023,NA,,,, +B108,,1934,B023,2.4,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B023,2,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,,B023,NA,,,, +B110,,,B023,NA,,,, +B111,,1960,B023,1.54,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B023,1.66,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B023,1.27,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,,B023,NA,,,, +B115,,,B023,NA,,,, +B116,,,B023,NA,,,, +B117,,1965,B023,2.37,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B023,1.78,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,,B023,NA,,,, +B12,,1965,B023,4.76,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B023,1.44,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,,B023,NA,,,, +B122,,,B023,NA,,,, +B123,,1922,B023,1.46,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B023,1.5,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,,B023,NA,,,, +B126,,1912,B023,1.33,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,,B023,NA,,,, +B128,,,B023,NA,,,, +B129,,,B023,NA,,,, +B13,,,B023,NA,,,, +B130,,,B023,NA,,,, +B131,,,B023,NA,,,, +B132,,,B023,NA,,,, +B133,,1850,B023,4.46,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B023,1.23,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,,B023,NA,,,, +B136,,,B023,NA,,,, +B137,,,B023,NA,,,, +B14,,1924,B023,3.93,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B023,3.07,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,,B023,NA,,,, +B145,,,B023,NA,,,, +B146,,,B023,NA,,,, +B147,,,B023,NA,,,, +B148,,,B023,NA,,,, +B149,,,B023,NA,,,, +B15,,1940,B023,4.85,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,,B023,NA,,,, +B151,,,B023,NA,,,, +B152,,1850,B023,2.62,,voegelin1938,Binford_2001_Table_9.01, +B153,,,B023,NA,,,, +B154,,,B023,NA,,,, +B155,,,B023,NA,,,, +B156,,,B023,NA,,,, +B157,,,B023,NA,,,, +B158,,,B023,NA,,,, +B159,,,B023,NA,,,, +B16,,1963,B023,4.88,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,,B023,NA,,,, +B161,,,B023,NA,,,, +B162,,,B023,NA,,,, +B163,,,B023,NA,,,, +B164,,,B023,NA,,,, +B165,,,B023,NA,,,, +B166,,,B023,NA,,,, +B167,,,B023,NA,,,, +B168,,,B023,NA,,,, +B169,,,B023,NA,,,, +B17,,1963,B023,3.43,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,,B023,NA,,,, +B171,,,B023,NA,,,, +B172,,,B023,NA,,,, +B173,,,B023,NA,,,, +B174,,,B023,NA,,,, +B175,,,B023,NA,,,, +B176,,,B023,NA,,,, +B177,,,B023,NA,,,, +B178,,,B023,NA,,,, +B179,,,B023,NA,,,, +B18,,1963,B023,5.97,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,,B023,NA,,,, +B181,,,B023,NA,,,, +B182,,,B023,NA,,,, +B183,,,B023,NA,,,, +B184,,,B023,NA,,,, +B185,,,B023,NA,,,, +B186,,,B023,NA,,,, +B187,,,B023,NA,,,, +B188,,,B023,NA,,,, +B189,,,B023,NA,,,, +B19,,1946,B023,3.95,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,,B023,NA,,,, +B191,,,B023,NA,,,, +B192,,,B023,NA,,,, +B193,,,B023,NA,,,, +B194,,,B023,NA,,,, +B195,,1850,B023,1.34,,steward1938,Binford_2001_Table_9.01, +B196,,,B023,NA,,,, +B197,,,B023,NA,,,, +B198,,1870,B023,1.98,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,,B023,NA,,,, +B2,,1968,B023,4.88,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B023,2.84,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,,B023,NA,,,, +B201,,,B023,NA,,,, +B202,,1870,B023,3.54,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,,B023,NA,,,, +B204,,,B023,NA,,,, +B205,,,B023,NA,,,, +B206,,,B023,NA,,,, +B207,,1860,B023,3.43,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,,B023,NA,,,, +B209,,,B023,NA,,,, +B21,,,B023,NA,,,, +B210,,,B023,NA,,,, +B211,,1860,B023,3,,steward1938,Binford_2001_Table_9.01, +B212,,,B023,NA,,,, +B213,,,B023,NA,,,, +B214,,,B023,NA,,,, +B215,,,B023,NA,,,, +B216,,1860,B023,2.28,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,,B023,NA,,,, +B218,,,B023,NA,,,, +B219,,,B023,NA,,,, +B22,,,B023,NA,,,, +B221,,1860,B023,3.65,,steward1938,Binford_2001_Table_9.01, +B222,,,B023,NA,,,, +B223,,,B023,NA,,,, +B224,,1860,B023,2.86,,steward1938,Binford_2001_Table_9.01, +B225,,,B023,NA,,,, +B226,,,B023,NA,,,, +B227,,,B023,NA,,,, +B228,,,B023,NA,,,, +B229,,1860,B023,5.23,,steward1938,Binford_2001_Table_9.01, +B23,,,B023,NA,,,, +B230,,1860,B023,2.08,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,,B023,NA,,,, +B232,,,B023,NA,,,, +B233,,,B023,NA,,,, +B234,,,B023,NA,,,, +B24,,,B023,NA,,,, +B240,,,B023,NA,,,, +B241,,,B023,NA,,,, +B242,,,B023,NA,,,, +B243,,,B023,NA,,,, +B244,,,B023,NA,,,, +B245,,1860,B023,5.91,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,,B023,NA,,,, +B248,,,B023,NA,,,, +B249,,,B023,NA,,,, +B25,,1920,B023,5.54,,shternberg1933,Binford_2001_Table_9.01, +B250,,,B023,NA,,,, +B252,,,B023,NA,,,, +B253,,,B023,NA,,,, +B254,,,B023,NA,,,, +B255,,,B023,NA,,,, +B256,,,B023,NA,,,, +B257,,,B023,NA,,,, +B258,,,B023,NA,,,, +B259,,,B023,NA,,,, +B26,,1900,B023,3.01,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,,B023,NA,,,, +B268,,,B023,NA,,,, +B269,,,B023,NA,,,, +B27,,,B023,NA,,,, +B270,,1870,B023,5.6,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,,B023,NA,,,, +B272,,,B023,NA,,,, +B273,,,B023,NA,,,, +B274,,,B023,NA,,,, +B275,,,B023,NA,,,, +B276,,,B023,NA,,,, +B277,,,B023,NA,,,, +B278,,,B023,NA,,,, +B279,,,B023,NA,,,, +B28,,1860,B023,3.18,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,,B023,NA,,,, +B281,,,B023,NA,,,, +B282,,,B023,NA,,,, +B283,,,B023,NA,,,, +B284,,,B023,NA,,,, +B285,,,B023,NA,,,, +B286,,,B023,NA,,,, +B287,,,B023,NA,,,, +B288,,,B023,NA,,,, +B289,,,B023,NA,,,, +B290,,,B023,NA,,,, +B291,,,B023,NA,,,, +B292,,,B023,NA,,,, +B293,,,B023,NA,,,, +B294,,,B023,NA,,,, +B295,,,B023,NA,,,, +B296,,,B023,NA,,,, +B297,,,B023,NA,,,, +B298,,,B023,NA,,,, +B299,,,B023,NA,,,, +B3,,,B023,NA,,,, +B315,,,B023,NA,,,, +B316,,,B023,NA,,,, +B317,,,B023,NA,,,, +B318,,,B023,NA,,,, +B319,,,B023,NA,,,, +B320,,1860,B023,5.87,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B023,5.46,,clineetal1938,Binford_2001_Table_9.01, +B322,,,B023,NA,,,, +B323,,,B023,NA,,,, +B324,,,B023,NA,,,, +B325,,,B023,NA,,,, +B326,,1870,B023,6.08,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B023,4.29,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,,B023,NA,,,, +B329,,1700,B023,2.75,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,,B023,NA,,,, +B331,,1880,B023,5,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,,B023,NA,,,, +B333,,,B023,NA,,,, +B334,,,B023,NA,,,, +B335,,,B023,NA,,,, +B336,,,B023,NA,,,, +B337,,,B023,NA,,,, +B338,,1880,B023,4.82,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,,B023,NA,,,, +B340,,1900,B023,2.12,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,,B023,NA,,,, +B342,,1880,B023,3.33,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,,B023,NA,,,, +B344,,1850,B023,5.17,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,,B023,NA,,,, +B346,,1920,B023,4.66,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,,B023,NA,,,, +B348,,,B023,NA,,,, +B349,,,B023,NA,,,, +B35,,,B023,NA,,,, +B350,,1800,B023,3.18,,gillespie1981,Binford_2001_Table_9.01, +B351,,,B023,NA,,,, +B352,,,B023,NA,,,, +B353,,1900,B023,4.07,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B023,2.95,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B023,5.09,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B023,8.21,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,,B023,NA,,,, +B358,,,B023,NA,,,, +B359,,1930,B023,3.82,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,,B023,NA,,,, +B360,,1900,B023,2.34,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,,B023,NA,,,, +B362,,,B023,NA,,,, +B363,,1890,B023,5.11,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,,B023,NA,,,, +B365,,1890,B023,4.78,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,,B023,NA,,,, +B37,,,B023,NA,,,, +B370,,1890,B023,4,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B023,5,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B023,1.93,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,,B023,NA,,,, +B374,,1900,B023,4.52,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B023,5.83,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B023,3.94,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,,B023,NA,,,, +B379,,,B023,NA,,,, +B38,,1989,B023,3.85,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B023,3.83,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B023,5.26,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B023,4.68,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B023,4.26,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B023,6.56,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B023,3.35,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B023,3.14,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B023,5.88,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,,B023,NA,,,, +B389,,,B023,NA,,,, +B39,,1960,B023,3.42,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B023,2.92,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B023,5.33,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B023,4.7,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,,B023,NA,,,, +B42,,1901,B023,4.37,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B023,4.03,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B023,4.2,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B023,4.86,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,,B023,NA,,,, +B47,,1975,B023,7.63,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,,B023,NA,,,, +B49,,1954,B023,5,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B023,3.27,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B023,3.97,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B023,5,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,,B023,NA,,,, +B53,,1900,B023,2.79,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,,B023,NA,,,, +B55,,,B023,NA,,,, +B6,,,B023,NA,,,, +B60,,1980,B023,5.63,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B023,5.08,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B023,4.05,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B023,3.64,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,,B023,NA,,,, +B65,,1930,B023,7.06,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,,B023,NA,,,, +B67,,,B023,NA,,,, +B68,,,B023,NA,,,, +B69,,1910,B023,3.67,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B023,2.72,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B023,3.31,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,,B023,NA,,,, +B72,,1950,B023,3.09,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,,B023,NA,,,, +B74,,,B023,NA,,,, +B75,,,B023,NA,,,, +B76,,1968,B023,2.65,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,,B023,NA,,,, +B78,,,B023,NA,,,, +B79,,,B023,NA,,,, +B8,,1870,B023,2.92,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,,B023,NA,,,, +B83,,,B023,NA,,,, +B84,,1978,B023,2.88,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B023,2.62,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,,B023,NA,,,, +B87,,1950,B023,2.32,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,,B023,NA,,,, +B89,,,B023,NA,,,, +B9,,1920,B023,5.21,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,,B023,NA,,,, +B91,,,B023,NA,,,, +B92,,,B023,NA,,,, +B93,,,B023,NA,,,, +B94,,1937,B023,3.4,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B023,2.43,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B023,2.04,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B023,1.67,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,,B023,NA,,,, +B99,,,B023,NA,,,, +B1,,1970,B024,4.93,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B024,6.86,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,,B024,NA,,,, +B101,,,B024,NA,,,, +B102,,1909,B024,12.97,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,,B024,NA,,,, +B104,,,B024,NA,,,, +B105,,,B024,NA,,,, +B106,,,B024,NA,,,, +B107,,,B024,NA,,,, +B108,,,B024,NA,,,, +B109,,1965,B024,10.88,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B024,7.35,,morris1982a,Binford_2001_Table_9.01, +B110,,,B024,NA,,,, +B111,,1960,B024,6.07,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,,B024,NA,,,, +B113,,1936,B024,4.85,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,,B024,NA,,,, +B115,,,B024,NA,,,, +B116,,,B024,NA,,,, +B117,,1965,B024,5.93,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B024,5.58,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,,B024,NA,,,, +B12,,1965,B024,6.93,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B024,4,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,,B024,NA,,,, +B122,,,B024,NA,,,, +B123,,,B024,NA,,,, +B124,,,B024,NA,,,, +B125,,,B024,NA,,,, +B126,,,B024,NA,,,, +B127,,,B024,NA,,,, +B128,,,B024,NA,,,, +B129,,,B024,NA,,,, +B13,,1979,B024,5.11,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,,B024,NA,,,, +B131,,,B024,NA,,,, +B132,,1850,B024,7.51,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B024,35,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B024,8.8,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,,B024,NA,,,, +B136,,1830,B024,5.1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B024,3.88,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B024,7.27,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B024,6.94,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B024,8.06,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B024,15.04,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B024,8.61,,meigs1939,Binford_2001_Table_9.01, +B147,,,B024,NA,,,, +B148,,,B024,NA,,,, +B149,,,B024,NA,,,, +B15,,1940,B024,12.06,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,,B024,NA,,,, +B151,,1860,B024,13.33,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B024,3,,voegelin1938,Binford_2001_Table_9.01, +B153,,,B024,NA,,,, +B154,,1850,B024,6.22,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B024,15.27,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,,B024,NA,,,, +B157,,1870,B024,6.21,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,,B024,NA,,,, +B159,,1860,B024,11.49,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B024,6.61,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B024,12.5,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B024,58.63,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,,B024,NA,,,, +B163,,1850,B024,12.47,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,,B024,NA,,,, +B165,,,B024,NA,,,, +B166,,1860,B024,5.23,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,,B024,NA,,,, +B168,,1850,B024,4.16,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,,B024,NA,,,, +B17,,1963,B024,7.55,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,,B024,NA,,,, +B171,,1850,B024,4.45,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B024,11.36,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B024,33.78,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,,B024,NA,,,, +B175,,1850,B024,8.86,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B024,6,,gray1987,Binford_2001_Table_9.01, +B177,,,B024,NA,,,, +B178,,1870,B024,12,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B024,6,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B024,15.81,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B024,17.66,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,,B024,NA,,,, +B182,,1860,B024,4,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,,B024,NA,,,, +B184,,1860,B024,3.59,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B024,6.67,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B024,6.03,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,,B024,NA,,,, +B188,,1860,B024,9.2,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B024,3.13,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B024,3.48,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,,B024,NA,,,, +B191,,,B024,NA,,,, +B192,,1860,B024,5.71,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,,B024,NA,,,, +B194,,1715,B024,14.86,,,Binford_2001_Table_9.01, +B195,,1850,B024,5.61,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B024,32.42,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,,B024,NA,,,, +B198,,1870,B024,4.96,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B024,4.68,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B024,11.46,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B024,5.71,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,,B024,NA,,,, +B201,,,B024,NA,,,, +B202,,1870,B024,13.06,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,,B024,NA,,,, +B204,,1860,B024,5.18,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B024,6.54,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B024,5,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B024,7.08,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B024,11.36,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,,B024,NA,,,, +B21,,1978,B024,19.17,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B024,10.36,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B024,6.16,,steward1938,Binford_2001_Table_9.01, +B212,,,B024,NA,,,, +B213,,1870,B024,5.54,,steward1938,Binford_2001_Table_9.01, +B214,,,B024,NA,,,, +B215,,1870,B024,5.3,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B024,5.58,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B024,7.64,,steward1938,Binford_2001_Table_9.01, +B218,,,B024,NA,,,, +B219,,1860,B024,6.79,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B024,6.59,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B024,9.11,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B024,7.4,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,,B024,NA,,,, +B224,,1860,B024,4.68,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B024,7.25,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,,B024,NA,,,, +B227,,,B024,NA,,,, +B228,,,B024,NA,,,, +B229,,,B024,NA,,,, +B23,,1900,B024,9.51,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B024,5.58,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,,B024,NA,,,, +B232,,,B024,NA,,,, +B233,,,B024,NA,,,, +B234,,1860,B024,7.55,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B024,6.6,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B024,15,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B024,42.83,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,,B024,NA,,,, +B243,,,B024,NA,,,, +B244,,1860,B024,40.08,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B024,34.68,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B024,44.16,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B024,37.5,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B024,32.34,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B024,8.65,,shternberg1933,Binford_2001_Table_9.01, +B250,,,B024,NA,,,, +B252,,1860,B024,28.33,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B024,23.27,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,,B024,NA,,,, +B255,,1850,B024,31.59,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B024,43.74,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B024,20,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B024,17.52,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B024,31.25,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B024,7.01,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B024,18.54,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,,B024,NA,,,, +B269,,,B024,NA,,,, +B27,,1933,B024,3.09,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B024,4.83,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,,B024,NA,,,, +B272,,1880,B024,4.23,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B024,4.88,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B024,2.6,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,,B024,NA,,,, +B276,,1860,B024,8.95,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B024,8.75,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B024,1.95,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,,B024,NA,,,, +B28,,1860,B024,3.5,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,,B024,NA,,,, +B281,,NA,B024,4.64,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,,B024,NA,,,, +B283,,,B024,NA,,,, +B284,,1880,B024,4.67,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B024,11.09,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B024,11.26,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,,B024,NA,,,, +B288,,1890,B024,15.91,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B024,40.39,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B024,37.23,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,,B024,NA,,,, +B292,,1880,B024,10.37,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B024,20.04,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B024,9.53,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B024,3.48,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B024,7.91,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B024,4.54,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B024,3.13,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B024,5.1,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,,B024,NA,,,, +B315,,,B024,NA,,,, +B316,,,B024,NA,,,, +B317,,,B024,NA,,,, +B318,,,B024,NA,,,, +B319,,1860,B024,20.5,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B024,8.38,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B024,3.97,,clineetal1938,Binford_2001_Table_9.01, +B322,,,B024,NA,,,, +B323,,1870,B024,4.5,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,,B024,NA,,,, +B325,,1860,B024,5.02,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B024,10.36,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B024,3.57,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B024,14,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B024,3.47,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B024,6.02,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B024,6.95,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B024,5.36,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,,B024,NA,,,, +B334,,1940,B024,6.71,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B024,9.8,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B024,8.1,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,,B024,NA,,,, +B338,,1880,B024,6.14,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,,B024,NA,,,, +B340,,,B024,NA,,,, +B341,,,B024,NA,,,, +B342,,1880,B024,6.33,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,,B024,NA,,,, +B344,,,B024,NA,,,, +B345,,1860,B024,7.56,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,,B024,NA,,,, +B347,,,B024,NA,,,, +B348,,,B024,NA,,,, +B349,,1880,B024,4.15,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,,B024,NA,,,, +B350,,,B024,NA,,,, +B351,,,B024,NA,,,, +B352,,1860,B024,5.49,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B024,9.17,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B024,2.49,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B024,8.33,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B024,10,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B024,4.3,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B024,5.03,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B024,4.88,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,,B024,NA,,,, +B360,,,B024,NA,,,, +B361,,1860,B024,15,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B024,3.79,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,,B024,NA,,,, +B364,,1860,B024,4.4,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B024,4.7,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,,B024,NA,,,, +B37,,,B024,NA,,,, +B370,,1890,B024,4.14,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B024,5,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B024,1.54,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B024,6.91,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B024,5.63,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B024,4,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B024,3.35,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B024,4.09,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B024,17.93,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B024,7.7,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B024,21.96,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B024,18.99,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B024,4.2,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B024,4.52,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B024,8.51,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B024,3.82,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B024,10,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B024,15.23,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B024,1.29,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B024,54.02,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B024,8.65,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B024,6.03,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B024,10.16,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B024,9.04,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B024,12.04,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B024,9.25,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B024,4.15,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B024,9.71,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B024,8.16,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B024,1.72,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B024,14.42,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B024,8,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B024,6.32,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B024,0.88,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,,B024,NA,,,, +B51,,1870,B024,7.65,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,,B024,NA,,,, +B53,,,B024,NA,,,, +B54,,1880,B024,5.49,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B024,3.43,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B024,0.81,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B024,12.08,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B024,10.64,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B024,18.99,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B024,9.14,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B024,10.12,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B024,23.21,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,,B024,NA,,,, +B67,,,B024,NA,,,, +B68,,,B024,NA,,,, +B69,,1910,B024,11.57,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B024,8.33,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B024,9.07,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B024,19.6,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B024,9.68,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B024,5.84,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B024,7.91,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B024,4.58,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B024,14.4,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B024,4.67,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,,B024,NA,,,, +B79,,,B024,NA,,,, +B8,,1870,B024,10.49,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,,B024,NA,,,, +B83,,,B024,NA,,,, +B84,,1978,B024,11.17,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B024,6.14,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,,B024,NA,,,, +B87,,1950,B024,5.72,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,,B024,NA,,,, +B89,,,B024,NA,,,, +B9,,1920,B024,1.19,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,,B024,NA,,,, +B91,,,B024,NA,,,, +B92,,,B024,NA,,,, +B93,,,B024,NA,,,, +B94,,1937,B024,8.13,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,,B024,NA,,,, +B96,,,B024,NA,,,, +B97,,1930,B024,6.88,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B024,9.43,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,,B024,NA,,,, +B1,,1970,B025,8.31,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B025,7.53,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,,B025,NA,,,, +B101,,,B025,NA,,,, +B102,,1909,B025,7.11,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B025,6.29,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,,B025,NA,,,, +B105,,,B025,NA,,,, +B106,,,B025,NA,,,, +B107,,,B025,NA,,,, +B108,,1934,B025,7.51,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B025,9.31,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B025,10.24,,morris1982a,Binford_2001_Table_9.01, +B110,,,B025,NA,,,, +B111,,1960,B025,4.81,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,,B025,NA,,,, +B113,,1936,B025,3.14,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,,B025,NA,,,, +B115,,,B025,NA,,,, +B116,,,B025,NA,,,, +B117,,1965,B025,4.44,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B025,4.05,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,,B025,NA,,,, +B12,,1965,B025,8.4,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B025,3.3,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,,B025,NA,,,, +B122,,,B025,NA,,,, +B123,,1922,B025,4.31,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B025,4.69,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,,B025,NA,,,, +B126,,,B025,NA,,,, +B127,,,B025,NA,,,, +B128,,,B025,NA,,,, +B129,,,B025,NA,,,, +B13,,,B025,NA,,,, +B130,,,B025,NA,,,, +B131,,,B025,NA,,,, +B132,,,B025,NA,,,, +B133,,1850,B025,31.19,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B025,7.42,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,,B025,NA,,,, +B136,,,B025,NA,,,, +B137,,,B025,NA,,,, +B14,,1924,B025,9,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B025,8.14,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,,B025,NA,,,, +B145,,,B025,NA,,,, +B146,,,B025,NA,,,, +B147,,,B025,NA,,,, +B148,,,B025,NA,,,, +B149,,,B025,NA,,,, +B15,,1940,B025,12.06,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,,B025,NA,,,, +B151,,,B025,NA,,,, +B152,,1850,B025,5.51,,voegelin1938,Binford_2001_Table_9.01, +B153,,,B025,NA,,,, +B154,,,B025,NA,,,, +B155,,,B025,NA,,,, +B156,,,B025,NA,,,, +B157,,,B025,NA,,,, +B158,,,B025,NA,,,, +B159,,1860,B025,31.58,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B025,10,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,,B025,NA,,,, +B161,,,B025,NA,,,, +B162,,,B025,NA,,,, +B163,,,B025,NA,,,, +B164,,,B025,NA,,,, +B165,,,B025,NA,,,, +B166,,,B025,NA,,,, +B167,,,B025,NA,,,, +B168,,,B025,NA,,,, +B169,,,B025,NA,,,, +B17,,1963,B025,6.13,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,,B025,NA,,,, +B171,,1850,B025,7.4,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B025,21.11,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,,B025,NA,,,, +B174,,,B025,NA,,,, +B175,,,B025,NA,,,, +B176,,,B025,NA,,,, +B177,,,B025,NA,,,, +B178,,,B025,NA,,,, +B179,,,B025,NA,,,, +B18,,1963,B025,10.24,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,,B025,NA,,,, +B181,,,B025,NA,,,, +B182,,,B025,NA,,,, +B183,,,B025,NA,,,, +B184,,,B025,NA,,,, +B185,,,B025,NA,,,, +B186,,,B025,NA,,,, +B187,,,B025,NA,,,, +B188,,,B025,NA,,,, +B189,,,B025,NA,,,, +B19,,1946,B025,7.16,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,,B025,NA,,,, +B191,,,B025,NA,,,, +B192,,,B025,NA,,,, +B193,,,B025,NA,,,, +B194,,,B025,NA,,,, +B195,,1850,B025,4.02,,steward1938,Binford_2001_Table_9.01, +B196,,,B025,NA,,,, +B197,,,B025,NA,,,, +B198,,1870,B025,7.88,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,,B025,NA,,,, +B2,,1968,B025,14.91,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B025,5.71,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,,B025,NA,,,, +B201,,,B025,NA,,,, +B202,,1870,B025,17.44,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,,B025,NA,,,, +B204,,,B025,NA,,,, +B205,,,B025,NA,,,, +B206,,,B025,NA,,,, +B207,,1860,B025,10.4,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B025,14.66,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,,B025,NA,,,, +B21,,,B025,NA,,,, +B210,,,B025,NA,,,, +B211,,1860,B025,7.71,,steward1938,Binford_2001_Table_9.01, +B212,,,B025,NA,,,, +B213,,,B025,NA,,,, +B214,,,B025,NA,,,, +B215,,,B025,NA,,,, +B216,,1860,B025,4.6,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,,B025,NA,,,, +B218,,,B025,NA,,,, +B219,,1860,B025,5.88,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,,B025,NA,,,, +B221,,1860,B025,8.68,,steward1938,Binford_2001_Table_9.01, +B222,,,B025,NA,,,, +B223,,,B025,NA,,,, +B224,,1860,B025,4.58,,steward1938,Binford_2001_Table_9.01, +B225,,,B025,NA,,,, +B226,,,B025,NA,,,, +B227,,,B025,NA,,,, +B228,,,B025,NA,,,, +B229,,1860,B025,14.05,,steward1938,Binford_2001_Table_9.01, +B23,,,B025,NA,,,, +B230,,,B025,NA,,,, +B231,,,B025,NA,,,, +B232,,,B025,NA,,,, +B233,,,B025,NA,,,, +B234,,,B025,NA,,,, +B24,,,B025,NA,,,, +B240,,,B025,NA,,,, +B241,,,B025,NA,,,, +B242,,,B025,NA,,,, +B243,,,B025,NA,,,, +B244,,,B025,NA,,,, +B245,,1860,B025,36.09,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,,B025,NA,,,, +B248,,,B025,NA,,,, +B249,,,B025,NA,,,, +B25,,1920,B025,21.69,,shternberg1933,Binford_2001_Table_9.01, +B250,,,B025,NA,,,, +B252,,,B025,NA,,,, +B253,,,B025,NA,,,, +B254,,,B025,NA,,,, +B255,,,B025,NA,,,, +B256,,,B025,NA,,,, +B257,,,B025,NA,,,, +B258,,,B025,NA,,,, +B259,,,B025,NA,,,, +B26,,1900,B025,13.48,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,,B025,NA,,,, +B268,,,B025,NA,,,, +B269,,,B025,NA,,,, +B27,,,B025,NA,,,, +B270,,1870,B025,29,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B025,22.16,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,,B025,NA,,,, +B273,,1880,B025,43.92,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,,B025,NA,,,, +B275,,,B025,NA,,,, +B276,,,B025,NA,,,, +B277,,,B025,NA,,,, +B278,,1860,B025,7.81,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B025,7.79,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B025,7.42,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,,B025,NA,,,, +B281,,,B025,NA,,,, +B282,,,B025,NA,,,, +B283,,,B025,NA,,,, +B284,,,B025,NA,,,, +B285,,,B025,NA,,,, +B286,,1860,B025,52.4,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,,B025,NA,,,, +B288,,,B025,NA,,,, +B289,,,B025,NA,,,, +B290,,,B025,NA,,,, +B291,,,B025,NA,,,, +B292,,,B025,NA,,,, +B293,,,B025,NA,,,, +B294,,,B025,NA,,,, +B295,,1890,B025,10.96,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,,B025,NA,,,, +B297,,,B025,NA,,,, +B298,,,B025,NA,,,, +B299,,1930,B025,13.09,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,,B025,NA,,,, +B315,,,B025,NA,,,, +B316,,,B025,NA,,,, +B317,,,B025,NA,,,, +B318,,,B025,NA,,,, +B319,,,B025,NA,,,, +B320,,1860,B025,16.76,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B025,22.68,,clineetal1938,Binford_2001_Table_9.01, +B322,,,B025,NA,,,, +B323,,,B025,NA,,,, +B324,,,B025,NA,,,, +B325,,,B025,NA,,,, +B326,,1870,B025,20.72,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B025,7.14,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,,B025,NA,,,, +B329,,1700,B025,4.59,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,,B025,NA,,,, +B331,,1880,B025,13.57,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,,B025,NA,,,, +B333,,,B025,NA,,,, +B334,,,B025,NA,,,, +B335,,,B025,NA,,,, +B336,,,B025,NA,,,, +B337,,,B025,NA,,,, +B338,,1880,B025,11.9,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,,B025,NA,,,, +B340,,1900,B025,10.27,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,,B025,NA,,,, +B342,,1880,B025,14.39,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,,B025,NA,,,, +B344,,1850,B025,14.99,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,,B025,NA,,,, +B346,,1920,B025,16.91,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,,B025,NA,,,, +B348,,,B025,NA,,,, +B349,,,B025,NA,,,, +B35,,,B025,NA,,,, +B350,,1800,B025,12.71,,gillespie1981,Binford_2001_Table_9.01, +B351,,,B025,NA,,,, +B352,,,B025,NA,,,, +B353,,1900,B025,13.16,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B025,8,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B025,16.59,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B025,20,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,,B025,NA,,,, +B358,,,B025,NA,,,, +B359,,1930,B025,8.76,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,,B025,NA,,,, +B360,,1900,B025,10.72,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,,B025,NA,,,, +B362,,,B025,NA,,,, +B363,,1890,B025,18.02,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B025,16.22,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B025,8.11,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,,B025,NA,,,, +B37,,,B025,NA,,,, +B370,,1890,B025,6.67,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B025,10,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B025,6.14,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,,B025,NA,,,, +B374,,1900,B025,9.28,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B025,10,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B025,5.35,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,,B025,NA,,,, +B379,,,B025,NA,,,, +B38,,1989,B025,14.54,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B025,52.8,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B025,30.7,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B025,9.09,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B025,8.52,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B025,19.67,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B025,6.52,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B025,18.32,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B025,22.73,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,,B025,NA,,,, +B389,,,B025,NA,,,, +B39,,1960,B025,10.27,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B025,8.88,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B025,8.56,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B025,11.75,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B025,24.08,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B025,9.74,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B025,17.63,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B025,10.02,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B025,13.06,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,,B025,NA,,,, +B47,,1975,B025,17.14,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,,B025,NA,,,, +B49,,1954,B025,7.5,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B025,7.52,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,,B025,NA,,,, +B51,,1870,B025,15,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,,B025,NA,,,, +B53,,,B025,NA,,,, +B54,,,B025,NA,,,, +B55,,,B025,NA,,,, +B6,,,B025,NA,,,, +B60,,1980,B025,11.25,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B025,7.73,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B025,12.32,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B025,7.22,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,,B025,NA,,,, +B65,,1930,B025,24.3,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,,B025,NA,,,, +B67,,,B025,NA,,,, +B68,,,B025,NA,,,, +B69,,1910,B025,9.33,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B025,8.66,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B025,8.95,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,,B025,NA,,,, +B72,,1950,B025,7.21,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,,B025,NA,,,, +B74,,,B025,NA,,,, +B75,,,B025,NA,,,, +B76,,1968,B025,11.02,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,,B025,NA,,,, +B78,,,B025,NA,,,, +B79,,,B025,NA,,,, +B8,,1870,B025,11.41,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,,B025,NA,,,, +B83,,,B025,NA,,,, +B84,,1978,B025,6.85,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B025,5.57,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,,B025,NA,,,, +B87,,1950,B025,4.93,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,,B025,NA,,,, +B89,,,B025,NA,,,, +B9,,1920,B025,10.43,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,,B025,NA,,,, +B91,,,B025,NA,,,, +B92,,,B025,NA,,,, +B93,,,B025,NA,,,, +B94,,1937,B025,7.14,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B025,4.32,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,,B025,NA,,,, +B97,,1930,B025,5.33,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,,B025,NA,,,, +B99,,,B025,NA,,,, +B1,,1970,B027,1.68,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B027,1.1,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,,B027,NA,,,, +B101,,,B027,NA,,,, +B102,,1909,B027,0.55,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,,B027,NA,,,, +B104,,,B027,NA,,,, +B105,,,B027,NA,,,, +B106,,,B027,NA,,,, +B107,,,B027,NA,,,, +B108,,,B027,NA,,,, +B109,,1965,B027,0.86,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B027,1.39,,morris1982a,Binford_2001_Table_9.01, +B110,,,B027,NA,,,, +B111,,1960,B027,0.79,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,,B027,NA,,,, +B113,,1936,B027,0.65,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,,B027,NA,,,, +B115,,,B027,NA,,,, +B116,,,B027,NA,,,, +B117,,1965,B027,0.75,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B027,0.72,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,,B027,NA,,,, +B12,,1965,B027,1.21,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B027,0.83,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,,B027,NA,,,, +B122,,,B027,NA,,,, +B123,,,B027,NA,,,, +B124,,,B027,NA,,,, +B125,,,B027,NA,,,, +B126,,,B027,NA,,,, +B127,,,B027,NA,,,, +B128,,,B027,NA,,,, +B129,,,B027,NA,,,, +B13,,,B027,NA,,,, +B130,,,B027,NA,,,, +B131,,,B027,NA,,,, +B132,,,B027,NA,,,, +B133,,1850,B027,0.89,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B027,0.84,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,,B027,NA,,,, +B136,,,B027,NA,,,, +B137,,,B027,NA,,,, +B14,,1924,B027,1.24,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B027,1.17,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,,B027,NA,,,, +B145,,,B027,NA,,,, +B146,,,B027,NA,,,, +B147,,,B027,NA,,,, +B148,,,B027,NA,,,, +B149,,,B027,NA,,,, +B15,,1940,B027,1,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,,B027,NA,,,, +B151,,,B027,NA,,,, +B152,,1850,B027,1.84,,voegelin1938,Binford_2001_Table_9.01, +B153,,,B027,NA,,,, +B154,,,B027,NA,,,, +B155,,,B027,NA,,,, +B156,,,B027,NA,,,, +B157,,,B027,NA,,,, +B158,,,B027,NA,,,, +B159,,1860,B027,2.75,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B027,1.51,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,,B027,NA,,,, +B161,,,B027,NA,,,, +B162,,,B027,NA,,,, +B163,,,B027,NA,,,, +B164,,,B027,NA,,,, +B165,,,B027,NA,,,, +B166,,,B027,NA,,,, +B167,,,B027,NA,,,, +B168,,,B027,NA,,,, +B169,,,B027,NA,,,, +B17,,1963,B027,0.81,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,,B027,NA,,,, +B171,,1850,B027,1.66,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B027,1.86,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,,B027,NA,,,, +B174,,,B027,NA,,,, +B175,,,B027,NA,,,, +B176,,,B027,NA,,,, +B177,,,B027,NA,,,, +B178,,,B027,NA,,,, +B179,,,B027,NA,,,, +B18,,1963,B027,0.65,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,,B027,NA,,,, +B181,,,B027,NA,,,, +B182,,,B027,NA,,,, +B183,,,B027,NA,,,, +B184,,,B027,NA,,,, +B185,,,B027,NA,,,, +B186,,,B027,NA,,,, +B187,,,B027,NA,,,, +B188,,,B027,NA,,,, +B189,,,B027,NA,,,, +B19,,1946,B027,2.05,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,,B027,NA,,,, +B191,,,B027,NA,,,, +B192,,,B027,NA,,,, +B193,,1800,B027,2.03,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,,B027,NA,,,, +B195,,1850,B027,0.72,,steward1938,Binford_2001_Table_9.01, +B196,,,B027,NA,,,, +B197,,,B027,NA,,,, +B198,,1870,B027,1.59,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,,B027,NA,,,, +B2,,1968,B027,1.3,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B027,1,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,,B027,NA,,,, +B201,,,B027,NA,,,, +B202,,1870,B027,1.34,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,,B027,NA,,,, +B204,,,B027,NA,,,, +B205,,,B027,NA,,,, +B206,,,B027,NA,,,, +B207,,1860,B027,1.47,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B027,1.29,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,,B027,NA,,,, +B21,,,B027,NA,,,, +B210,,,B027,NA,,,, +B211,,1860,B027,1.25,,steward1938,Binford_2001_Table_9.01, +B212,,,B027,NA,,,, +B213,,,B027,NA,,,, +B214,,,B027,NA,,,, +B215,,,B027,NA,,,, +B216,,1860,B027,0.82,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,,B027,NA,,,, +B218,,,B027,NA,,,, +B219,,1860,B027,0.87,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,,B027,NA,,,, +B221,,1860,B027,0.95,,steward1938,Binford_2001_Table_9.01, +B222,,,B027,NA,,,, +B223,,,B027,NA,,,, +B224,,1860,B027,0.98,,steward1938,Binford_2001_Table_9.01, +B225,,,B027,NA,,,, +B226,,,B027,NA,,,, +B227,,,B027,NA,,,, +B228,,,B027,NA,,,, +B229,,,B027,NA,,,, +B23,,,B027,NA,,,, +B230,,1860,B027,2.52,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B027,0.79,,whiting1950,Binford_2001_Table_9.01, +B232,,,B027,NA,,,, +B233,,,B027,NA,,,, +B234,,,B027,NA,,,, +B24,,,B027,NA,,,, +B240,,,B027,NA,,,, +B241,,,B027,NA,,,, +B242,,,B027,NA,,,, +B243,,,B027,NA,,,, +B244,,,B027,NA,,,, +B245,,1860,B027,1.04,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,,B027,NA,,,, +B248,,,B027,NA,,,, +B249,,,B027,NA,,,, +B25,,1920,B027,2.51,,shternberg1933,Binford_2001_Table_9.01, +B250,,,B027,NA,,,, +B252,,,B027,NA,,,, +B253,,,B027,NA,,,, +B254,,,B027,NA,,,, +B255,,,B027,NA,,,, +B256,,,B027,NA,,,, +B257,,,B027,NA,,,, +B258,,,B027,NA,,,, +B259,,,B027,NA,,,, +B26,,1900,B027,1.92,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,,B027,NA,,,, +B268,,,B027,NA,,,, +B269,,,B027,NA,,,, +B27,,,B027,NA,,,, +B270,,1870,B027,6,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,,B027,NA,,,, +B272,,,B027,NA,,,, +B273,,1880,B027,9.01,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,,B027,NA,,,, +B275,,,B027,NA,,,, +B276,,,B027,NA,,,, +B277,,,B027,NA,,,, +B278,,1860,B027,4,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,,B027,NA,,,, +B28,,1860,B027,2.12,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,,B027,NA,,,, +B281,,,B027,NA,,,, +B282,,,B027,NA,,,, +B283,,,B027,NA,,,, +B284,,,B027,NA,,,, +B285,,,B027,NA,,,, +B286,,1860,B027,4.65,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,,B027,NA,,,, +B288,,,B027,NA,,,, +B289,,,B027,NA,,,, +B290,,,B027,NA,,,, +B291,,,B027,NA,,,, +B292,,,B027,NA,,,, +B293,,,B027,NA,,,, +B294,,,B027,NA,,,, +B295,,1890,B027,3.15,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,,B027,NA,,,, +B297,,,B027,NA,,,, +B298,,,B027,NA,,,, +B299,,1930,B027,2.57,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,,B027,NA,,,, +B315,,,B027,NA,,,, +B316,,,B027,NA,,,, +B317,,,B027,NA,,,, +B318,,,B027,NA,,,, +B319,,,B027,NA,,,, +B320,,1860,B027,2,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B027,5.71,,clineetal1938,Binford_2001_Table_9.01, +B322,,,B027,NA,,,, +B323,,,B027,NA,,,, +B324,,,B027,NA,,,, +B325,,,B027,NA,,,, +B326,,1870,B027,2,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B027,2,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,,B027,NA,,,, +B329,,1700,B027,1.32,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,,B027,NA,,,, +B331,,1880,B027,1.95,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,,B027,NA,,,, +B333,,,B027,NA,,,, +B334,,,B027,NA,,,, +B335,,,B027,NA,,,, +B336,,,B027,NA,,,, +B337,,,B027,NA,,,, +B338,,1880,B027,1.94,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,,B027,NA,,,, +B340,,,B027,NA,,,, +B341,,,B027,NA,,,, +B342,,1880,B027,2.27,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,,B027,NA,,,, +B344,,,B027,NA,,,, +B345,,,B027,NA,,,, +B346,,,B027,NA,,,, +B347,,,B027,NA,,,, +B348,,,B027,NA,,,, +B349,,,B027,NA,,,, +B35,,,B027,NA,,,, +B350,,,B027,NA,,,, +B351,,1880,B027,2,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,,B027,NA,,,, +B353,,1900,B027,1.44,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B027,3.21,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B027,1.99,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B027,2,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,,B027,NA,,,, +B358,,,B027,NA,,,, +B359,,1930,B027,1.8,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,,B027,NA,,,, +B360,,,B027,NA,,,, +B361,,,B027,NA,,,, +B362,,,B027,NA,,,, +B363,,,B027,NA,,,, +B364,,1860,B027,3.69,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B027,1.73,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,,B027,NA,,,, +B37,,,B027,NA,,,, +B370,,1890,B027,1.61,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B027,2,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B027,4,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,,B027,NA,,,, +B374,,1900,B027,1.65,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B027,2.5,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B027,1.6,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,,B027,NA,,,, +B379,,,B027,NA,,,, +B38,,1989,B027,1.89,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B027,2.4,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B027,1.62,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B027,2.16,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B027,1.89,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B027,2.31,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B027,1.71,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B027,1.83,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B027,1.49,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,,B027,NA,,,, +B389,,,B027,NA,,,, +B39,,1960,B027,1.19,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B027,1.47,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B027,0.84,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B027,1.3,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B027,2,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B027,1.05,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B027,4.25,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B027,1.03,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B027,1.6,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,,B027,NA,,,, +B47,,1975,B027,1.19,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,,B027,NA,,,, +B49,,1954,B027,1.19,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B027,8.5,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B027,3.97,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B027,1.96,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,,B027,NA,,,, +B53,,1900,B027,1.51,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,,B027,NA,,,, +B55,,,B027,NA,,,, +B6,,,B027,NA,,,, +B60,,1980,B027,0.93,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B027,0.73,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B027,0.65,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B027,0.79,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B027,0,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B027,1.05,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,,B027,NA,,,, +B67,,,B027,NA,,,, +B68,,,B027,NA,,,, +B69,,1910,B027,0.81,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B027,1.04,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B027,0.99,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,,B027,NA,,,, +B72,,1950,B027,0.74,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,,B027,NA,,,, +B74,,,B027,NA,,,, +B75,,,B027,NA,,,, +B76,,1968,B027,0.77,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,,B027,NA,,,, +B78,,,B027,NA,,,, +B79,,,B027,NA,,,, +B8,,1870,B027,1.09,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,,B027,NA,,,, +B83,,,B027,NA,,,, +B84,,1978,B027,0.61,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B027,0.91,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,,B027,NA,,,, +B87,,1950,B027,0.86,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,,B027,NA,,,, +B89,,,B027,NA,,,, +B9,,1920,B027,8.77,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,,B027,NA,,,, +B91,,,B027,NA,,,, +B92,,,B027,NA,,,, +B93,,,B027,NA,,,, +B94,,1937,B027,0.88,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,,B027,NA,,,, +B96,,,B027,NA,,,, +B97,,1930,B027,0.78,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,,B027,NA,,,, +B99,,,B027,NA,,,, +B1,,1970,B029,2,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B029,2,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B029,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B029,1,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B029,2,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B029,2,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B029,1,,,Binford_2001_Table_9.01, +B105,,1900,B029,3,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B029,1,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B029,2,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B029,1,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B029,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B029,1,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B029,2,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B029,1,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B029,1,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B029,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B029,3,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B029,3,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B029,1,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B029,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B029,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B029,2,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B029,1,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B029,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B029,2,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B029,1,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B029,1,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B029,1,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B029,2,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B029,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B029,2,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B029,1,,,Binford_2001_Table_9.01, +B129,,1840,B029,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B029,1,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B029,2,,,Binford_2001_Table_9.01, +B131,,1850,B029,3,,,Binford_2001_Table_9.01, +B132,,1850,B029,1,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B029,3,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B029,1,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B029,2,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B029,2,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B029,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B029,1,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B029,2,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B029,3,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B029,3,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B029,2,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B029,3,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B029,3,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B029,3,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B029,2,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B029,3,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B029,3,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B029,2,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B029,3,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B029,3,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B029,3,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B029,2,,,Binford_2001_Table_9.01, +B157,,1870,B029,2,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B029,3,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B029,3,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B029,2,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B029,3,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B029,4,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B029,3,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B029,3,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B029,3,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B029,3,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B029,3,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B029,3,,,Binford_2001_Table_9.01, +B168,,1850,B029,3,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B029,3,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B029,2,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B029,3,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B029,3,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B029,3,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B029,3,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B029,3,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B029,3,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B029,2,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B029,2,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B029,2,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B029,2,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B029,2,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B029,2,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B029,2,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B029,3,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B029,2,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B029,3,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B029,2,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B029,2,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B029,2,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B029,2,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B029,2,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B029,1,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B029,2,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B029,2,,,Binford_2001_Table_9.01, +B192,,1860,B029,1,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B029,3,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B029,1,,,Binford_2001_Table_9.01, +B195,,1850,B029,2,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B029,3,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B029,2,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B029,2,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B029,3,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B029,2,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B029,1,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B029,2,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B029,2,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B029,3,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B029,1,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B029,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B029,2,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B029,2,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B029,2,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B029,2,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B029,3,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B029,1,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B029,2,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B029,2,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B029,1,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B029,2,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B029,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B029,2,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B029,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B029,2,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B029,2,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B029,2,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B029,3,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B029,2,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B029,3,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B029,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B029,1,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B029,2,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B029,2,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B029,3,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B029,2,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B029,3,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B029,2,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B029,3,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B029,2,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B029,2,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B029,1,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B029,1,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B029,3,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B029,3,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B029,3,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B029,3,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B029,3,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B029,3,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B029,4,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B029,3,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B029,3,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B029,4,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B029,3,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B029,3,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B029,3,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B029,3,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B029,3,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B029,3,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B029,3,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B029,3,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B029,3,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B029,3,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B029,2,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B029,3,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B029,2,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B029,2,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B029,2,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B029,2,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B029,3,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B029,2,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B029,4,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B029,3,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B029,3,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B029,3,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B029,3,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B029,2,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B029,2,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B029,2,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B029,2,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B029,2,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B029,3,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B029,4,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B029,2,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B029,3,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B029,3,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B029,3,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B029,3,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B029,4,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B029,4,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B029,4,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B029,4,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B029,3,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B029,3,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B029,3,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B029,3,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B029,3,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B029,4,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B029,4,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B029,2,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B029,2,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B029,3,,,Binford_2001_Table_9.01, +B317,,1870,B029,2,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B029,3,,,Binford_2001_Table_9.01, +B319,,1860,B029,3,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B029,3,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B029,2,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B029,2,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B029,2,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B029,3,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B029,3,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B029,3,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B029,2,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B029,3,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B029,3,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B029,3,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B029,2,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B029,2,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B029,3,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B029,2,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B029,2,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B029,3,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B029,2,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B029,2,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B029,2,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B029,2,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B029,2,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B029,2,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B029,2,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B029,2,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B029,2,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B029,1,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B029,3,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B029,2,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B029,3,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B029,4,,,Binford_2001_Table_9.01, +B350,,1800,B029,1,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B029,2,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B029,2,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B029,2,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B029,2,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B029,2,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B029,2,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B029,3,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B029,2,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B029,3,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B029,2,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B029,2,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B029,2,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B029,3,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B029,2,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B029,3,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B029,2,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B029,3,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B029,1,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B029,2,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B029,3,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B029,2,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B029,2,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B029,2,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B029,2,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B029,2,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B029,2,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B029,2,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B029,1,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B029,2,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B029,2,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B029,2,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B029,2,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B029,2,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B029,2,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B029,2,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B029,2,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B029,2,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B029,2,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B029,2,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B029,2,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B029,2,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B029,1,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B029,3,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B029,2,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B029,2,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B029,2,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B029,2,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B029,4,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B029,2,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B029,3,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B029,2,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B029,2,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B029,2,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B029,2,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B029,2,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B029,1,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B029,2,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B029,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B029,2,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B029,2,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B029,2,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B029,2,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B029,2,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B029,2,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B029,2,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B029,1,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B029,2,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B029,2,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B029,1,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B029,2,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B029,2,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B029,1,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B029,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B029,2,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B029,2,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B029,2,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B029,2,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B029,2,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B029,2,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B029,2,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B029,2,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B029,2,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B029,2,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B029,2,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B029,2,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B029,1,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B029,1,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B029,2,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B029,2,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B029,2,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B029,2,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B029,1,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B029,2,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B029,1,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B029,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B029,2,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B029,1,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B029,2,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B029,2,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B029,2,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B003,5,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_5.01, +B10,,1900,B003,5,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_5.01, +B100,,NA,B003,10,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_5.01, +B101,,1934,B003,5,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B003,60,,memmott1983a; memmott1983b,Binford_2001_Table_5.01, +B103,,1928,B003,80,,tindale1962a; tindale1962b,Binford_2001_Table_5.01, +B104,,NA,B003,5,,,Binford_2001_Table_5.01, +B105,,1900,B003,25,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_5.01, +B106,,1910,B003,35,,clement1903; radcliffebrown1912,Binford_2001_Table_5.01, +B107,,1870,B003,34,,brayshaw1990; lumholtz1889,Binford_2001_Table_5.01, +B108,,1934,B003,5,,kaberry1939; nind1831,Binford_2001_Table_5.01, +B109,,1965,B003,0,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_5.01, +B11,,1972,B003,2,,morris1982a,Binford_2001_Table_5.01, +B110,,1880,B003,20,,petersonandlong1986; tonkinson1978,Binford_2001_Table_5.01, +B111,,1960,B003,0,,harris1978; petersonandlong1986,Binford_2001_Table_5.01, +B112,,1968,B003,0,,petersonandlong1986,Binford_2001_Table_5.01, +B113,,1936,B003,0,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_5.01, +B114,,1848,B003,85,,colliverandwoolston1975,Binford_2001_Table_5.01, +B115,,1840,B003,15,,morwood1987; winterbotham1980,Binford_2001_Table_5.01, +B116,,1900,B003,0,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B003,0,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_5.01, +B118,,1968,B003,0,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_5.01, +B119,,1850,B003,40,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_5.01, +B12,,1965,B003,40,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B003,0,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_5.01, +B121,,1900,B003,20,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_5.01, +B122,,1870,B003,5,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B003,0,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_5.01, +B124,,1900,B003,0,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_5.01, +B125,,1880,B003,20,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B003,5,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_5.01, +B127,,1941,B003,0,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B003,35,,,Binford_2001_Table_5.01, +B129,,1840,B003,35,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B003,45,,rai1982; wastl1957,Binford_2001_Table_5.01, +B130,,1910,B003,25,,,Binford_2001_Table_5.01, +B131,,1850,B003,40,,,Binford_2001_Table_5.01, +B132,,1850,B003,30,,nind1831,Binford_2001_Table_5.01, +B133,,1850,B003,45,,williams1985,Binford_2001_Table_5.01, +B134,,1850,B003,40,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_5.01, +B135,,1850,B003,25,,fisonandhowitt1880; howitt1904,Binford_2001_Table_5.01, +B136,,1830,B003,40,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_5.01, +B137,,1830,B003,60,,hiatt1967; jones1971; jones1972,Binford_2001_Table_5.01, +B14,,1924,B003,15,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_5.01, +B143,,1900,B003,60,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_5.01, +B144,,1870,B003,0,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_5.01, +B145,,1870,B003,0,,gifford1926b; strong1929a,Binford_2001_Table_5.01, +B146,,1880,B003,30,,meigs1939,Binford_2001_Table_5.01, +B147,,1850,B003,20,,kroeber1925a; luomala1978,Binford_2001_Table_5.01, +B148,,1860,B003,30,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_5.01, +B149,,1870,B003,0,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_5.01, +B15,,1940,B003,5,,furerhaimendorf1943b,Binford_2001_Table_5.01, +B150,,1860,B003,25,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_5.01, +B151,,1860,B003,15,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_5.01, +B152,,1850,B003,15,,voegelin1938,Binford_2001_Table_5.01, +B153,,1850,B003,10,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_5.01, +B154,,1850,B003,25,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_5.01, +B155,,1850,B003,20,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_5.01, +B156,,1770,B003,50,,,Binford_2001_Table_5.01, +B157,,1870,B003,20,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_5.01, +B158,,1860,B003,25,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B003,25,,cook1956; gifford1926a,Binford_2001_Table_5.01, +B16,,1963,B003,5,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_5.01, +B160,,1860,B003,40,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_5.01, +B161,,1860,B003,70,,cookandheizer1965,Binford_2001_Table_5.01, +B162,,1860,B003,40,,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B003,20,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_5.01, +B164,,1805,B003,30,,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B003,40,,barrett1908; cook1956,Binford_2001_Table_5.01, +B166,,1860,B003,45,,cook1956; goddard1923; nomland1935,Binford_2001_Table_5.01, +B167,,NA,B003,35,,,Binford_2001_Table_5.01, +B168,,1850,B003,50,,collierandthalman1991,Binford_2001_Table_5.01, +B169,,NA,B003,50,,cook1956; nomland1938,Binford_2001_Table_5.01, +B17,,1963,B003,1,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_5.01, +B170,,NA,B003,30,,cook1955,Binford_2001_Table_5.01, +B171,,1850,B003,35,,cook1956; foster1944; gifford1926b,Binford_2001_Table_5.01, +B172,,1860,B003,30,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_5.01, +B173,,1860,B003,30,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B174,,1860,B003,30,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B003,10,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_5.01, +B176,,1860,B003,45,,gray1987,Binford_2001_Table_5.01, +B177,,1860,B003,60,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B003,65,,cook1956; drucker1940,Binford_2001_Table_5.01, +B179,,1860,B003,30,,cookandheizer1965; dixon1907,Binford_2001_Table_5.01, +B18,,1963,B003,0,,senandsen1955; williams1974,Binford_2001_Table_5.01, +B180,,1860,B003,55,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_5.01, +B181,,1870,B003,60,,gray1987,Binford_2001_Table_5.01, +B182,,1860,B003,55,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_5.01, +B183,,1860,B003,25,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B003,65,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_5.01, +B185,,1850,B003,20,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_5.01, +B186,,1850,B003,70,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_5.01, +B187,,1860,B003,30,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_5.01, +B188,,1860,B003,25,,gifford1926b; ray1963,Binford_2001_Table_5.01, +B189,,1860,B003,50,,gifford1926b; spier1930,Binford_2001_Table_5.01, +B19,,1946,B003,5,,ehrenfels1952,Binford_2001_Table_5.01, +B190,,1760,B003,15,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_5.01, +B191,,1570,B003,15,,,Binford_2001_Table_5.01, +B192,,1860,B003,0,,smith1978a; steward1938,Binford_2001_Table_5.01, +B193,,1800,B003,55,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_5.01, +B194,,1715,B003,5,,,Binford_2001_Table_5.01, +B195,,1850,B003,0,,steward1938,Binford_2001_Table_5.01, +B196,,1870,B003,5,,corbusier1886; gifford1932a,Binford_2001_Table_5.01, +B197,,1860,B003,0,,steward1936; steward1938,Binford_2001_Table_5.01, +B198,,1870,B003,0,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_5.01, +B199,,1860,B003,0,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_5.01, +B2,,1968,B003,5,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_5.01, +B20,,1974,B003,10,,bhanu1982; bhanu1992,Binford_2001_Table_5.01, +B200,,1860,B003,0,,steward1936; steward1938,Binford_2001_Table_5.01, +B201,,1860,B003,15,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B003,5,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_5.01, +B203,,1860,B003,0,,steward1938; thomas1983,Binford_2001_Table_5.01, +B204,,1860,B003,0,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_5.01, +B205,,1870,B003,7,,davis1965,Binford_2001_Table_5.01, +B206,,1860,B003,0,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_5.01, +B207,,1860,B003,20,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B208,,1860,B003,30,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_5.01, +B209,,1860,B003,30,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_5.01, +B21,,1978,B003,0,,bird1983; birddavid1987,Binford_2001_Table_5.01, +B210,,1870,B003,20,,fowler1992,Binford_2001_Table_5.01, +B211,,1860,B003,20,,steward1938,Binford_2001_Table_5.01, +B212,,1870,B003,10,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B003,20,,steward1938,Binford_2001_Table_5.01, +B214,,1860,B003,10,,steward1938,Binford_2001_Table_5.01, +B215,,1870,B003,0,,steward1938,Binford_2001_Table_5.01, +B216,,1860,B003,15,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_5.01, +B217,,1860,B003,0,,steward1938,Binford_2001_Table_5.01, +B218,,1860,B003,15,,steward1938,Binford_2001_Table_5.01, +B219,,1860,B003,15,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_5.01, +B22,,1900,B003,75,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_5.01, +B221,,1860,B003,15,,steward1938,Binford_2001_Table_5.01, +B222,,1860,B003,10,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_5.01, +B223,,1870,B003,5,,lowie1924,Binford_2001_Table_5.01, +B224,,1860,B003,10,,steward1938,Binford_2001_Table_5.01, +B225,,1850,B003,15,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_5.01, +B226,,1870,B003,20,,brink1969; kelly1932,Binford_2001_Table_5.01, +B227,,1860,B003,15,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_5.01, +B228,,1860,B003,8,,steward1938,Binford_2001_Table_5.01, +B229,,1860,B003,15,,steward1938,Binford_2001_Table_5.01, +B23,,1900,B003,25,,qiu1983,Binford_2001_Table_5.01, +B230,,1860,B003,25,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_5.01, +B231,,1870,B003,20,,whiting1950,Binford_2001_Table_5.01, +B232,,1860,B003,25,,boas1899; steward1938,Binford_2001_Table_5.01, +B233,,1860,B003,0,,steward1938,Binford_2001_Table_5.01, +B234,,1860,B003,15,,boas1899; steward1974b,Binford_2001_Table_5.01, +B24,,1900,B003,50,,lee1967; shimkin1939,Binford_2001_Table_5.01, +B240,,1880,B003,5,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_5.01, +B241,,1870,B003,0,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_5.01, +B242,,1880,B003,0,,basehart1972; morice1906b; opler1937,Binford_2001_Table_5.01, +B243,,1870,B003,0,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_5.01, +B244,,1860,B003,0,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B245,,1860,B003,5,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_5.01, +B246,,1860,B003,0,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_5.01, +B248,,1870,B003,0,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_5.01, +B249,,1870,B003,0,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_5.01, +B25,,1920,B003,85,,shternberg1933,Binford_2001_Table_5.01, +B250,,1880,B003,40,,chamberlain1892; turneyhigh1941,Binford_2001_Table_5.01, +B252,,1860,B003,20,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B253,,1870,B003,0,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_5.01, +B254,,1850,B003,15,,skinner1914,Binford_2001_Table_5.01, +B255,,1850,B003,0,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_5.01, +B256,,1850,B003,5,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_5.01, +B257,,1870,B003,10,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B003,15,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_5.01, +B259,,1850,B003,5,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B26,,1900,B003,40,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_5.01, +B260,,1880,B003,8,,bamforth1988; jenness1938,Binford_2001_Table_5.01, +B268,,1880,B003,60,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_5.01, +B269,,1860,B003,75,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B003,44,,chard1963; popov1966,Binford_2001_Table_5.01, +B270,,1870,B003,70,,smith1940a; smith1940b,Binford_2001_Table_5.01, +B271,,1850,B003,70,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_5.01, +B272,,1880,B003,65,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_5.01, +B273,,1880,B003,95,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_5.01, +B274,,1850,B003,75,,ray1937; ray1938; silverstein1990,Binford_2001_Table_5.01, +B275,,1860,B003,80,,boyd1990; zenk1990,Binford_2001_Table_5.01, +B276,,1860,B003,50,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_5.01, +B277,,1880,B003,75,,stern1934,Binford_2001_Table_5.01, +B278,,1860,B003,75,,olson1936a; schalk1978,Binford_2001_Table_5.01, +B279,,1880,B003,75,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_5.01, +B28,,1860,B003,69,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_5.01, +B280,,1880,B003,60,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_5.01, +B281,,NA,B003,45,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_5.01, +B282,,1860,B003,75,,kennedyandbouchard1990,Binford_2001_Table_5.01, +B283,,1880,B003,70,,cybulski1990b; hilton1990,Binford_2001_Table_5.01, +B284,,1880,B003,75,,pettitt1950,Binford_2001_Table_5.01, +B285,,1860,B003,70,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_5.01, +B286,,1860,B003,80,,gunther1962; schalk1978; swan1870,Binford_2001_Table_5.01, +B287,,1880,B003,55,,olson1940; schalk1978,Binford_2001_Table_5.01, +B288,,1890,B003,85,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B289,,1880,B003,75,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_5.01, +B290,,1890,B003,89,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B291,,1880,B003,70,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_5.01, +B292,,1880,B003,84,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_5.01, +B293,,1880,B003,69,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_5.01, +B294,,1840,B003,94,,holmberg1985; knechtandjordan1985,Binford_2001_Table_5.01, +B295,,1890,B003,89.99,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_5.01, +B296,,1850,B003,75,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_5.01, +B297,,1930,B003,89.99,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_5.01, +B298,,1830,B003,94,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_5.01, +B299,,1930,B003,84,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_5.01, +B3,,1900,B003,5,,hagen1908; persoon1989; volz1909,Binford_2001_Table_5.01, +B315,,1850,B003,50,,murdock1980,Binford_2001_Table_5.01, +B316,,1860,B003,40,,,Binford_2001_Table_5.01, +B317,,1870,B003,55,,teit1928,Binford_2001_Table_5.01, +B318,,1880,B003,45,,,Binford_2001_Table_5.01, +B319,,1860,B003,60,,spierandsapir1930,Binford_2001_Table_5.01, +B320,,1860,B003,25,,teit1930,Binford_2001_Table_5.01, +B321,,1880,B003,60,,clineetal1938,Binford_2001_Table_5.01, +B322,,1860,B003,45,,grabert1974; teit1930,Binford_2001_Table_5.01, +B323,,1870,B003,40,,kelly1995; ray1932; teit1930,Binford_2001_Table_5.01, +B324,,1850,B003,52,,spinden1908,Binford_2001_Table_5.01, +B325,,1860,B003,55,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_5.01, +B326,,1870,B003,45,,teit1930,Binford_2001_Table_5.01, +B327,,1870,B003,45,,jenness1935; quimby1962,Binford_2001_Table_5.01, +B328,,1800,B003,40,,kinietz1947,Binford_2001_Table_5.01, +B329,,1700,B003,35,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_5.01, +B330,,1860,B003,20,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_5.01, +B331,,1880,B003,30,,hickerson1967; landes1937a,Binford_2001_Table_5.01, +B332,,1870,B003,30,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_5.01, +B333,,1850,B003,55,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_5.01, +B334,,1940,B003,30,,dunning1959; grant1924; rogers1969,Binford_2001_Table_5.01, +B335,,1900,B003,20,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_5.01, +B336,,1865,B003,35,,goldman1940; jenness1943; smithnd,Binford_2001_Table_5.01, +B337,,1800,B003,35,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_5.01, +B338,,1880,B003,25.1,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_5.01, +B339,,1850,B003,35,,dunning1959; rogers1969,Binford_2001_Table_5.01, +B340,,1900,B003,40,,morantz1983; rogers1969,Binford_2001_Table_5.01, +B341,,1890,B003,35,,boas1895a; rogersandblack1976,Binford_2001_Table_5.01, +B342,,1880,B003,40,,lane1952; tanner1944,Binford_2001_Table_5.01, +B343,,1880,B003,30,,dennison1981; grant1936; jenness1937,Binford_2001_Table_5.01, +B344,,1850,B003,35,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_5.01, +B345,,1860,B003,30,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_5.01, +B346,,1920,B003,25,,honigmann1949; honigmann1954,Binford_2001_Table_5.01, +B347,,1870,B003,30,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_5.01, +B348,,1880,B003,50,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B003,43,,grant1936; jenness1937; jenness1943,Binford_2001_Table_5.01, +B35,,1950,B003,60,,,Binford_2001_Table_5.01, +B350,,1800,B003,15,,gillespie1981,Binford_2001_Table_5.01, +B351,,1880,B003,20,,adney1900; crowandobley1981,Binford_2001_Table_5.01, +B352,,1860,B003,25,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_5.01, +B353,,1900,B003,55,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_5.01, +B354,,1880,B003,35,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_5.01, +B355,,1880,B003,25,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_5.01, +B356,,1880,B003,33,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_5.01, +B357,,1880,B003,55,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_5.01, +B358,,1860,B003,20,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_5.01, +B359,,1930,B003,57,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_5.01, +B36,,1960,B003,5,,metraux1948,Binford_2001_Table_5.01, +B360,,1900,B003,41,,morantz1983; skinner1911,Binford_2001_Table_5.01, +B361,,1860,B003,31,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_5.01, +B362,,1870,B003,46,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_5.01, +B363,,1890,B003,36,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_5.01, +B364,,1860,B003,62,,michael1967; snow1981,Binford_2001_Table_5.01, +B365,,1890,B003,26,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_5.01, +B369,,1870,B003,84,,ray1992; seltzer1933,Binford_2001_Table_5.01, +B37,,1968,B003,5,,kloos1977; kloos1982,Binford_2001_Table_5.01, +B370,,1890,B003,36,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_5.01, +B371,,1880,B003,78,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_5.01, +B372,,1890,B003,70.99,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_5.01, +B373,,1890,B003,81.9,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_5.01, +B374,,1900,B003,44.9,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_5.01, +B375,,1900,B003,24.9,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_5.01, +B377,,1950,B003,10.9,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_5.01, +B378,,1910,B003,61.9,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_5.01, +B379,,1920,B003,89.9,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_5.01, +B38,,1989,B003,53,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_5.01, +B380,,1880,B003,64.9,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_5.01, +B381,,1920,B003,74.99,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_5.01, +B382,,1920,B003,69.9,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_5.01, +B383,,1880,B003,64.9,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_5.01, +B384,,1920,B003,84.99,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_5.01, +B385,,1880,B003,84.99,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_5.01, +B386,,1880,B003,94.99,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_5.01, +B387,,1880,B003,74.99,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_5.01, +B388,,1880,B003,89.99,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_5.01, +B389,,1880,B003,74.99,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_5.01, +B39,,1960,B003,20,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_5.01, +B390,,1880,B003,69.99,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_5.01, +B4,,1989,B003,35,,agrawal1967; rizvi1990,Binford_2001_Table_5.01, +B40,,1990,B003,13,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_5.01, +B41,,1920,B003,10,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_5.01, +B42,,1901,B003,70,,metraux1946guato; schmidt1942,Binford_2001_Table_5.01, +B43,,1940,B003,5,,holmberg1950,Binford_2001_Table_5.01, +B44,,1968,B003,5,,stearman1989,Binford_2001_Table_5.01, +B45,,1938,B003,5,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_5.01, +B46,,1600,B003,65,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_5.01, +B47,,1975,B003,8,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01, +B48,,1880,B003,10,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_5.01, +B49,,1954,B003,10,,kozaketal1979,Binford_2001_Table_5.01, +B5,,1952,B003,45,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_5.01, +B50,,1910,B003,5,,henry1964,Binford_2001_Table_5.01, +B51,,1870,B003,5,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_5.01, +B52,,1880,B003,75,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B003,75,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_5.01, +B54,,1880,B003,20,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_5.01, +B55,,1870,B003,70,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_5.01, +B6,,1906,B003,30,,temple1903,Binford_2001_Table_5.01, +B60,,1980,B003,0.04,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_5.01, +B61,,1976,B003,0.7,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_5.01, +B62,,1977,B003,1,,skeatandblagden1906; terashima1980,Binford_2001_Table_5.01, +B63,,1980,B003,1,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_5.01, +B64,,1980,B003,0.8,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_5.01, +B65,,1930,B003,1,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_5.01, +B66,,NA,B003,0,,kellyandpoyer1993,Binford_2001_Table_5.01, +B67,,1950,B003,5,,clark1951,Binford_2001_Table_5.01, +B68,,1920,B003,0,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_5.01, +B69,,1910,B003,0,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_5.01, +B7,,1903,B003,5,,fox1952; reed1904,Binford_2001_Table_5.01, +B70,,1920,B003,0,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_5.01, +B71,,1928,B003,0,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_5.01, +B72,,1950,B003,0,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_5.01, +B73,,1910,B003,0,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_5.01, +B74,,1962,B003,0,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_5.01, +B75,,1976,B003,0,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_5.01, +B76,,1968,B003,0,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_5.01, +B77,,1920,B003,0,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_5.01, +B78,,1950,B003,10,,potgieter1955; toerien1958,Binford_2001_Table_5.01, +B79,,NA,B003,0,,bleek1924a,Binford_2001_Table_5.01, +B8,,1870,B003,5,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_5.01, +B82,,1848,B003,65,,moore1979,Binford_2001_Table_5.01, +B83,,1900,B003,65,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B003,25,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_5.01, +B85,,1970,B003,50,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_5.01, +B86,,1973,B003,55,,meehan1982; petersonandlong1986,Binford_2001_Table_5.01, +B87,,1950,B003,55,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_5.01, +B88,,1930,B003,10,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_5.01, +B89,,1920,B003,25,,kaberry1935; kaberry1939,Binford_2001_Table_5.01, +B9,,1920,B003,10,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_5.01, +B90,,1920,B003,20,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_5.01, +B91,,1920,B003,25,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_5.01, +B92,,1960,B003,60,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_5.01, +B93,,1930,B003,75,,thomson1933; thomson1934,Binford_2001_Table_5.01, +B94,,1937,B003,10,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_5.01, +B95,,1920,B003,35,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_5.01, +B96,,1880,B003,55,,andersonandrobins1988; roth1909,Binford_2001_Table_5.01, +B97,,1930,B003,60,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_5.01, +B98,,1926,B003,70,,haleandtindale1933; roth1909,Binford_2001_Table_5.01, +B99,,1900,B003,60,,stanner1933,Binford_2001_Table_5.01, +B1,,1970,B030,3,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B030,3,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B030,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B030,1,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B030,1,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B030,1,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B030,1,,,Binford_2001_Table_9.01, +B105,,1900,B030,1,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B030,1,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B030,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B030,1,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B030,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B030,3,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B030,1,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B030,1,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B030,1,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B030,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B030,1,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B030,1,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B030,1,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B030,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B030,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B030,1,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B030,3,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B030,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B030,1,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B030,1,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B030,1,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B030,1,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B030,1,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B030,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B030,1,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B030,1,,,Binford_2001_Table_9.01, +B129,,1840,B030,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B030,3,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B030,1,,,Binford_2001_Table_9.01, +B131,,1850,B030,1,,,Binford_2001_Table_9.01, +B132,,1850,B030,1,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B030,1,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B030,1,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B030,1,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B030,1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B030,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B030,3,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B030,3,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B030,3,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B030,3,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B030,1,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B030,1,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B030,1,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B030,1,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B030,3,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B030,1,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B030,1,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B030,2,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B030,1,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B030,1,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B030,1,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B030,1,,,Binford_2001_Table_9.01, +B157,,1870,B030,2,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B030,1,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B030,1,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B030,3,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B030,1,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B030,1,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B030,1,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B030,1,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B030,1,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B030,1,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B030,1,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B030,1,,,Binford_2001_Table_9.01, +B168,,1850,B030,1,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B030,1,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B030,3,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B030,1,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B030,1,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B030,1,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B030,1,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B030,2,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B030,1,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B030,1,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B030,1,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B030,1,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B030,1,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B030,3,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B030,2,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B030,1,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B030,1,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B030,2,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B030,1,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B030,1,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B030,1,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B030,2,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B030,1,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B030,1,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B030,3,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B030,1,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B030,3,,,Binford_2001_Table_9.01, +B192,,1860,B030,1,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B030,1,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B030,1,,,Binford_2001_Table_9.01, +B195,,1850,B030,1,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B030,1,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B030,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B030,1,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B030,2,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B030,3,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B030,3,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B030,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B030,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B030,1,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B030,1,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B030,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B030,2,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B030,1,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B030,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B030,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B030,1,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B030,3,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B030,1,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B030,2,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B030,1,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B030,1,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B030,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B030,1,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B030,1,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B030,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B030,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B030,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B030,1,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B030,2,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B030,2,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B030,1,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B030,1,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B030,1,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B030,1,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B030,1,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B030,2,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B030,1,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B030,1,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B030,1,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B030,1,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B030,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B030,1,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B030,1,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B030,1,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B030,1,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B030,1,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B030,1,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B030,1,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B030,1,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B030,1,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B030,1,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B030,1,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B030,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B030,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B030,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B030,2,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B030,1,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B030,1,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B030,1,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B030,2,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B030,1,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B030,1,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B030,1,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B030,1,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B030,1,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B030,2,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B030,1,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B030,1,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B030,1,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B030,1,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B030,1,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B030,2,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B030,1,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B030,2,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B030,1,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B030,1,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B030,2,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B030,2,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B030,1,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B030,1,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B030,1,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B030,1,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B030,1,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B030,1,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B030,2,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B030,1,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B030,2,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B030,1,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B030,1,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B030,1,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B030,1,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B030,3,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B030,2,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B030,2,,,Binford_2001_Table_9.01, +B317,,1870,B030,2,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B030,2,,,Binford_2001_Table_9.01, +B319,,1860,B030,1,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B030,1,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B030,1,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B030,1,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B030,1,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B030,1,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B030,2,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B030,2,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B030,1,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B030,1,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B030,1,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B030,1,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B030,2,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B030,3,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B030,1,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B030,3,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B030,3,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B030,2,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B030,3,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B030,3,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B030,3,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B030,3,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B030,3,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B030,1,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B030,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B030,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B030,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B030,2,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B030,2,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B030,2,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B030,2,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B030,2,,,Binford_2001_Table_9.01, +B350,,1800,B030,1,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B030,1,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B030,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B030,3,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B030,1,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B030,1,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B030,1,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B030,1,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B030,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B030,1,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B030,1,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B030,3,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B030,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B030,1,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B030,2,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B030,1,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B030,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B030,1,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B030,3,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B030,1,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B030,1,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B030,1,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B030,1,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B030,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B030,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B030,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B030,1,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B030,1,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B030,3,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B030,1,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B030,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B030,1,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B030,1,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B030,1,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B030,1,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B030,1,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B030,1,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B030,1,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B030,1,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B030,3,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B030,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B030,3,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B030,3,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B030,3,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B030,3,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B030,3,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B030,3,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B030,3,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B030,3,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B030,1,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B030,1,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B030,3,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B030,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B030,3,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B030,1,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B030,1,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B030,1,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B030,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B030,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B030,1,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B030,3,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B030,3,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B030,3,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B030,3,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B030,3,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B030,3,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B030,3,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B030,3,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B030,3,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B030,3,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B030,3,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B030,3,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B030,3,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B030,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B030,1,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B030,1,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B030,3,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B030,1,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B030,1,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B030,3,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B030,3,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B030,1,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B030,3,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B030,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B030,1,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B030,1,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B030,1,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B030,1,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B030,1,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B030,1,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B030,3,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B030,1,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B030,1,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B030,1,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B030,1,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B030,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B030,1,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B030,1,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B030,1,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B030,1,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B030,1,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B031,1,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B031,1,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B031,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B031,1,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B031,1,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B031,1,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B031,1,,,Binford_2001_Table_9.01, +B105,,1900,B031,1,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B031,1,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B031,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B031,1,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B031,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B031,1,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B031,1,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B031,1,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B031,1,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B031,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B031,1,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B031,1,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B031,1,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B031,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B031,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B031,1,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B031,1,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B031,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B031,1,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B031,1,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B031,1,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B031,1,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B031,1,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B031,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B031,1,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B031,1,,,Binford_2001_Table_9.01, +B129,,1840,B031,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B031,1,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B031,1,,,Binford_2001_Table_9.01, +B131,,1850,B031,1,,,Binford_2001_Table_9.01, +B132,,1850,B031,1,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B031,1,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B031,1,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B031,1,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B031,1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B031,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B031,1,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B031,1,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B031,1,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B031,1,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B031,1,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B031,1,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B031,2,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B031,2,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B031,1,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B031,2,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B031,1,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B031,1,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B031,2,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B031,2,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B031,2,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B031,3,,,Binford_2001_Table_9.01, +B157,,1870,B031,1,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B031,2,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B031,2,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B031,1,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B031,2,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B031,3,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B031,1,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B031,2,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B031,2,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B031,2,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B031,2,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B031,2,,,Binford_2001_Table_9.01, +B168,,1850,B031,1,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B031,1,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B031,1,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B031,2,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B031,2,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B031,2,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B031,2,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B031,2,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B031,1,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B031,2,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B031,1,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B031,2,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B031,2,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B031,1,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B031,2,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B031,2,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B031,2,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B031,2,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B031,2,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B031,2,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B031,2,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B031,2,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B031,2,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B031,2,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B031,1,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B031,1,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B031,1,,,Binford_2001_Table_9.01, +B192,,1860,B031,1,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B031,1,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B031,1,,,Binford_2001_Table_9.01, +B195,,1850,B031,1,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B031,1,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B031,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B031,1,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B031,1,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B031,1,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B031,1,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B031,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B031,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B031,1,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B031,1,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B031,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B031,1,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B031,1,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B031,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B031,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B031,1,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B031,1,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B031,1,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B031,1,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B031,1,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B031,1,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B031,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B031,1,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B031,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B031,1,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B031,1,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B031,2,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B031,1,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B031,1,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B031,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B031,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B031,1,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B031,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B031,1,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B031,1,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B031,1,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B031,2,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B031,2,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B031,1,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B031,1,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B031,1,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B031,1,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B031,2,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B031,2,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B031,1,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B031,2,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B031,1,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B031,1,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B031,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B031,2,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B031,1,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B031,2,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B031,2,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B031,2,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B031,2,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B031,2,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B031,2,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B031,1,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B031,2,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B031,2,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B031,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B031,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B031,2,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B031,1,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B031,1,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B031,2,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B031,2,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B031,1,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B031,2,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B031,2,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B031,2,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B031,3,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B031,2,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B031,2,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B031,3,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B031,3,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B031,3,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B031,2,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B031,2,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B031,2,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B031,2,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B031,3,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B031,3,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B031,3,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B031,3,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B031,3,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B031,3,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B031,3,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B031,3,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B031,3,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B031,3,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B031,3,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B031,3,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B031,3,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B031,2,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B031,2,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B031,3,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B031,3,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B031,2,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B031,1,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B031,2,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B031,2,,,Binford_2001_Table_9.01, +B317,,1870,B031,2,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B031,1,,,Binford_2001_Table_9.01, +B319,,1860,B031,2,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B031,2,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B031,3,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B031,2,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B031,1,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B031,2,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B031,2,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B031,1,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B031,1,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B031,1,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B031,2,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B031,2,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B031,1,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B031,1,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B031,2,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B031,1,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B031,1,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B031,3,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B031,2,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B031,1,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B031,1,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B031,1,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B031,1,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B031,1,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B031,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B031,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B031,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B031,1,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B031,2,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B031,3,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B031,3,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B031,3,,,Binford_2001_Table_9.01, +B350,,1800,B031,1,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B031,2,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B031,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B031,1,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B031,1,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B031,1,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B031,2,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B031,1,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B031,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B031,1,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B031,1,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B031,1,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B031,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B031,3,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B031,2,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B031,2,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B031,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B031,2,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B031,1,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B031,1,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B031,2,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B031,1,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B031,2,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B031,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B031,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B031,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B031,2,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B031,2,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B031,1,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B031,2,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B031,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B031,1,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B031,1,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B031,1,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B031,1,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B031,1,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B031,1,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B031,1,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B031,2,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B031,1,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B031,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B031,1,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B031,1,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B031,1,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B031,1,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B031,1,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B031,1,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B031,1,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B031,3,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B031,1,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B031,1,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B031,1,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B031,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B031,1,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B031,2,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B031,1,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B031,1,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B031,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B031,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B031,1,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B031,1,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B031,1,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B031,1,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B031,1,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B031,1,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B031,1,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B031,1,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B031,1,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B031,1,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B031,1,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B031,1,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B031,1,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B031,1,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B031,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B031,1,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B031,1,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B031,1,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B031,1,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B031,1,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B031,1,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B031,1,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B031,1,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B031,1,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B031,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B031,1,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B031,1,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B031,1,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B031,1,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B031,1,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B031,1,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B031,1,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B031,1,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B031,1,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B031,1,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B031,1,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B031,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B031,1,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B031,1,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B031,1,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B031,1,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B031,2,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B032,2,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B032,1,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B032,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B032,1,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B032,1,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B032,1,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B032,1,,,Binford_2001_Table_9.01, +B105,,1900,B032,1,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B032,1,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B032,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B032,1,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B032,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B032,1,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B032,1,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B032,1,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B032,1,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B032,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B032,1,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B032,1,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B032,1,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B032,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B032,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B032,1,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B032,1,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B032,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B032,1,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B032,1,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B032,1,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B032,1,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B032,1,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B032,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B032,1,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B032,1,,,Binford_2001_Table_9.01, +B129,,1840,B032,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B032,1,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B032,1,,,Binford_2001_Table_9.01, +B131,,1850,B032,1,,,Binford_2001_Table_9.01, +B132,,1850,B032,1,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B032,1,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B032,1,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B032,1,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B032,1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B032,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B032,1,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B032,2,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B032,3,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B032,2,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B032,1,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B032,2,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B032,3,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B032,2,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B032,1,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B032,3,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B032,3,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B032,3,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B032,2,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B032,3,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B032,4,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B032,5,,,Binford_2001_Table_9.01, +B157,,1870,B032,2,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B032,4,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B032,4,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B032,1,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B032,4,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B032,5,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B032,1,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B032,4,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B032,4,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B032,4,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B032,1,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B032,2,,,Binford_2001_Table_9.01, +B168,,1850,B032,4,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B032,1,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B032,1,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,,B032,NA,,,, +B171,,1850,B032,4,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B032,4,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B032,4,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B032,4,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B032,3,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B032,1,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B032,1,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B032,1,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B032,2,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B032,1,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B032,1,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B032,4,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B032,1,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B032,4,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B032,1,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B032,1,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B032,1,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B032,2,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B032,1,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B032,1,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B032,1,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B032,1,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B032,1,,,Binford_2001_Table_9.01, +B192,,1860,B032,1,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B032,2,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B032,1,,,Binford_2001_Table_9.01, +B195,,1850,B032,1,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B032,3,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B032,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B032,3,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B032,1,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B032,1,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B032,1,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B032,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B032,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B032,4,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B032,1,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B032,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B032,1,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B032,1,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B032,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B032,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B032,2,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B032,1,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B032,1,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B032,1,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B032,1,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B032,2,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B032,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B032,1,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B032,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B032,1,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B032,1,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B032,4,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B032,2,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B032,1,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B032,2,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B032,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B032,1,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B032,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B032,2,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B032,3,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B032,2,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B032,2,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B032,2,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B032,2,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B032,2,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B032,1,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B032,1,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B032,1,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B032,3,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B032,1,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B032,3,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B032,1,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B032,3,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B032,3,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B032,3,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B032,2,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B032,3,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B032,3,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B032,1,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B032,2,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B032,2,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B032,3,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B032,3,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B032,3,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B032,3,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B032,3,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B032,2,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B032,3,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B032,1,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,,B032,NA,,,, +B268,,1880,B032,4,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B032,4,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B032,2,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B032,4,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B032,3,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B032,2,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B032,5,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B032,4,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B032,5,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B032,2,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B032,2,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B032,4,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B032,4,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B032,2,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B032,3,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B032,2,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B032,3,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B032,5,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B032,3,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B032,3,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B032,3,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B032,3,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B032,4,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B032,4,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B032,4,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B032,4,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B032,4,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B032,4,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B032,3,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B032,4,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B032,2,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B032,5,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B032,4,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B032,1,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B032,1,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B032,2,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B032,3,,,Binford_2001_Table_9.01, +B317,,1870,B032,3,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B032,3,,,Binford_2001_Table_9.01, +B319,,1860,B032,3,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B032,2,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B032,3,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B032,2,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B032,3,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B032,3,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B032,3,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B032,3,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B032,2,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B032,1,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B032,4,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B032,3,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B032,2,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B032,2,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B032,3,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B032,2,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B032,2,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B032,5,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B032,2,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B032,2,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B032,2,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B032,2,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B032,2,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B032,2,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B032,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B032,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B032,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B032,1,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B032,3,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B032,1,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B032,5,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B032,5,,,Binford_2001_Table_9.01, +B350,,1800,B032,1,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B032,2,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B032,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B032,1,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B032,1,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B032,1,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B032,2,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B032,2,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B032,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B032,2,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B032,1,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B032,1,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B032,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B032,4,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B032,1,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B032,2,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B032,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B032,2,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B032,1,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B032,2,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B032,2,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B032,2,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B032,2,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B032,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B032,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B032,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B032,1,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B032,1,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B032,1,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B032,2,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B032,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B032,1,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B032,1,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B032,1,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B032,1,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B032,1,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B032,1,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B032,1,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B032,1,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B032,1,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B032,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B032,1,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B032,1,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B032,3,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B032,2,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B032,1,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B032,1,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B032,2,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B032,5,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B032,1,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B032,2,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B032,1,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B032,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B032,2,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B032,4,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B032,1,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B032,1,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B032,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B032,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B032,1,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B032,1,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B032,1,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B032,1,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B032,1,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B032,1,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B032,1,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B032,1,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B032,1,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B032,1,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B032,1,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B032,1,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B032,1,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B032,1,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B032,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B032,1,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B032,1,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B032,1,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B032,1,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B032,1,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B032,1,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B032,1,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B032,1,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B032,1,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B032,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B032,1,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B032,1,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B032,1,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B032,1,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B032,1,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B032,1,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B032,1,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B032,1,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B032,1,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B032,1,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B032,1,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B032,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B032,1,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B032,1,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B032,1,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B032,1,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B032,1,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B033,1,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B033,1,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B033,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B033,1,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B033,1,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B033,1,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B033,1,,,Binford_2001_Table_9.01, +B105,,1900,B033,1,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B033,1,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B033,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B033,1,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B033,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B033,1,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B033,1,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B033,1,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B033,1,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B033,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B033,1,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B033,1,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B033,1,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B033,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B033,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B033,1,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B033,1,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B033,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B033,1,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B033,1,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B033,1,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B033,1,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B033,1,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B033,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B033,1,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B033,1,,,Binford_2001_Table_9.01, +B129,,1840,B033,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B033,1,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B033,1,,,Binford_2001_Table_9.01, +B131,,1850,B033,1,,,Binford_2001_Table_9.01, +B132,,1850,B033,1,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B033,1,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B033,1,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B033,1,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B033,1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B033,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B033,1,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B033,1,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B033,1,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B033,4,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B033,1,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B033,1,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B033,4,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B033,3,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B033,1,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B033,3,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B033,4,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B033,4,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B033,4,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B033,3,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B033,4,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B033,4,,,Binford_2001_Table_9.01, +B157,,1870,B033,3,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B033,4,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B033,4,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B033,1,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B033,4,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B033,4,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B033,3,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B033,4,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B033,4,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B033,4,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B033,4,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B033,4,,,Binford_2001_Table_9.01, +B168,,1850,B033,4,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B033,4,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B033,1,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B033,4,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B033,4,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B033,4,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B033,4,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B033,3,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B033,3,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B033,4,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B033,3,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B033,4,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B033,3,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B033,4,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B033,4,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B033,4,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B033,4,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B033,3,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B033,4,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B033,3,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B033,4,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B033,3,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B033,4,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B033,3,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B033,1,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B033,1,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B033,1,,,Binford_2001_Table_9.01, +B192,,1860,B033,3,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B033,1,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B033,1,,,Binford_2001_Table_9.01, +B195,,1850,B033,3,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B033,1,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B033,3,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B033,1,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B033,3,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B033,1,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B033,1,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B033,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B033,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B033,3,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B033,1,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B033,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B033,3,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B033,3,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B033,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B033,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B033,1,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B033,4,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B033,1,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B033,3,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B033,1,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B033,1,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B033,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B033,3,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B033,1,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B033,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B033,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B033,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B033,1,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B033,1,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B033,1,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B033,1,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B033,1,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B033,1,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B033,1,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B033,1,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B033,1,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B033,1,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B033,1,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B033,1,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B033,1,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B033,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B033,1,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B033,1,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B033,1,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B033,1,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B033,1,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B033,1,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B033,1,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B033,1,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B033,1,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B033,1,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B033,1,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B033,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B033,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B033,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B033,1,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B033,1,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B033,2,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B033,3,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B033,1,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B033,1,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B033,1,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B033,1,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B033,2,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B033,4,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B033,4,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B033,2,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B033,2,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B033,4,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B033,2,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B033,1,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B033,2,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B033,3,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B033,3,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B033,2,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B033,4,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B033,2,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B033,2,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B033,2,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B033,2,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B033,2,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B033,2,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B033,2,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B033,2,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B033,2,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B033,2,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B033,2,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B033,1,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B033,1,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B033,2,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B033,1,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B033,1,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B033,1,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B033,1,,,Binford_2001_Table_9.01, +B317,,1870,B033,1,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B033,1,,,Binford_2001_Table_9.01, +B319,,1860,B033,2,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B033,1,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B033,1,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B033,1,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B033,1,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B033,1,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B033,1,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B033,1,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B033,1,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B033,1,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B033,1,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B033,1,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B033,1,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B033,1,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B033,2,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B033,1,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B033,1,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B033,2,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B033,1,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B033,1,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B033,1,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B033,1,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B033,1,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B033,1,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B033,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B033,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B033,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B033,1,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B033,2,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B033,2,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B033,2,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B033,2,,,Binford_2001_Table_9.01, +B350,,1800,B033,1,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B033,2,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B033,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B033,1,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B033,2,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B033,1,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B033,1,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B033,1,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B033,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B033,1,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B033,1,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B033,1,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B033,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B033,2,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B033,2,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B033,1,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B033,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B033,1,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B033,1,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B033,1,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B033,2,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B033,1,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B033,1,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B033,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B033,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B033,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B033,1,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B033,1,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B033,1,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B033,1,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B033,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B033,1,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B033,1,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B033,1,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B033,1,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B033,1,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B033,1,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B033,1,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B033,1,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B033,1,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B033,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B033,1,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B033,1,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B033,1,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B033,1,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B033,1,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B033,1,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B033,1,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B033,2,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B033,1,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B033,1,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B033,1,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B033,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B033,1,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B033,1,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B033,1,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B033,1,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B033,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B033,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B033,1,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B033,1,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B033,1,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B033,1,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B033,1,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B033,1,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B033,1,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B033,1,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B033,3,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B033,1,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B033,1,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B033,1,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B033,1,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B033,1,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B033,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B033,1,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B033,1,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B033,1,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B033,1,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B033,1,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B033,1,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B033,1,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B033,1,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B033,1,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B033,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B033,1,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B033,1,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B033,1,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B033,1,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B033,1,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B033,1,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B033,1,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B033,1,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B033,1,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B033,1,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B033,1,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B033,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B033,1,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B033,1,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B033,1,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B033,1,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B033,1,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B034,1,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B034,1,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B034,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B034,1,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B034,1,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B034,1,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B034,1,,,Binford_2001_Table_9.01, +B105,,1900,B034,1,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B034,1,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B034,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B034,1,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B034,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B034,1,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B034,1,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B034,1,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B034,1,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B034,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B034,1,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B034,1,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B034,1,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B034,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B034,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B034,1,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B034,1,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B034,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B034,1,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B034,1,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B034,1,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B034,1,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B034,1,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B034,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B034,1,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B034,1,,,Binford_2001_Table_9.01, +B129,,1840,B034,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B034,1,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B034,1,,,Binford_2001_Table_9.01, +B131,,1850,B034,1,,,Binford_2001_Table_9.01, +B132,,1850,B034,1,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B034,1,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B034,1,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B034,1,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B034,1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B034,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B034,1,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B034,2,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B034,1,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B034,1,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B034,1,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B034,1,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B034,1,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B034,2,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B034,1,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B034,1,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B034,1,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B034,1,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B034,2,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B034,1,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B034,2,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B034,2,,,Binford_2001_Table_9.01, +B157,,1870,B034,1,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B034,2,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B034,3,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B034,1,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B034,2,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B034,3,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B034,2,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B034,1,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B034,3,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B034,3,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B034,2,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B034,3,,,Binford_2001_Table_9.01, +B168,,1850,B034,3,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B034,2,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B034,1,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B034,3,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B034,2,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B034,2,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B034,2,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B034,2,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B034,1,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B034,2,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B034,1,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B034,3,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B034,2,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B034,1,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B034,3,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B034,2,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B034,3,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B034,1,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B034,3,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B034,1,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B034,3,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B034,1,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B034,2,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B034,2,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B034,1,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B034,1,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B034,1,,,Binford_2001_Table_9.01, +B192,,1860,B034,1,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B034,1,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B034,1,,,Binford_2001_Table_9.01, +B195,,1850,B034,1,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B034,1,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B034,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B034,1,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B034,1,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B034,1,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B034,1,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B034,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B034,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B034,1,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B034,1,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B034,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B034,1,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B034,1,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B034,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B034,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B034,1,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B034,1,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B034,1,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B034,1,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B034,1,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B034,1,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B034,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B034,1,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B034,2,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B034,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B034,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B034,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B034,1,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B034,1,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B034,1,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B034,1,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B034,1,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B034,1,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B034,1,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B034,4,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B034,1,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B034,1,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B034,1,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B034,1,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B034,1,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B034,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B034,1,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B034,1,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B034,1,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B034,1,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B034,2,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B034,1,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B034,1,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B034,3,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B034,1,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B034,1,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B034,1,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B034,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B034,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B034,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B034,1,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B034,1,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B034,3,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B034,2,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B034,1,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B034,3,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B034,3,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B034,4,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B034,4,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B034,3,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B034,3,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B034,1,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B034,4,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B034,3,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B034,2,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B034,2,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B034,2,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B034,3,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B034,4,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B034,4,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B034,3,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B034,2,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B034,3,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B034,3,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B034,4,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B034,4,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B034,4,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B034,4,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B034,4,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B034,4,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B034,2,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B034,3,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B034,1,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B034,4,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B034,3,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B034,1,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B034,1,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B034,1,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B034,1,,,Binford_2001_Table_9.01, +B317,,1870,B034,1,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B034,1,,,Binford_2001_Table_9.01, +B319,,1860,B034,2,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B034,2,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B034,1,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B034,1,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B034,1,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B034,1,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B034,1,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B034,1,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B034,1,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B034,1,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B034,1,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B034,1,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B034,1,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B034,1,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B034,2,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B034,1,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B034,1,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B034,3,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B034,1,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B034,1,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B034,1,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B034,1,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B034,1,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B034,1,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B034,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B034,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B034,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B034,1,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B034,2,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B034,2,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B034,2,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B034,3,,,Binford_2001_Table_9.01, +B350,,1800,B034,1,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B034,1,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B034,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B034,1,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B034,2,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B034,1,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B034,1,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B034,1,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B034,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B034,2,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B034,1,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B034,1,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B034,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B034,2,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B034,1,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B034,1,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B034,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B034,1,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B034,1,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B034,1,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B034,1,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B034,1,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B034,1,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B034,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B034,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B034,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B034,1,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B034,2,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B034,1,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B034,1,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B034,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B034,1,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B034,1,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B034,1,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B034,1,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B034,1,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B034,1,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B034,1,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B034,1,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B034,1,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B034,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B034,1,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B034,1,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B034,2,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B034,1,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B034,1,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B034,1,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B034,1,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B034,3,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B034,1,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B034,1,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B034,1,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B034,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B034,1,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B034,1,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B034,1,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B034,1,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B034,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B034,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B034,1,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B034,1,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B034,1,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B034,1,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B034,1,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B034,1,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B034,1,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B034,1,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B034,1,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B034,1,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B034,1,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B034,1,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B034,1,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B034,1,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B034,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B034,1,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B034,1,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B034,1,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B034,1,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B034,1,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B034,1,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B034,1,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B034,1,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B034,2,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B034,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B034,1,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B034,1,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B034,1,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B034,1,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B034,1,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B034,1,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B034,1,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B034,1,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B034,1,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B034,1,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B034,1,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B034,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B034,1,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B034,1,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B034,1,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B034,1,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B034,1,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B035,4,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B035,5,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B035,5,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B035,3,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B035,3,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B035,3,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B035,3,,,Binford_2001_Table_9.01, +B105,,1900,B035,4,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B035,3,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B035,3,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B035,3,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B035,3,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B035,3,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B035,4,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B035,3,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B035,3,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B035,4,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B035,5,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B035,5,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B035,3,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B035,3,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B035,4,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B035,4,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B035,1,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B035,4,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B035,3,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B035,3,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B035,4,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B035,3,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B035,3,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B035,4,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B035,1,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B035,3,,,Binford_2001_Table_9.01, +B129,,1840,B035,5,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B035,1,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B035,3,,,Binford_2001_Table_9.01, +B131,,1850,B035,5,,,Binford_2001_Table_9.01, +B132,,1850,B035,3,,nind1831,Binford_2001_Table_9.01, +B133,,,B035,NA,,,, +B134,,1850,B035,4,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B035,5,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,,B035,NA,,,, +B137,,,B035,NA,,,, +B14,,1924,B035,4,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B035,1,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B035,2,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B035,2,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B035,5,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B035,5,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B035,2,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B035,5,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B035,5,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B035,2,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B035,1,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B035,1,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B035,2,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B035,2,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B035,2,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B035,2,,,Binford_2001_Table_9.01, +B157,,1870,B035,1,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B035,2,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B035,2,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B035,3,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B035,2,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B035,2,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B035,1,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B035,1,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B035,2,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B035,2,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B035,1,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B035,1,,,Binford_2001_Table_9.01, +B168,,1850,B035,1,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B035,1,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B035,5,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B035,2,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B035,2,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B035,2,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B035,2,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B035,4,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B035,4,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B035,2,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B035,1,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B035,2,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B035,5,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B035,5,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B035,1,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B035,2,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B035,2,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B035,4,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B035,1,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B035,5,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B035,1,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B035,4,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B035,2,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B035,2,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B035,5,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B035,3,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B035,1,,,Binford_2001_Table_9.01, +B192,,1860,B035,1,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B035,4,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B035,4,,,Binford_2001_Table_9.01, +B195,,1850,B035,4,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B035,5,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B035,4,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B035,4,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B035,1,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B035,2,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B035,3,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B035,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B035,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B035,2,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B035,4,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B035,4,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B035,4,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B035,1,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B035,5,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B035,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B035,1,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B035,5,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B035,1,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B035,1,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B035,1,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B035,1,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B035,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B035,5,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B035,5,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B035,5,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B035,5,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B035,4,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B035,2,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B035,1,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B035,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B035,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B035,5,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B035,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B035,1,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B035,2,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B035,5,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B035,2,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B035,1,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B035,1,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B035,1,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B035,1,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B035,5,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B035,2,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B035,3,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B035,2,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B035,2,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B035,2,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B035,2,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B035,2,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B035,2,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B035,2,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B035,3,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B035,3,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B035,2,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B035,2,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B035,2,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B035,2,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B035,2,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B035,2,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B035,2,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B035,2,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B035,2,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B035,2,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B035,2,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B035,2,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B035,1,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B035,2,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B035,2,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B035,2,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B035,2,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B035,2,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B035,2,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B035,1,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B035,2,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B035,2,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B035,2,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B035,2,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B035,2,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B035,2,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B035,2,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B035,2,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B035,2,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B035,2,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B035,1,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B035,2,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B035,2,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B035,2,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B035,1,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B035,2,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B035,2,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B035,1,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B035,2,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B035,2,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B035,2,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B035,2,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B035,5,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B035,2,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B035,2,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B035,2,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B035,5,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B035,2,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B035,1,,,Binford_2001_Table_9.01, +B317,,1870,B035,2,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B035,1,,,Binford_2001_Table_9.01, +B319,,1860,B035,2,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B035,1,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B035,1,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B035,1,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B035,2,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B035,2,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B035,1,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B035,1,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B035,5,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B035,2,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B035,1,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B035,2,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B035,5,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B035,5,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B035,2,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B035,5,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B035,2,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B035,2,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B035,5,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B035,2,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B035,2,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B035,2,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B035,5,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B035,5,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B035,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B035,5,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B035,2,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B035,2,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B035,2,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B035,2,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B035,2,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B035,2,,,Binford_2001_Table_9.01, +B350,,1800,B035,2,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B035,2,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B035,2,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B035,2,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B035,2,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B035,5,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B035,2,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B035,1,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B035,2,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B035,2,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B035,1,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B035,5,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B035,2,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B035,2,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B035,2,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B035,2,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B035,2,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B035,5,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B035,3,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B035,2,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B035,2,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B035,2,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B035,2,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B035,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B035,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B035,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B035,2,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B035,2,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B035,5,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B035,2,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B035,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B035,2,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B035,2,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B035,5,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B035,2,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B035,1,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B035,2,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B035,1,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B035,2,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B035,3,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B035,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B035,3,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B035,3,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B035,5,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B035,5,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B035,3,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B035,4,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B035,5,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,,B035,NA,,,, +B47,,1975,B035,3,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B035,4,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B035,4,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B035,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B035,1,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B035,1,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B035,1,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B035,4,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B035,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B035,4,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B035,1,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B035,1,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B035,1,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B035,1,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B035,1,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B035,1,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B035,1,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B035,4,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B035,3,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B035,3,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B035,4,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B035,1,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B035,5,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B035,2,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B035,4,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B035,3,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B035,3,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B035,3,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B035,3,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B035,3,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B035,2,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B035,4,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B035,4,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B035,1,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B035,5,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B035,5,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B035,5,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B035,5,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B035,5,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B035,3,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B035,3,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B035,4,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B035,3,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B035,3,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B035,5,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B035,5,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B035,3,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B035,3,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B035,3,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B035,3,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B035,5,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B035,4,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B036,1,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B036,1,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B036,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B036,1,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B036,1,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B036,1,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B036,1,,,Binford_2001_Table_9.01, +B105,,1900,B036,1,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B036,1,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B036,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B036,1,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B036,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B036,1,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B036,1,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B036,1,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B036,1,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B036,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B036,1,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B036,1,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B036,1,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B036,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B036,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B036,1,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B036,1,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B036,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B036,1,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B036,1,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B036,1,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B036,1,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B036,1,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B036,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B036,1,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B036,1,,,Binford_2001_Table_9.01, +B129,,1840,B036,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B036,1,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B036,1,,,Binford_2001_Table_9.01, +B131,,1850,B036,1,,,Binford_2001_Table_9.01, +B132,,1850,B036,1,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B036,1,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B036,1,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B036,1,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B036,1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B036,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B036,1,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B036,1,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B036,2,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B036,2,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B036,2,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B036,1,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B036,3,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B036,2,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B036,1,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B036,2,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B036,3,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B036,2,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B036,5,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B036,3,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B036,6,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B036,2,,,Binford_2001_Table_9.01, +B157,,1870,B036,3,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B036,4,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B036,4,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B036,1,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B036,6,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B036,2,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B036,4,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B036,5,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B036,3,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B036,3,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B036,3,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B036,3,,,Binford_2001_Table_9.01, +B168,,1850,B036,3,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B036,3,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B036,1,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B036,6,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B036,5,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B036,4,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B036,6,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B036,6,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B036,6,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B036,2,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B036,6,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B036,3,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B036,5,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B036,1,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B036,5,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B036,3,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B036,5,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B036,5,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B036,3,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B036,5,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B036,3,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B036,5,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B036,2,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B036,2,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B036,1,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B036,1,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B036,1,,,Binford_2001_Table_9.01, +B192,,1860,B036,1,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B036,1,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B036,1,,,Binford_2001_Table_9.01, +B195,,1850,B036,2,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B036,1,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B036,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B036,2,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B036,2,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B036,1,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B036,1,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B036,2,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B036,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B036,3,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B036,1,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B036,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B036,1,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B036,2,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B036,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B036,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B036,2,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B036,1,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B036,1,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B036,1,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B036,1,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B036,1,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B036,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B036,3,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B036,1,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B036,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B036,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B036,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B036,1,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B036,1,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B036,1,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B036,2,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B036,2,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B036,1,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B036,1,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B036,1,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B036,1,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B036,1,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B036,1,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B036,2,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B036,2,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B036,2,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B036,1,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B036,1,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B036,1,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B036,1,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B036,1,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B036,2,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B036,1,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B036,1,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B036,1,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B036,1,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B036,1,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B036,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B036,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B036,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B036,1,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B036,1,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B036,1,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B036,2,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B036,1,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B036,5,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B036,5,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B036,1,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B036,5,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B036,3,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B036,3,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B036,1,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B036,1,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B036,2,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B036,1,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B036,1,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B036,1,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B036,1,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B036,1,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B036,1,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B036,1,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B036,1,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B036,1,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B036,1,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B036,1,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B036,1,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B036,1,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B036,1,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B036,1,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B036,1,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B036,4,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B036,5,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B036,4,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B036,4,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B036,1,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B036,4,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B036,1,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B036,1,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B036,1,,,Binford_2001_Table_9.01, +B317,,1870,B036,2,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B036,1,,,Binford_2001_Table_9.01, +B319,,1860,B036,3,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B036,2,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B036,2,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B036,2,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B036,2,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B036,3,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B036,2,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B036,1,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B036,1,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B036,2,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B036,1,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B036,1,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B036,1,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B036,1,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B036,1,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B036,1,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B036,1,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B036,2,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B036,1,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B036,1,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B036,1,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B036,1,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B036,1,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B036,1,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B036,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B036,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B036,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B036,1,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B036,1,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B036,1,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B036,1,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B036,4,,,Binford_2001_Table_9.01, +B350,,1800,B036,1,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B036,1,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B036,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B036,1,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B036,4,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B036,1,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B036,1,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B036,4,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B036,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B036,4,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B036,1,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B036,1,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B036,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B036,3,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B036,2,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B036,4,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B036,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B036,4,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B036,1,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B036,4,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B036,4,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B036,4,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B036,4,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B036,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B036,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B036,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B036,4,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B036,4,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B036,1,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B036,4,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B036,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B036,1,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B036,1,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B036,1,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B036,1,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B036,4,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B036,1,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B036,1,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B036,4,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B036,1,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B036,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B036,1,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B036,1,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B036,4,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B036,1,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B036,1,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B036,1,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B036,1,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B036,7,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B036,1,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B036,1,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B036,1,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B036,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B036,1,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B036,1,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B036,1,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B036,1,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B036,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B036,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B036,1,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B036,1,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B036,1,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B036,1,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B036,1,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B036,1,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B036,1,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B036,1,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B036,1,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B036,1,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B036,1,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B036,1,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B036,2,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B036,1,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B036,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B036,1,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B036,1,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B036,1,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B036,1,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B036,1,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B036,1,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B036,1,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B036,1,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B036,1,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B036,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B036,1,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B036,1,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B036,1,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B036,1,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B036,1,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B036,1,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B036,1,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B036,1,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B036,1,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B036,1,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B036,1,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B036,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B036,1,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B036,1,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B036,1,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B036,1,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B036,1,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B037,1,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B037,1,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B037,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B037,1,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B037,2,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B037,2,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B037,1,,,Binford_2001_Table_9.01, +B105,,1900,B037,2,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B037,1,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B037,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B037,1,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B037,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B037,1,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B037,2,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B037,1,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B037,1,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B037,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B037,1,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B037,2,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B037,1,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B037,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B037,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B037,2,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B037,1,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B037,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B037,1,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B037,1,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B037,2,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B037,2,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B037,1,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B037,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B037,2,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B037,1,,,Binford_2001_Table_9.01, +B129,,1840,B037,2,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B037,1,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B037,2,,,Binford_2001_Table_9.01, +B131,,1850,B037,2,,,Binford_2001_Table_9.01, +B132,,1850,B037,2,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B037,3,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B037,3,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B037,3,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B037,1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B037,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B037,1,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B037,1,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B037,3,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B037,2,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B037,1,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B037,3,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B037,3,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B037,2,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B037,1,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B037,3,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B037,2,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B037,2,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B037,2,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B037,3,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B037,2,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B037,3,,,Binford_2001_Table_9.01, +B157,,1870,B037,2,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B037,3,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B037,4,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B037,1,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B037,3,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B037,3,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B037,2,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B037,3,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B037,3,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B037,2,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B037,2,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B037,2,,,Binford_2001_Table_9.01, +B168,,1850,B037,2,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B037,2,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B037,1,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B037,2,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B037,3,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B037,2,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B037,2,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B037,3,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B037,2,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B037,2,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B037,2,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B037,3,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B037,3,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B037,2,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B037,2,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B037,2,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B037,2,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B037,3,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B037,2,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B037,3,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B037,2,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B037,3,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B037,3,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B037,3,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B037,1,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B037,1,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B037,1,,,Binford_2001_Table_9.01, +B192,,1860,B037,1,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B037,3,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B037,1,,,Binford_2001_Table_9.01, +B195,,1850,B037,1,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B037,1,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B037,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B037,3,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B037,1,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B037,4,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B037,1,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B037,1,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B037,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B037,1,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B037,1,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B037,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B037,1,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B037,1,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B037,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B037,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B037,1,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B037,2,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B037,1,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B037,1,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B037,1,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B037,1,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B037,1,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B037,1,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B037,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B037,1,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B037,1,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B037,2,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B037,3,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B037,1,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B037,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B037,1,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B037,1,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B037,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B037,1,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B037,1,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B037,1,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B037,3,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B037,1,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B037,1,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B037,1,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B037,1,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B037,1,,steward1938,Binford_2001_Table_9.01, +B234,,,B037,NA,,,, +B24,,1900,B037,4,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B037,3,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B037,3,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B037,3,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B037,1,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B037,3,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B037,3,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B037,3,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B037,3,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B037,3,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B037,2,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B037,3,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B037,3,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B037,1,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B037,1,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B037,1,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B037,1,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B037,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B037,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B037,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B037,4,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B037,1,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B037,2,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B037,2,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B037,3,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B037,4,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B037,4,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B037,4,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B037,4,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B037,4,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B037,4,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B037,4,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B037,2,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B037,4,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B037,4,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B037,3,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B037,4,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B037,4,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B037,4,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B037,3,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B037,4,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B037,3,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B037,3,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B037,3,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B037,4,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B037,4,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B037,4,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B037,4,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B037,4,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B037,4,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B037,3,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B037,3,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B037,3,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B037,4,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B037,3,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B037,4,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B037,1,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B037,3,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B037,3,,,Binford_2001_Table_9.01, +B317,,1870,B037,3,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B037,3,,,Binford_2001_Table_9.01, +B319,,1860,B037,3,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B037,3,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B037,3,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B037,3,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B037,3,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B037,3,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B037,3,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B037,3,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B037,4,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B037,4,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B037,3,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B037,3,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B037,1,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B037,1,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B037,2,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B037,1,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B037,1,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B037,2,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B037,1,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B037,3,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B037,1,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B037,1,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B037,1,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B037,1,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B037,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B037,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B037,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B037,1,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B037,2,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B037,2,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B037,2,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B037,4,,,Binford_2001_Table_9.01, +B350,,1800,B037,2,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B037,2,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B037,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B037,1,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B037,2,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B037,3,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B037,3,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B037,4,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B037,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B037,2,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B037,1,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B037,1,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B037,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B037,2,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B037,2,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B037,2,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B037,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B037,3,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,1968,B037,1,,kloos1977; kloos1982,Binford_2001_Table_9.01, +B370,,1890,B037,1,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B037,2,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B037,2,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B037,1,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B037,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B037,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B037,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B037,3,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B037,1,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B037,1,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B037,3,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B037,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B037,1,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B037,1,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B037,1,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B037,1,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B037,1,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B037,1,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B037,3,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B037,1,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B037,3,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B037,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B037,2,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B037,1,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B037,2,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B037,1,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B037,1,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B037,1,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B037,3,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B037,4,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B037,3,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B037,1,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B037,1,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B037,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B037,1,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B037,3,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B037,2,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B037,2,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B037,3,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B037,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B037,1,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B037,1,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B037,1,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B037,1,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B037,1,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B037,1,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B037,1,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B037,1,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B037,1,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B037,1,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B037,1,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B037,3,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B037,1,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B037,1,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B037,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B037,1,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B037,1,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B037,1,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B037,1,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B037,1,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B037,1,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B037,1,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B037,1,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B037,2,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B037,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B037,1,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B037,1,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B037,1,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B037,1,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B037,3,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B037,1,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B037,1,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B037,1,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B037,2,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B037,3,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B037,3,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B037,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B037,3,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B037,1,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B037,1,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B037,3,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B037,1,,stanner1933,Binford_2001_Table_9.01, +B1,,1970,B038,5,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_9.01, +B10,,1900,B038,4,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_9.01, +B100,,NA,B038,4,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_9.01, +B101,,1934,B038,4,,kaberry1939,Binford_2001_Table_9.01, +B102,,1909,B038,4,,memmott1983a; memmott1983b,Binford_2001_Table_9.01, +B103,,1928,B038,4,,tindale1962a; tindale1962b,Binford_2001_Table_9.01, +B104,,NA,B038,4,,,Binford_2001_Table_9.01, +B105,,1900,B038,4,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_9.01, +B106,,1910,B038,4,,clement1903; radcliffebrown1912,Binford_2001_Table_9.01, +B107,,1870,B038,4,,brayshaw1990; lumholtz1889,Binford_2001_Table_9.01, +B108,,1934,B038,4,,kaberry1939; nind1831,Binford_2001_Table_9.01, +B109,,1965,B038,4,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_9.01, +B11,,1972,B038,3,,morris1982a,Binford_2001_Table_9.01, +B110,,1880,B038,4,,petersonandlong1986; tonkinson1978,Binford_2001_Table_9.01, +B111,,1960,B038,4,,harris1978; petersonandlong1986,Binford_2001_Table_9.01, +B112,,1968,B038,4,,petersonandlong1986,Binford_2001_Table_9.01, +B113,,1936,B038,4,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_9.01, +B114,,1848,B038,4,,colliverandwoolston1975,Binford_2001_Table_9.01, +B115,,1840,B038,5,,morwood1987; winterbotham1980,Binford_2001_Table_9.01, +B116,,1900,B038,4,,duncankemp1964,Binford_2001_Table_9.01, +B117,,1965,B038,4,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_9.01, +B118,,1968,B038,4,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_9.01, +B119,,1850,B038,4,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_9.01, +B12,,1965,B038,3,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_9.01, +B120,,1968,B038,4,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_9.01, +B121,,1900,B038,4,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_9.01, +B122,,1870,B038,4,,roberts1953; schulze1891,Binford_2001_Table_9.01, +B123,,1922,B038,4,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_9.01, +B124,,1900,B038,4,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_9.01, +B125,,1880,B038,4,,parker1905,Binford_2001_Table_9.01, +B126,,1912,B038,4,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_9.01, +B127,,1941,B038,4,,berndtandberndt1944; long1970,Binford_2001_Table_9.01, +B128,,1890,B038,4,,,Binford_2001_Table_9.01, +B129,,1840,B038,4,,cawthorne1844; draperperscomm1993,Binford_2001_Table_9.01, +B13,,1979,B038,3,,rai1982; wastl1957,Binford_2001_Table_9.01, +B130,,1910,B038,4,,,Binford_2001_Table_9.01, +B131,,1850,B038,4,,,Binford_2001_Table_9.01, +B132,,1850,B038,4,,nind1831,Binford_2001_Table_9.01, +B133,,1850,B038,6,,williams1985,Binford_2001_Table_9.01, +B134,,1850,B038,4,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_9.01, +B135,,1850,B038,4,,fisonandhowitt1880; howitt1904,Binford_2001_Table_9.01, +B136,,1830,B038,4,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_9.01, +B137,,1830,B038,4,,hiatt1967; jones1971; jones1972,Binford_2001_Table_9.01, +B14,,1924,B038,3,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_9.01, +B143,,1900,B038,5,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_9.01, +B144,,1870,B038,2,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_9.01, +B145,,1870,B038,5,,gifford1926b; strong1929a,Binford_2001_Table_9.01, +B146,,1880,B038,4,,meigs1939,Binford_2001_Table_9.01, +B147,,1850,B038,5,,kroeber1925a; luomala1978,Binford_2001_Table_9.01, +B148,,1860,B038,6,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_9.01, +B149,,1870,B038,6,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_9.01, +B15,,1940,B038,2,,furerhaimendorf1943b,Binford_2001_Table_9.01, +B150,,1860,B038,6,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_9.01, +B151,,1860,B038,4,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_9.01, +B152,,1850,B038,5,,voegelin1938,Binford_2001_Table_9.01, +B153,,1850,B038,6,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_9.01, +B154,,1850,B038,6,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_9.01, +B155,,1850,B038,6,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_9.01, +B156,,1770,B038,7,,,Binford_2001_Table_9.01, +B157,,1870,B038,5,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_9.01, +B158,,1860,B038,6,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B159,,1860,B038,6,,cook1956; gifford1926a,Binford_2001_Table_9.01, +B16,,1963,B038,3,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_9.01, +B160,,1860,B038,6,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_9.01, +B161,,1860,B038,7,,cookandheizer1965,Binford_2001_Table_9.01, +B162,,1860,B038,4,,dixon1910,Binford_2001_Table_9.01, +B163,,1850,B038,6,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_9.01, +B164,,1805,B038,6,,gifford1926b,Binford_2001_Table_9.01, +B165,,1860,B038,6,,barrett1908; cook1956,Binford_2001_Table_9.01, +B166,,1860,B038,6,,cook1956; goddard1923; nomland1935,Binford_2001_Table_9.01, +B167,,NA,B038,6,,,Binford_2001_Table_9.01, +B168,,1850,B038,5,,collierandthalman1991,Binford_2001_Table_9.01, +B169,,NA,B038,6,,cook1956; nomland1938,Binford_2001_Table_9.01, +B17,,1963,B038,3,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_9.01, +B170,,NA,B038,6,,cook1955,Binford_2001_Table_9.01, +B171,,1850,B038,6,,cook1956; foster1944; gifford1926b,Binford_2001_Table_9.01, +B172,,1860,B038,6,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_9.01, +B173,,1860,B038,6,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_9.01, +B174,,1860,B038,6,,gifford1926b; waterman1918,Binford_2001_Table_9.01, +B175,,1850,B038,4,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_9.01, +B176,,1860,B038,6,,gray1987,Binford_2001_Table_9.01, +B177,,1860,B038,5,,gifford1939; miller1978,Binford_2001_Table_9.01, +B178,,1870,B038,6,,cook1956; drucker1940,Binford_2001_Table_9.01, +B179,,1860,B038,6,,cookandheizer1965; dixon1907,Binford_2001_Table_9.01, +B18,,1963,B038,3,,senandsen1955; williams1974,Binford_2001_Table_9.01, +B180,,1860,B038,6,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_9.01, +B181,,1870,B038,6,,gray1987,Binford_2001_Table_9.01, +B182,,1860,B038,6,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_9.01, +B183,,1860,B038,6,,gifford1926b,Binford_2001_Table_9.01, +B184,,1860,B038,6,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_9.01, +B185,,1850,B038,6,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_9.01, +B186,,1850,B038,6,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_9.01, +B187,,1860,B038,6,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_9.01, +B188,,1860,B038,6,,gifford1926b; ray1963,Binford_2001_Table_9.01, +B189,,1860,B038,6,,gifford1926b; spier1930,Binford_2001_Table_9.01, +B19,,1946,B038,3,,ehrenfels1952,Binford_2001_Table_9.01, +B190,,1760,B038,4,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_9.01, +B191,,1570,B038,4,,,Binford_2001_Table_9.01, +B192,,1860,B038,4,,smith1978a; steward1938,Binford_2001_Table_9.01, +B193,,1800,B038,5,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_9.01, +B194,,1715,B038,4,,,Binford_2001_Table_9.01, +B195,,1850,B038,4,,steward1938,Binford_2001_Table_9.01, +B196,,1870,B038,2,,corbusier1886; gifford1932a,Binford_2001_Table_9.01, +B197,,1860,B038,4,,steward1936; steward1938,Binford_2001_Table_9.01, +B198,,1870,B038,2,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_9.01, +B199,,1860,B038,4,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_9.01, +B2,,1968,B038,2,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_9.01, +B20,,1974,B038,3,,bhanu1982; bhanu1992,Binford_2001_Table_9.01, +B200,,1860,B038,4,,steward1936; steward1938,Binford_2001_Table_9.01, +B201,,1860,B038,4,,kelly1964; kellyandfowler1986,Binford_2001_Table_9.01, +B202,,1870,B038,4,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_9.01, +B203,,1860,B038,4,,steward1938; thomas1983,Binford_2001_Table_9.01, +B204,,1860,B038,4,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_9.01, +B205,,1870,B038,4,,davis1965,Binford_2001_Table_9.01, +B206,,1860,B038,4,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_9.01, +B207,,1860,B038,4,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B208,,1860,B038,4,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_9.01, +B209,,1860,B038,1,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_9.01, +B21,,1978,B038,3,,bird1983; birddavid1987,Binford_2001_Table_9.01, +B210,,1870,B038,4,,fowler1992,Binford_2001_Table_9.01, +B211,,1860,B038,4,,steward1938,Binford_2001_Table_9.01, +B212,,1870,B038,4,,gifford1926b; riddell1960,Binford_2001_Table_9.01, +B213,,1870,B038,4,,steward1938,Binford_2001_Table_9.01, +B214,,1860,B038,4,,steward1938,Binford_2001_Table_9.01, +B215,,1870,B038,4,,steward1938,Binford_2001_Table_9.01, +B216,,1860,B038,4,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_9.01, +B217,,1860,B038,4,,steward1938,Binford_2001_Table_9.01, +B218,,1860,B038,4,,steward1938,Binford_2001_Table_9.01, +B219,,1860,B038,6,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_9.01, +B22,,1900,B038,5,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_9.01, +B221,,1860,B038,4,,steward1938,Binford_2001_Table_9.01, +B222,,1860,B038,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_9.01, +B223,,1870,B038,4,,lowie1924,Binford_2001_Table_9.01, +B224,,1860,B038,4,,steward1938,Binford_2001_Table_9.01, +B225,,1850,B038,4,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_9.01, +B226,,1870,B038,5,,brink1969; kelly1932,Binford_2001_Table_9.01, +B227,,1860,B038,4,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_9.01, +B228,,1860,B038,5,,steward1938,Binford_2001_Table_9.01, +B229,,1860,B038,1,,steward1938,Binford_2001_Table_9.01, +B23,,1900,B038,1,,qiu1983,Binford_2001_Table_9.01, +B230,,1860,B038,1,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_9.01, +B231,,1870,B038,5,,whiting1950,Binford_2001_Table_9.01, +B232,,1860,B038,4,,boas1899; steward1938,Binford_2001_Table_9.01, +B233,,1860,B038,4,,steward1938,Binford_2001_Table_9.01, +B234,,1860,B038,1,,boas1899; steward1974b,Binford_2001_Table_9.01, +B24,,1900,B038,6,,lee1967; shimkin1939,Binford_2001_Table_9.01, +B240,,1880,B038,1,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_9.01, +B241,,1870,B038,1,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_9.01, +B242,,1880,B038,1,,basehart1972; morice1906b; opler1937,Binford_2001_Table_9.01, +B243,,1870,B038,1,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_9.01, +B244,,1860,B038,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B245,,1860,B038,1,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_9.01, +B246,,1860,B038,1,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_9.01, +B248,,1870,B038,1,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_9.01, +B249,,1870,B038,1,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_9.01, +B25,,1920,B038,6,,shternberg1933,Binford_2001_Table_9.01, +B250,,1880,B038,1,,chamberlain1892; turneyhigh1941,Binford_2001_Table_9.01, +B252,,1860,B038,1,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_9.01, +B253,,1870,B038,1,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_9.01, +B254,,1850,B038,1,,skinner1914,Binford_2001_Table_9.01, +B255,,1850,B038,1,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_9.01, +B256,,1850,B038,1,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_9.01, +B257,,1870,B038,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_9.01, +B258,,1850,B038,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_9.01, +B259,,1850,B038,1,,bamforth1988; ewers1955,Binford_2001_Table_9.01, +B26,,1900,B038,2,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_9.01, +B260,,1880,B038,1,,bamforth1988; jenness1938,Binford_2001_Table_9.01, +B268,,1880,B038,6,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_9.01, +B269,,1860,B038,6,,boas1891a; drucker1939,Binford_2001_Table_9.01, +B27,,1933,B038,2,,chard1963; popov1966,Binford_2001_Table_9.01, +B270,,1870,B038,6,,smith1940a; smith1940b,Binford_2001_Table_9.01, +B271,,1850,B038,6,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_9.01, +B272,,1880,B038,6,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_9.01, +B273,,1880,B038,7,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_9.01, +B274,,1850,B038,6,,ray1937; ray1938; silverstein1990,Binford_2001_Table_9.01, +B275,,1860,B038,6,,boyd1990; zenk1990,Binford_2001_Table_9.01, +B276,,1860,B038,7,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_9.01, +B277,,1880,B038,7,,stern1934,Binford_2001_Table_9.01, +B278,,1860,B038,6,,olson1936a; schalk1978,Binford_2001_Table_9.01, +B279,,1880,B038,6,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_9.01, +B28,,1860,B038,6,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_9.01, +B280,,1880,B038,6,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_9.01, +B281,,NA,B038,6,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_9.01, +B282,,1860,B038,7,,kennedyandbouchard1990,Binford_2001_Table_9.01, +B283,,1880,B038,7,,cybulski1990b; hilton1990,Binford_2001_Table_9.01, +B284,,1880,B038,6,,pettitt1950,Binford_2001_Table_9.01, +B285,,1860,B038,7,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_9.01, +B286,,1860,B038,7,,gunther1962; schalk1978; swan1870,Binford_2001_Table_9.01, +B287,,1880,B038,7,,olson1940; schalk1978,Binford_2001_Table_9.01, +B288,,1890,B038,7,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B289,,1880,B038,7,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_9.01, +B290,,1890,B038,7,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_9.01, +B291,,1880,B038,7,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_9.01, +B292,,1880,B038,7,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_9.01, +B293,,1880,B038,7,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_9.01, +B294,,1840,B038,7,,holmberg1985; knechtandjordan1985,Binford_2001_Table_9.01, +B295,,1890,B038,6,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_9.01, +B296,,1850,B038,6,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_9.01, +B297,,1930,B038,7,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_9.01, +B298,,1830,B038,7,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_9.01, +B299,,1930,B038,6,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_9.01, +B3,,1900,B038,3,,hagen1908; persoon1989; volz1909,Binford_2001_Table_9.01, +B315,,1850,B038,6,,murdock1980,Binford_2001_Table_9.01, +B316,,1860,B038,6,,,Binford_2001_Table_9.01, +B317,,1870,B038,6,,teit1928,Binford_2001_Table_9.01, +B318,,1880,B038,6,,,Binford_2001_Table_9.01, +B319,,1860,B038,6,,spierandsapir1930,Binford_2001_Table_9.01, +B320,,1860,B038,6,,teit1930,Binford_2001_Table_9.01, +B321,,1880,B038,7,,clineetal1938,Binford_2001_Table_9.01, +B322,,1860,B038,6,,grabert1974; teit1930,Binford_2001_Table_9.01, +B323,,1870,B038,5,,kelly1995; ray1932; teit1930,Binford_2001_Table_9.01, +B324,,1850,B038,6,,spinden1908,Binford_2001_Table_9.01, +B325,,1860,B038,6,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_9.01, +B326,,1870,B038,6,,teit1930,Binford_2001_Table_9.01, +B327,,1870,B038,5,,jenness1935; quimby1962,Binford_2001_Table_9.01, +B328,,1800,B038,4,,kinietz1947,Binford_2001_Table_9.01, +B329,,1700,B038,6,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_9.01, +B330,,1860,B038,6,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_9.01, +B331,,1880,B038,5,,hickerson1967; landes1937a,Binford_2001_Table_9.01, +B332,,1870,B038,5,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_9.01, +B333,,1850,B038,1,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_9.01, +B334,,1940,B038,3,,dunning1959; grant1924; rogers1969,Binford_2001_Table_9.01, +B335,,1900,B038,3,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_9.01, +B336,,1865,B038,7,,goldman1940; jenness1943; smithnd,Binford_2001_Table_9.01, +B337,,1800,B038,6,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_9.01, +B338,,1880,B038,3,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_9.01, +B339,,1850,B038,3,,dunning1959; rogers1969,Binford_2001_Table_9.01, +B340,,1900,B038,3,,morantz1983; rogers1969,Binford_2001_Table_9.01, +B341,,1890,B038,3,,boas1895a; rogersandblack1976,Binford_2001_Table_9.01, +B342,,1880,B038,5,,lane1952; tanner1944,Binford_2001_Table_9.01, +B343,,1880,B038,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_9.01, +B344,,1850,B038,4,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_9.01, +B345,,1860,B038,4,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_9.01, +B346,,1920,B038,4,,honigmann1949; honigmann1954,Binford_2001_Table_9.01, +B347,,1870,B038,6,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_9.01, +B348,,1880,B038,7,,boasandfarrand1899; lane1981,Binford_2001_Table_9.01, +B349,,1880,B038,7,,grant1936; jenness1937; jenness1943,Binford_2001_Table_9.01, +B35,,1950,B038,7,,,Binford_2001_Table_9.01, +B350,,1800,B038,4,,gillespie1981,Binford_2001_Table_9.01, +B351,,1880,B038,6,,adney1900; crowandobley1981,Binford_2001_Table_9.01, +B352,,1860,B038,4,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_9.01, +B353,,1900,B038,4,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_9.01, +B354,,1880,B038,4,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_9.01, +B355,,1880,B038,4,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_9.01, +B356,,1880,B038,6,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_9.01, +B357,,1880,B038,5,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_9.01, +B358,,1860,B038,4,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_9.01, +B359,,1930,B038,5,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_9.01, +B36,,1960,B038,4,,metraux1948,Binford_2001_Table_9.01, +B360,,1900,B038,3,,morantz1983; skinner1911,Binford_2001_Table_9.01, +B361,,1860,B038,4,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_9.01, +B362,,1870,B038,7,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_9.01, +B363,,1890,B038,6,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_9.01, +B364,,1860,B038,6,,michael1967; snow1981,Binford_2001_Table_9.01, +B365,,1890,B038,4,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_9.01, +B369,,1870,B038,6,,ray1992; seltzer1933,Binford_2001_Table_9.01, +B37,,,B038,NA,,,, +B370,,1890,B038,5,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_9.01, +B371,,1880,B038,6,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_9.01, +B372,,1890,B038,5,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_9.01, +B373,,1890,B038,6,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_9.01, +B374,,1900,B038,4,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_9.01, +B375,,1900,B038,4,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_9.01, +B377,,1950,B038,4,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_9.01, +B378,,1910,B038,6,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_9.01, +B379,,1920,B038,6,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_9.01, +B38,,1989,B038,2,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_9.01, +B380,,1880,B038,6,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_9.01, +B381,,1920,B038,4,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_9.01, +B382,,1920,B038,4,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_9.01, +B383,,1880,B038,4,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_9.01, +B384,,1920,B038,4,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_9.01, +B385,,1880,B038,4,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_9.01, +B386,,1880,B038,4,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_9.01, +B387,,1880,B038,4,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_9.01, +B388,,1880,B038,4,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_9.01, +B389,,1880,B038,6,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_9.01, +B39,,1960,B038,2,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_9.01, +B390,,1880,B038,4,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_9.01, +B4,,1989,B038,3,,agrawal1967; rizvi1990,Binford_2001_Table_9.01, +B40,,1990,B038,4,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_9.01, +B41,,1920,B038,2,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_9.01, +B42,,1901,B038,2,,metraux1946guato; schmidt1942,Binford_2001_Table_9.01, +B43,,1940,B038,2,,holmberg1950,Binford_2001_Table_9.01, +B44,,1968,B038,4,,stearman1989,Binford_2001_Table_9.01, +B45,,1938,B038,2,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_9.01, +B46,,1600,B038,7,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_9.01, +B47,,1975,B038,4,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_9.01, +B48,,1880,B038,5,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_9.01, +B49,,1954,B038,4,,kozaketal1979,Binford_2001_Table_9.01, +B5,,1952,B038,4,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_9.01, +B50,,1910,B038,5,,henry1964,Binford_2001_Table_9.01, +B51,,1870,B038,1,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_9.01, +B52,,1880,B038,4,,cooper1946d,Binford_2001_Table_9.01, +B53,,1900,B038,4,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_9.01, +B54,,1880,B038,4,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_9.01, +B55,,1870,B038,4,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_9.01, +B6,,1906,B038,4,,temple1903,Binford_2001_Table_9.01, +B60,,1980,B038,3,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_9.01, +B61,,1976,B038,3,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_9.01, +B62,,1977,B038,3,,skeatandblagden1906; terashima1980,Binford_2001_Table_9.01, +B63,,1980,B038,3,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_9.01, +B64,,1980,B038,3,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_9.01, +B65,,1930,B038,3,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_9.01, +B66,,NA,B038,3,,kellyandpoyer1993,Binford_2001_Table_9.01, +B67,,1950,B038,4,,clark1951,Binford_2001_Table_9.01, +B68,,1920,B038,2,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_9.01, +B69,,1910,B038,4,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_9.01, +B7,,1903,B038,2,,fox1952; reed1904,Binford_2001_Table_9.01, +B70,,1920,B038,2,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_9.01, +B71,,1928,B038,4,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_9.01, +B72,,1950,B038,4,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_9.01, +B73,,1910,B038,2,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_9.01, +B74,,1962,B038,4,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_9.01, +B75,,1976,B038,4,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_9.01, +B76,,1968,B038,4,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_9.01, +B77,,1920,B038,4,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_9.01, +B78,,1950,B038,4,,potgieter1955; toerien1958,Binford_2001_Table_9.01, +B79,,NA,B038,4,,bleek1924a,Binford_2001_Table_9.01, +B8,,1870,B038,4,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_9.01, +B82,,1848,B038,2,,moore1979,Binford_2001_Table_9.01, +B83,,1900,B038,4,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_9.01, +B84,,1978,B038,4,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_9.01, +B85,,1970,B038,4,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_9.01, +B86,,1973,B038,4,,meehan1982; petersonandlong1986,Binford_2001_Table_9.01, +B87,,1950,B038,4,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_9.01, +B88,,1930,B038,4,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_9.01, +B89,,1920,B038,4,,kaberry1935; kaberry1939,Binford_2001_Table_9.01, +B9,,1920,B038,3,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_9.01, +B90,,1920,B038,4,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_9.01, +B91,,1920,B038,4,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_9.01, +B92,,1960,B038,4,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_9.01, +B93,,1930,B038,4,,thomson1933; thomson1934,Binford_2001_Table_9.01, +B94,,1937,B038,4,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_9.01, +B95,,1920,B038,4,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_9.01, +B96,,1880,B038,4,,andersonandrobins1988; roth1909,Binford_2001_Table_9.01, +B97,,1930,B038,4,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_9.01, +B98,,1926,B038,4,,haleandtindale1933; roth1909,Binford_2001_Table_9.01, +B99,,1900,B038,6,,stanner1933,Binford_2001_Table_9.01, +B1,Gang Punan,1970,B039,1498,"Note, for this society, Binford provided two estimates, the first refers specifically to Gang Punan (1498) and the second to Busang Punan (1567); this entry is one of those estimates",urquhart1951:501,Binford_2001_Table_6.03, +B1,Busang Punan,1970,B039,1567,"Note, for this society, Binford provided two estimates, the first refers specifically to Gang Punan (1498) and the second to Busang Punan (1567); this entry is one of those estimates",oldrey1975:155,Binford_2001_Table_6.03, +B10,,1900,B039,1533,"Note, for this society, Binford provided two estimates (1533, 1435); this entry is one of those estimates",bailey1863:283; skeatandblagden1906:574,Binford_2001_Table_6.03, +B10,,1900,B039,1435,"Note, for this society, Binford provided two estimates (1533, 1435); this entry is one of those estimates",bailey1863:283; skeatandblagden1906:574,Binford_2001_Table_6.03, +B100,,,B039,NA,,,, +B101,,,B039,NA,,,, +B102,,,B039,NA,,,, +B103,,,B039,NA,,,, +B104,,,B039,NA,,,, +B105,,1900,B039,1578,,birdsell1967:112,Binford_2001_Table_6.03, +B106,,,B039,NA,,,, +B107,,,B039,NA,,,, +B108,,,B039,NA,,,, +B109,,1965,B039,1698,,abbie1957:236-38,Binford_2001_Table_6.03, +B11,,,B039,NA,,,, +B110,,,B039,NA,,,, +B111,,,B039,NA,,,, +B112,,,B039,NA,,,, +B113,,1936,B039,1671,,campbelletal1936:113,Binford_2001_Table_6.03, +B114,,,B039,NA,,,, +B115,,,B039,NA,,,, +B116,,,B039,NA,,,, +B117,,1965,B039,1661,,campbelletal1936:113,Binford_2001_Table_6.03, +B118,,,B039,NA,,,, +B119,,,B039,NA,,,, +B12,,1965,B039,1520,,headland1986:544,Binford_2001_Table_6.03, +B120,,1968,B039,1687,,campbelletal1936:113,Binford_2001_Table_6.03, +B121,,,B039,NA,,,, +B122,,,B039,NA,,,, +B123,,,B039,NA,,,, +B124,,1900,B039,1663,,roberts1953:556; spencerandgillen1899:appendix C,Binford_2001_Table_6.03, +B125,,,B039,NA,,,, +B126,,,B039,NA,,,, +B127,,,B039,NA,,,, +B128,,,B039,NA,,,, +B129,,1840,B039,1680,,cawthorne1844:50,Binford_2001_Table_6.03, +B13,,1979,B039,1530,,wastl1957:805,Binford_2001_Table_6.03, +B130,,,B039,NA,,,, +B131,,,B039,NA,,,, +B132,,,B039,NA,,,, +B133,,,B039,NA,,,, +B134,,,B039,NA,,,, +B135,,,B039,NA,,,, +B136,,1830,B039,1618,,roth1899:192,Binford_2001_Table_6.03, +B137,,,B039,NA,,,, +B14,,1924,B039,1510,,vanoverbergh1925:400,Binford_2001_Table_6.03, +B143,,,B039,NA,,,, +B144,,1870,B039,1670,,gifford1926b:232-33,Binford_2001_Table_6.03, +B145,,1870,B039,1680,,gifford1926b:232-33,Binford_2001_Table_6.03, +B146,,,B039,NA,,,, +B147,,,B039,NA,,,, +B148,,1860,B039,1668,,gifford1926b:232-33,Binford_2001_Table_6.03, +B149,,1870,B039,1710,,gifford1926b:232-33,Binford_2001_Table_6.03, +B15,,1940,B039,1630,,furerhaimendorf1943b:17,Binford_2001_Table_6.03, +B150,,1860,B039,1690,,gifford1926b:232-33,Binford_2001_Table_6.03, +B151,,,B039,NA,,,, +B152,,,B039,NA,,,, +B153,,1850,B039,1650,,gifford1926b:232-33,Binford_2001_Table_6.03, +B154,,1850,B039,1640,,gifford1926b:232-33,Binford_2001_Table_6.03, +B155,,1850,B039,1690,,gifford1926b:232-33,Binford_2001_Table_6.03, +B156,,,B039,NA,,,, +B157,,,B039,NA,,,, +B158,,1860,B039,1690,,gifford1926b:232-33,Binford_2001_Table_6.03, +B159,,,B039,NA,,,, +B16,,1963,B039,1580,"Note, for this society, Binford provided three estimates (1580, 1529, 1546); this entry is one of those estimates",bernatzik1951:165,Binford_2001_Table_6.03, +B16,,1963,B039,1529,"Note, for this society, Binford provided three estimates (1580, 1529, 1546); this entry is one of those estimates",flatz1963:table 1,Binford_2001_Table_6.03, +B16,,1963,B039,1546,"Note, for this society, Binford provided three estimates (1580, 1529, 1546); this entry is one of those estimates",trier1981:292,Binford_2001_Table_6.03, +B160,,,B039,NA,,,, +B161,,,B039,NA,,,, +B162,,,B039,NA,,,, +B163,,,B039,NA,,,, +B164,,1805,B039,1670,,gifford1926b:232-33,Binford_2001_Table_6.03, +B165,,,B039,NA,,,, +B166,,,B039,NA,,,, +B167,,,B039,NA,,,, +B168,,,B039,NA,,,, +B169,,,B039,NA,,,, +B17,,,B039,NA,,,, +B170,,,B039,NA,,,, +B171,,1850,B039,1570,,gifford1926b:232-33,Binford_2001_Table_6.03, +B172,,,B039,NA,,,, +B173,,1860,B039,1640,,gifford1926b:232-33,Binford_2001_Table_6.03, +B174,,1860,B039,1690,,gifford1926b:232-33,Binford_2001_Table_6.03, +B175,,1850,B039,1660,,gifford1926b:232-33,Binford_2001_Table_6.03, +B176,,,B039,NA,,,, +B177,,,B039,NA,,,, +B178,,,B039,NA,,,, +B179,,,B039,NA,,,, +B18,,,B039,NA,,,, +B180,,1860,B039,1660,,gifford1926b:232-33,Binford_2001_Table_6.03, +B181,,,B039,NA,,,, +B182,,,B039,NA,,,, +B183,,1860,B039,1630,,gifford1926b:232-33,Binford_2001_Table_6.03, +B184,,1860,B039,1650,,gifford1926b:232-33,Binford_2001_Table_6.03, +B185,,1850,B039,1630,,gifford1926b:232-33,Binford_2001_Table_6.03, +B186,,1850,B039,1640,,gifford1926b:232-33,Binford_2001_Table_6.03, +B187,,1860,B039,1670,,gifford1926b:232-33,Binford_2001_Table_6.03, +B188,,1860,B039,1620,,gifford1926b:232-33,Binford_2001_Table_6.03, +B189,,1860,B039,1670,,gifford1926b:232-33,Binford_2001_Table_6.03, +B19,,1946,B039,1580,,ehrenfels1952:6,Binford_2001_Table_6.03, +B190,,,B039,NA,,,, +B191,,,B039,NA,,,, +B192,,,B039,NA,,,, +B193,,,B039,NA,,,, +B194,,,B039,NA,,,, +B195,,,B039,NA,,,, +B196,,1870,B039,1740,,corbusier1886:278-79,Binford_2001_Table_6.03, +B197,,,B039,NA,,,, +B198,,1870,B039,1684,,hrdlicka1909:413,Binford_2001_Table_6.03, +B199,,,B039,NA,,,, +B2,,1968,B039,1531,,eder1987:140,Binford_2001_Table_6.03, +B20,,,B039,NA,,,, +B200,,,B039,NA,,,, +B201,,,B039,NA,,,, +B202,,1870,B039,1640,,gifford1926b:232-33,Binford_2001_Table_6.03, +B203,,,B039,NA,,,, +B204,,1860,B039,1667,,hrdlicka1909:408,Binford_2001_Table_6.03, +B205,,,B039,NA,,,, +B206,,,B039,NA,,,, +B207,,,B039,NA,,,, +B208,,1860,B039,1683,,boas1899:753,Binford_2001_Table_6.03, +B209,,1860,B039,1661,,boas1899:753,Binford_2001_Table_6.03, +B21,,,B039,NA,,,, +B210,,,B039,NA,,,, +B211,,,B039,NA,,,, +B212,,1870,B039,1669,,gifford1926b:232-33,Binford_2001_Table_6.03, +B213,,,B039,NA,,,, +B214,,,B039,NA,,,, +B215,,,B039,NA,,,, +B216,,1860,B039,1665,,boas1899:753,Binford_2001_Table_6.03, +B217,,,B039,NA,,,, +B218,,,B039,NA,,,, +B219,,1860,B039,1650,,gifford1926b:232-33,Binford_2001_Table_6.03, +B22,,1900,B039,1581,,landor1893:299,Binford_2001_Table_6.03, +B221,,,B039,NA,,,, +B222,,1860,B039,1668,,hrdlicka1909:409,Binford_2001_Table_6.03, +B223,,,B039,NA,,,, +B224,,,B039,NA,,,, +B225,,1850,B039,1730,,gifford1926b:232-33,Binford_2001_Table_6.03, +B226,,,B039,NA,,,, +B227,,,B039,NA,,,, +B228,,,B039,NA,,,, +B229,,,B039,NA,,,, +B23,,,B039,NA,,,, +B230,,1860,B039,1641,"Note, this is a joint estimate for males and females",boas1899:753,Binford_2001_Table_6.03, +B231,,,B039,NA,,,, +B232,,1860,B039,1665,"Note, this is a joint estimate for males and females",boas1899:753,Binford_2001_Table_6.03, +B233,,,B039,NA,,,, +B234,,1860,B039,1628,"Note, this is a joint estimate for males and females",boas1899:753,Binford_2001_Table_6.03, +B24,,1900,B039,1587,,shimkin1939:149,Binford_2001_Table_6.03, +B240,,1880,B039,1691,,hrdlicka1909:412,Binford_2001_Table_6.03, +B241,,1870,B039,1678,,goldstein1934:299,Binford_2001_Table_6.03, +B242,,,B039,NA,,,, +B243,,,B039,NA,,,, +B244,,,B039,NA,,,, +B245,,,B039,NA,,,, +B246,,,B039,NA,,,, +B248,,,B039,NA,,,, +B249,,1870,B039,1724,,sullivan1920:169,Binford_2001_Table_6.03, +B25,,,B039,NA,,,, +B250,,1880,B039,1690,,chamberlain1892:564-82,Binford_2001_Table_6.03, +B252,,1860,B039,1685,,boas1899:753,Binford_2001_Table_6.03, +B253,,,B039,NA,,,, +B254,,,B039,NA,,,, +B255,,,B039,NA,,,, +B256,,,B039,NA,,,, +B257,,,B039,NA,,,, +B258,,,B039,NA,,,, +B259,,,B039,NA,,,, +B26,,1900,B039,1560,,jochelson191926:20,Binford_2001_Table_6.03, +B260,,,B039,NA,,,, +B268,,,B039,NA,,,, +B269,,1860,B039,1652,,boas1891a:433,Binford_2001_Table_6.03, +B27,,,B039,NA,,,, +B270,,,B039,NA,,,, +B271,,1850,B039,1651,,eells1887a:273,Binford_2001_Table_6.03, +B272,,,B039,NA,,,, +B273,,1880,B039,1616,,cybulski1990b:54,Binford_2001_Table_6.03, +B274,,,B039,NA,,,, +B275,,,B039,NA,,,, +B276,,1860,B039,1633,,boasandfarrand1899:630,Binford_2001_Table_6.03, +B277,,,B039,NA,,,, +B278,,,B039,NA,,,, +B279,,1880,B039,1639,,cybulski1990b:54,Binford_2001_Table_6.03, +B28,,1860,B039,1628,,szathmary1984:65,Binford_2001_Table_6.03, +B280,,1880,B039,1610,,wilson1866:278,Binford_2001_Table_6.03, +B281,,,B039,NA,,,, +B282,,,B039,NA,,,, +B283,,1880,B039,1637,,cybulski1990b:54,Binford_2001_Table_6.03, +B284,,,B039,NA,,,, +B285,,,B039,NA,,,, +B286,,,B039,NA,,,, +B287,,,B039,NA,,,, +B288,,1890,B039,1633,,boasandfarrand1899:630; cybulski1990b:54,Binford_2001_Table_6.03, +B289,,1880,B039,1656,,boasandfarrand1899:630,Binford_2001_Table_6.03, +B290,,1890,B039,1625,,cybulski1990b:54,Binford_2001_Table_6.03, +B291,,1880,B039,1661,,boasandfarrand1899:630; cybulski1990b:54,Binford_2001_Table_6.03, +B292,,,B039,NA,,,, +B293,,1880,B039,1659,,boasandfarrand1899:630; cybulski1990b:54,Binford_2001_Table_6.03, +B294,,,B039,NA,,,, +B295,,,B039,NA,,,, +B296,,1850,B039,1660,,hrdlicka1930:251,Binford_2001_Table_6.03, +B297,,,B039,NA,,,, +B298,,1830,B039,1612,,newman1960:289,Binford_2001_Table_6.03, +B299,,1930,B039,1618,,hrdlicka1930:251,Binford_2001_Table_6.03, +B3,,1900,B039,1578,,volz1909:92,Binford_2001_Table_6.03, +B315,,,B039,NA,,,, +B316,,,B039,NA,,,, +B317,,,B039,NA,,,, +B318,,,B039,NA,,,, +B319,,,B039,NA,,,, +B320,,,B039,NA,,,, +B321,,,B039,NA,,,, +B322,,,B039,NA,,,, +B323,,,B039,NA,,,, +B324,,,B039,NA,,,, +B325,,1860,B039,1659,,boasandfarrand1899:630,Binford_2001_Table_6.03, +B326,,,B039,NA,,,, +B327,,,B039,NA,,,, +B328,,,B039,NA,,,, +B329,,1700,B039,1747,,boas1895a:574,Binford_2001_Table_6.03, +B330,,,B039,NA,,,, +B331,,,B039,NA,,,, +B332,,1870,B039,1719,,grant1924:302,Binford_2001_Table_6.03, +B333,,1850,B039,1705,,chamberlain1892:615,Binford_2001_Table_6.03, +B334,,1940,B039,1680,,grant1924:302,Binford_2001_Table_6.03, +B335,,1900,B039,1709,,grant1924:302,Binford_2001_Table_6.03, +B336,,,B039,NA,,,, +B337,,,B039,NA,,,, +B338,,1880,B039,1676,,rogers1972:92,Binford_2001_Table_6.03, +B339,,,B039,NA,,,, +B340,,,B039,NA,,,, +B341,,1890,B039,1712,,boas1895a:574,Binford_2001_Table_6.03, +B342,,,B039,NA,,,, +B343,,1880,B039,1693,"Note, for this society, Binford provided two estimates (1693, 1683); this entry is one of those estimates",jenness1937:27,Binford_2001_Table_6.03, +B343,,1880,B039,1683,"Note, for this society, Binford provided two estimates (1693, 1683); this entry is one of those estimates",grant1936:18,Binford_2001_Table_6.03, +B344,,1850,B039,1683,,grant1936:13-15,Binford_2001_Table_6.03, +B345,,,B039,NA,,,, +B346,,,B039,NA,,,, +B347,,1870,B039,1704,,boas1901:61-63,Binford_2001_Table_6.03, +B348,,1880,B039,1651,,boasandfarrand1899:630,Binford_2001_Table_6.03, +B349,,1880,B039,1679,,grant1936:18,Binford_2001_Table_6.03, +B35,,,B039,NA,,,, +B350,,,B039,NA,,,, +B351,,,B039,NA,,,, +B352,,,B039,NA,,,, +B353,,1900,B039,1680,,mason1967:5,Binford_2001_Table_6.03, +B354,,,B039,NA,,,, +B355,,1880,B039,1647,,grant1936:13-15,Binford_2001_Table_6.03, +B356,,1880,B039,1646,,boas1901:64-65; mckennan1964:47,Binford_2001_Table_6.03, +B357,,,B039,NA,,,, +B358,,,B039,NA,,,, +B359,,1930,B039,1699,,mckennan1964:46,Binford_2001_Table_6.03, +B36,,,B039,NA,,,, +B360,,,B039,NA,,,, +B361,,1860,B039,1654,,szathmary1984:65,Binford_2001_Table_6.03, +B362,,,B039,NA,,,, +B363,,,B039,NA,,,, +B364,,,B039,NA,,,, +B365,,1890,B039,1662,,hallowell1929:341,Binford_2001_Table_6.03, +B369,,1870,B039,1654,,seltzer1933:341,Binford_2001_Table_6.03, +B37,,,B039,NA,,,, +B370,,,B039,NA,,,, +B371,,1880,B039,1675,,rodahlandedwards1952:243,Binford_2001_Table_6.03, +B372,,1890,B039,1583,,seltzer1933:341,Binford_2001_Table_6.03, +B373,,,B039,NA,,,, +B374,,,B039,NA,,,, +B375,,1900,B039,1685,,boas1901:64-65,Binford_2001_Table_6.03, +B377,,1950,B039,1649,,"jamison1978:56, 58",Binford_2001_Table_6.03, +B378,,1910,B039,1683,,seltzer1933:341,Binford_2001_Table_6.03, +B379,,1920,B039,1661,"Note, for this society, Binford provided two estimates (1661, 1633); this entry is one of those estimates",rodahlandedwards1952:243,Binford_2001_Table_6.03, +B379,,1920,B039,1633,"Note, for this society, Binford provided two estimates (1661, 1633); this entry is one of those estimates",hrdlicka1930:251,Binford_2001_Table_6.03, +B38,,1989,B039,1599,,petrullo1939:177,Binford_2001_Table_6.03, +B380,,1880,B039,1665,,jenness1922:b49; seltzer1933:341,Binford_2001_Table_6.03, +B381,,1920,B039,1648,,jenness1922:b49,Binford_2001_Table_6.03, +B382,,,B039,NA,,,, +B383,,1880,B039,1622,,hrdlicka1930:230,Binford_2001_Table_6.03, +B383,,1880,B039,1580,"Note, this is a joint estimate for males and females",oetteking1931:423,Binford_2001_Table_6.03, +B384,,1920,B039,1626,"Note, for this society, Binford provided two estimates (1626, 1660); this entry is one of those estimates",szathmary1984,Binford_2001_Table_6.03, +B384,,1920,B039,1660,"Note, for this society, Binford provided two estimates (1626, 1660); this entry is one of those estimates",hallowell1929:353,Binford_2001_Table_6.03, +B385,,1880,B039,1620,,hansen1914,Binford_2001_Table_6.03, +B386,,1880,B039,1602,,roberts1953:557,Binford_2001_Table_6.03, +B386,,1880,B039,1551,"Note, this is a joint estimate for males and females",oetteking1931:423,Binford_2001_Table_6.03, +B387,,,B039,NA,,,, +B388,,1880,B039,1635,,"hansen1914; poulsen1909:135, 144-46",Binford_2001_Table_6.03, +B389,Barrow Tareumiut,1880,B039,1665,"Note, for this society, Binford provided two estimates (1665, 1615); this entry is one of those estimates",roberts1953:556,Binford_2001_Table_6.03, +B389,Barrow Tareumiut,1880,B039,1615,"Note, for this society, Binford provided two estimates (1665, 1615); this entry is one of those estimates",seltzer1933:341,Binford_2001_Table_6.03, +B39,,1960,B039,1540,,hurtadoandhill1990:329,Binford_2001_Table_6.03, +B390,,1880,B039,1574,,roberts1953:557; steensby1910:389,Binford_2001_Table_6.03, +B4,,1989,B039,1597,"Note, for this society, Binford provided two estimates (1597, 1591); this entry is one of those estimates",agrawal1967:84-87; rizvi1990:35,Binford_2001_Table_6.03, +B4,,1989,B039,1591,"Note, for this society, Binford provided two estimates (1597, 1591); this entry is one of those estimates",agrawal1967:84-87; rizvi1990:35,Binford_2001_Table_6.03, +B40,,,B039,NA,,,, +B41,,1920,B039,1680,,newman1953:321,Binford_2001_Table_6.03, +B42,,,B039,NA,,,, +B43,,1940,B039,1625,,holmberg1950:8,Binford_2001_Table_6.03, +B44,,,B039,NA,,,, +B45,,1938,B039,1620,,newman1953:321,Binford_2001_Table_6.03, +B46,,,B039,NA,,,, +B47,,1975,B039,1610,,"hilletal1984:table 4, 132",Binford_2001_Table_6.03, +B48,,1880,B039,1585,,ehrenreich1887:16-17,Binford_2001_Table_6.03, +B49,,1954,B039,1652,,kozaketal1979:374,Binford_2001_Table_6.03, +B5,,1952,B039,1490,"Note, for this society, Binford provided two estimates (1490, 1492); this entry is one of those estimates",man1883:73; temple1903:54,Binford_2001_Table_6.03, +B5,,1952,B039,1492,"Note, for this society, Binford provided two estimates (1490, 1492); this entry is one of those estimates",man1883:73; temple1903:54,Binford_2001_Table_6.03, +B50,,,B039,NA,,,, +B51,,1870,B039,1750,,lothrop1928:45,Binford_2001_Table_6.03, +B52,,,B039,NA,,,, +B53,,1900,B039,1574,,lothrop1928:39,Binford_2001_Table_6.03, +B54,,1880,B039,1754,,lothrop1928:41,Binford_2001_Table_6.03, +B55,,1870,B039,1581,,lothrop1928:41,Binford_2001_Table_6.03, +B6,,,B039,NA,,,, +B60,,1980,B039,1486,"Note, this is a joint estimate for males and females",cavallisforza1986a:83,Binford_2001_Table_6.03, +B61,,1976,B039,1530,,heymer1980:178; hiernauxetal1975:7,Binford_2001_Table_6.03, +B62,,1977,B039,1452,,skeatandblagden1906:573,Binford_2001_Table_6.03, +B63,,1980,B039,1526,,hiernauxetal1975:7; valloisandmarquer1976,Binford_2001_Table_6.03, +B64,,1980,B039,1453,,baileyandpeacock1988:107,Binford_2001_Table_6.03, +B65,,1930,B039,1440,,cavallisforza1986c:392; hiernauxetal1975:7; roberts1953:557,Binford_2001_Table_6.03, +B66,,,B039,NA,,,, +B67,,1950,B039,1574,,clark1951:60,Binford_2001_Table_6.03, +B68,,1920,B039,1553,"Note, for this society, Binford provided two estimates (1553, 1539); this entry is one of those estimates",werner1906a:241,Binford_2001_Table_6.03, +B68,,1920,B039,1539,"Note, for this society, Binford provided two estimates (1553, 1539); this entry is one of those estimates",tobias1962:802-3,Binford_2001_Table_6.03, +B69,,,B039,NA,,,, +B7,,1903,B039,1464,,reed1904:75-77,Binford_2001_Table_6.03, +B70,,1920,B039,1694,,wayland1931:217,Binford_2001_Table_6.03, +B71,,1928,B039,1605,"Note, for this society, Binford provided two estimates (1605, 1593); this entry is one of those estimates",bleek1929:106,Binford_2001_Table_6.03, +B71,,1928,B039,1593,"Note, for this society, Binford provided two estimates (1605, 1593); this entry is one of those estimates",decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_6.03, +B72,,1950,B039,1584,"Note, for this society, Binford provided three estimates (1584, 1515, 1584), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",bleek1929:106; howell1979:258-59,Binford_2001_Table_6.03, +B72,Auen !Kung,1950,B039,1515,"Note, for this society, Binford provided three estimates (1584, 1515, 1584), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",kaufmann1910:135,Binford_2001_Table_6.03, +B72,Auen !Kung,1950,B039,1584,"Note, for this society, Binford provided three estimates (1584, 1515, 1584), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",tobias1962:802-3,Binford_2001_Table_6.03, +B73,,1910,B039,1570,"Note, for this society, Binford provided two estimates (1570, 1593); this entry is one of those estimates",tobias1962:802-3,Binford_2001_Table_6.03, +B73,,1910,B039,1593,"Note, for this society, Binford provided two estimates (1570, 1593); this entry is one of those estimates",tobias1962:802-3,Binford_2001_Table_6.03, +B74,,1962,B039,1578,,tobias1962:802-3,Binford_2001_Table_6.03, +B75,,1976,B039,1610,,tobias1962:802-3; wyndhamandmorrison1958:221,Binford_2001_Table_6.03, +B76,,,B039,NA,,,, +B77,,1920,B039,1558,,dart1937b:184,Binford_2001_Table_6.03, +B78,,1950,B039,1489,,toerien1958:122-23,Binford_2001_Table_6.03, +B79,,,B039,NA,,,, +B8,,,B039,NA,,,, +B82,,,B039,NA,,,, +B83,,1900,B039,1696,,howells1937:16,Binford_2001_Table_6.03, +B84,,,B039,NA,,,, +B85,,1970,B039,1706,,macintosh1952:213,Binford_2001_Table_6.03, +B86,,,B039,NA,,,, +B87,,,B039,NA,,,, +B88,,1930,B039,1665,,howells1937:16; peterson1976:269,Binford_2001_Table_6.03, +B89,,,B039,NA,,,, +B9,,1920,B039,1491,,skeatandblagden1906:575,Binford_2001_Table_6.03, +B90,,,B039,NA,,,, +B91,,,B039,NA,,,, +B92,,1960,B039,1669,,howells1937:16,Binford_2001_Table_6.03, +B93,,,B039,NA,,,, +B94,,,B039,NA,,,, +B95,,1920,B039,1668,,howells1937:16,Binford_2001_Table_6.03, +B96,,,B039,NA,,,, +B97,,,B039,NA,,,, +B98,,1926,B039,1650,,haleandtindale1933:71,Binford_2001_Table_6.03, +B99,,1900,B039,1708,,stanner1933:386,Binford_2001_Table_6.03, +B1,,1970,B004,2,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_5.01, +B10,,1900,B004,2,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_5.01, +B100,,NA,B004,2,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_5.01, +B101,,1934,B004,2,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B004,3,,memmott1983a; memmott1983b,Binford_2001_Table_5.01, +B103,,1928,B004,3,,tindale1962a; tindale1962b,Binford_2001_Table_5.01, +B104,,NA,B004,2,,,Binford_2001_Table_5.01, +B105,,1900,B004,2,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_5.01, +B106,,1910,B004,2,,clement1903; radcliffebrown1912,Binford_2001_Table_5.01, +B107,,1870,B004,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_5.01, +B108,,1934,B004,2,,kaberry1939; nind1831,Binford_2001_Table_5.01, +B109,,1965,B004,2,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_5.01, +B11,,1972,B004,2,,morris1982a,Binford_2001_Table_5.01, +B110,,1880,B004,2,,petersonandlong1986; tonkinson1978,Binford_2001_Table_5.01, +B111,,1960,B004,2,,harris1978; petersonandlong1986,Binford_2001_Table_5.01, +B112,,1968,B004,2,,petersonandlong1986,Binford_2001_Table_5.01, +B113,,1936,B004,2,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_5.01, +B114,,1848,B004,3,,colliverandwoolston1975,Binford_2001_Table_5.01, +B115,,1840,B004,2,,morwood1987; winterbotham1980,Binford_2001_Table_5.01, +B116,,1900,B004,2,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B004,2,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_5.01, +B118,,1968,B004,2,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_5.01, +B119,,1850,B004,3,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_5.01, +B12,,1965,B004,2,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B004,2,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_5.01, +B121,,1900,B004,2,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_5.01, +B122,,1870,B004,2,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B004,2,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_5.01, +B124,,1900,B004,2,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_5.01, +B125,,1880,B004,2,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B004,2,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_5.01, +B127,,1941,B004,2,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B004,2,,,Binford_2001_Table_5.01, +B129,,1840,B004,2,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B004,3,,rai1982; wastl1957,Binford_2001_Table_5.01, +B130,,1910,B004,2,,,Binford_2001_Table_5.01, +B131,,1850,B004,2,,,Binford_2001_Table_5.01, +B132,,1850,B004,2,,nind1831,Binford_2001_Table_5.01, +B133,,1850,B004,3,,williams1985,Binford_2001_Table_5.01, +B134,,1850,B004,3,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_5.01, +B135,,1850,B004,2,,fisonandhowitt1880; howitt1904,Binford_2001_Table_5.01, +B136,,1830,B004,3,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_5.01, +B137,,1830,B004,3,,hiatt1967; jones1971; jones1972,Binford_2001_Table_5.01, +B14,,1924,B004,2,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_5.01, +B143,,1900,B004,3,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_5.01, +B144,,1870,B004,2,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_5.01, +B145,,1870,B004,2,,gifford1926b; strong1929a,Binford_2001_Table_5.01, +B146,,1880,B004,2,,meigs1939,Binford_2001_Table_5.01, +B147,,1850,B004,2,,kroeber1925a; luomala1978,Binford_2001_Table_5.01, +B148,,1860,B004,2,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_5.01, +B149,,1870,B004,2,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_5.01, +B15,,1940,B004,2,,furerhaimendorf1943b,Binford_2001_Table_5.01, +B150,,1860,B004,2,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_5.01, +B151,,1860,B004,2,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_5.01, +B152,,1850,B004,2,,voegelin1938,Binford_2001_Table_5.01, +B153,,1850,B004,2,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_5.01, +B154,,1850,B004,2,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_5.01, +B155,,1850,B004,2,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_5.01, +B156,,1770,B004,3,,,Binford_2001_Table_5.01, +B157,,1870,B004,2,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_5.01, +B158,,1860,B004,2,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B004,2,,cook1956; gifford1926a,Binford_2001_Table_5.01, +B16,,1963,B004,2,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_5.01, +B160,,1860,B004,3,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_5.01, +B161,,1860,B004,3,,cookandheizer1965,Binford_2001_Table_5.01, +B162,,1860,B004,3,,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B004,2,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_5.01, +B164,,1805,B004,2,,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B004,2,,barrett1908; cook1956,Binford_2001_Table_5.01, +B166,,1860,B004,3,,cook1956; goddard1923; nomland1935,Binford_2001_Table_5.01, +B167,,NA,B004,2,,,Binford_2001_Table_5.01, +B168,,1850,B004,3,,collierandthalman1991,Binford_2001_Table_5.01, +B169,,NA,B004,3,,cook1956; nomland1938,Binford_2001_Table_5.01, +B17,,1963,B004,2,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_5.01, +B170,,NA,B004,2,,cook1955,Binford_2001_Table_5.01, +B171,,1850,B004,2,,cook1956; foster1944; gifford1926b,Binford_2001_Table_5.01, +B172,,1860,B004,2,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_5.01, +B173,,1860,B004,2,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B174,,1860,B004,2,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B004,2,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_5.01, +B176,,1860,B004,3,,gray1987,Binford_2001_Table_5.01, +B177,,1860,B004,3,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B004,3,,cook1956; drucker1940,Binford_2001_Table_5.01, +B179,,1860,B004,2,,cookandheizer1965; dixon1907,Binford_2001_Table_5.01, +B18,,1963,B004,2,,senandsen1955; williams1974,Binford_2001_Table_5.01, +B180,,1860,B004,3,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_5.01, +B181,,1870,B004,3,,gray1987,Binford_2001_Table_5.01, +B182,,1860,B004,3,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_5.01, +B183,,1860,B004,1,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B004,3,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_5.01, +B185,,1850,B004,2,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_5.01, +B186,,1850,B004,3,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_5.01, +B187,,1860,B004,1,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_5.01, +B188,,1860,B004,2,,gifford1926b; ray1963,Binford_2001_Table_5.01, +B189,,1860,B004,3,,gifford1926b; spier1930,Binford_2001_Table_5.01, +B19,,1946,B004,2,,ehrenfels1952,Binford_2001_Table_5.01, +B190,,1760,B004,2,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_5.01, +B191,,1570,B004,2,,,Binford_2001_Table_5.01, +B192,,1860,B004,2,,smith1978a; steward1938,Binford_2001_Table_5.01, +B193,,1800,B004,3,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_5.01, +B194,,1715,B004,2,,,Binford_2001_Table_5.01, +B195,,1850,B004,2,,steward1938,Binford_2001_Table_5.01, +B196,,1870,B004,2,,corbusier1886; gifford1932a,Binford_2001_Table_5.01, +B197,,1860,B004,2,,steward1936; steward1938,Binford_2001_Table_5.01, +B198,,1870,B004,2,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_5.01, +B199,,1860,B004,2,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_5.01, +B2,,1968,B004,2,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_5.01, +B20,,1974,B004,2,,bhanu1982; bhanu1992,Binford_2001_Table_5.01, +B200,,1860,B004,2,,steward1936; steward1938,Binford_2001_Table_5.01, +B201,,1860,B004,2,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B004,2,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_5.01, +B203,,1860,B004,2,,steward1938; thomas1983,Binford_2001_Table_5.01, +B204,,1860,B004,2,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_5.01, +B205,,1870,B004,2,,davis1965,Binford_2001_Table_5.01, +B206,,1860,B004,2,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_5.01, +B207,,1860,B004,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B208,,1860,B004,2,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_5.01, +B209,,1860,B004,2,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_5.01, +B21,,1978,B004,2,,bird1983; birddavid1987,Binford_2001_Table_5.01, +B210,,1870,B004,2,,fowler1992,Binford_2001_Table_5.01, +B211,,1860,B004,2,,steward1938,Binford_2001_Table_5.01, +B212,,1870,B004,1,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B004,2,,steward1938,Binford_2001_Table_5.01, +B214,,1860,B004,2,,steward1938,Binford_2001_Table_5.01, +B215,,1870,B004,1,,steward1938,Binford_2001_Table_5.01, +B216,,1860,B004,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_5.01, +B217,,1860,B004,2,,steward1938,Binford_2001_Table_5.01, +B218,,1860,B004,2,,steward1938,Binford_2001_Table_5.01, +B219,,1860,B004,1,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_5.01, +B22,,1900,B004,3,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_5.01, +B221,,1860,B004,1,,steward1938,Binford_2001_Table_5.01, +B222,,1860,B004,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_5.01, +B223,,1870,B004,1,,lowie1924,Binford_2001_Table_5.01, +B224,,1860,B004,2,,steward1938,Binford_2001_Table_5.01, +B225,,1850,B004,2,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_5.01, +B226,,1870,B004,2,,brink1969; kelly1932,Binford_2001_Table_5.01, +B227,,1860,B004,1,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_5.01, +B228,,1860,B004,2,,steward1938,Binford_2001_Table_5.01, +B229,,1860,B004,1,,steward1938,Binford_2001_Table_5.01, +B23,,1900,B004,1,,qiu1983,Binford_2001_Table_5.01, +B230,,1860,B004,2,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_5.01, +B231,,1870,B004,2,,whiting1950,Binford_2001_Table_5.01, +B232,,1860,B004,1,,boas1899; steward1938,Binford_2001_Table_5.01, +B233,,1860,B004,1,,steward1938,Binford_2001_Table_5.01, +B234,,1860,B004,1,,boas1899; steward1974b,Binford_2001_Table_5.01, +B24,,1900,B004,3,,lee1967; shimkin1939,Binford_2001_Table_5.01, +B240,,1880,B004,2,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_5.01, +B241,,1870,B004,1,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_5.01, +B242,,1880,B004,2,,basehart1972; morice1906b; opler1937,Binford_2001_Table_5.01, +B243,,1870,B004,1,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_5.01, +B244,,1860,B004,1,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B245,,1860,B004,1,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_5.01, +B246,,1860,B004,1,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_5.01, +B248,,1870,B004,1,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_5.01, +B249,,1870,B004,1,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_5.01, +B25,,1920,B004,3,,shternberg1933,Binford_2001_Table_5.01, +B250,,1880,B004,1,,chamberlain1892; turneyhigh1941,Binford_2001_Table_5.01, +B252,,1860,B004,1,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B253,,1870,B004,1,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_5.01, +B254,,1850,B004,1,,skinner1914,Binford_2001_Table_5.01, +B255,,1850,B004,1,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_5.01, +B256,,1850,B004,1,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_5.01, +B257,,1870,B004,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B004,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_5.01, +B259,,1850,B004,1,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B26,,1900,B004,1,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_5.01, +B260,,1880,B004,1,,bamforth1988; jenness1938,Binford_2001_Table_5.01, +B268,,1880,B004,3,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_5.01, +B269,,1860,B004,3,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B004,1,,chard1963; popov1966,Binford_2001_Table_5.01, +B270,,1870,B004,3,,smith1940a; smith1940b,Binford_2001_Table_5.01, +B271,,1850,B004,3,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_5.01, +B272,,1880,B004,3,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_5.01, +B273,,1880,B004,3,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_5.01, +B274,,1850,B004,3,,ray1937; ray1938; silverstein1990,Binford_2001_Table_5.01, +B275,,1860,B004,3,,boyd1990; zenk1990,Binford_2001_Table_5.01, +B276,,1860,B004,3,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_5.01, +B277,,1880,B004,3,,stern1934,Binford_2001_Table_5.01, +B278,,1860,B004,3,,olson1936a; schalk1978,Binford_2001_Table_5.01, +B279,,1880,B004,3,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_5.01, +B28,,1860,B004,3,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_5.01, +B280,,1880,B004,3,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_5.01, +B281,,NA,B004,3,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_5.01, +B282,,1860,B004,3,,kennedyandbouchard1990,Binford_2001_Table_5.01, +B283,,1880,B004,3,,cybulski1990b; hilton1990,Binford_2001_Table_5.01, +B284,,1880,B004,3,,pettitt1950,Binford_2001_Table_5.01, +B285,,1860,B004,3,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_5.01, +B286,,1860,B004,3,,gunther1962; schalk1978; swan1870,Binford_2001_Table_5.01, +B287,,1880,B004,3,,olson1940; schalk1978,Binford_2001_Table_5.01, +B288,,1890,B004,3,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B289,,1880,B004,3,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_5.01, +B290,,1890,B004,3,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B291,,1880,B004,3,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_5.01, +B292,,1880,B004,3,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_5.01, +B293,,1880,B004,3,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_5.01, +B294,,1840,B004,3,,holmberg1985; knechtandjordan1985,Binford_2001_Table_5.01, +B295,,1890,B004,3,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_5.01, +B296,,1850,B004,3,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_5.01, +B297,,1930,B004,3,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_5.01, +B298,,1830,B004,3,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_5.01, +B299,,1930,B004,3,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_5.01, +B3,,1900,B004,2,,hagen1908; persoon1989; volz1909,Binford_2001_Table_5.01, +B315,,1850,B004,3,,murdock1980,Binford_2001_Table_5.01, +B316,,1860,B004,3,,,Binford_2001_Table_5.01, +B317,,1870,B004,3,,teit1928,Binford_2001_Table_5.01, +B318,,1880,B004,3,,,Binford_2001_Table_5.01, +B319,,1860,B004,3,,spierandsapir1930,Binford_2001_Table_5.01, +B320,,1860,B004,1,,teit1930,Binford_2001_Table_5.01, +B321,,1880,B004,3,,clineetal1938,Binford_2001_Table_5.01, +B322,,1860,B004,3,,grabert1974; teit1930,Binford_2001_Table_5.01, +B323,,1870,B004,3,,kelly1995; ray1932; teit1930,Binford_2001_Table_5.01, +B324,,1850,B004,3,,spinden1908,Binford_2001_Table_5.01, +B325,,1860,B004,3,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_5.01, +B326,,1870,B004,3,,teit1930,Binford_2001_Table_5.01, +B327,,1870,B004,3,,jenness1935; quimby1962,Binford_2001_Table_5.01, +B328,,1800,B004,1,,kinietz1947,Binford_2001_Table_5.01, +B329,,1700,B004,1,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_5.01, +B330,,1860,B004,1,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_5.01, +B331,,1880,B004,1,,hickerson1967; landes1937a,Binford_2001_Table_5.01, +B332,,1870,B004,1,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_5.01, +B333,,1850,B004,3,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_5.01, +B334,,1940,B004,1,,dunning1959; grant1924; rogers1969,Binford_2001_Table_5.01, +B335,,1900,B004,1,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_5.01, +B336,,1865,B004,1,,goldman1940; jenness1943; smithnd,Binford_2001_Table_5.01, +B337,,1800,B004,1,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_5.01, +B338,,1880,B004,1,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_5.01, +B339,,1850,B004,1,,dunning1959; rogers1969,Binford_2001_Table_5.01, +B340,,1900,B004,1,,morantz1983; rogers1969,Binford_2001_Table_5.01, +B341,,1890,B004,1,,boas1895a; rogersandblack1976,Binford_2001_Table_5.01, +B342,,1880,B004,1,,lane1952; tanner1944,Binford_2001_Table_5.01, +B343,,1880,B004,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_5.01, +B344,,1850,B004,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_5.01, +B345,,1860,B004,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_5.01, +B346,,1920,B004,1,,honigmann1949; honigmann1954,Binford_2001_Table_5.01, +B347,,1870,B004,1,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_5.01, +B348,,1880,B004,3,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B004,1,,grant1936; jenness1937; jenness1943,Binford_2001_Table_5.01, +B35,,1950,B004,3,,,Binford_2001_Table_5.01, +B350,,1800,B004,1,,gillespie1981,Binford_2001_Table_5.01, +B351,,1880,B004,1,,adney1900; crowandobley1981,Binford_2001_Table_5.01, +B352,,1860,B004,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_5.01, +B353,,1900,B004,3,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_5.01, +B354,,1880,B004,1,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_5.01, +B355,,1880,B004,1,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_5.01, +B356,,1880,B004,1,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_5.01,"corrected based on values for B001,B002 and B003" +B357,,1880,B004,3,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_5.01, +B358,,1860,B004,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_5.01, +B359,,1930,B004,3,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_5.01, +B36,,1960,B004,2,,metraux1948,Binford_2001_Table_5.01, +B360,,1900,B004,1,,morantz1983; skinner1911,Binford_2001_Table_5.01, +B361,,1860,B004,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_5.01, +B362,,1870,B004,1,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_5.01, +B363,,1890,B004,1,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_5.01, +B364,,1860,B004,3,,michael1967; snow1981,Binford_2001_Table_5.01, +B365,,1890,B004,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_5.01, +B369,,1870,B004,3,,ray1992; seltzer1933,Binford_2001_Table_5.01, +B37,,1968,B004,2,,kloos1977; kloos1982,Binford_2001_Table_5.01, +B370,,1890,B004,1,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_5.01, +B371,,1880,B004,3,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_5.01, +B372,,1890,B004,3,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_5.01, +B373,,1890,B004,3,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_5.01, +B374,,1900,B004,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_5.01, +B375,,1900,B004,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_5.01, +B377,,1950,B004,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_5.01, +B378,,1910,B004,3,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_5.01, +B379,,1920,B004,3,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_5.01, +B38,,1989,B004,3,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_5.01, +B380,,1880,B004,3,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_5.01, +B381,,1920,B004,3,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_5.01, +B382,,1920,B004,3,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_5.01, +B383,,1880,B004,3,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_5.01, +B384,,1920,B004,3,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_5.01, +B385,,1880,B004,3,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_5.01, +B386,,1880,B004,3,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_5.01, +B387,,1880,B004,3,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_5.01, +B388,,1880,B004,3,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_5.01, +B389,,1880,B004,3,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_5.01, +B39,,1960,B004,2,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_5.01, +B390,,1880,B004,3,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_5.01, +B4,,1989,B004,2,,agrawal1967; rizvi1990,Binford_2001_Table_5.01, +B40,,1990,B004,2,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_5.01, +B41,,1920,B004,2,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_5.01, +B42,,1901,B004,3,,metraux1946guato; schmidt1942,Binford_2001_Table_5.01, +B43,,1940,B004,1,,holmberg1950,Binford_2001_Table_5.01, +B44,,1968,B004,1,,stearman1989,Binford_2001_Table_5.01, +B45,,1938,B004,2,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_5.01, +B46,,1600,B004,3,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_5.01, +B47,,1975,B004,1,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01, +B48,,1880,B004,2,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_5.01, +B49,,1954,B004,2,,kozaketal1979,Binford_2001_Table_5.01, +B5,,1952,B004,3,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_5.01, +B50,,1910,B004,1,,henry1964,Binford_2001_Table_5.01, +B51,,1870,B004,1,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_5.01, +B52,,1880,B004,3,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B004,3,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_5.01, +B54,,1880,B004,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_5.01, +B55,,1870,B004,3,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_5.01, +B6,,1906,B004,2,,temple1903,Binford_2001_Table_5.01, +B60,,1980,B004,2,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_5.01, +B61,,1976,B004,2,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_5.01, +B62,,1977,B004,2,,skeatandblagden1906; terashima1980,Binford_2001_Table_5.01, +B63,,1980,B004,2,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_5.01, +B64,,1980,B004,2,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_5.01, +B65,,1930,B004,2,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_5.01, +B66,,NA,B004,2,,kellyandpoyer1993,Binford_2001_Table_5.01, +B67,,1950,B004,2,,clark1951,Binford_2001_Table_5.01, +B68,,1920,B004,2,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_5.01, +B69,,1910,B004,2,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_5.01, +B7,,1903,B004,2,,fox1952; reed1904,Binford_2001_Table_5.01, +B70,,1920,B004,1,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_5.01, +B71,,1928,B004,2,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_5.01, +B72,,1950,B004,2,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_5.01, +B73,,1910,B004,2,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_5.01, +B74,,1962,B004,2,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_5.01, +B75,,1976,B004,2,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_5.01, +B76,,1968,B004,2,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_5.01, +B77,,1920,B004,2,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_5.01, +B78,,1950,B004,2,,potgieter1955; toerien1958,Binford_2001_Table_5.01, +B79,,NA,B004,2,,bleek1924a,Binford_2001_Table_5.01, +B8,,1870,B004,2,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_5.01, +B82,,1848,B004,3,,moore1979,Binford_2001_Table_5.01, +B83,,1900,B004,3,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B004,2,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_5.01, +B85,,1970,B004,3,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_5.01, +B86,,1973,B004,3,,meehan1982; petersonandlong1986,Binford_2001_Table_5.01, +B87,,1950,B004,3,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_5.01, +B88,,1930,B004,2,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_5.01, +B89,,1920,B004,2,,kaberry1935; kaberry1939,Binford_2001_Table_5.01, +B9,,1920,B004,2,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_5.01, +B90,,1920,B004,2,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_5.01, +B91,,1920,B004,2,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_5.01, +B92,,1960,B004,3,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_5.01, +B93,,1930,B004,3,,thomson1933; thomson1934,Binford_2001_Table_5.01, +B94,,1937,B004,2,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_5.01, +B95,,1920,B004,2,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_5.01, +B96,,1880,B004,3,,andersonandrobins1988; roth1909,Binford_2001_Table_5.01, +B97,,1930,B004,3,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_5.01, +B98,,1926,B004,3,,haleandtindale1933; roth1909,Binford_2001_Table_5.01, +B99,,1900,B004,3,,stanner1933,Binford_2001_Table_5.01, +B1,Busang Punan,1970,B040,1468,,oldrey1975:155,Binford_2001_Table_6.03, +B10,,1900,B040,1433,"Note, for this society, Binford provided two estimates (1433, 1371); this entry is one of those estimates",bailey1863:283; skeatandblagden1906:574,Binford_2001_Table_6.03, +B10,,1900,B040,1371,"Note, for this society, Binford provided two estimates (1433, 1371); this entry is one of those estimates",bailey1863:283; skeatandblagden1906:574,Binford_2001_Table_6.03, +B100,,,B040,NA,,,, +B101,,,B040,NA,,,, +B102,,,B040,NA,,,, +B103,,,B040,NA,,,, +B104,,,B040,NA,,,, +B105,,,B040,NA,,,, +B106,,,B040,NA,,,, +B107,,,B040,NA,,,, +B108,,,B040,NA,,,, +B109,,1965,B040,1571,,abbie1957:236-38,Binford_2001_Table_6.03, +B11,,,B040,NA,,,, +B110,,,B040,NA,,,, +B111,,,B040,NA,,,, +B112,,,B040,NA,,,, +B113,,,B040,NA,,,, +B114,,,B040,NA,,,, +B115,,,B040,NA,,,, +B116,,,B040,NA,,,, +B117,,,B040,NA,,,, +B118,,,B040,NA,,,, +B119,,,B040,NA,,,, +B12,,1965,B040,1457,,headland1986:544,Binford_2001_Table_6.03, +B120,,,B040,NA,,,, +B121,,,B040,NA,,,, +B122,,,B040,NA,,,, +B123,,,B040,NA,,,, +B124,,1900,B040,1568,,roberts1953:556; spencerandgillen1899:appendix C,Binford_2001_Table_6.03, +B125,,,B040,NA,,,, +B126,,,B040,NA,,,, +B127,,,B040,NA,,,, +B128,,,B040,NA,,,, +B129,,1840,B040,1520,,cawthorne1844:50,Binford_2001_Table_6.03, +B13,,1979,B040,1450,,wastl1957:805,Binford_2001_Table_6.03, +B130,,,B040,NA,,,, +B131,,,B040,NA,,,, +B132,,,B040,NA,,,, +B133,,,B040,NA,,,, +B134,,,B040,NA,,,, +B135,,,B040,NA,,,, +B136,,1830,B040,1503,,roth1899:192,Binford_2001_Table_6.03, +B137,,,B040,NA,,,, +B14,,1924,B040,1425,"Note, for this society, Binford provided two estimates (1425, 1427); this entry is one of those estimates",vanoverbergh1925:400,Binford_2001_Table_6.03, +B14,,1924,B040,1427,"Note, for this society, Binford provided two estimates (1425, 1427); this entry is one of those estimates",goodmanetal1985:1203,Binford_2001_Table_6.03, +B143,,1900,B040,1612,,mcgee1898:136,Binford_2001_Table_6.03, +B144,,1870,B040,1580,,gifford1926b:232-33,Binford_2001_Table_6.03, +B145,,1870,B040,1560,,gifford1926b:232-33,Binford_2001_Table_6.03, +B146,,,B040,NA,,,, +B147,,,B040,NA,,,, +B148,,1860,B040,1550,,gifford1926b:232-33,Binford_2001_Table_6.03, +B149,,1870,B040,1580,,gifford1926b:232-33,Binford_2001_Table_6.03, +B15,,,B040,NA,,,, +B150,,1860,B040,1570,,gifford1926b:232-33,Binford_2001_Table_6.03, +B151,,,B040,NA,,,, +B152,,,B040,NA,,,, +B153,,1850,B040,1520,,gifford1926b:232-33,Binford_2001_Table_6.03, +B154,,1850,B040,1510,,gifford1926b:232-33,Binford_2001_Table_6.03, +B155,,,B040,NA,,,, +B156,,,B040,NA,,,, +B157,,,B040,NA,,,, +B158,,1860,B040,1640,,gifford1926b:232-33,Binford_2001_Table_6.03, +B159,,,B040,NA,,,, +B16,,1963,B040,1444,"Note, for this society, Binford provided three estimates (1444, 1440, 1445); this entry is one of those estimates",bernatzik1951:165,Binford_2001_Table_6.03, +B16,,1963,B040,1440,"Note, for this society, Binford provided three estimates (1444, 1440, 1445); this entry is one of those estimates",flatz1963:table 1,Binford_2001_Table_6.03, +B16,,1963,B040,1445,"Note, for this society, Binford provided three estimates (1444, 1440, 1445); this entry is one of those estimates",trier1981:292,Binford_2001_Table_6.03, +B160,,,B040,NA,,,, +B161,,,B040,NA,,,, +B162,,,B040,NA,,,, +B163,,,B040,NA,,,, +B164,,,B040,NA,,,, +B165,,,B040,NA,,,, +B166,,,B040,NA,,,, +B167,,,B040,NA,,,, +B168,,,B040,NA,,,, +B169,,,B040,NA,,,, +B17,,,B040,NA,,,, +B170,,,B040,NA,,,, +B171,,1850,B040,1480,,gifford1926b:232-33,Binford_2001_Table_6.03, +B172,,,B040,NA,,,, +B173,,1860,B040,1540,,gifford1926b:232-33,Binford_2001_Table_6.03, +B174,,,B040,NA,,,, +B175,,1850,B040,1550,,gifford1926b:232-33,Binford_2001_Table_6.03, +B176,,,B040,NA,,,, +B177,,,B040,NA,,,, +B178,,,B040,NA,,,, +B179,,,B040,NA,,,, +B18,,,B040,NA,,,, +B180,,1860,B040,1520,,gifford1926b:232-33,Binford_2001_Table_6.03, +B181,,,B040,NA,,,, +B182,,,B040,NA,,,, +B183,,1860,B040,1540,,gifford1926b:232-33,Binford_2001_Table_6.03, +B184,,1860,B040,1560,,gifford1926b:232-33,Binford_2001_Table_6.03, +B185,,1850,B040,1530,,gifford1926b:232-33,Binford_2001_Table_6.03, +B186,,1850,B040,1530,,gifford1926b:232-33,Binford_2001_Table_6.03, +B187,,1860,B040,1530,,gifford1926b:232-33,Binford_2001_Table_6.03, +B188,,1860,B040,1550,,gifford1926b:232-33,Binford_2001_Table_6.03, +B189,,1860,B040,1600,,gifford1926b:232-33,Binford_2001_Table_6.03, +B19,,1946,B040,1500,,ehrenfels1952:6,Binford_2001_Table_6.03, +B190,,,B040,NA,,,, +B191,,,B040,NA,,,, +B192,,,B040,NA,,,, +B193,,,B040,NA,,,, +B194,,,B040,NA,,,, +B195,,,B040,NA,,,, +B196,,1870,B040,1600,,corbusier1886:278-79,Binford_2001_Table_6.03, +B197,,,B040,NA,,,, +B198,,1870,B040,1577,,hrdlicka1909:413,Binford_2001_Table_6.03, +B199,,,B040,NA,,,, +B2,,1968,B040,1432,,eder1987:140,Binford_2001_Table_6.03, +B20,,,B040,NA,,,, +B200,,,B040,NA,,,, +B201,,,B040,NA,,,, +B202,,1870,B040,1560,,gifford1926b:232-33,Binford_2001_Table_6.03, +B203,,,B040,NA,,,, +B204,,1860,B040,1521,,hrdlicka1909:408,Binford_2001_Table_6.03, +B205,,,B040,NA,,,, +B206,,,B040,NA,,,, +B207,,,B040,NA,,,, +B208,,,B040,NA,,,, +B209,,,B040,NA,,,, +B21,,,B040,NA,,,, +B210,,,B040,NA,,,, +B211,,,B040,NA,,,, +B212,,1870,B040,1600,,gifford1926b:232-33,Binford_2001_Table_6.03, +B213,,,B040,NA,,,, +B214,,,B040,NA,,,, +B215,,,B040,NA,,,, +B216,,,B040,NA,,,, +B217,,,B040,NA,,,, +B218,,,B040,NA,,,, +B219,,1860,B040,1560,,gifford1926b:232-33,Binford_2001_Table_6.03, +B22,,1900,B040,1482,,landor1893:299,Binford_2001_Table_6.03, +B221,,,B040,NA,,,, +B222,,1860,B040,1537,,hrdlicka1909:409,Binford_2001_Table_6.03, +B223,,,B040,NA,,,, +B224,,,B040,NA,,,, +B225,,1850,B040,1580,,gifford1926b:232-33,Binford_2001_Table_6.03, +B226,,,B040,NA,,,, +B227,,,B040,NA,,,, +B228,,,B040,NA,,,, +B229,,,B040,NA,,,, +B23,,,B040,NA,,,, +B230,,1860,B040,1641,"Note, this is a joint estimate for males and females",boas1899:753,Binford_2001_Table_6.03, +B231,,,B040,NA,,,, +B232,,1860,B040,1665,"Note, this is a joint estimate for males and females",boas1899:753,Binford_2001_Table_6.03, +B233,,,B040,NA,,,, +B234,,1860,B040,1628,"Note, this is a joint estimate for males and females",boas1899:753,Binford_2001_Table_6.03, +B24,,,B040,NA,,,, +B240,,1880,B040,1568,,hrdlicka1909:412,Binford_2001_Table_6.03, +B241,,1870,B040,1562,,goldstein1934:299,Binford_2001_Table_6.03, +B242,,,B040,NA,,,, +B243,,,B040,NA,,,, +B244,,,B040,NA,,,, +B245,,,B040,NA,,,, +B246,,,B040,NA,,,, +B248,,,B040,NA,,,, +B249,,1870,B040,1600,,sullivan1920:169,Binford_2001_Table_6.03, +B25,,,B040,NA,,,, +B250,,1880,B040,1569,,chamberlain1892:564-82,Binford_2001_Table_6.03, +B252,,,B040,NA,,,, +B253,,,B040,NA,,,, +B254,,,B040,NA,,,, +B255,,,B040,NA,,,, +B256,,,B040,NA,,,, +B257,,,B040,NA,,,, +B258,,,B040,NA,,,, +B259,,,B040,NA,,,, +B26,,1900,B040,1470,,jochelson191926:20,Binford_2001_Table_6.03, +B260,,,B040,NA,,,, +B268,,,B040,NA,,,, +B269,,1860,B040,1486,,boas1891a:433,Binford_2001_Table_6.03, +B27,,,B040,NA,,,, +B270,,,B040,NA,,,, +B271,,,B040,NA,,,, +B272,,,B040,NA,,,, +B273,,,B040,NA,,,, +B274,,,B040,NA,,,, +B275,,,B040,NA,,,, +B276,,1860,B040,1532,,boasandfarrand1899:630,Binford_2001_Table_6.03, +B277,,,B040,NA,,,, +B278,,,B040,NA,,,, +B279,,,B040,NA,,,, +B28,,,B040,NA,,,, +B280,,1880,B040,1495,,wilson1866:278,Binford_2001_Table_6.03, +B281,,,B040,NA,,,, +B282,,,B040,NA,,,, +B283,,,B040,NA,,,, +B284,,,B040,NA,,,, +B285,,,B040,NA,,,, +B286,,,B040,NA,,,, +B287,,,B040,NA,,,, +B288,,1890,B040,1543,,boasandfarrand1899:630; cybulski1990b:54,Binford_2001_Table_6.03, +B289,,1880,B040,1520,,boasandfarrand1899:630,Binford_2001_Table_6.03, +B290,,1890,B040,1552,,cybulski1990b:54,Binford_2001_Table_6.03, +B291,,1880,B040,1573,,boasandfarrand1899:630; cybulski1990b:54,Binford_2001_Table_6.03, +B292,,,B040,NA,,,, +B293,,1880,B040,1543,,boasandfarrand1899:630; cybulski1990b:54,Binford_2001_Table_6.03, +B294,,,B040,NA,,,, +B295,,,B040,NA,,,, +B296,,,B040,NA,,,, +B297,,,B040,NA,,,, +B298,,,B040,NA,,,, +B299,,1930,B040,1531,,hrdlicka1930:251,Binford_2001_Table_6.03, +B3,,1900,B040,1462,,volz1909:92,Binford_2001_Table_6.03, +B315,,,B040,NA,,,, +B316,,,B040,NA,,,, +B317,,,B040,NA,,,, +B318,,,B040,NA,,,, +B319,,,B040,NA,,,, +B320,,,B040,NA,,,, +B321,,,B040,NA,,,, +B322,,,B040,NA,,,, +B323,,,B040,NA,,,, +B324,,,B040,NA,,,, +B325,,1860,B040,1576,,boasandfarrand1899:630,Binford_2001_Table_6.03, +B326,,,B040,NA,,,, +B327,,,B040,NA,,,, +B328,,,B040,NA,,,, +B329,,1700,B040,1579,,boas1895a:574,Binford_2001_Table_6.03, +B330,,,B040,NA,,,, +B331,,,B040,NA,,,, +B332,,,B040,NA,,,, +B333,,1850,B040,1569,,chamberlain1892:615,Binford_2001_Table_6.03, +B334,,,B040,NA,,,, +B335,,,B040,NA,,,, +B336,,,B040,NA,,,, +B337,,,B040,NA,,,, +B338,,1880,B040,1549,,rogers1972:92,Binford_2001_Table_6.03, +B339,,,B040,NA,,,, +B340,,,B040,NA,,,, +B341,,1890,B040,1574,,boas1895a:574,Binford_2001_Table_6.03, +B342,,,B040,NA,,,, +B343,,1880,B040,1578,"Note, for this society, Binford provided two estimates (1578, 1568); this entry is one of those estimates",jenness1937:27,Binford_2001_Table_6.03, +B343,,1880,B040,1568,"Note, for this society, Binford provided two estimates (1578, 1568); this entry is one of those estimates",grant1936:18,Binford_2001_Table_6.03, +B344,,1850,B040,1564,,grant1936:13-15,Binford_2001_Table_6.03, +B345,,,B040,NA,,,, +B346,,,B040,NA,,,, +B347,,1870,B040,1617,,boas1901:61-63,Binford_2001_Table_6.03, +B348,,1880,B040,1565,,boasandfarrand1899:630,Binford_2001_Table_6.03, +B349,,1880,B040,1572,,grant1936:18,Binford_2001_Table_6.03, +B35,,,B040,NA,,,, +B350,,,B040,NA,,,, +B351,,,B040,NA,,,, +B352,,,B040,NA,,,, +B353,,1900,B040,1555,,mason1967:5,Binford_2001_Table_6.03, +B354,,,B040,NA,,,, +B355,,1880,B040,1509,,grant1936:13-15,Binford_2001_Table_6.03, +B356,,1880,B040,1521,,boas1901:64-65; mckennan1964:47,Binford_2001_Table_6.03, +B357,,,B040,NA,,,, +B358,,,B040,NA,,,, +B359,,,B040,NA,,,, +B36,,,B040,NA,,,, +B360,,,B040,NA,,,, +B361,,,B040,NA,,,, +B362,,,B040,NA,,,, +B363,,,B040,NA,,,, +B364,,,B040,NA,,,, +B365,,1890,B040,1546,,hallowell1929:341,Binford_2001_Table_6.03, +B369,,1870,B040,1561,,seltzer1933:341,Binford_2001_Table_6.03, +B37,,,B040,NA,,,, +B370,,,B040,NA,,,, +B371,,1880,B040,1607,,rodahlandedwards1952:243,Binford_2001_Table_6.03, +B372,,1890,B040,1504,,seltzer1933:341,Binford_2001_Table_6.03, +B373,,,B040,NA,,,, +B374,,,B040,NA,,,, +B375,,1900,B040,1556,,boas1901:64-65,Binford_2001_Table_6.03, +B377,,1950,B040,1549,,"jamison1978:56, 58",Binford_2001_Table_6.03, +B378,,1910,B040,1535,,seltzer1933:341,Binford_2001_Table_6.03, +B379,,1920,B040,1533,"Note, for this society, Binford provided two estimates (1533, 1514); this entry is one of those estimates",rodahlandedwards1952:243,Binford_2001_Table_6.03, +B379,,1920,B040,1514,"Note, for this society, Binford provided two estimates (1533, 1514); this entry is one of those estimates",hrdlicka1930:251,Binford_2001_Table_6.03, +B38,,1989,B040,1484,,petrullo1939:177,Binford_2001_Table_6.03, +B380,,,B040,NA,,,, +B381,,1920,B040,1564,,jenness1922:b49,Binford_2001_Table_6.03, +B382,,,B040,NA,,,, +B383,,1880,B040,1583,,hrdlicka1930:230,Binford_2001_Table_6.03, +B383,,1880,B040,1580,"Note, this is a joint estimate for males and females",oetteking1931:423,Binford_2001_Table_6.03, +B384,,1920,B040,1537,,szathmary1984,Binford_2001_Table_6.03, +B385,,1880,B040,1520,,hansen1914,Binford_2001_Table_6.03, +B386,,1880,B040,1499,,roberts1953:557,Binford_2001_Table_6.03, +B386,,1880,B040,1551,"Note, this is a joint estimate for males and females",oetteking1931:423,Binford_2001_Table_6.03, +B387,,,B040,NA,,,, +B388,,1880,B040,1521,,"hansen1914; poulsen1909:135, 144-46",Binford_2001_Table_6.03, +B389,Barrow Tareumiut,1880,B040,1537,"Note, for this society, Binford provided two estimates (1537, 1536); this entry is one of those estimates",roberts1953:556,Binford_2001_Table_6.03, +B389,Barrow Tareumiut,1880,B040,1536,"Note, for this society, Binford provided two estimates (1537, 1536); this entry is one of those estimates",seltzer1933:341,Binford_2001_Table_6.03, +B39,,,B040,NA,,,, +B390,,1880,B040,1454,,roberts1953:557; steensby1910:389,Binford_2001_Table_6.03, +B4,,1989,B040,1474,"Note, for this society, Binford provided two estimates (1474, 1487); this entry is one of those estimates",agrawal1967:84-87; rizvi1990:35,Binford_2001_Table_6.03, +B4,,1989,B040,1487,"Note, for this society, Binford provided two estimates (1474, 1487); this entry is one of those estimates",agrawal1967:84-87; rizvi1990:35,Binford_2001_Table_6.03, +B40,,,B040,NA,,,, +B41,,,B040,NA,,,, +B42,,,B040,NA,,,, +B43,,1940,B040,1575,,holmberg1950:8,Binford_2001_Table_6.03, +B44,,,B040,NA,,,, +B45,,,B040,NA,,,, +B46,,,B040,NA,,,, +B47,,1975,B040,1500,,"hilletal1984:table 4, 132",Binford_2001_Table_6.03, +B48,,1880,B040,1495,,ehrenreich1887:16-17,Binford_2001_Table_6.03, +B49,,,B040,NA,,,, +B5,,1952,B040,1371,"Note, for this society, Binford provided two estimates (1371, 1393); this entry is one of those estimates",man1883:73; temple1903:54,Binford_2001_Table_6.03, +B5,,1952,B040,1393,"Note, for this society, Binford provided two estimates (1371, 1393); this entry is one of those estimates",man1883:73; temple1903:54,Binford_2001_Table_6.03, +B50,,,B040,NA,,,, +B51,,,B040,NA,,,, +B52,,,B040,NA,,,, +B53,,1900,B040,1488,,lothrop1928:39,Binford_2001_Table_6.03, +B54,,1880,B040,1592,,lothrop1928:41,Binford_2001_Table_6.03, +B55,,1870,B040,1475,,lothrop1928:41,Binford_2001_Table_6.03, +B6,,,B040,NA,,,, +B60,,1980,B040,1486,"Note, this is a joint estimate for males and females",cavallisforza1986a:83,Binford_2001_Table_6.03, +B61,,1976,B040,1440,,heymer1980:178; hiernauxetal1975:7,Binford_2001_Table_6.03, +B62,,,B040,NA,,,, +B63,,1980,B040,1441,,hiernauxetal1975:7; valloisandmarquer1976,Binford_2001_Table_6.03, +B64,,1980,B040,1363,,baileyandpeacock1988:107,Binford_2001_Table_6.03, +B65,,1930,B040,1370,,cavallisforza1986c:392; hiernauxetal1975:7; roberts1953:557,Binford_2001_Table_6.03, +B66,,,B040,NA,,,, +B67,,1950,B040,1494,,clark1951:60,Binford_2001_Table_6.03, +B68,,1920,B040,1497,"Note, for this society, Binford provided two estimates (1497, 1491); this entry is one of those estimates",werner1906a:241,Binford_2001_Table_6.03, +B68,,1920,B040,1491,"Note, for this society, Binford provided two estimates (1497, 1491); this entry is one of those estimates",tobias1962:802-3,Binford_2001_Table_6.03, +B69,,,B040,NA,,,, +B7,,1903,B040,1388,,reed1904:75-77,Binford_2001_Table_6.03, +B70,,1920,B040,1587,,wayland1931:217,Binford_2001_Table_6.03, +B71,,1928,B040,1503,"Note, for this society, Binford provided two estimates (1503, 1488); this entry is one of those estimates",bleek1929:106,Binford_2001_Table_6.03, +B71,,1928,B040,1488,"Note, for this society, Binford provided two estimates (1503, 1488); this entry is one of those estimates",decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_6.03, +B72,,1950,B040,1485,"Note, for this society, Binford provided three estimates (1485, 1455, 1493), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",bleek1929:106; howell1979:258-59,Binford_2001_Table_6.03, +B72,Auen !Kung,1950,B040,1455,"Note, for this society, Binford provided three estimates (1485, 1455, 1493), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",kaufmann1910:135,Binford_2001_Table_6.03, +B72,Auen !Kung,1950,B040,1493,"Note, for this society, Binford provided three estimates (1485, 1455, 1493), the latter two refer specifically to Auen !Kung; this entry is one of those estimates",tobias1962:802-3,Binford_2001_Table_6.03, +B73,,1910,B040,1501,"Note, for this society, Binford provided two estimates (1501, 1493); this entry is one of those estimates",tobias1962:802-3,Binford_2001_Table_6.03, +B73,,1910,B040,1493,"Note, for this society, Binford provided two estimates (1501, 1493); this entry is one of those estimates",tobias1962:802-3,Binford_2001_Table_6.03, +B74,,1962,B040,1520,,tobias1962:802-3,Binford_2001_Table_6.03, +B75,,1976,B040,1523,,tobias1962:802-3; wyndhamandmorrison1958:221,Binford_2001_Table_6.03, +B76,,,B040,NA,,,, +B77,,1920,B040,1460,,dart1937b:184,Binford_2001_Table_6.03, +B78,,1950,B040,1347,,toerien1958:122-23,Binford_2001_Table_6.03, +B79,,,B040,NA,,,, +B8,,,B040,NA,,,, +B82,,,B040,NA,,,, +B83,,,B040,NA,,,, +B84,,,B040,NA,,,, +B85,,,B040,NA,,,, +B86,,,B040,NA,,,, +B87,,,B040,NA,,,, +B88,,1930,B040,1580,,howells1937:16; peterson1976:269,Binford_2001_Table_6.03, +B89,,,B040,NA,,,, +B9,,1920,B040,1408,,skeatandblagden1906:575,Binford_2001_Table_6.03, +B90,,,B040,NA,,,, +B91,,,B040,NA,,,, +B92,,,B040,NA,,,, +B93,,,B040,NA,,,, +B94,,,B040,NA,,,, +B95,,,B040,NA,,,, +B96,,,B040,NA,,,, +B97,,,B040,NA,,,, +B98,,1926,B040,1550,,haleandtindale1933:71,Binford_2001_Table_6.03, +B99,,,B040,NA,,,, +B1,Busang Punan,1970,B041,52.9,,oldrey1975:155,Binford_2001_Table_6.03, +B10,,,B041,NA,,,, +B100,,,B041,NA,,,, +B101,,,B041,NA,,,, +B102,,,B041,NA,,,, +B103,,,B041,NA,,,, +B104,,,B041,NA,,,, +B105,,,B041,NA,,,, +B106,,,B041,NA,,,, +B107,,,B041,NA,,,, +B108,,,B041,NA,,,, +B109,,1965,B041,56.7,,abbie1957:236-38,Binford_2001_Table_6.03, +B11,,,B041,NA,,,, +B110,,,B041,NA,,,, +B111,,,B041,NA,,,, +B112,,,B041,NA,,,, +B113,,,B041,NA,,,, +B114,,,B041,NA,,,, +B115,,,B041,NA,,,, +B116,,,B041,NA,,,, +B117,,,B041,NA,,,, +B118,,,B041,NA,,,, +B119,,,B041,NA,,,, +B12,,1965,B041,44,,headland1986:544,Binford_2001_Table_6.03, +B120,,,B041,NA,,,, +B121,,,B041,NA,,,, +B122,,,B041,NA,,,, +B123,,,B041,NA,,,, +B124,,,B041,NA,,,, +B125,,,B041,NA,,,, +B126,,,B041,NA,,,, +B127,,,B041,NA,,,, +B128,,,B041,NA,,,, +B129,,,B041,NA,,,, +B13,,1979,B041,41,,wastl1957:805,Binford_2001_Table_6.03, +B130,,,B041,NA,,,, +B131,,,B041,NA,,,, +B132,,,B041,NA,,,, +B133,,,B041,NA,,,, +B134,,,B041,NA,,,, +B135,,,B041,NA,,,, +B136,,,B041,NA,,,, +B137,,,B041,NA,,,, +B14,,,B041,NA,,,, +B143,,,B041,NA,,,, +B144,,,B041,NA,,,, +B145,,,B041,NA,,,, +B146,,,B041,NA,,,, +B147,,,B041,NA,,,, +B148,,,B041,NA,,,, +B149,,,B041,NA,,,, +B15,,,B041,NA,,,, +B150,,,B041,NA,,,, +B151,,,B041,NA,,,, +B152,,,B041,NA,,,, +B153,,,B041,NA,,,, +B154,,,B041,NA,,,, +B155,,,B041,NA,,,, +B156,,,B041,NA,,,, +B157,,,B041,NA,,,, +B158,,,B041,NA,,,, +B159,,,B041,NA,,,, +B16,,1963,B041,48.8,,flatz1963:table 1,Binford_2001_Table_6.03, +B160,,,B041,NA,,,, +B161,,,B041,NA,,,, +B162,,,B041,NA,,,, +B163,,,B041,NA,,,, +B164,,,B041,NA,,,, +B165,,,B041,NA,,,, +B166,,,B041,NA,,,, +B167,,,B041,NA,,,, +B168,,,B041,NA,,,, +B169,,,B041,NA,,,, +B17,,,B041,NA,,,, +B170,,,B041,NA,,,, +B171,,,B041,NA,,,, +B172,,,B041,NA,,,, +B173,,,B041,NA,,,, +B174,,,B041,NA,,,, +B175,,,B041,NA,,,, +B176,,,B041,NA,,,, +B177,,,B041,NA,,,, +B178,,,B041,NA,,,, +B179,,,B041,NA,,,, +B18,,,B041,NA,,,, +B180,,,B041,NA,,,, +B181,,,B041,NA,,,, +B182,,,B041,NA,,,, +B183,,,B041,NA,,,, +B184,,,B041,NA,,,, +B185,,,B041,NA,,,, +B186,,,B041,NA,,,, +B187,,,B041,NA,,,, +B188,,,B041,NA,,,, +B189,,,B041,NA,,,, +B19,,,B041,NA,,,, +B190,,,B041,NA,,,, +B191,,,B041,NA,,,, +B192,,,B041,NA,,,, +B193,,,B041,NA,,,, +B194,,,B041,NA,,,, +B195,,,B041,NA,,,, +B196,,1870,B041,71,,corbusier1886:278-79,Binford_2001_Table_6.03, +B197,,,B041,NA,,,, +B198,,,B041,NA,,,, +B199,,,B041,NA,,,, +B2,,1968,B041,46.5,,eder1987:140,Binford_2001_Table_6.03, +B20,,,B041,NA,,,, +B200,,,B041,NA,,,, +B201,,,B041,NA,,,, +B202,,,B041,NA,,,, +B203,,,B041,NA,,,, +B204,,,B041,NA,,,, +B205,,,B041,NA,,,, +B206,,,B041,NA,,,, +B207,,,B041,NA,,,, +B208,,,B041,NA,,,, +B209,,,B041,NA,,,, +B21,,,B041,NA,,,, +B210,,,B041,NA,,,, +B211,,,B041,NA,,,, +B212,,,B041,NA,,,, +B213,,,B041,NA,,,, +B214,,,B041,NA,,,, +B215,,,B041,NA,,,, +B216,,,B041,NA,,,, +B217,,,B041,NA,,,, +B218,,,B041,NA,,,, +B219,,,B041,NA,,,, +B22,,,B041,NA,,,, +B221,,,B041,NA,,,, +B222,,,B041,NA,,,, +B223,,,B041,NA,,,, +B224,,,B041,NA,,,, +B225,,,B041,NA,,,, +B226,,,B041,NA,,,, +B227,,,B041,NA,,,, +B228,,,B041,NA,,,, +B229,,,B041,NA,,,, +B23,,,B041,NA,,,, +B230,,,B041,NA,,,, +B231,,,B041,NA,,,, +B232,,,B041,NA,,,, +B233,,,B041,NA,,,, +B234,,,B041,NA,,,, +B24,,,B041,NA,,,, +B240,,,B041,NA,,,, +B241,,,B041,NA,,,, +B242,,,B041,NA,,,, +B243,,,B041,NA,,,, +B244,,,B041,NA,,,, +B245,,,B041,NA,,,, +B246,,,B041,NA,,,, +B248,,,B041,NA,,,, +B249,,,B041,NA,,,, +B25,,,B041,NA,,,, +B250,,1880,B041,67.8,,chamberlain1892:564-82,Binford_2001_Table_6.03, +B252,,,B041,NA,,,, +B253,,,B041,NA,,,, +B254,,,B041,NA,,,, +B255,,,B041,NA,,,, +B256,,,B041,NA,,,, +B257,,,B041,NA,,,, +B258,,,B041,NA,,,, +B259,,,B041,NA,,,, +B26,,,B041,NA,,,, +B260,,,B041,NA,,,, +B268,,,B041,NA,,,, +B269,,,B041,NA,,,, +B27,,,B041,NA,,,, +B270,,,B041,NA,,,, +B271,,1850,B041,64.4,,eells1887a:273,Binford_2001_Table_6.03, +B272,,,B041,NA,,,, +B273,,,B041,NA,,,, +B274,,,B041,NA,,,, +B275,,,B041,NA,,,, +B276,,,B041,NA,,,, +B277,,,B041,NA,,,, +B278,,,B041,NA,,,, +B279,,,B041,NA,,,, +B28,,1860,B041,64.2,,szathmary1984:65,Binford_2001_Table_6.03, +B280,,,B041,NA,,,, +B281,,,B041,NA,,,, +B282,,,B041,NA,,,, +B283,,,B041,NA,,,, +B284,,,B041,NA,,,, +B285,,,B041,NA,,,, +B286,,,B041,NA,,,, +B287,,,B041,NA,,,, +B288,,,B041,NA,,,, +B289,,,B041,NA,,,, +B290,,,B041,NA,,,, +B291,,,B041,NA,,,, +B292,,,B041,NA,,,, +B293,,,B041,NA,,,, +B294,,,B041,NA,,,, +B295,,,B041,NA,,,, +B296,,,B041,NA,,,, +B297,,,B041,NA,,,, +B298,,,B041,NA,,,, +B299,,,B041,NA,,,, +B3,,,B041,NA,,,, +B315,,,B041,NA,,,, +B316,,,B041,NA,,,, +B317,,,B041,NA,,,, +B318,,,B041,NA,,,, +B319,,,B041,NA,,,, +B320,,,B041,NA,,,, +B321,,,B041,NA,,,, +B322,,,B041,NA,,,, +B323,,,B041,NA,,,, +B324,,,B041,NA,,,, +B325,,,B041,NA,,,, +B326,,,B041,NA,,,, +B327,,,B041,NA,,,, +B328,,,B041,NA,,,, +B329,,,B041,NA,,,, +B330,,,B041,NA,,,, +B331,,,B041,NA,,,, +B332,,,B041,NA,,,, +B333,,,B041,NA,,,, +B334,,,B041,NA,,,, +B335,,,B041,NA,,,, +B336,,,B041,NA,,,, +B337,,,B041,NA,,,, +B338,,,B041,NA,,,, +B339,,,B041,NA,,,, +B340,,,B041,NA,,,, +B341,,1890,B041,70.3,,boas1895a:574,Binford_2001_Table_6.03, +B342,,,B041,NA,,,, +B343,,,B041,NA,,,, +B344,,,B041,NA,,,, +B345,,,B041,NA,,,, +B346,,,B041,NA,,,, +B347,,,B041,NA,,,, +B348,,,B041,NA,,,, +B349,,,B041,NA,,,, +B35,,,B041,NA,,,, +B350,,,B041,NA,,,, +B351,,,B041,NA,,,, +B352,,,B041,NA,,,, +B353,,,B041,NA,,,, +B354,,,B041,NA,,,, +B355,,,B041,NA,,,, +B356,,,B041,NA,,,, +B357,,,B041,NA,,,, +B358,,,B041,NA,,,, +B359,,,B041,NA,,,, +B36,,,B041,NA,,,, +B360,,,B041,NA,,,, +B361,,1860,B041,66.6,,szathmary1984:65,Binford_2001_Table_6.03, +B362,,,B041,NA,,,, +B363,,,B041,NA,,,, +B364,,,B041,NA,,,, +B365,,,B041,NA,,,, +B369,,,B041,NA,,,, +B37,,,B041,NA,,,, +B370,,,B041,NA,,,, +B371,,1880,B041,64.3,,rodahlandedwards1952:243,Binford_2001_Table_6.03, +B372,,,B041,NA,,,, +B373,,,B041,NA,,,, +B374,,,B041,NA,,,, +B375,,,B041,NA,,,, +B377,,,B041,NA,,,, +B378,,,B041,NA,,,, +B379,,1920,B041,64.4,,rodahlandedwards1952:243,Binford_2001_Table_6.03, +B38,,,B041,NA,,,, +B380,,,B041,NA,,,, +B381,,,B041,NA,,,, +B382,,,B041,NA,,,, +B383,,,B041,NA,,,, +B384,,1920,B041,65.3,,szathmary1984,Binford_2001_Table_6.03, +B385,,,B041,NA,,,, +B386,,1880,B041,62.1,,roberts1953:557,Binford_2001_Table_6.03, +B387,,,B041,NA,,,, +B388,,,B041,NA,,,, +B389,Barrow Tareumiut,1880,B041,65.3,,roberts1953:556; seltzer1933:341,Binford_2001_Table_6.03, +B389,Barrow Tareumiut,1880,B041,69.7,,seltzer1933:341,Binford_2001_Table_6.03, +B39,,1960,B041,57.8,,hurtadoandhill1990:329,Binford_2001_Table_6.03, +B390,,1880,B041,63.5,,roberts1953:557; steensby1910:389,Binford_2001_Table_6.03, +B4,,1989,B041,60.5,"Note, for this society, Binford provided two estimates (60.5, 55.3); this entry is one of those estimates",agrawal1967:84-87; rizvi1990:35,Binford_2001_Table_6.03, +B4,,1989,B041,55.3,"Note, for this society, Binford provided two estimates (60.5, 55.3); this entry is one of those estimates",agrawal1967:84-87; rizvi1990:35,Binford_2001_Table_6.03, +B40,,,B041,NA,,,, +B41,,,B041,NA,,,, +B42,,,B041,NA,,,, +B43,,,B041,NA,,,, +B44,,,B041,NA,,,, +B45,,,B041,NA,,,, +B46,,,B041,NA,,,, +B47,,1975,B041,59.6,,"hilletal1984:table 4, 132",Binford_2001_Table_6.03, +B48,,,B041,NA,,,, +B49,,,B041,NA,,,, +B5,,1952,B041,43.5,"Note, for this society, Binford provided two estimates (43.5, 44.5); this entry is one of those estimates",man1883:73; temple1903:54,Binford_2001_Table_6.03, +B5,,1952,B041,44.5,"Note, for this society, Binford provided two estimates (43.5, 44.5); this entry is one of those estimates",man1883:73; temple1903:54,Binford_2001_Table_6.03, +B50,,,B041,NA,,,, +B51,,,B041,NA,,,, +B52,,,B041,NA,,,, +B53,,,B041,NA,,,, +B54,,,B041,NA,,,, +B55,,,B041,NA,,,, +B6,,,B041,NA,,,, +B60,,1980,B041,45.1,,cavallisforza1986a:83,Binford_2001_Table_6.03, +B61,,1976,B041,46.4,,heymer1980:178; hiernauxetal1975:7,Binford_2001_Table_6.03, +B62,,,B041,NA,,,, +B63,,1980,B041,49.5,,hiernauxetal1975:7; valloisandmarquer1976,Binford_2001_Table_6.03, +B64,,1980,B041,43.1,,baileyandpeacock1988:107,Binford_2001_Table_6.03, +B65,,1930,B041,39.8,,cavallisforza1986c:392; hiernauxetal1975:7; roberts1953:557,Binford_2001_Table_6.03, +B66,,,B041,NA,,,, +B67,,,B041,NA,,,, +B68,,,B041,NA,,,, +B69,,,B041,NA,,,, +B7,,,B041,NA,,,, +B70,,,B041,NA,,,, +B71,,,B041,NA,,,, +B72,,1950,B041,50.4,,bleek1929:106; howell1979:258-59,Binford_2001_Table_6.03, +B72,,1950,B041,42.5,,tobias1962:802-3,Binford_2001_Table_6.03, +B73,,,B041,NA,,,, +B74,,,B041,NA,,,, +B75,,,B041,NA,,,, +B76,,,B041,NA,,,, +B77,,,B041,NA,,,, +B78,,,B041,NA,,,, +B79,,,B041,NA,,,, +B8,,,B041,NA,,,, +B82,,,B041,NA,,,, +B83,,,B041,NA,,,, +B84,,1978,B041,55.3,,altman1987:34,Binford_2001_Table_6.03, +B85,,,B041,NA,,,, +B86,,,B041,NA,,,, +B87,,,B041,NA,,,, +B88,,1930,B041,59.2,,howells1937:16; peterson1976:269,Binford_2001_Table_6.03, +B89,,,B041,NA,,,, +B9,,,B041,NA,,,, +B90,,,B041,NA,,,, +B91,,,B041,NA,,,, +B92,,,B041,NA,,,, +B93,,,B041,NA,,,, +B94,,,B041,NA,,,, +B95,,,B041,NA,,,, +B96,,,B041,NA,,,, +B97,,,B041,NA,,,, +B98,,,B041,NA,,,, +B99,,,B041,NA,,,, +B1,Busang Punan,1970,B042,37.9,,oldrey1975:155,Binford_2001_Table_6.03, +B10,,,B042,NA,,,, +B100,,,B042,NA,,,, +B101,,,B042,NA,,,, +B102,,,B042,NA,,,, +B103,,,B042,NA,,,, +B104,,,B042,NA,,,, +B105,,1900,B042,50.5,,birdsell1967:112,Binford_2001_Table_6.03, +B106,,,B042,NA,,,, +B107,,,B042,NA,,,, +B108,,,B042,NA,,,, +B109,,1965,B042,45.4,,abbie1957:236-38,Binford_2001_Table_6.03, +B11,,,B042,NA,,,, +B110,,,B042,NA,,,, +B111,,,B042,NA,,,, +B112,,,B042,NA,,,, +B113,,,B042,NA,,,, +B114,,,B042,NA,,,, +B115,,,B042,NA,,,, +B116,,,B042,NA,,,, +B117,,,B042,NA,,,, +B118,,,B042,NA,,,, +B119,,,B042,NA,,,, +B12,,1965,B042,37.5,,headland1986:544,Binford_2001_Table_6.03, +B120,,,B042,NA,,,, +B121,,,B042,NA,,,, +B122,,1870,B042,53.1,,roberts1953:556,Binford_2001_Table_6.03, +B123,,,B042,NA,,,, +B124,,1900,B042,56.9,,roberts1953:556; spencerandgillen1899:appendix C,Binford_2001_Table_6.03, +B125,,,B042,NA,,,, +B126,,,B042,NA,,,, +B127,,,B042,NA,,,, +B128,,,B042,NA,,,, +B129,,,B042,NA,,,, +B13,,1979,B042,34,,wastl1957:805,Binford_2001_Table_6.03, +B130,,,B042,NA,,,, +B131,,,B042,NA,,,, +B132,,,B042,NA,,,, +B133,,,B042,NA,,,, +B134,,,B042,NA,,,, +B135,,,B042,NA,,,, +B136,,,B042,NA,,,, +B137,,,B042,NA,,,, +B14,,1924,B042,34.9,,goodmanetal1985:1203,Binford_2001_Table_6.03, +B143,,,B042,NA,,,, +B144,,,B042,NA,,,, +B145,,,B042,NA,,,, +B146,,,B042,NA,,,, +B147,,,B042,NA,,,, +B148,,,B042,NA,,,, +B149,,,B042,NA,,,, +B15,,,B042,NA,,,, +B150,,,B042,NA,,,, +B151,,,B042,NA,,,, +B152,,,B042,NA,,,, +B153,,,B042,NA,,,, +B154,,,B042,NA,,,, +B155,,,B042,NA,,,, +B156,,,B042,NA,,,, +B157,,,B042,NA,,,, +B158,,,B042,NA,,,, +B159,,,B042,NA,,,, +B16,,,B042,NA,,,, +B160,,,B042,NA,,,, +B161,,,B042,NA,,,, +B162,,,B042,NA,,,, +B163,,,B042,NA,,,, +B164,,,B042,NA,,,, +B165,,,B042,NA,,,, +B166,,,B042,NA,,,, +B167,,,B042,NA,,,, +B168,,,B042,NA,,,, +B169,,,B042,NA,,,, +B17,,,B042,NA,,,, +B170,,,B042,NA,,,, +B171,,,B042,NA,,,, +B172,,,B042,NA,,,, +B173,,,B042,NA,,,, +B174,,,B042,NA,,,, +B175,,,B042,NA,,,, +B176,,,B042,NA,,,, +B177,,,B042,NA,,,, +B178,,,B042,NA,,,, +B179,,,B042,NA,,,, +B18,,,B042,NA,,,, +B180,,,B042,NA,,,, +B181,,,B042,NA,,,, +B182,,,B042,NA,,,, +B183,,,B042,NA,,,, +B184,,,B042,NA,,,, +B185,,,B042,NA,,,, +B186,,,B042,NA,,,, +B187,,,B042,NA,,,, +B188,,,B042,NA,,,, +B189,,,B042,NA,,,, +B19,,,B042,NA,,,, +B190,,,B042,NA,,,, +B191,,,B042,NA,,,, +B192,,,B042,NA,,,, +B193,,,B042,NA,,,, +B194,,,B042,NA,,,, +B195,,,B042,NA,,,, +B196,,1870,B042,63,,corbusier1886:278-79,Binford_2001_Table_6.03, +B197,,,B042,NA,,,, +B198,,,B042,NA,,,, +B199,,,B042,NA,,,, +B2,,1968,B042,40.6,,eder1987:140,Binford_2001_Table_6.03, +B20,,,B042,NA,,,, +B200,,,B042,NA,,,, +B201,,,B042,NA,,,, +B202,,,B042,NA,,,, +B203,,,B042,NA,,,, +B204,,,B042,NA,,,, +B205,,,B042,NA,,,, +B206,,,B042,NA,,,, +B207,,,B042,NA,,,, +B208,,,B042,NA,,,, +B209,,,B042,NA,,,, +B21,,,B042,NA,,,, +B210,,,B042,NA,,,, +B211,,,B042,NA,,,, +B212,,,B042,NA,,,, +B213,,,B042,NA,,,, +B214,,,B042,NA,,,, +B215,,,B042,NA,,,, +B216,,,B042,NA,,,, +B217,,,B042,NA,,,, +B218,,,B042,NA,,,, +B219,,,B042,NA,,,, +B22,,,B042,NA,,,, +B221,,,B042,NA,,,, +B222,,,B042,NA,,,, +B223,,,B042,NA,,,, +B224,,,B042,NA,,,, +B225,,,B042,NA,,,, +B226,,,B042,NA,,,, +B227,,,B042,NA,,,, +B228,,,B042,NA,,,, +B229,,,B042,NA,,,, +B23,,,B042,NA,,,, +B230,,,B042,NA,,,, +B231,,,B042,NA,,,, +B232,,,B042,NA,,,, +B233,,,B042,NA,,,, +B234,,,B042,NA,,,, +B24,,,B042,NA,,,, +B240,,,B042,NA,,,, +B241,,,B042,NA,,,, +B242,,,B042,NA,,,, +B243,,,B042,NA,,,, +B244,,,B042,NA,,,, +B245,,,B042,NA,,,, +B246,,,B042,NA,,,, +B248,,,B042,NA,,,, +B249,,,B042,NA,,,, +B25,,,B042,NA,,,, +B250,,,B042,NA,,,, +B252,,,B042,NA,,,, +B253,,,B042,NA,,,, +B254,,,B042,NA,,,, +B255,,,B042,NA,,,, +B256,,,B042,NA,,,, +B257,,,B042,NA,,,, +B258,,,B042,NA,,,, +B259,,,B042,NA,,,, +B26,,,B042,NA,,,, +B260,,,B042,NA,,,, +B268,,,B042,NA,,,, +B269,,,B042,NA,,,, +B27,,,B042,NA,,,, +B270,,,B042,NA,,,, +B271,,,B042,NA,,,, +B272,,,B042,NA,,,, +B273,,,B042,NA,,,, +B274,,,B042,NA,,,, +B275,,,B042,NA,,,, +B276,,,B042,NA,,,, +B277,,,B042,NA,,,, +B278,,,B042,NA,,,, +B279,,,B042,NA,,,, +B28,,,B042,NA,,,, +B280,,,B042,NA,,,, +B281,,,B042,NA,,,, +B282,,,B042,NA,,,, +B283,,,B042,NA,,,, +B284,,,B042,NA,,,, +B285,,,B042,NA,,,, +B286,,,B042,NA,,,, +B287,,,B042,NA,,,, +B288,,,B042,NA,,,, +B289,,,B042,NA,,,, +B290,,,B042,NA,,,, +B291,,,B042,NA,,,, +B292,,,B042,NA,,,, +B293,,,B042,NA,,,, +B294,,,B042,NA,,,, +B295,,,B042,NA,,,, +B296,,,B042,NA,,,, +B297,,,B042,NA,,,, +B298,,,B042,NA,,,, +B299,,,B042,NA,,,, +B3,,,B042,NA,,,, +B315,,,B042,NA,,,, +B316,,,B042,NA,,,, +B317,,,B042,NA,,,, +B318,,,B042,NA,,,, +B319,,,B042,NA,,,, +B320,,,B042,NA,,,, +B321,,,B042,NA,,,, +B322,,,B042,NA,,,, +B323,,,B042,NA,,,, +B324,,,B042,NA,,,, +B325,,,B042,NA,,,, +B326,,,B042,NA,,,, +B327,,,B042,NA,,,, +B328,,,B042,NA,,,, +B329,,,B042,NA,,,, +B330,,,B042,NA,,,, +B331,,,B042,NA,,,, +B332,,,B042,NA,,,, +B333,,,B042,NA,,,, +B334,,,B042,NA,,,, +B335,,,B042,NA,,,, +B336,,,B042,NA,,,, +B337,,,B042,NA,,,, +B338,,,B042,NA,,,, +B339,,,B042,NA,,,, +B340,,,B042,NA,,,, +B341,,,B042,NA,,,, +B342,,,B042,NA,,,, +B343,,,B042,NA,,,, +B344,,,B042,NA,,,, +B345,,,B042,NA,,,, +B346,,,B042,NA,,,, +B347,,,B042,NA,,,, +B348,,,B042,NA,,,, +B349,,,B042,NA,,,, +B35,,,B042,NA,,,, +B350,,,B042,NA,,,, +B351,,,B042,NA,,,, +B352,,,B042,NA,,,, +B353,,,B042,NA,,,, +B354,,,B042,NA,,,, +B355,,,B042,NA,,,, +B356,,,B042,NA,,,, +B357,,,B042,NA,,,, +B358,,,B042,NA,,,, +B359,,,B042,NA,,,, +B36,,,B042,NA,,,, +B360,,,B042,NA,,,, +B361,,,B042,NA,,,, +B362,,,B042,NA,,,, +B363,,,B042,NA,,,, +B364,,,B042,NA,,,, +B365,,,B042,NA,,,, +B369,,,B042,NA,,,, +B37,,,B042,NA,,,, +B370,,,B042,NA,,,, +B371,,1880,B042,64.3,,rodahlandedwards1952:243,Binford_2001_Table_6.03, +B372,,,B042,NA,,,, +B373,,,B042,NA,,,, +B374,,,B042,NA,,,, +B375,,,B042,NA,,,, +B377,,,B042,NA,,,, +B378,,,B042,NA,,,, +B379,,1920,B042,56.5,,rodahlandedwards1952:243,Binford_2001_Table_6.03, +B38,,,B042,NA,,,, +B380,,,B042,NA,,,, +B381,,,B042,NA,,,, +B382,,,B042,NA,,,, +B383,,,B042,NA,,,, +B384,,,B042,NA,,,, +B385,,,B042,NA,,,, +B386,,,B042,NA,,,, +B387,,,B042,NA,,,, +B388,,,B042,NA,,,, +B389,Barrow Tareumiut,1880,B042,61.22,,seltzer1933:341,Binford_2001_Table_6.03, +B39,,1960,B042,47.3,,hurtadoandhill1990:329,Binford_2001_Table_6.03, +B390,,,B042,NA,,,, +B4,,1989,B042,48,"Note, for this society, Binford provided two estimates (48, 47.1); this entry is one of those estimates",agrawal1967:84-87; rizvi1990:35,Binford_2001_Table_6.03, +B4,,1989,B042,47.1,"Note, for this society, Binford provided two estimates (48, 47.1); this entry is one of those estimates",agrawal1967:84-87; rizvi1990:35,Binford_2001_Table_6.03, +B40,,,B042,NA,,,, +B41,,,B042,NA,,,, +B42,,,B042,NA,,,, +B43,,,B042,NA,,,, +B44,,,B042,NA,,,, +B45,,,B042,NA,,,, +B46,,,B042,NA,,,, +B47,,1975,B042,55.8,,"hilletal1984:table 4, 132",Binford_2001_Table_6.03, +B48,,,B042,NA,,,, +B49,,,B042,NA,,,, +B5,,1952,B042,39.5,"Note, for this society, Binford provided two estimates (39.5, 42.3); this entry is one of those estimates",man1883:73; temple1903:54,Binford_2001_Table_6.03, +B5,,1952,B042,42.3,"Note, for this society, Binford provided two estimates (39.5, 42.3); this entry is one of those estimates",man1883:73; temple1903:54,Binford_2001_Table_6.03, +B50,,,B042,NA,,,, +B51,,,B042,NA,,,, +B52,,,B042,NA,,,, +B53,,,B042,NA,,,, +B54,,,B042,NA,,,, +B55,,,B042,NA,,,, +B6,,,B042,NA,,,, +B60,,,B042,NA,,,, +B61,,,B042,NA,,,, +B62,,,B042,NA,,,, +B63,,,B042,NA,,,, +B64,,1980,B042,37.9,,baileyandpeacock1988:107,Binford_2001_Table_6.03, +B65,,,B042,NA,,,, +B66,,,B042,NA,,,, +B67,,,B042,NA,,,, +B68,,,B042,NA,,,, +B69,,,B042,NA,,,, +B7,,,B042,NA,,,, +B70,,,B042,NA,,,, +B71,,,B042,NA,,,, +B72,,1950,B042,42.5,,bleek1929:106; howell1979:258-59,Binford_2001_Table_6.03, +B73,,,B042,NA,,,, +B74,,,B042,NA,,,, +B75,,1976,B042,54.43,,tobias1962:802-3; wyndhamandmorrison1958:221,Binford_2001_Table_6.03, +B76,,,B042,NA,,,, +B77,,,B042,NA,,,, +B78,,,B042,NA,,,, +B79,,,B042,NA,,,, +B8,,,B042,NA,,,, +B82,,,B042,NA,,,, +B83,,1900,B042,55.1,,howells1937:16,Binford_2001_Table_6.03, +B84,,1978,B042,46.1,,altman1987:34,Binford_2001_Table_6.03, +B85,,,B042,NA,,,, +B86,,,B042,NA,,,, +B87,,,B042,NA,,,, +B88,,1930,B042,43.5,,howells1937:16; peterson1976:269,Binford_2001_Table_6.03, +B89,,,B042,NA,,,, +B9,,,B042,NA,,,, +B90,,,B042,NA,,,, +B91,,,B042,NA,,,, +B92,,1960,B042,55.8,,howells1937:16,Binford_2001_Table_6.03, +B93,,,B042,NA,,,, +B94,,,B042,NA,,,, +B95,,1920,B042,56.9,,howells1937:16,Binford_2001_Table_6.03, +B96,,,B042,NA,,,, +B97,,,B042,NA,,,, +B98,,,B042,NA,,,, +B99,,,B042,NA,,,, +B1,,1970,B005,2,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_5.01, +B10,,1900,B005,2,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_5.01, +B100,,NA,B005,1,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_5.01, +B101,,1934,B005,1,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B005,1,,memmott1983a; memmott1983b,Binford_2001_Table_5.01, +B103,,1928,B005,1,,tindale1962a; tindale1962b,Binford_2001_Table_5.01, +B104,,NA,B005,1,,,Binford_2001_Table_5.01, +B105,,1900,B005,2,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_5.01, +B106,,1910,B005,1,,clement1903; radcliffebrown1912,Binford_2001_Table_5.01, +B107,,1870,B005,1,,brayshaw1990; lumholtz1889,Binford_2001_Table_5.01, +B108,,1934,B005,1,,kaberry1939; nind1831,Binford_2001_Table_5.01, +B109,,1965,B005,1,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_5.01, +B11,,1972,B005,2,,morris1982a,Binford_2001_Table_5.01, +B110,,1880,B005,2,,petersonandlong1986; tonkinson1978,Binford_2001_Table_5.01, +B111,,1960,B005,1,,harris1978; petersonandlong1986,Binford_2001_Table_5.01, +B112,,1968,B005,1,,petersonandlong1986,Binford_2001_Table_5.01, +B113,,1936,B005,1,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_5.01, +B114,,1848,B005,1,,colliverandwoolston1975,Binford_2001_Table_5.01, +B115,,1840,B005,1,,morwood1987; winterbotham1980,Binford_2001_Table_5.01, +B116,,1900,B005,1,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B005,1,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_5.01, +B118,,1968,B005,1,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_5.01, +B119,,1850,B005,1,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_5.01, +B12,,1965,B005,2,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B005,1,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_5.01, +B121,,1900,B005,1,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_5.01, +B122,,1870,B005,1,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B005,1,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_5.01, +B124,,1900,B005,1,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_5.01, +B125,,1880,B005,1,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B005,1,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_5.01, +B127,,1941,B005,2,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B005,1,,,Binford_2001_Table_5.01, +B129,,1840,B005,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B005,2,,rai1982; wastl1957,Binford_2001_Table_5.01, +B130,,1910,B005,1,,,Binford_2001_Table_5.01, +B131,,1850,B005,1,,,Binford_2001_Table_5.01, +B132,,1850,B005,1,,nind1831,Binford_2001_Table_5.01, +B133,,1850,B005,1,,williams1985,Binford_2001_Table_5.01, +B134,,1850,B005,1,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_5.01, +B135,,1850,B005,1,,fisonandhowitt1880; howitt1904,Binford_2001_Table_5.01, +B136,,1830,B005,1,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_5.01, +B137,,1830,B005,1,,hiatt1967; jones1971; jones1972,Binford_2001_Table_5.01, +B14,,1924,B005,2,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_5.01, +B143,,1900,B005,1,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_5.01, +B144,,1870,B005,2,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_5.01, +B145,,1870,B005,2,,gifford1926b; strong1929a,Binford_2001_Table_5.01, +B146,,1880,B005,1,,meigs1939,Binford_2001_Table_5.01, +B147,,1850,B005,1,,kroeber1925a; luomala1978,Binford_2001_Table_5.01, +B148,,1860,B005,1,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_5.01, +B149,,1870,B005,1,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_5.01, +B15,,1940,B005,2,,furerhaimendorf1943b,Binford_2001_Table_5.01, +B150,,1860,B005,1,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_5.01, +B151,,1860,B005,1,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_5.01, +B152,,1850,B005,1,,voegelin1938,Binford_2001_Table_5.01, +B153,,1850,B005,1,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_5.01, +B154,,1850,B005,1,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_5.01, +B155,,1850,B005,1,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_5.01, +B156,,1770,B005,1,,,Binford_2001_Table_5.01, +B157,,1870,B005,1,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_5.01, +B158,,1860,B005,1,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B005,1,,cook1956; gifford1926a,Binford_2001_Table_5.01, +B16,,1963,B005,2,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_5.01, +B160,,1860,B005,1,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_5.01, +B161,,1860,B005,1,,cookandheizer1965,Binford_2001_Table_5.01, +B162,,1860,B005,1,,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B005,1,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_5.01, +B164,,1805,B005,1,,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B005,1,,barrett1908; cook1956,Binford_2001_Table_5.01, +B166,,1860,B005,1,,cook1956; goddard1923; nomland1935,Binford_2001_Table_5.01, +B167,,NA,B005,1,,,Binford_2001_Table_5.01, +B168,,1850,B005,1,,collierandthalman1991,Binford_2001_Table_5.01, +B169,,NA,B005,1,,cook1956; nomland1938,Binford_2001_Table_5.01, +B17,,1963,B005,2,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_5.01, +B170,,NA,B005,1,,cook1955,Binford_2001_Table_5.01, +B171,,1850,B005,1,,cook1956; foster1944; gifford1926b,Binford_2001_Table_5.01, +B172,,1860,B005,1,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_5.01, +B173,,1860,B005,1,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B174,,1860,B005,1,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B005,1,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_5.01, +B176,,1860,B005,1,,gray1987,Binford_2001_Table_5.01, +B177,,1860,B005,1,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B005,1,,cook1956; drucker1940,Binford_2001_Table_5.01, +B179,,1860,B005,1,,cookandheizer1965; dixon1907,Binford_2001_Table_5.01, +B18,,1963,B005,2,,senandsen1955; williams1974,Binford_2001_Table_5.01, +B180,,1860,B005,1,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_5.01, +B181,,1870,B005,1,,gray1987,Binford_2001_Table_5.01, +B182,,1860,B005,1,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_5.01, +B183,,1860,B005,1,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B005,1,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_5.01, +B185,,1850,B005,1,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_5.01, +B186,,1850,B005,1,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_5.01, +B187,,1860,B005,1,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_5.01, +B188,,1860,B005,1,,gifford1926b; ray1963,Binford_2001_Table_5.01, +B189,,1860,B005,1,,gifford1926b; spier1930,Binford_2001_Table_5.01, +B19,,1946,B005,2,,ehrenfels1952,Binford_2001_Table_5.01, +B190,,1760,B005,1,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_5.01, +B191,,1570,B005,1,,,Binford_2001_Table_5.01, +B192,,1860,B005,1,,smith1978a; steward1938,Binford_2001_Table_5.01, +B193,,1800,B005,1,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_5.01, +B194,,1715,B005,1,,,Binford_2001_Table_5.01, +B195,,1850,B005,1,,steward1938,Binford_2001_Table_5.01, +B196,,1870,B005,2,,corbusier1886; gifford1932a,Binford_2001_Table_5.01, +B197,,1860,B005,1,,steward1936; steward1938,Binford_2001_Table_5.01, +B198,,1870,B005,2,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_5.01, +B199,,1860,B005,1,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_5.01, +B2,,1968,B005,2,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_5.01, +B20,,1974,B005,2,,bhanu1982; bhanu1992,Binford_2001_Table_5.01, +B200,,1860,B005,1,,steward1936; steward1938,Binford_2001_Table_5.01, +B201,,1860,B005,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B005,1,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_5.01, +B203,,1860,B005,1,,steward1938; thomas1983,Binford_2001_Table_5.01, +B204,,1860,B005,1,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_5.01, +B205,,1870,B005,1,,davis1965,Binford_2001_Table_5.01, +B206,,1860,B005,1,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_5.01, +B207,,1860,B005,1,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B208,,1860,B005,1,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_5.01, +B209,,1860,B005,1,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_5.01, +B21,,1978,B005,2,,bird1983; birddavid1987,Binford_2001_Table_5.01, +B210,,1870,B005,1,,fowler1992,Binford_2001_Table_5.01, +B211,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B212,,1870,B005,1,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B005,1,,steward1938,Binford_2001_Table_5.01, +B214,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B215,,1870,B005,1,,steward1938,Binford_2001_Table_5.01, +B216,,1860,B005,1,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_5.01, +B217,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B218,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B219,,1860,B005,1,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_5.01, +B22,,1900,B005,1,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_5.01, +B221,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B222,,1860,B005,1,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_5.01, +B223,,1870,B005,1,,lowie1924,Binford_2001_Table_5.01, +B224,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B225,,1850,B005,1,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_5.01, +B226,,1870,B005,1,,brink1969; kelly1932,Binford_2001_Table_5.01, +B227,,1860,B005,1,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_5.01, +B228,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B229,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B23,,1900,B005,1,,qiu1983,Binford_2001_Table_5.01, +B230,,1860,B005,1,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_5.01, +B231,,1870,B005,1,,whiting1950,Binford_2001_Table_5.01, +B232,,1860,B005,1,,boas1899; steward1938,Binford_2001_Table_5.01, +B233,,1860,B005,1,,steward1938,Binford_2001_Table_5.01, +B234,,1860,B005,1,,boas1899; steward1974b,Binford_2001_Table_5.01, +B24,,1900,B005,1,,lee1967; shimkin1939,Binford_2001_Table_5.01, +B240,,1880,B005,2,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_5.01, +B241,,1870,B005,1,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_5.01, +B242,,1880,B005,2,,basehart1972; morice1906b; opler1937,Binford_2001_Table_5.01, +B243,,1870,B005,1,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_5.01, +B244,,1860,B005,1,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B245,,1860,B005,1,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_5.01, +B246,,1860,B005,1,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_5.01, +B248,,1870,B005,1,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_5.01, +B249,,1870,B005,1,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_5.01, +B25,,1920,B005,1,,shternberg1933,Binford_2001_Table_5.01, +B250,,1880,B005,1,,chamberlain1892; turneyhigh1941,Binford_2001_Table_5.01, +B252,,1860,B005,1,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B253,,1870,B005,1,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_5.01, +B254,,1850,B005,1,,skinner1914,Binford_2001_Table_5.01, +B255,,1850,B005,1,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_5.01, +B256,,1850,B005,1,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_5.01, +B257,,1870,B005,1,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B005,1,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_5.01, +B259,,1850,B005,1,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B26,,1900,B005,1,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_5.01, +B260,,1880,B005,1,,bamforth1988; jenness1938,Binford_2001_Table_5.01, +B268,,1880,B005,1,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_5.01, +B269,,1860,B005,1,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B005,1,,chard1963; popov1966,Binford_2001_Table_5.01, +B270,,1870,B005,1,,smith1940a; smith1940b,Binford_2001_Table_5.01, +B271,,1850,B005,1,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_5.01, +B272,,1880,B005,1,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_5.01, +B273,,1880,B005,1,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_5.01, +B274,,1850,B005,1,,ray1937; ray1938; silverstein1990,Binford_2001_Table_5.01, +B275,,1860,B005,1,,boyd1990; zenk1990,Binford_2001_Table_5.01, +B276,,1860,B005,1,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_5.01, +B277,,1880,B005,1,,stern1934,Binford_2001_Table_5.01, +B278,,1860,B005,1,,olson1936a; schalk1978,Binford_2001_Table_5.01, +B279,,1880,B005,1,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_5.01, +B28,,1860,B005,1,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_5.01, +B280,,1880,B005,1,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_5.01, +B281,,NA,B005,1,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_5.01, +B282,,1860,B005,1,,kennedyandbouchard1990,Binford_2001_Table_5.01, +B283,,1880,B005,1,,cybulski1990b; hilton1990,Binford_2001_Table_5.01, +B284,,1880,B005,1,,pettitt1950,Binford_2001_Table_5.01, +B285,,1860,B005,1,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_5.01, +B286,,1860,B005,1,,gunther1962; schalk1978; swan1870,Binford_2001_Table_5.01, +B287,,1880,B005,1,,olson1940; schalk1978,Binford_2001_Table_5.01, +B288,,1890,B005,1,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B289,,1880,B005,1,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_5.01, +B290,,1890,B005,1,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B291,,1880,B005,1,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_5.01, +B292,,1880,B005,1,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_5.01, +B293,,1880,B005,1,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_5.01, +B294,,1840,B005,1,,holmberg1985; knechtandjordan1985,Binford_2001_Table_5.01, +B295,,1890,B005,1,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_5.01, +B296,,1850,B005,1,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_5.01, +B297,,1930,B005,1,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_5.01, +B298,,1830,B005,1,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_5.01, +B299,,1930,B005,1,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_5.01, +B3,,1900,B005,2,,hagen1908; persoon1989; volz1909,Binford_2001_Table_5.01, +B315,,1850,B005,1,,murdock1980,Binford_2001_Table_5.01, +B316,,1860,B005,1,,,Binford_2001_Table_5.01, +B317,,1870,B005,1,,teit1928,Binford_2001_Table_5.01, +B318,,1880,B005,1,,,Binford_2001_Table_5.01, +B319,,1860,B005,1,,spierandsapir1930,Binford_2001_Table_5.01, +B320,,1860,B005,1,,teit1930,Binford_2001_Table_5.01, +B321,,1880,B005,1,,clineetal1938,Binford_2001_Table_5.01, +B322,,1860,B005,1,,grabert1974; teit1930,Binford_2001_Table_5.01, +B323,,1870,B005,1,,kelly1995; ray1932; teit1930,Binford_2001_Table_5.01, +B324,,1850,B005,1,,spinden1908,Binford_2001_Table_5.01, +B325,,1860,B005,1,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_5.01, +B326,,1870,B005,1,,teit1930,Binford_2001_Table_5.01, +B327,,1870,B005,1,,jenness1935; quimby1962,Binford_2001_Table_5.01, +B328,,1800,B005,1,,kinietz1947,Binford_2001_Table_5.01, +B329,,1700,B005,1,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_5.01, +B330,,1860,B005,1,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_5.01, +B331,,1880,B005,1,,hickerson1967; landes1937a,Binford_2001_Table_5.01, +B332,,1870,B005,1,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_5.01, +B333,,1850,B005,1,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_5.01, +B334,,1940,B005,1,,dunning1959; grant1924; rogers1969,Binford_2001_Table_5.01, +B335,,1900,B005,1,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_5.01, +B336,,1865,B005,1,,goldman1940; jenness1943; smithnd,Binford_2001_Table_5.01, +B337,,1800,B005,1,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_5.01, +B338,,1880,B005,1,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_5.01, +B339,,1850,B005,1,,dunning1959; rogers1969,Binford_2001_Table_5.01, +B340,,1900,B005,1,,morantz1983; rogers1969,Binford_2001_Table_5.01, +B341,,1890,B005,1,,boas1895a; rogersandblack1976,Binford_2001_Table_5.01, +B342,,1880,B005,1,,lane1952; tanner1944,Binford_2001_Table_5.01, +B343,,1880,B005,1,,dennison1981; grant1936; jenness1937,Binford_2001_Table_5.01, +B344,,1850,B005,1,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_5.01, +B345,,1860,B005,1,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_5.01, +B346,,1920,B005,1,,honigmann1949; honigmann1954,Binford_2001_Table_5.01, +B347,,1870,B005,1,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_5.01, +B348,,1880,B005,1,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B005,1,,grant1936; jenness1937; jenness1943,Binford_2001_Table_5.01, +B35,,1950,B005,1,,,Binford_2001_Table_5.01, +B350,,1800,B005,1,,gillespie1981,Binford_2001_Table_5.01, +B351,,1880,B005,1,,adney1900; crowandobley1981,Binford_2001_Table_5.01, +B352,,1860,B005,1,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_5.01, +B353,,1900,B005,1,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_5.01, +B354,,1880,B005,1,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_5.01, +B355,,1880,B005,1,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_5.01, +B356,,1880,B005,1,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_5.01, +B357,,1880,B005,1,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_5.01, +B358,,1860,B005,1,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_5.01, +B359,,1930,B005,1,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_5.01, +B36,,1960,B005,2,,metraux1948,Binford_2001_Table_5.01, +B360,,1900,B005,1,,morantz1983; skinner1911,Binford_2001_Table_5.01, +B361,,1860,B005,1,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_5.01, +B362,,1870,B005,1,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_5.01, +B363,,1890,B005,1,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_5.01, +B364,,1860,B005,1,,michael1967; snow1981,Binford_2001_Table_5.01, +B365,,1890,B005,1,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_5.01, +B369,,1870,B005,1,,ray1992; seltzer1933,Binford_2001_Table_5.01, +B37,,1968,B005,1,,kloos1977; kloos1982,Binford_2001_Table_5.01, +B370,,1890,B005,1,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_5.01, +B371,,1880,B005,1,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_5.01, +B372,,1890,B005,1,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_5.01, +B373,,1890,B005,1,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_5.01, +B374,,1900,B005,1,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_5.01, +B375,,1900,B005,1,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_5.01, +B377,,1950,B005,1,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_5.01, +B378,,1910,B005,1,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_5.01, +B379,,1920,B005,1,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_5.01, +B38,,1989,B005,2,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_5.01, +B380,,1880,B005,1,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_5.01, +B381,,1920,B005,1,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_5.01, +B382,,1920,B005,1,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_5.01, +B383,,1880,B005,1,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_5.01, +B384,,1920,B005,1,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_5.01, +B385,,1880,B005,1,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_5.01, +B386,,1880,B005,1,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_5.01, +B387,,1880,B005,1,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_5.01, +B388,,1880,B005,1,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_5.01, +B389,,1880,B005,1,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_5.01, +B39,,1960,B005,2,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_5.01, +B390,,1880,B005,1,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_5.01, +B4,,1989,B005,1,,agrawal1967; rizvi1990,Binford_2001_Table_5.01, +B40,,1990,B005,1,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_5.01, +B41,,1920,B005,2,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_5.01, +B42,,1901,B005,2,,metraux1946guato; schmidt1942,Binford_2001_Table_5.01, +B43,,1940,B005,2,,holmberg1950,Binford_2001_Table_5.01, +B44,,1968,B005,2,,stearman1989,Binford_2001_Table_5.01, +B45,,1938,B005,2,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_5.01, +B46,,1600,B005,1,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_5.01, +B47,,1975,B005,2,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01, +B48,,1880,B005,2,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_5.01, +B49,,1954,B005,1,,kozaketal1979,Binford_2001_Table_5.01, +B5,,1952,B005,1,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_5.01, +B50,,1910,B005,2,,henry1964,Binford_2001_Table_5.01, +B51,,1870,B005,1,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_5.01, +B52,,1880,B005,1,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B005,1,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_5.01, +B54,,1880,B005,1,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_5.01, +B55,,1870,B005,1,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_5.01, +B6,,1906,B005,1,,temple1903,Binford_2001_Table_5.01, +B60,,1980,B005,2,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_5.01, +B61,,1976,B005,2,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_5.01, +B62,,1977,B005,2,,skeatandblagden1906; terashima1980,Binford_2001_Table_5.01, +B63,,1980,B005,2,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_5.01, +B64,,1980,B005,2,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_5.01, +B65,,1930,B005,2,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_5.01, +B66,,NA,B005,2,,kellyandpoyer1993,Binford_2001_Table_5.01, +B67,,1950,B005,1,,clark1951,Binford_2001_Table_5.01, +B68,,1920,B005,2,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_5.01, +B69,,1910,B005,1,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_5.01, +B7,,1903,B005,2,,fox1952; reed1904,Binford_2001_Table_5.01, +B70,,1920,B005,2,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_5.01, +B71,,1928,B005,2,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_5.01, +B72,,1950,B005,1,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_5.01, +B73,,1910,B005,2,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_5.01, +B74,,1962,B005,1,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_5.01, +B75,,1976,B005,2,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_5.01, +B76,,1968,B005,1,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_5.01, +B77,,1920,B005,1,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_5.01, +B78,,1950,B005,2,,potgieter1955; toerien1958,Binford_2001_Table_5.01, +B79,,NA,B005,1,,bleek1924a,Binford_2001_Table_5.01, +B8,,1870,B005,1,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_5.01, +B82,,1848,B005,2,,moore1979,Binford_2001_Table_5.01, +B83,,1900,B005,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B005,2,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_5.01, +B85,,1970,B005,2,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_5.01, +B86,,1973,B005,1,,meehan1982; petersonandlong1986,Binford_2001_Table_5.01, +B87,,1950,B005,2,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_5.01, +B88,,1930,B005,1,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_5.01, +B89,,1920,B005,1,,kaberry1935; kaberry1939,Binford_2001_Table_5.01, +B9,,1920,B005,2,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_5.01, +B90,,1920,B005,1,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_5.01, +B91,,1920,B005,1,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_5.01, +B92,,1960,B005,1,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_5.01, +B93,,1930,B005,1,,thomson1933; thomson1934,Binford_2001_Table_5.01, +B94,,1937,B005,1,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_5.01, +B95,,1920,B005,1,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_5.01, +B96,,1880,B005,1,,andersonandrobins1988; roth1909,Binford_2001_Table_5.01, +B97,,1930,B005,1,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_5.01, +B98,,1926,B005,1,,haleandtindale1933; roth1909,Binford_2001_Table_5.01, +B99,,1900,B005,1,,stanner1933,Binford_2001_Table_5.01, +B1,,1970,B006,349,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_5.01, +B10,,1900,B006,72,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_5.01, +B100,,NA,B006,1114,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_5.01, +B101,,1934,B006,562,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B006,120,,memmott1983a; memmott1983b,Binford_2001_Table_5.01, +B103,,1928,B006,165,,tindale1962a; tindale1962b,Binford_2001_Table_5.01, +B104,,NA,B006,536,,,Binford_2001_Table_5.01, +B105,,1900,B006,585,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_5.01, +B106,,1910,B006,1111,,clement1903; radcliffebrown1912,Binford_2001_Table_5.01, +B107,,1870,B006,1562,,brayshaw1990; lumholtz1889,Binford_2001_Table_5.01, +B108,,1934,B006,1345,,kaberry1939; nind1831,Binford_2001_Table_5.01, +B109,,1965,B006,1598,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_5.01, +B11,,1972,B006,556,,morris1982a,Binford_2001_Table_5.01, +B110,,1880,B006,299,,petersonandlong1986; tonkinson1978,Binford_2001_Table_5.01, +B111,,1960,B006,169,,harris1978; petersonandlong1986,Binford_2001_Table_5.01, +B112,,1968,B006,354,,petersonandlong1986,Binford_2001_Table_5.01, +B113,,1936,B006,343,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_5.01, +B114,,1848,B006,500,,colliverandwoolston1975,Binford_2001_Table_5.01, +B115,,1840,B006,219,,morwood1987; winterbotham1980,Binford_2001_Table_5.01, +B116,,1900,B006,660,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B006,560,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_5.01, +B118,,1968,B006,312,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_5.01, +B119,,1850,B006,804,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_5.01, +B12,,1965,B006,609,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B006,358,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_5.01, +B121,,1900,B006,420,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_5.01, +B122,,1870,B006,500,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B006,572,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_5.01, +B124,,1900,B006,2045,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_5.01, +B125,,1880,B006,1080,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B006,429,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_5.01, +B127,,1941,B006,300,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B006,3008,,,Binford_2001_Table_5.01, +B129,,1840,B006,1296,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B006,1644,,rai1982; wastl1957,Binford_2001_Table_5.01, +B130,,1910,B006,3589,,,Binford_2001_Table_5.01, +B131,,1850,B006,200,,,Binford_2001_Table_5.01, +B132,,1850,B006,889,,nind1831,Binford_2001_Table_5.01, +B133,,1850,B006,2450,,williams1985,Binford_2001_Table_5.01, +B134,,1850,B006,1953,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_5.01, +B135,,1850,B006,336,,fisonandhowitt1880; howitt1904,Binford_2001_Table_5.01, +B136,,1830,B006,700,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_5.01, +B137,,1830,B006,450,,hiatt1967; jones1971; jones1972,Binford_2001_Table_5.01, +B14,,1924,B006,46,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_5.01, +B143,,1900,B006,550,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_5.01, +B144,,1870,B006,3675,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_5.01, +B145,,1870,B006,195,,gifford1926b; strong1929a,Binford_2001_Table_5.01, +B146,,1880,B006,445,,meigs1939,Binford_2001_Table_5.01, +B147,,1850,B006,3000,,kroeber1925a; luomala1978,Binford_2001_Table_5.01, +B148,,1860,B006,6500,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_5.01, +B149,,1870,B006,3500,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_5.01, +B15,,1940,B006,426,,furerhaimendorf1943b,Binford_2001_Table_5.01, +B150,,1860,B006,5500,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_5.01, +B151,,1860,B006,92,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_5.01, +B152,,1850,B006,1000,,voegelin1938,Binford_2001_Table_5.01, +B153,,1850,B006,1575,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_5.01, +B154,,1850,B006,360,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_5.01, +B155,,1850,B006,1517,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_5.01, +B156,,1770,B006,5000,,,Binford_2001_Table_5.01, +B157,,1870,B006,387,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_5.01, +B158,,1860,B006,940,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B006,2099,,cook1956; gifford1926a,Binford_2001_Table_5.01, +B16,,1963,B006,139,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_5.01, +B160,,1860,B006,4000,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_5.01, +B161,,1860,B006,2124,,cookandheizer1965,Binford_2001_Table_5.01, +B162,,1860,B006,450,,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B006,4770,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_5.01, +B164,,1805,B006,3500,,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B006,2250,,barrett1908; cook1956,Binford_2001_Table_5.01, +B166,,1860,B006,1300,,cook1956; goddard1923; nomland1935,Binford_2001_Table_5.01, +B167,,NA,B006,1770,,,Binford_2001_Table_5.01, +B168,,1850,B006,1500,,collierandthalman1991,Binford_2001_Table_5.01, +B169,,NA,B006,652,,cook1956; nomland1938,Binford_2001_Table_5.01, +B17,,1963,B006,3000,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_5.01, +B170,,NA,B006,227,,cook1955,Binford_2001_Table_5.01, +B171,,1850,B006,4000,,cook1956; foster1944; gifford1926b,Binford_2001_Table_5.01, +B172,,1860,B006,1170,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_5.01, +B173,,1860,B006,3360,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B174,,1860,B006,1820,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B006,1212,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_5.01, +B176,,1860,B006,900,,gray1987,Binford_2001_Table_5.01, +B177,,1860,B006,750,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B006,2562,,cook1956; drucker1940,Binford_2001_Table_5.01, +B179,,1860,B006,2925,,cookandheizer1965; dixon1907,Binford_2001_Table_5.01, +B18,,1963,B006,629,,senandsen1955; williams1974,Binford_2001_Table_5.01, +B180,,1860,B006,1000,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_5.01, +B181,,1870,B006,2200,,gray1987,Binford_2001_Table_5.01, +B182,,1860,B006,1500,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_5.01, +B183,,1860,B006,1300,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B006,1390,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_5.01, +B185,,1850,B006,1900,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_5.01, +B186,,1850,B006,2500,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_5.01, +B187,,1860,B006,1700,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_5.01, +B188,,1860,B006,2000,,gifford1926b; ray1963,Binford_2001_Table_5.01, +B189,,1860,B006,1200,,gifford1926b; spier1930,Binford_2001_Table_5.01, +B19,,1946,B006,565,,ehrenfels1952,Binford_2001_Table_5.01, +B190,,1760,B006,977,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_5.01, +B191,,1570,B006,3000,,,Binford_2001_Table_5.01, +B192,,1860,B006,42,,smith1978a; steward1938,Binford_2001_Table_5.01, +B193,,1800,B006,2800,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_5.01, +B194,,1715,B006,600,,,Binford_2001_Table_5.01, +B195,,1850,B006,500,,steward1938,Binford_2001_Table_5.01, +B196,,1870,B006,600,,corbusier1886; gifford1932a,Binford_2001_Table_5.01, +B197,,1860,B006,222,,steward1936; steward1938,Binford_2001_Table_5.01, +B198,,1870,B006,1000,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_5.01, +B199,,1860,B006,500,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_5.01, +B2,,1968,B006,424,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_5.01, +B20,,1974,B006,254,,bhanu1982; bhanu1992,Binford_2001_Table_5.01, +B200,,1860,B006,65,,steward1936; steward1938,Binford_2001_Table_5.01, +B201,,1860,B006,234,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B006,2100,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_5.01, +B203,,1860,B006,105,,steward1938; thomas1983,Binford_2001_Table_5.01, +B204,,1860,B006,425,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_5.01, +B205,,1870,B006,170,,davis1965,Binford_2001_Table_5.01, +B206,,1860,B006,23,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_5.01, +B207,,1860,B006,400,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B208,,1860,B006,485,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_5.01, +B209,,1860,B006,480,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_5.01, +B21,,1978,B006,70,,bird1983; birddavid1987,Binford_2001_Table_5.01, +B210,,1870,B006,481,,fowler1992,Binford_2001_Table_5.01, +B211,,1860,B006,100,,steward1938,Binford_2001_Table_5.01, +B212,,1870,B006,385,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B006,1000,,steward1938,Binford_2001_Table_5.01, +B214,,1860,B006,435,,steward1938,Binford_2001_Table_5.01, +B215,,1870,B006,378,,steward1938,Binford_2001_Table_5.01, +B216,,1860,B006,500,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_5.01, +B217,,1860,B006,250,,steward1938,Binford_2001_Table_5.01, +B218,,1860,B006,390,,steward1938,Binford_2001_Table_5.01, +B219,,1860,B006,385,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_5.01, +B22,,1900,B006,122,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_5.01, +B221,,1860,B006,200,,steward1938,Binford_2001_Table_5.01, +B222,,1860,B006,405,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_5.01, +B223,,1870,B006,60,,lowie1924,Binford_2001_Table_5.01, +B224,,1860,B006,78,,steward1938,Binford_2001_Table_5.01, +B225,,1850,B006,1877,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_5.01, +B226,,1870,B006,367,,brink1969; kelly1932,Binford_2001_Table_5.01, +B227,,1860,B006,1500,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_5.01, +B228,,1860,B006,450,,steward1938,Binford_2001_Table_5.01, +B229,,1860,B006,380,,steward1938,Binford_2001_Table_5.01, +B23,,1900,B006,3200,,qiu1983,Binford_2001_Table_5.01, +B230,,1860,B006,1750,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_5.01, +B231,,1870,B006,200,,whiting1950,Binford_2001_Table_5.01, +B232,,1860,B006,550,,boas1899; steward1938,Binford_2001_Table_5.01, +B233,,1860,B006,96,,steward1938,Binford_2001_Table_5.01, +B234,,1860,B006,1100,,boas1899; steward1974b,Binford_2001_Table_5.01, +B24,,1900,B006,1000,,lee1967; shimkin1939,Binford_2001_Table_5.01, +B240,,1880,B006,500,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_5.01, +B241,,1870,B006,3500,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_5.01, +B242,,1880,B006,1425,,basehart1972; morice1906b; opler1937,Binford_2001_Table_5.01, +B243,,1870,B006,392,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_5.01, +B244,,1860,B006,1908,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B245,,1860,B006,2750,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_5.01, +B246,,1860,B006,3000,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_5.01, +B248,,1870,B006,4650,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_5.01, +B249,,1870,B006,12725,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_5.01, +B25,,1920,B006,1481,,shternberg1933,Binford_2001_Table_5.01, +B250,,1880,B006,1200,,chamberlain1892; turneyhigh1941,Binford_2001_Table_5.01, +B252,,1860,B006,1500,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B253,,1870,B006,2260,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_5.01, +B254,,1850,B006,2000,,skinner1914,Binford_2001_Table_5.01, +B255,,1850,B006,1525,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_5.01, +B256,,1850,B006,2425,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_5.01, +B257,,1870,B006,4500,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B006,4650,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_5.01, +B259,,1850,B006,3110,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B26,,1900,B006,2360,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_5.01, +B260,,1880,B006,700,,bamforth1988; jenness1938,Binford_2001_Table_5.01, +B268,,1880,B006,1700,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_5.01, +B269,,1860,B006,1500,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B006,876,,chard1963; popov1966,Binford_2001_Table_5.01, +B270,,1870,B006,441,,smith1940a; smith1940b,Binford_2001_Table_5.01, +B271,,1850,B006,965.5,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_5.01, +B272,,1880,B006,4000,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_5.01, +B273,,1880,B006,14000,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_5.01, +B274,,1850,B006,5000,,ray1937; ray1938; silverstein1990,Binford_2001_Table_5.01, +B275,,1860,B006,2000,,boyd1990; zenk1990,Binford_2001_Table_5.01, +B276,,1860,B006,4000,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_5.01, +B277,,1880,B006,459,,stern1934,Binford_2001_Table_5.01, +B278,,1860,B006,1661,,olson1936a; schalk1978,Binford_2001_Table_5.01, +B279,,1880,B006,1650,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_5.01, +B28,,1860,B006,1292,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_5.01, +B280,,1880,B006,347,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_5.01, +B281,,NA,B006,1500,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_5.01, +B282,,1860,B006,2475,,kennedyandbouchard1990,Binford_2001_Table_5.01, +B283,,1880,B006,2000,,cybulski1990b; hilton1990,Binford_2001_Table_5.01, +B284,,1880,B006,1324,,pettitt1950,Binford_2001_Table_5.01, +B285,,1860,B006,2400,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_5.01, +B286,,1860,B006,332,,gunther1962; schalk1978; swan1870,Binford_2001_Table_5.01, +B287,,1880,B006,1300,,olson1940; schalk1978,Binford_2001_Table_5.01, +B288,,1890,B006,14500,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B289,,1880,B006,10100,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_5.01, +B290,,1890,B006,10000,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B291,,1880,B006,1950,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_5.01, +B292,,1880,B006,12000,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_5.01, +B293,,1880,B006,3000,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_5.01, +B294,,1840,B006,8800,,holmberg1985; knechtandjordan1985,Binford_2001_Table_5.01, +B295,,1890,B006,156,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_5.01, +B296,,1850,B006,7200,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_5.01, +B297,,1930,B006,3170,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_5.01, +B298,,1830,B006,13500,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_5.01, +B299,,1930,B006,864,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_5.01, +B3,,1900,B006,11800,,hagen1908; persoon1989; volz1909,Binford_2001_Table_5.01, +B315,,1850,B006,1510,,murdock1980,Binford_2001_Table_5.01, +B316,,1860,B006,1155,,,Binford_2001_Table_5.01, +B317,,1870,B006,5000,,teit1928,Binford_2001_Table_5.01, +B318,,1880,B006,3780,,,Binford_2001_Table_5.01, +B319,,1860,B006,2132,,spierandsapir1930,Binford_2001_Table_5.01, +B320,,1860,B006,1000,,teit1930,Binford_2001_Table_5.01, +B321,,1880,B006,875,,clineetal1938,Binford_2001_Table_5.01, +B322,,1860,B006,1500,,grabert1974; teit1930,Binford_2001_Table_5.01, +B323,,1870,B006,687,,kelly1995; ray1932; teit1930,Binford_2001_Table_5.01, +B324,,1850,B006,4000,,spinden1908,Binford_2001_Table_5.01, +B325,,1860,B006,5150,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_5.01, +B326,,1870,B006,1000,,teit1930,Binford_2001_Table_5.01, +B327,,1870,B006,3000,,jenness1935; quimby1962,Binford_2001_Table_5.01, +B328,,1800,B006,76,,kinietz1947,Binford_2001_Table_5.01, +B329,,1700,B006,4393,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_5.01, +B330,,1860,B006,800,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_5.01, +B331,,1880,B006,230,,hickerson1967; landes1937a,Binford_2001_Table_5.01, +B332,,1870,B006,185,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_5.01, +B333,,1850,B006,14582,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_5.01, +B334,,1940,B006,382,,dunning1959; grant1924; rogers1969,Binford_2001_Table_5.01, +B335,,1900,B006,250,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_5.01, +B336,,1865,B006,405,,goldman1940; jenness1943; smithnd,Binford_2001_Table_5.01, +B337,,1800,B006,221,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_5.01, +B338,,1880,B006,450,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_5.01, +B339,,1850,B006,225,,dunning1959; rogers1969,Binford_2001_Table_5.01, +B340,,1900,B006,150,,morantz1983; rogers1969,Binford_2001_Table_5.01, +B341,,1890,B006,250,,boas1895a; rogersandblack1976,Binford_2001_Table_5.01, +B342,,1880,B006,2700,,lane1952; tanner1944,Binford_2001_Table_5.01, +B343,,1880,B006,656,,dennison1981; grant1936; jenness1937,Binford_2001_Table_5.01, +B344,,1850,B006,1000,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_5.01, +B345,,1860,B006,2454,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_5.01, +B346,,1920,B006,540,,honigmann1949; honigmann1954,Binford_2001_Table_5.01, +B347,,1870,B006,810,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_5.01, +B348,,1880,B006,2500,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B006,525,,grant1936; jenness1937; jenness1943,Binford_2001_Table_5.01, +B35,,1950,B006,5000,,,Binford_2001_Table_5.01, +B350,,1800,B006,780,,gillespie1981,Binford_2001_Table_5.01, +B351,,1880,B006,1000,,adney1900; crowandobley1981,Binford_2001_Table_5.01, +B352,,1860,B006,572,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_5.01, +B353,,1900,B006,4460,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_5.01, +B354,,1880,B006,2000,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_5.01, +B355,,1880,B006,2850,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_5.01, +B356,,1880,B006,4863,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_5.01, +B357,,1880,B006,1500,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_5.01, +B358,,1860,B006,825,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_5.01, +B359,,1930,B006,162,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_5.01, +B36,,1960,B006,1200,,metraux1948,Binford_2001_Table_5.01, +B360,,1900,B006,450,,morantz1983; skinner1911,Binford_2001_Table_5.01, +B361,,1860,B006,1590,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_5.01, +B362,,1870,B006,4500,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_5.01, +B363,,1890,B006,1500,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_5.01, +B364,,1860,B006,330,,michael1967; snow1981,Binford_2001_Table_5.01, +B365,,1890,B006,400,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_5.01, +B369,,1870,B006,1600,,ray1992; seltzer1933,Binford_2001_Table_5.01, +B37,,1968,B006,66,,kloos1977; kloos1982,Binford_2001_Table_5.01, +B370,,1890,B006,500,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_5.01, +B371,,1880,B006,975,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_5.01, +B372,,1890,B006,1460,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_5.01, +B373,,1890,B006,450,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_5.01, +B374,,1900,B006,700,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_5.01, +B375,,1900,B006,550,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_5.01, +B377,,1950,B006,240,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_5.01, +B378,,1910,B006,2500,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_5.01, +B379,,1920,B006,600,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_5.01, +B38,,1989,B006,164,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_5.01, +B380,,1880,B006,450,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_5.01, +B381,,1920,B006,2000,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_5.01, +B382,,1920,B006,164,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_5.01, +B383,,1880,B006,130,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_5.01, +B384,,1920,B006,1193,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_5.01, +B385,,1880,B006,5112,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_5.01, +B386,,1880,B006,6000,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_5.01, +B387,,1880,B006,500,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_5.01, +B388,,1880,B006,567,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_5.01, +B389,,1880,B006,550,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_5.01, +B39,,1960,B006,1540,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_5.01, +B390,,1880,B006,300,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_5.01, +B4,,1989,B006,342,,agrawal1967; rizvi1990,Binford_2001_Table_5.01, +B40,,1990,B006,282,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_5.01, +B41,,1920,B006,850,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_5.01, +B42,,1901,B006,450,,metraux1946guato; schmidt1942,Binford_2001_Table_5.01, +B43,,1940,B006,94,,holmberg1950,Binford_2001_Table_5.01, +B44,,1968,B006,43,,stearman1989,Binford_2001_Table_5.01, +B45,,1938,B006,235,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_5.01, +B46,,1600,B006,5500,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_5.01, +B47,,1975,B006,100,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01, +B48,,1880,B006,2346,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_5.01, +B49,,1954,B006,30,,kozaketal1979,Binford_2001_Table_5.01, +B5,,1952,B006,393,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_5.01, +B50,,1910,B006,106,,henry1964,Binford_2001_Table_5.01, +B51,,1870,B006,9000,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_5.01, +B52,,1880,B006,2100,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B006,3400,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_5.01, +B54,,1880,B006,3497,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_5.01, +B55,,1870,B006,2500,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_5.01, +B6,,1906,B006,255,,temple1903,Binford_2001_Table_5.01, +B60,,1980,B006,1088,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_5.01, +B61,,1976,B006,1223,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_5.01, +B62,,1977,B006,937,,skeatandblagden1906; terashima1980,Binford_2001_Table_5.01, +B63,,1980,B006,3000,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_5.01, +B64,,1980,B006,750,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_5.01, +B65,,1930,B006,1496,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_5.01, +B66,,NA,B006,300,,kellyandpoyer1993,Binford_2001_Table_5.01, +B67,,1950,B006,124,,clark1951,Binford_2001_Table_5.01, +B68,,1920,B006,2000,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_5.01, +B69,,1910,B006,600,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_5.01, +B7,,1903,B006,1645,,fox1952; reed1904,Binford_2001_Table_5.01, +B70,,1920,B006,151,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_5.01, +B71,,1928,B006,3500,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_5.01, +B72,,1950,B006,726,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_5.01, +B73,,1910,B006,7500,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_5.01, +B74,,1962,B006,528,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_5.01, +B75,,1976,B006,954,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_5.01, +B76,,1968,B006,122,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_5.01, +B77,,1920,B006,364,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_5.01, +B78,,1950,B006,280,,potgieter1955; toerien1958,Binford_2001_Table_5.01, +B79,,NA,B006,300,,bleek1924a,Binford_2001_Table_5.01, +B8,,1870,B006,464,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_5.01, +B82,,1848,B006,140,,moore1979,Binford_2001_Table_5.01, +B83,,1900,B006,1560,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B006,1302,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_5.01, +B85,,1970,B006,77,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_5.01, +B86,,1973,B006,35,,meehan1982; petersonandlong1986,Binford_2001_Table_5.01, +B87,,1950,B006,400,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_5.01, +B88,,1930,B006,588,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_5.01, +B89,,1920,B006,442,,kaberry1935; kaberry1939,Binford_2001_Table_5.01, +B9,,1920,B006,366,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_5.01, +B90,,1920,B006,1602,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_5.01, +B91,,1920,B006,528,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_5.01, +B92,,1960,B006,1610,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_5.01, +B93,,1930,B006,217,,thomson1933; thomson1934,Binford_2001_Table_5.01, +B94,,1937,B006,104,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_5.01, +B95,,1920,B006,2662,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_5.01, +B96,,1880,B006,650,,andersonandrobins1988; roth1909,Binford_2001_Table_5.01, +B97,,1930,B006,595,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_5.01, +B98,,1926,B006,75,,haleandtindale1933; roth1909,Binford_2001_Table_5.01, +B99,,1900,B006,445,,stanner1933,Binford_2001_Table_5.01, +B1,,1970,B007,2960,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_5.01, +B10,,1900,B007,390,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_5.01, +B100,,NA,B007,10400,,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_5.01, +B101,,1934,B007,12500,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B007,400,,memmott1983a; memmott1983b,Binford_2001_Table_5.01, +B103,,1928,B007,250,,tindale1962a; tindale1962b,Binford_2001_Table_5.01, +B104,,NA,B007,14300,,,Binford_2001_Table_5.01, +B105,,1900,B007,1300,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_5.01, +B106,,1910,B007,11700,,clement1903; radcliffebrown1912,Binford_2001_Table_5.01, +B107,,1870,B007,9600,,brayshaw1990; lumholtz1889,Binford_2001_Table_5.01, +B108,,1934,B007,33800,,kaberry1939; nind1831,Binford_2001_Table_5.01, +B109,,1965,B007,137800,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_5.01, +B11,,1972,B007,790,,morris1982a,Binford_2001_Table_5.01, +B110,,1880,B007,500,,petersonandlong1986; tonkinson1978,Binford_2001_Table_5.01, +B111,,1960,B007,22600,,harris1978; petersonandlong1986,Binford_2001_Table_5.01, +B112,,1968,B007,78700,,petersonandlong1986,Binford_2001_Table_5.01, +B113,,1936,B007,22900,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_5.01, +B114,,1848,B007,2300,,colliverandwoolston1975,Binford_2001_Table_5.01, +B115,,1840,B007,1370,,morwood1987; winterbotham1980,Binford_2001_Table_5.01, +B116,,1900,B007,33000,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B007,46300,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_5.01, +B118,,1968,B007,78000,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_5.01, +B119,,1850,B007,6000,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_5.01, +B12,,1965,B007,700,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B007,59800,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_5.01, +B121,,1900,B007,21800,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_5.01, +B122,,1870,B007,45500,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B007,57200,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_5.01, +B124,,1900,B007,76700,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_5.01, +B125,,1880,B007,12000,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B007,49400,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_5.01, +B127,,1941,B007,63700,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B007,19500,,,Binford_2001_Table_5.01, +B129,,1840,B007,7200,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B007,3910,,rai1982; wastl1957,Binford_2001_Table_5.01, +B130,,1910,B007,70110,,,Binford_2001_Table_5.01, +B131,,1850,B007,500,,,Binford_2001_Table_5.01, +B132,,1850,B007,12700,,nind1831,Binford_2001_Table_5.01, +B133,,1850,B007,7000,,williams1985,Binford_2001_Table_5.01, +B134,,1850,B007,7800,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_5.01, +B135,,1850,B007,1900,,fisonandhowitt1880; howitt1904,Binford_2001_Table_5.01, +B136,,1830,B007,8570,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_5.01, +B137,,1830,B007,3370,,hiatt1967; jones1971; jones1972,Binford_2001_Table_5.01, +B14,,1924,B007,120,,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_5.01, +B143,,1900,B007,2160,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_5.01, +B144,,1870,B007,8400,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_5.01, +B145,,1870,B007,400,,gifford1926b; strong1929a,Binford_2001_Table_5.01, +B146,,1880,B007,3640,,meigs1939,Binford_2001_Table_5.01, +B147,,1850,B007,16600,,kroeber1925a; luomala1978,Binford_2001_Table_5.01, +B148,,1860,B007,17070,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_5.01, +B149,,1870,B007,19900,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_5.01, +B15,,1940,B007,340,,furerhaimendorf1943b,Binford_2001_Table_5.01, +B150,,1860,B007,8120,,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_5.01, +B151,,1860,B007,380,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_5.01, +B152,,1850,B007,5800,,voegelin1938,Binford_2001_Table_5.01, +B153,,1850,B007,4500,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_5.01, +B154,,1850,B007,940,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_5.01, +B155,,1850,B007,1850,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_5.01, +B156,,1770,B007,7700,,,Binford_2001_Table_5.01, +B157,,1870,B007,1350,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_5.01, +B158,,1860,B007,740,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B007,540,,cook1956; gifford1926a,Binford_2001_Table_5.01, +B16,,1963,B007,600,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_5.01, +B160,,1860,B007,6800,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_5.01, +B161,,1860,B007,1800,,cookandheizer1965,Binford_2001_Table_5.01, +B162,,1860,B007,990,,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B007,12000,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_5.01, +B164,,1805,B007,9400,,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B007,2030,,barrett1908; cook1956,Binford_2001_Table_5.01, +B166,,1860,B007,954,,cook1956; goddard1923; nomland1935,Binford_2001_Table_5.01, +B167,,NA,B007,1820,,,Binford_2001_Table_5.01, +B168,,1850,B007,2800,,collierandthalman1991,Binford_2001_Table_5.01, +B169,,NA,B007,560,,cook1956; nomland1938,Binford_2001_Table_5.01, +B17,,1963,B007,31160,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_5.01, +B170,,NA,B007,350,,cook1955,Binford_2001_Table_5.01, +B171,,1850,B007,3040,,cook1956; foster1944; gifford1926b,Binford_2001_Table_5.01, +B172,,1860,B007,970,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_5.01, +B173,,1860,B007,3100,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B174,,1860,B007,5810,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B007,4950,,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_5.01, +B176,,1860,B007,7000,,gray1987,Binford_2001_Table_5.01, +B177,,1860,B007,1120,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B007,2100,,cook1956; drucker1940,Binford_2001_Table_5.01, +B179,,1860,B007,11700,,cookandheizer1965; dixon1907,Binford_2001_Table_5.01, +B18,,1963,B007,2860,,senandsen1955; williams1974,Binford_2001_Table_5.01, +B180,,1860,B007,1250,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_5.01, +B181,,1870,B007,3280,,gray1987,Binford_2001_Table_5.01, +B182,,1860,B007,3200,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_5.01, +B183,,1860,B007,7250,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B007,1320,,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_5.01, +B185,,1850,B007,8100,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_5.01, +B186,,1850,B007,1900,,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_5.01, +B187,,1860,B007,9850,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_5.01, +B188,,1860,B007,9000,,gifford1926b; ray1963,Binford_2001_Table_5.01, +B189,,1860,B007,8980,,gifford1926b; spier1930,Binford_2001_Table_5.01, +B19,,1946,B007,1130,,ehrenfels1952,Binford_2001_Table_5.01, +B190,,1760,B007,16290,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_5.01, +B191,,1570,B007,33300,,,Binford_2001_Table_5.01, +B192,,1860,B007,3270,,smith1978a; steward1938,Binford_2001_Table_5.01, +B193,,1800,B007,13300,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_5.01, +B194,,1715,B007,37300,,,Binford_2001_Table_5.01, +B195,,1850,B007,23600,,steward1938,Binford_2001_Table_5.01, +B196,,1870,B007,40500,,corbusier1886; gifford1932a,Binford_2001_Table_5.01, +B197,,1860,B007,2590,,steward1936; steward1938,Binford_2001_Table_5.01, +B198,,1870,B007,25900,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_5.01, +B199,,1860,B007,4200,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_5.01, +B2,,1968,B007,980,,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_5.01, +B20,,1974,B007,360,,bhanu1982; bhanu1992,Binford_2001_Table_5.01, +B200,,1860,B007,2800,,steward1936; steward1938,Binford_2001_Table_5.01, +B201,,1860,B007,6800,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B007,5520,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_5.01, +B203,,1860,B007,5260,,steward1938; thomas1983,Binford_2001_Table_5.01, +B204,,1860,B007,11460,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_5.01, +B205,,1870,B007,2880,,davis1965,Binford_2001_Table_5.01, +B206,,1860,B007,650,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_5.01, +B207,,1860,B007,5790,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B208,,1860,B007,2620,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_5.01, +B209,,1860,B007,13880,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_5.01, +B21,,1978,B007,100,,bird1983; birddavid1987,Binford_2001_Table_5.01, +B210,,1870,B007,2180,,fowler1992,Binford_2001_Table_5.01, +B211,,1860,B007,2570,,steward1938,Binford_2001_Table_5.01, +B212,,1870,B007,3630,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B007,33760,,steward1938,Binford_2001_Table_5.01, +B214,,1860,B007,25970,,steward1938,Binford_2001_Table_5.01, +B215,,1870,B007,6260,,steward1938,Binford_2001_Table_5.01, +B216,,1860,B007,4270,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_5.01, +B217,,1860,B007,5840,,steward1938,Binford_2001_Table_5.01, +B218,,1860,B007,2340,,steward1938,Binford_2001_Table_5.01, +B219,,1860,B007,2400,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_5.01, +B22,,1900,B007,350,,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_5.01, +B221,,1860,B007,12200,,steward1938,Binford_2001_Table_5.01, +B222,,1860,B007,15600,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_5.01, +B223,,1870,B007,5400,,lowie1924,Binford_2001_Table_5.01, +B224,,1860,B007,5840,,steward1938,Binford_2001_Table_5.01, +B225,,1850,B007,12600,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_5.01, +B226,,1870,B007,2700,,brink1969; kelly1932,Binford_2001_Table_5.01, +B227,,1860,B007,96000,,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_5.01, +B228,,1860,B007,3260,,steward1938,Binford_2001_Table_5.01, +B229,,1860,B007,36540,,steward1938,Binford_2001_Table_5.01, +B23,,1900,B007,74400,,qiu1983,Binford_2001_Table_5.01, +B230,,1860,B007,23370,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_5.01, +B231,,1870,B007,16080,,whiting1950,Binford_2001_Table_5.01, +B232,,1860,B007,8810,,boas1899; steward1938,Binford_2001_Table_5.01, +B233,,1860,B007,5260,,steward1938,Binford_2001_Table_5.01, +B234,,1860,B007,25640,,boas1899; steward1974b,Binford_2001_Table_5.01, +B24,,1900,B007,62500,,lee1967; shimkin1939,Binford_2001_Table_5.01, +B240,,1880,B007,98000,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_5.01, +B241,,1870,B007,150000,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_5.01, +B242,,1880,B007,122850,,basehart1972; morice1906b; opler1937,Binford_2001_Table_5.01, +B243,,1870,B007,28000,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_5.01, +B244,,1860,B007,46000,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B245,,1860,B007,57000,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_5.01, +B246,,1860,B007,40000,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_5.01, +B248,,1870,B007,80000,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_5.01, +B249,,1870,B007,145000,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_5.01, +B25,,1920,B007,7670,,shternberg1933,Binford_2001_Table_5.01, +B250,,1880,B007,59500,,chamberlain1892; turneyhigh1941,Binford_2001_Table_5.01, +B252,,1860,B007,64900,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B253,,1870,B007,67000,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_5.01, +B254,,1850,B007,71680,,skinner1914,Binford_2001_Table_5.01, +B255,,1850,B007,60000,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_5.01, +B256,,1850,B007,70000,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_5.01, +B257,,1870,B007,140000,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B007,170000,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_5.01, +B259,,1850,B007,70000,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B26,,1900,B007,386880,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_5.01, +B260,,1880,B007,40000,,bamforth1988; jenness1938,Binford_2001_Table_5.01, +B268,,1880,B007,3000,,drucker1990; kelly1995; suttles1990,Binford_2001_Table_5.01, +B269,,1860,B007,1550,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B007,190430,,chard1963; popov1966,Binford_2001_Table_5.01, +B270,,1870,B007,1200,,smith1940a; smith1940b,Binford_2001_Table_5.01, +B271,,1850,B007,2980,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_5.01, +B272,,1880,B007,18200,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_5.01, +B273,,1880,B007,9100,,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_5.01, +B274,,1850,B007,14800,,ray1937; ray1938; silverstein1990,Binford_2001_Table_5.01, +B275,,1860,B007,1920,,boyd1990; zenk1990,Binford_2001_Table_5.01, +B276,,1860,B007,17000,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_5.01, +B277,,1880,B007,410,,stern1934,Binford_2001_Table_5.01, +B278,,1860,B007,2830,,olson1936a; schalk1978,Binford_2001_Table_5.01, +B279,,1880,B007,2500,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_5.01, +B28,,1860,B007,27490,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_5.01, +B280,,1880,B007,1000,,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_5.01, +B281,,NA,B007,3630,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_5.01, +B282,,1860,B007,4500,,kennedyandbouchard1990,Binford_2001_Table_5.01, +B283,,1880,B007,9750,,cybulski1990b; hilton1990,Binford_2001_Table_5.01, +B284,,1880,B007,1270,,pettitt1950,Binford_2001_Table_5.01, +B285,,1860,B007,3390,,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_5.01, +B286,,1860,B007,270,,gunther1962; schalk1978; swan1870,Binford_2001_Table_5.01, +B287,,1880,B007,6820,,olson1940; schalk1978,Binford_2001_Table_5.01, +B288,,1890,B007,21100,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B289,,1880,B007,24100,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_5.01, +B290,,1890,B007,10300,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B291,,1880,B007,15000,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_5.01, +B292,,1880,B007,105000,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_5.01, +B293,,1880,B007,12720,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_5.01, +B294,,1840,B007,28700,,holmberg1985; knechtandjordan1985,Binford_2001_Table_5.01, +B295,,1890,B007,2660,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_5.01, +B296,,1850,B007,41600,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_5.01, +B297,,1930,B007,26200,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_5.01, +B298,,1830,B007,24700,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_5.01, +B299,,1930,B007,4500,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_5.01, +B3,,1900,B007,128260,,hagen1908; persoon1989; volz1909,Binford_2001_Table_5.01, +B315,,1850,B007,7950,,murdock1980,Binford_2001_Table_5.01, +B316,,1860,B007,11000,,,Binford_2001_Table_5.01, +B317,,1870,B007,8450,,teit1928,Binford_2001_Table_5.01, +B318,,1880,B007,14080,,,Binford_2001_Table_5.01, +B319,,1860,B007,920,,spierandsapir1930,Binford_2001_Table_5.01, +B320,,1860,B007,66600,,teit1930,Binford_2001_Table_5.01, +B321,,1880,B007,6030,,clineetal1938,Binford_2001_Table_5.01, +B322,,1860,B007,11310,,grabert1974; teit1930,Binford_2001_Table_5.01, +B323,,1870,B007,6140,,kelly1995; ray1932; teit1930,Binford_2001_Table_5.01, +B324,,1850,B007,45000,,spinden1908,Binford_2001_Table_5.01, +B325,,1860,B007,15500,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_5.01, +B326,,1870,B007,66600,,teit1930,Binford_2001_Table_5.01, +B327,,1870,B007,60000,,jenness1935; quimby1962,Binford_2001_Table_5.01, +B328,,1800,B007,2460,,kinietz1947,Binford_2001_Table_5.01, +B329,,1700,B007,101700,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_5.01, +B330,,1860,B007,53300,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_5.01, +B331,,1880,B007,19010,,hickerson1967; landes1937a,Binford_2001_Table_5.01, +B332,,1870,B007,15420,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_5.01, +B333,,1850,B007,117600,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_5.01, +B334,,1940,B007,12400,,dunning1959; grant1924; rogers1969,Binford_2001_Table_5.01, +B335,,1900,B007,14290,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_5.01, +B336,,1865,B007,5400,,goldman1940; jenness1943; smithnd,Binford_2001_Table_5.01, +B337,,1800,B007,25500,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_5.01, +B338,,1880,B007,77900,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_5.01, +B339,,1850,B007,15740,,dunning1959; rogers1969,Binford_2001_Table_5.01, +B340,,1900,B007,35800,,morantz1983; rogers1969,Binford_2001_Table_5.01, +B341,,1890,B007,49000,,boas1895a; rogersandblack1976,Binford_2001_Table_5.01, +B342,,1880,B007,660000,,lane1952; tanner1944,Binford_2001_Table_5.01, +B343,,1880,B007,80000,,dennison1981; grant1936; jenness1937,Binford_2001_Table_5.01, +B344,,1850,B007,194700,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_5.01, +B345,,1860,B007,245370,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_5.01, +B346,,1920,B007,60000,,honigmann1949; honigmann1954,Binford_2001_Table_5.01, +B347,,1870,B007,70000,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_5.01, +B348,,1880,B007,21700,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B007,7000,,grant1936; jenness1937; jenness1943,Binford_2001_Table_5.01, +B35,,1950,B007,14280,,,Binford_2001_Table_5.01, +B350,,1800,B007,100000,,gillespie1981,Binford_2001_Table_5.01, +B351,,1880,B007,55080,,adney1900; crowandobley1981,Binford_2001_Table_5.01, +B352,,1860,B007,173400,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_5.01, +B353,,1900,B007,312000,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_5.01, +B354,,1880,B007,182500,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_5.01, +B355,,1880,B007,619400,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_5.01, +B356,,1880,B007,286100,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_5.01, +B357,,1880,B007,69000,,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_5.01, +B358,,1860,B007,150000,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_5.01, +B359,,1930,B007,21000,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_5.01, +B36,,1960,B007,7690,,metraux1948,Binford_2001_Table_5.01, +B360,,1900,B007,50000,,morantz1983; skinner1911,Binford_2001_Table_5.01, +B361,,1860,B007,180900,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_5.01, +B362,,1870,B007,92500,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_5.01, +B363,,1890,B007,162000,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_5.01, +B364,,1860,B007,21640,,michael1967; snow1981,Binford_2001_Table_5.01, +B365,,1890,B007,96000,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_5.01, +B369,,1870,B007,21000,,ray1992; seltzer1933,Binford_2001_Table_5.01, +B37,,1968,B007,1640,,kloos1977; kloos1982,Binford_2001_Table_5.01, +B370,,1890,B007,18700,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_5.01, +B371,,1880,B007,14700,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_5.01, +B372,,1890,B007,52500,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_5.01, +B373,,1890,B007,24200,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_5.01, +B374,,1900,B007,236500,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_5.01, +B375,,1900,B007,25000,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_5.01, +B377,,1950,B007,24900,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_5.01, +B378,,1910,B007,65000,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_5.01, +B379,,1920,B007,4000,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_5.01, +B38,,1989,B007,820,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_5.01, +B380,,1880,B007,10710,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_5.01, +B381,,1920,B007,462000,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_5.01, +B382,,1920,B007,43100,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_5.01, +B383,,1880,B007,40000,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_5.01, +B384,,1920,B007,221000,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_5.01, +B385,,1880,B007,108000,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_5.01, +B386,,1880,B007,370600,,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_5.01, +B387,,1880,B007,197000,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_5.01, +B388,,1880,B007,7350,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_5.01, +B389,,1880,B007,14250,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_5.01, +B39,,1960,B007,8740,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_5.01, +B390,,1880,B007,73100,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_5.01, +B4,,1989,B007,860,,agrawal1967; rizvi1990,Binford_2001_Table_5.01, +B40,,1990,B007,3010,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_5.01, +B41,,1920,B007,1650,,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_5.01, +B42,,1901,B007,6680,,metraux1946guato; schmidt1942,Binford_2001_Table_5.01, +B43,,1940,B007,1560,,holmberg1950,Binford_2001_Table_5.01, +B44,,1968,B007,2580,,stearman1989,Binford_2001_Table_5.01, +B45,,1938,B007,3020,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_5.01, +B46,,1600,B007,14200,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_5.01, +B47,,1975,B007,2870,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01, +B48,,1880,B007,23940,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_5.01, +B49,,1954,B007,310,,kozaketal1979,Binford_2001_Table_5.01, +B5,,1952,B007,980,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_5.01, +B50,,1910,B007,2600,,henry1964,Binford_2001_Table_5.01, +B51,,1870,B007,475300,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_5.01, +B52,,1880,B007,15390,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B007,22690,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_5.01, +B54,,1880,B007,48100,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_5.01, +B55,,1870,B007,8800,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_5.01, +B6,,1906,B007,570,,temple1903,Binford_2001_Table_5.01, +B60,,1980,B007,12000,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_5.01, +B61,,1976,B007,7000,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_5.01, +B62,,1977,B007,3750,,skeatandblagden1906; terashima1980,Binford_2001_Table_5.01, +B63,,1980,B007,22000,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_5.01, +B64,,1980,B007,4700,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_5.01, +B65,,1930,B007,3400,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_5.01, +B66,,NA,B007,6880,,kellyandpoyer1993,Binford_2001_Table_5.01, +B67,,1950,B007,4300,,clark1951,Binford_2001_Table_5.01, +B68,,1920,B007,52000,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_5.01, +B69,,1910,B007,2500,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_5.01, +B7,,1903,B007,1790,,fox1952; reed1904,Binford_2001_Table_5.01, +B70,,1920,B007,370,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_5.01, +B71,,1928,B007,230000,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_5.01, +B72,,1950,B007,11000,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_5.01, +B73,,1910,B007,60000,,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_5.01, +B74,,1962,B007,18000,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_5.01, +B75,,1976,B007,15000,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_5.01, +B76,,1968,B007,11800,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_5.01, +B77,,1920,B007,57000,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_5.01, +B78,,1950,B007,7840,,potgieter1955; toerien1958,Binford_2001_Table_5.01, +B79,,NA,B007,12350,,bleek1924a,Binford_2001_Table_5.01, +B8,,1870,B007,1390,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_5.01, +B82,,1848,B007,400,,moore1979,Binford_2001_Table_5.01, +B83,,1900,B007,3900,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B007,7300,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_5.01, +B85,,1970,B007,200,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_5.01, +B86,,1973,B007,80,,meehan1982; petersonandlong1986,Binford_2001_Table_5.01, +B87,,1950,B007,550,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_5.01, +B88,,1930,B007,5000,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_5.01, +B89,,1920,B007,2600,,kaberry1935; kaberry1939,Binford_2001_Table_5.01, +B9,,1920,B007,2080,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_5.01, +B90,,1920,B007,8300,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_5.01, +B91,,1920,B007,6000,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_5.01, +B92,,1960,B007,7000,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_5.01, +B93,,1930,B007,700,,thomson1933; thomson1934,Binford_2001_Table_5.01, +B94,,1937,B007,1300,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_5.01, +B95,,1920,B007,7100,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_5.01, +B96,,1880,B007,1300,,andersonandrobins1988; roth1909,Binford_2001_Table_5.01, +B97,,1930,B007,2600,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_5.01, +B98,,1926,B007,130,,haleandtindale1933; roth1909,Binford_2001_Table_5.01, +B99,,1900,B007,1000,,stanner1933,Binford_2001_Table_5.01, +B1,,1970,B008,0.1179,,avadhani1975; brosius1986; harrison1949; kedit1982; oldrey1975; sellato1994; urquhart1951,Binford_2001_Table_5.01, +B10,,1900,B008,0.1846,,bailey1863; seligmannandseligmann1911; skeatandblagden1906; spittel1945,Binford_2001_Table_5.01, +B100,,NA,B008,0.1071,Note Binford (2001) gives density as 0.11 persons per km2,blundell1975; blundell1980; love1917; love1936,Binford_2001_Table_5.01, +B101,,1934,B008,0.045,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B008,0.3,,memmott1983a; memmott1983b,Binford_2001_Table_5.01, +B103,,1928,B008,0.66,,tindale1962a; tindale1962b,Binford_2001_Table_5.01, +B104,,NA,B008,0.0375,,,Binford_2001_Table_5.01, +B105,,1900,B008,0.45,,birdsell1967; harris1978; harris1982; roth1909,Binford_2001_Table_5.01, +B106,,1910,B008,0.095,,clement1903; radcliffebrown1912,Binford_2001_Table_5.01, +B107,,1870,B008,0.1627,,brayshaw1990; lumholtz1889,Binford_2001_Table_5.01, +B108,,1934,B008,0.0398,,kaberry1939; nind1831,Binford_2001_Table_5.01, +B109,,1965,B008,0.0116,,abbie1957; meggitt1962; meggittperscomm1973,Binford_2001_Table_5.01, +B11,,1972,B008,0.7038,,morris1982a,Binford_2001_Table_5.01, +B110,,1880,B008,0.598,,petersonandlong1986; tonkinson1978,Binford_2001_Table_5.01, +B111,,1960,B008,0.0075,,harris1978; petersonandlong1986,Binford_2001_Table_5.01, +B112,,1968,B008,0.0045,,petersonandlong1986,Binford_2001_Table_5.01, +B113,,1936,B008,0.015,,campbelletal1936; gargettandhayden1991; haydenperscomm1990; haydenperscomm1992; long1970; long1971; meggitt1962; myers1986; petersonandlong1986,Binford_2001_Table_5.01, +B114,,1848,B008,0.2174,,colliverandwoolston1975,Binford_2001_Table_5.01, +B115,,1840,B008,0.1599,,morwood1987; winterbotham1980,Binford_2001_Table_5.01, +B116,,1900,B008,0.02,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B008,0.0121,,binfordfieldnotes1974; campbelletal1936; denham1975; oconnell1987,Binford_2001_Table_5.01, +B118,,1968,B008,0.004,,gould1968; gould1969; gould1971; gould1977,Binford_2001_Table_5.01, +B119,,1850,B008,0.134,,belshaw1978; debertrodano1978; gardner1978,Binford_2001_Table_5.01, +B12,,1965,B008,0.87,,headland1986; headlandperscomm1992; headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B008,0.006,,brokensha1975; campbelletal1936; layton1983; long1970; petersonandlong1986; tindale1972; yengoyan1970,Binford_2001_Table_5.01, +B121,,1900,B008,0.0193,,gason1879; howitt1891; sturt1849a,Binford_2001_Table_5.01, +B122,,1870,B008,0.011,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B008,0.01,,tindaleperscomm1965; tindaleperscomm1966; tindaleperscomm196668; white1915,Binford_2001_Table_5.01, +B124,,1900,B008,0.0267,,binfordfieldnotes1993; long1970; roberts1953; spencerandgillen1899; spencerandgillen1927,Binford_2001_Table_5.01, +B125,,1880,B008,0.09,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B008,0.0087,,petersonandlong1986; tindaleperscomm1966,Binford_2001_Table_5.01, +B127,,1941,B008,0.0047,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B008,0.1543,,,Binford_2001_Table_5.01, +B129,,1840,B008,0.18,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B008,0.4205,,rai1982; wastl1957,Binford_2001_Table_5.01, +B130,,1910,B008,0.0512,,,Binford_2001_Table_5.01, +B131,,1850,B008,0.4,,,Binford_2001_Table_5.01, +B132,,1850,B008,0.07,,nind1831,Binford_2001_Table_5.01, +B133,,1850,B008,0.35,,williams1985,Binford_2001_Table_5.01, +B134,,1850,B008,0.2504,,cannon1983; gaughwinandsullivan1984,Binford_2001_Table_5.01, +B135,,1850,B008,0.1768,,fisonandhowitt1880; howitt1904,Binford_2001_Table_5.01, +B136,,1830,B008,0.0817,,hiatt1967; jones1971; jones1972; plomley1983; roth1899,Binford_2001_Table_5.01, +B137,,1830,B008,0.1335,,hiatt1967; jones1971; jones1972,Binford_2001_Table_5.01, +B14,,1924,B008,0.3833,Note Binford (2001) gives density as 0.3794 persons per km2,goodmanetal1985; vanoverbergh1925,Binford_2001_Table_5.01, +B143,,1900,B008,0.2546,,bowen1976; gilg1965; griffen1959; kroeber1931; mcgee1898,Binford_2001_Table_5.01, +B144,,1870,B008,0.4375,,bean1972; gifford1926b; kroeber1925a; strong1929a,Binford_2001_Table_5.01, +B145,,1870,B008,0.4875,Note Binford (2001) gives density as 0.488 persons per km2,gifford1926b; strong1929a,Binford_2001_Table_5.01, +B146,,1880,B008,0.1223,,meigs1939,Binford_2001_Table_5.01, +B147,,1850,B008,0.1807,,kroeber1925a; luomala1978,Binford_2001_Table_5.01, +B148,,1860,B008,0.3808,,cook1955; gayton1948a; gifford1926b; kroeber1925a; wallace1978b,Binford_2001_Table_5.01, +B149,,1870,B008,0.1759,,benedict1924; gifford1926b; kroeber1925a,Binford_2001_Table_5.01, +B15,,1940,B008,1.2529,Note Binford (2001) gives density as 1.233 persons per km2,furerhaimendorf1943b,Binford_2001_Table_5.01, +B150,,1860,B008,0.6773,Note Binford (2001) gives density as 0.679 persons per km2,gifford1926b; oxendine1983; sparkman1908,Binford_2001_Table_5.01, +B151,,1860,B008,0.2421,,cook1955; gayton1948a; gayton1948b,Binford_2001_Table_5.01, +B152,,1850,B008,0.1724,,voegelin1938,Binford_2001_Table_5.01, +B153,,1850,B008,0.35,,gifford1926b; goldschmidt1948; goldschmidtperscomm1966,Binford_2001_Table_5.01, +B154,,1850,B008,0.383,,cook1955; gayton1948a; gifford1926b; spier1978,Binford_2001_Table_5.01, +B155,,1850,B008,0.82,,barrett1908; gifford1926b; johnson1978; kroeber1932,Binford_2001_Table_5.01, +B156,,1770,B008,0.6494,,,Binford_2001_Table_5.01, +B157,,1870,B008,0.2867,,gayton1948a; gayton1948b; gifford1932b,Binford_2001_Table_5.01, +B158,,1860,B008,1.2703,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B008,3.887,Note Binford (2001) gives density as 3.087 persons per km2,cook1956; gifford1926a,Binford_2001_Table_5.01, +B16,,1963,B008,0.2317,,bernatzik1951; flatz1963; nimmanahaemindaandhartlandswam1962; pookajorn1985; pookajorn1988; trier1981; velder1963,Binford_2001_Table_5.01, +B160,,1860,B008,0.5882,,barrett1908; cookandheizer1965; dubois1935,Binford_2001_Table_5.01, +B161,,1860,B008,1.18,Note Binford (2001) gives density as 1.182 persons per km2,cookandheizer1965,Binford_2001_Table_5.01, +B162,,1860,B008,0.4545,Note Binford (2001) gives density as 0.5 persons per km2,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B008,0.3975,,cookandheizer1965; faye1923; kroeber1929; wilsonandtowne1978,Binford_2001_Table_5.01, +B164,,1805,B008,0.3723,Note Binford (2001) gives density as 0.374 persons per km2,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B008,1.1084,,barrett1908; cook1956,Binford_2001_Table_5.01, +B166,,1860,B008,1.3627,Note Binford (2001) gives density as 1.3644 persons per km2,cook1956; goddard1923; nomland1935,Binford_2001_Table_5.01, +B167,,NA,B008,0.9725,,,Binford_2001_Table_5.01, +B168,,1850,B008,0.5357,,collierandthalman1991,Binford_2001_Table_5.01, +B169,,NA,B008,1.1643,,cook1956; nomland1938,Binford_2001_Table_5.01, +B17,,1963,B008,0.0963,,gardner1965; gardner1972; gardner1988,Binford_2001_Table_5.01, +B170,,NA,B008,0.6486,Note Binford (2001) gives density as 0.65 persons per km2,cook1955,Binford_2001_Table_5.01, +B171,,1850,B008,1.3158,,cook1956; foster1944; gifford1926b,Binford_2001_Table_5.01, +B172,,1860,B008,1.2062,,barrett1908; cook1956; cookandheizer1965; driver1936,Binford_2001_Table_5.01, +B173,,1860,B008,1.0839,,barrett1908; cook1956; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B174,,1860,B008,0.3133,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B008,0.2448,Note Binford (2001) gives density as 0.2454 persons per km2,barrett1908; barrettandgifford1933; cook1955; cookandheizer1965; gifford1916; gifford1926b,Binford_2001_Table_5.01, +B176,,1860,B008,0.1286,,gray1987,Binford_2001_Table_5.01, +B177,,1860,B008,0.6696,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B008,1.22,,cook1956; drucker1940,Binford_2001_Table_5.01, +B179,,1860,B008,0.25,,cookandheizer1965; dixon1907,Binford_2001_Table_5.01, +B18,,1963,B008,0.2199,,senandsen1955; williams1974,Binford_2001_Table_5.01, +B180,,1860,B008,0.8,,cook1956; gifford1926b; goddard1904; kroeber1925a; wallace1978a,Binford_2001_Table_5.01, +B181,,1870,B008,0.6707,,gray1987,Binford_2001_Table_5.01, +B182,,1860,B008,0.4688,,cook1956; cookandheizer1965; schenckandgifford1952,Binford_2001_Table_5.01, +B183,,1860,B008,0.1793,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B008,1.053,Note Binford (2001) gives density as 1.0793 persons per km2,cook1956; gifford1926b; loud1918; schalk1978,Binford_2001_Table_5.01, +B185,,1850,B008,0.2346,,cookandheizer1965; dixon1905; gifford1926b,Binford_2001_Table_5.01, +B186,,1850,B008,1.3158,Note Binford (2001) gives density as 1.31 persons per km2,cook1956; gifford1926b; heizerandmills1952; kroeber1925a; schalk1978,Binford_2001_Table_5.01, +B187,,1860,B008,0.1726,,gifford1926b; kniffen1926; kroeber1962,Binford_2001_Table_5.01, +B188,,1860,B008,0.2222,Note Binford (2001) gives density as 0.2289 persons per km2,gifford1926b; ray1963,Binford_2001_Table_5.01, +B189,,1860,B008,0.1336,,gifford1926b; spier1930,Binford_2001_Table_5.01, +B19,,1946,B008,0.5,,ehrenfels1952,Binford_2001_Table_5.01, +B190,,1760,B008,0.06,,aschmann1967; baegert1863; baegert1865,Binford_2001_Table_5.01, +B191,,1570,B008,0.0901,,,Binford_2001_Table_5.01, +B192,,1860,B008,0.0128,,smith1978a; steward1938,Binford_2001_Table_5.01, +B193,,1800,B008,0.2105,,bolton1916; schaedel1949; stiles1906,Binford_2001_Table_5.01, +B194,,1715,B008,0.0161,Note Binford (2001) gives density as 0.0168 persons per km2,,Binford_2001_Table_5.01, +B195,,1850,B008,0.0212,,steward1938,Binford_2001_Table_5.01, +B196,,1870,B008,0.0148,,corbusier1886; gifford1932a,Binford_2001_Table_5.01, +B197,,1860,B008,0.0857,,steward1936; steward1938,Binford_2001_Table_5.01, +B198,,1870,B008,0.0386,,hayden1936; hrdlicka1909; kniffen1935; kroeber1935,Binford_2001_Table_5.01, +B199,,1860,B008,0.119,,steward1938; voegelin1938; zigmond1986,Binford_2001_Table_5.01, +B2,,1968,B008,0.4327,Note Binford (2001) gives density as 0.43 persons per km2,cadelina1982; eder1978; eder1984; eder1987; warren1964,Binford_2001_Table_5.01, +B20,,1974,B008,0.7056,Note Binford (2001) gives density as 0.705 persons per km2,bhanu1982; bhanu1992,Binford_2001_Table_5.01, +B200,,1860,B008,0.0232,,steward1936; steward1938,Binford_2001_Table_5.01, +B201,,1860,B008,0.0344,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B008,0.3804,,gifford1926b; liljebladandfowler1986; lowie1909; steward1933; steward1938,Binford_2001_Table_5.01, +B203,,1860,B008,0.02,,steward1938; thomas1983,Binford_2001_Table_5.01, +B204,,1860,B008,0.0371,,euler1972; eulerandfowler1966; hrdlicka1909; kelly1964; kellyandfowler1986; knack1975; stoffleandevans1978,Binford_2001_Table_5.01, +B205,,1870,B008,0.059,,davis1965,Binford_2001_Table_5.01, +B206,,1860,B008,0.0354,,fowlerandliljeblad1986; steward1938,Binford_2001_Table_5.01, +B207,,1860,B008,0.0691,,gouldandplew1996; gouldperscomm1992; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B208,,1860,B008,0.1851,,boas1899; fowler1966; fowlerandliljeblad1986,Binford_2001_Table_5.01, +B209,,1860,B008,0.0346,,boas1899; callawayetal1986; janetski1983,Binford_2001_Table_5.01, +B21,,1978,B008,0.7,,bird1983; birddavid1987,Binford_2001_Table_5.01, +B210,,1870,B008,0.2206,Note Binford (2001) gives density as 0.22 persons per km2,fowler1992,Binford_2001_Table_5.01, +B211,,1860,B008,0.0389,,steward1938,Binford_2001_Table_5.01, +B212,,1870,B008,0.1061,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B008,0.0296,,steward1938,Binford_2001_Table_5.01, +B214,,1860,B008,0.0168,,steward1938,Binford_2001_Table_5.01, +B215,,1870,B008,0.0604,Note Binford (2001) gives density as 0.0609 persons per km2,steward1938,Binford_2001_Table_5.01, +B216,,1860,B008,0.1171,,boas1899; ewers1955; harris1940; lowie1924; steward1938,Binford_2001_Table_5.01, +B217,,1860,B008,0.0428,,steward1938,Binford_2001_Table_5.01, +B218,,1860,B008,0.1667,,steward1938,Binford_2001_Table_5.01, +B219,,1860,B008,0.1604,,cook1955; gayton1948a; gifford1926b; gifford1932b; whiting1964,Binford_2001_Table_5.01, +B22,,1900,B008,0.3486,Note Binford (2001) gives density as 0.348 persons per km2,batchelor1927; hitchcock1891; landor1893; watanabe1964a; watanabe1972,Binford_2001_Table_5.01, +B221,,1860,B008,0.0164,,steward1938,Binford_2001_Table_5.01, +B222,,1860,B008,0.026,,callawayetal1986; hrdlicka1909; smith1974,Binford_2001_Table_5.01, +B223,,1870,B008,0.0111,,lowie1924,Binford_2001_Table_5.01, +B224,,1860,B008,0.0134,Note Binford (2001) gives density as 0.0113 persons per km2,steward1938,Binford_2001_Table_5.01, +B225,,1850,B008,0.149,,dazevedo1963; downs1966; gifford1926b; price1962,Binford_2001_Table_5.01, +B226,,1870,B008,0.1359,,brink1969; kelly1932,Binford_2001_Table_5.01, +B227,,1860,B008,0.0156,Note Binford (2001) gives density as 0.0187 persons per km2,lowie1924; shimkin1947; steward1974a,Binford_2001_Table_5.01, +B228,,1860,B008,0.138,,steward1938,Binford_2001_Table_5.01, +B229,,1860,B008,0.0104,,steward1938,Binford_2001_Table_5.01, +B23,,1900,B008,0.043,,qiu1983,Binford_2001_Table_5.01, +B230,,1860,B008,0.0749,,boas1899; smith1974; steward1974b; stewart1941,Binford_2001_Table_5.01, +B231,,1870,B008,0.0124,,whiting1950,Binford_2001_Table_5.01, +B232,,1860,B008,0.0624,,boas1899; steward1938,Binford_2001_Table_5.01, +B233,,1860,B008,0.0183,,steward1938,Binford_2001_Table_5.01, +B234,,1860,B008,0.0429,,boas1899; steward1974b,Binford_2001_Table_5.01, +B24,,1900,B008,0.016,,lee1967; shimkin1939,Binford_2001_Table_5.01, +B240,,1880,B008,0.0051,,basehartperscomm1972; hrdlicka1909; swanton1952,Binford_2001_Table_5.01, +B241,,1870,B008,0.0233,,goldstein1934; wallaceandhoebel1952,Binford_2001_Table_5.01, +B242,,1880,B008,0.0116,,basehart1972; morice1906b; opler1937,Binford_2001_Table_5.01, +B243,,1870,B008,0.014,,bamforth1988; mishkin1940; newcomb1961,Binford_2001_Table_5.01, +B244,,1860,B008,0.0415,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B245,,1860,B008,0.0482,,bushnell1922; gussow1954; moore1987; moore1991,Binford_2001_Table_5.01, +B246,,1860,B008,0.075,,eggan1937; flannery1953; gussowetal1974; hilger1952,Binford_2001_Table_5.01, +B248,,1870,B008,0.0581,,bamforth1988; denig1953; denig1961; ewers1955; kelly1995,Binford_2001_Table_5.01, +B249,,1870,B008,0.0878,,bushnell1922; culbertson1952; sullivan1920,Binford_2001_Table_5.01, +B25,,1920,B008,0.1931,,shternberg1933,Binford_2001_Table_5.01, +B250,,1880,B008,0.0202,,chamberlain1892; turneyhigh1941,Binford_2001_Table_5.01, +B252,,1860,B008,0.0231,,boas1899; murphyandmurphy1960; steward1938,Binford_2001_Table_5.01, +B253,,1870,B008,0.0337,,bamforth1988; culbertson1952; ewers1955; flannery1953; swanton1952,Binford_2001_Table_5.01, +B254,,1850,B008,0.0279,,skinner1914,Binford_2001_Table_5.01, +B255,,1850,B008,0.0254,,dejong1912; ewers1955; kehoe1993,Binford_2001_Table_5.01, +B256,,1850,B008,0.0346,,bushnell1922; ewers1955; ewers1971; lewis1973; robbins1971; wissler1911,Binford_2001_Table_5.01, +B257,,1870,B008,0.0321,,bushnell1922; culbertson1952; denig1930; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B008,0.0274,,bamforth1988; bushnell1922; mandelbaum1940,Binford_2001_Table_5.01, +B259,,1850,B008,0.0444,,bamforth1988; ewers1955,Binford_2001_Table_5.01, +B26,,1900,B008,0.0061,,jochelson191926; jochelson191926; kreynovich1979,Binford_2001_Table_5.01, +B260,,1880,B008,0.0175,,bamforth1988; jenness1938,Binford_2001_Table_5.01, +B268,,1880,B008,0.5667,Note Binford (2001) gives density as 0.565 persons per km2,drucker1990; kelly1995; suttles1990,Binford_2001_Table_5.01, +B269,,1860,B008,0.9677,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B008,0.0046,,chard1963; popov1966,Binford_2001_Table_5.01, +B270,,1870,B008,0.3675,,smith1940a; smith1940b,Binford_2001_Table_5.01, +B271,,1850,B008,0.324,,eells1884; eells1887a; elmendorf1960; kelly1995,Binford_2001_Table_5.01, +B272,,1880,B008,0.2198,,schalk1978; taylor1974a; taylor1974b,Binford_2001_Table_5.01, +B273,,1880,B008,1.5385,Note Binford (2001) gives density as 1.539 persons per km2,cybulski1990b; drucker1951; koppert1930a; schalk1978,Binford_2001_Table_5.01, +B274,,1850,B008,0.3378,,ray1937; ray1938; silverstein1990,Binford_2001_Table_5.01, +B275,,1860,B008,1.0417,,boyd1990; zenk1990,Binford_2001_Table_5.01, +B276,,1860,B008,0.2353,,boasandfarrand1899; hayden1997; teit1906b,Binford_2001_Table_5.01, +B277,,1880,B008,1.1195,Note Binford (2001) gives density as 1.0463 persons per km2,stern1934,Binford_2001_Table_5.01, +B278,,1860,B008,0.5869,,olson1936a; schalk1978,Binford_2001_Table_5.01, +B279,,1880,B008,0.66,,cybulski1990b; duff1952; schalk1978,Binford_2001_Table_5.01, +B28,,1860,B008,0.047,,bogoras1904; haydenetal1996; krupnik1983a; moore1923; szathmary1984,Binford_2001_Table_5.01, +B280,,1880,B008,0.347,Note Binford (2001) gives density as 0.3475 persons per km2,hilltout1904; suttles1990; wilson1866,Binford_2001_Table_5.01, +B281,,NA,B008,0.4132,,seaburgandmiller1990; taylor1974a,Binford_2001_Table_5.01, +B282,,1860,B008,0.55,,kennedyandbouchard1990,Binford_2001_Table_5.01, +B283,,1880,B008,0.2051,,cybulski1990b; hilton1990,Binford_2001_Table_5.01, +B284,,1880,B008,1.0425,Note Binford (2001) gives density as 1.043 persons per km2,pettitt1950,Binford_2001_Table_5.01, +B285,,1860,B008,0.708,Note Binford (2001) gives density as 0.7 persons per km2,boyd1990; eells1884; schalk1978; suttles1990,Binford_2001_Table_5.01, +B286,,1860,B008,1.2296,,gunther1962; schalk1978; swan1870,Binford_2001_Table_5.01, +B287,,1880,B008,0.1906,,olson1940; schalk1978,Binford_2001_Table_5.01, +B288,,1890,B008,0.6872,,boasandfarrand1899; cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B289,,1880,B008,0.4191,,boasandfarrand1899; halpinandseguin1990; kane1859; schalk1978,Binford_2001_Table_5.01, +B290,,1890,B008,0.9709,,cybulski1990b; kane1859; schalk1978,Binford_2001_Table_5.01, +B291,,1880,B008,0.13,,boasandfarrand1899; cybulski1990b; mcilwraith1948; schalk1978,Binford_2001_Table_5.01, +B292,,1880,B008,0.1143,,kane1859; mitchellanddonald1988; schalk1978,Binford_2001_Table_5.01, +B293,,1880,B008,0.2358,,adams1973; boasandfarrand1899; cybulski1990b; halpinandseguin1990; kane1859,Binford_2001_Table_5.01, +B294,,1840,B008,0.3066,Note Binford (2001) gives density as 0.306 persons per km2,holmberg1985; knechtandjordan1985,Binford_2001_Table_5.01, +B295,,1890,B008,0.0586,,birketsmithanddelaguna1938; delaguna1990,Binford_2001_Table_5.01, +B296,,1850,B008,0.1731,,hrdlicka1930; michael1967; nelson1899; oswalt1966; oswaltandvanstone1967; oswaltperscomm1966; porter1893,Binford_2001_Table_5.01, +B297,,1930,B008,0.121,,birketsmith1953; delaguna1956; michael1967,Binford_2001_Table_5.01, +B298,,1830,B008,0.5466,,lantis1970a; lantis1984; mickey1955; mitchellanddonald1988; newman1960,Binford_2001_Table_5.01, +B299,,1930,B008,0.192,,hrdlicka1930; lantis1946; lantis1960,Binford_2001_Table_5.01, +B3,,1900,B008,0.092,,hagen1908; persoon1989; volz1909,Binford_2001_Table_5.01, +B315,,1850,B008,0.1899,,murdock1980,Binford_2001_Table_5.01, +B316,,1860,B008,0.105,,,Binford_2001_Table_5.01, +B317,,1870,B008,0.5917,Note Binford (2001) gives density as 0.5017 persons per km2,teit1928,Binford_2001_Table_5.01, +B318,,1880,B008,0.2685,Note Binford (2001) gives density as 0.27 persons per km2,,Binford_2001_Table_5.01, +B319,,1860,B008,2.3174,,spierandsapir1930,Binford_2001_Table_5.01, +B320,,1860,B008,0.015,,teit1930,Binford_2001_Table_5.01, +B321,,1880,B008,0.1451,,clineetal1938,Binford_2001_Table_5.01, +B322,,1860,B008,0.1326,,grabert1974; teit1930,Binford_2001_Table_5.01, +B323,,1870,B008,0.1119,,kelly1995; ray1932; teit1930,Binford_2001_Table_5.01, +B324,,1850,B008,0.0889,,spinden1908,Binford_2001_Table_5.01, +B325,,1860,B008,0.3323,,boasandfarrand1899; haydenetal1996; teit1900,Binford_2001_Table_5.01, +B326,,1870,B008,0.015,,teit1930,Binford_2001_Table_5.01, +B327,,1870,B008,0.05,,jenness1935; quimby1962,Binford_2001_Table_5.01, +B328,,1800,B008,0.0309,,kinietz1947,Binford_2001_Table_5.01, +B329,,1700,B008,0.0432,,boas1895a; speck1922; speckanddexter1951; wallisandwallis1955,Binford_2001_Table_5.01, +B330,,1860,B008,0.015,,ewers1955; teit1930; turneyhigh1937,Binford_2001_Table_5.01, +B331,,1880,B008,0.0121,,hickerson1967; landes1937a,Binford_2001_Table_5.01, +B332,,1870,B008,0.012,,bishop1969; bishop1978; grant1924; hallowell1938; hallowell1955; skinner1911,Binford_2001_Table_5.01, +B333,,1850,B008,0.124,,chamberlain1892; dawson1891; teit1900; teit1905,Binford_2001_Table_5.01, +B334,,1940,B008,0.0308,,dunning1959; grant1924; rogers1969,Binford_2001_Table_5.01, +B335,,1900,B008,0.0175,,grant1924; rogers1963a; rogers1963b; rogers1969,Binford_2001_Table_5.01, +B336,,1865,B008,0.075,,goldman1940; jenness1943; smithnd,Binford_2001_Table_5.01, +B337,,1800,B008,0.0087,,cameron1890; grant1890; hickerson1962,Binford_2001_Table_5.01, +B338,,1880,B008,0.0058,,lips1947a; morantz1983; rogers1963a; rogers1969; rogers1972; rogers1973; speck1923,Binford_2001_Table_5.01, +B339,,1850,B008,0.0143,,dunning1959; rogers1969,Binford_2001_Table_5.01, +B340,,1900,B008,0.0042,,morantz1983; rogers1969,Binford_2001_Table_5.01, +B341,,1890,B008,0.0051,,boas1895a; rogersandblack1976,Binford_2001_Table_5.01, +B342,,1880,B008,0.0041,,lane1952; tanner1944,Binford_2001_Table_5.01, +B343,,1880,B008,0.0082,,dennison1981; grant1936; jenness1937,Binford_2001_Table_5.01, +B344,,1850,B008,0.0051,,goddard1916; grant1936; ives1985; keith1960; nicks1980; ridington1982,Binford_2001_Table_5.01, +B345,,1860,B008,0.01,,helm1961; ives1985; janes1983; mackenzie1966,Binford_2001_Table_5.01, +B346,,1920,B008,0.009,,honigmann1949; honigmann1954,Binford_2001_Table_5.01, +B347,,1870,B008,0.0116,,boas1901; emmons1911; maclachlan1981,Binford_2001_Table_5.01, +B348,,1880,B008,0.1152,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B008,0.075,Note Binford (2001) gives density as 0.0759 persons per km2,grant1936; jenness1937; jenness1943,Binford_2001_Table_5.01, +B35,,1950,B008,0.3501,,,Binford_2001_Table_5.01, +B350,,1800,B008,0.0078,,gillespie1981,Binford_2001_Table_5.01, +B351,,1880,B008,0.0182,,adney1900; crowandobley1981,Binford_2001_Table_5.01, +B352,,1860,B008,0.0033,,helm1961; mackenzie1966; savishinsky1974; savishinskyandhara1981; whiting1964,Binford_2001_Table_5.01, +B353,,1900,B008,0.0143,,honigmann1949; honigmann1956b; honigmann1981; mason1967,Binford_2001_Table_5.01, +B354,,1880,B008,0.011,,clark1974; clark1975; mcfaydenclark1981; michael1967; sullivan1942,Binford_2001_Table_5.01, +B355,,1880,B008,0.0046,,brumbachandjarvenpa1989; fidler1934; grant1936; irimoto1981; mullerwille1974; smith1976; smith1978a; smith1981,Binford_2001_Table_5.01, +B356,,1880,B008,0.017,,boas1901; mckennan1964; mckennan1965; osgood1936; slobodin1969; slobodin1981,Binford_2001_Table_5.01, +B357,,1880,B008,0.0217,Note Binford (2001) gives density as 0.0271 persons per km2,michael1967; osgood1958; oswaltandvanstone1967; porter1893; snow1981; sullivan1942,Binford_2001_Table_5.01, +B358,,1860,B008,0.0055,,hooper1853; mackenzie1966; rushforth1977,Binford_2001_Table_5.01, +B359,,1930,B008,0.0077,,mckennan1959; mckennan1964; pitts1972,Binford_2001_Table_5.01, +B36,,1960,B008,0.156,,metraux1948,Binford_2001_Table_5.01, +B360,,1900,B008,0.009,,morantz1983; skinner1911,Binford_2001_Table_5.01, +B361,,1860,B008,0.0088,,helm1968; helm1972; keith1960; mackenzie1966; szathmary1984,Binford_2001_Table_5.01, +B362,,1870,B008,0.0486,,michael1967; osgood1937; townsend1963; townsend1981,Binford_2001_Table_5.01, +B363,,1890,B008,0.0093,,legros1982; mcclellan1981; oleary1985,Binford_2001_Table_5.01, +B364,,1860,B008,0.0152,,michael1967; snow1981,Binford_2001_Table_5.01, +B365,,1890,B008,0.0042,,hallowell1929; henriksen1973; tanner1944,Binford_2001_Table_5.01, +B369,,1870,B008,0.0762,,ray1992; seltzer1933,Binford_2001_Table_5.01, +B37,,1968,B008,0.0402,Note Binford (2001) gives density as 0.0704 persons per km2,kloos1977; kloos1982,Binford_2001_Table_5.01, +B370,,1890,B008,0.0267,,burch1975; foote1966; giddings1956; giddingsperscomm1963,Binford_2001_Table_5.01, +B371,,1880,B008,0.0663,,burch1975; burch1984; rodahlandedwards1952,Binford_2001_Table_5.01, +B372,,1890,B008,0.0278,,graburn1969; seltzer1933; taylor1974; turner1894,Binford_2001_Table_5.01, +B373,,1890,B008,0.0186,,barger1981; saladindanglure1984; willmott1960,Binford_2001_Table_5.01, +B374,,1900,B008,0.003,,arima1984; birketsmith1929; harper1964; haydenetal1996; rasmussen1930; tyrrell1897; vallee1967,Binford_2001_Table_5.01, +B375,,1900,B008,0.022,,binford1969; binfordfieldnotes1971; binfordfieldnotes1972; boas1901; burch1975,Binford_2001_Table_5.01, +B377,,1950,B008,0.0096,,amsden1977; binford1971; binford1991a; binfordandchasko1976; jamison1978,Binford_2001_Table_5.01, +B378,,1910,B008,0.0385,,haydenetal1996; mcghee1988; seltzer1933; smith1984; tyrrell1897,Binford_2001_Table_5.01, +B379,,1920,B008,0.15,,hrdlicka1930; hughes1960; moore1923; rodahlandedwards1952,Binford_2001_Table_5.01, +B38,,1989,B008,0.2,,gragson1989; greavesperscomm1993; petrullo1939,Binford_2001_Table_5.01, +B380,,1880,B008,0.042,,burch1975; jenness1922; rainey1947; seltzer1933,Binford_2001_Table_5.01, +B381,,1920,B008,0.0043,,damas1972; damas1984; haydenetal1996; jenness1922; jenness1932; rasmussen1932,Binford_2001_Table_5.01, +B382,,1920,B008,0.0038,,amundsen1908; briggs1970; rasmussen1931,Binford_2001_Table_5.01, +B383,,1880,B008,0.0033,,hrdlicka1930; mathiassen1928; oetteking1931; rae1850; vandeveldeetal1992; vanstone1960,Binford_2001_Table_5.01, +B384,,1920,B008,0.0054,,damas1992; hallowell1929; lyon1924; mathiassen1928; szathmary1984,Binford_2001_Table_5.01, +B385,,1880,B008,0.0473,,birketsmith1928a; grnnowetal1983; hansen1914; perry1898; rink1875; rink1877; york1875,Binford_2001_Table_5.01, +B386,,1880,B008,0.0162,Note Binford (2001) gives density as 0.0126 persons per km2,boas1888; boas1964; christy1894; hantzsch1977; low1906; oetteking1931; roberts1953,Binford_2001_Table_5.01, +B387,,1880,B008,0.0025,,balikci1970; boas1907; mclintock1860; rae1850; rasmussen1931; ross1835; savelle1987; vandersteenhoven1959,Binford_2001_Table_5.01, +B388,,1880,B008,0.0771,,birketsmith1928a; hansen1914; haydenetal1996; holm1914; mirsky1937a; peterson1984; poulsen1909; thalbitzer1914,Binford_2001_Table_5.01, +B389,,1880,B008,0.0386,,burch1975; ray1885; roberts1953; seltzer1933; simpson1875; spencer1959,Binford_2001_Table_5.01, +B39,,1960,B008,0.1762,,hurtadoandhill1986; hurtadoandhill1990; kirchhoff1945; metzger1968; wilbert1957,Binford_2001_Table_5.01, +B390,,1880,B008,0.0041,,ekblaw1928; ekblaw1948; gilberg1984; roberts1953; steensby1910,Binford_2001_Table_5.01, +B4,,1989,B008,0.3977,Note Binford (2001) gives density as 0.3954 persons per km2,agrawal1967; rizvi1990,Binford_2001_Table_5.01, +B40,,1990,B008,0.0937,,politis1992; politisperscomm1992; politisperscomm1993,Binford_2001_Table_5.01, +B41,,1920,B008,0.5152,Note Binford (2001) gives density as 0.5136 persons per km2,baldus1937; cook1908; levistrauss1936; levistrauss1970; newman1953,Binford_2001_Table_5.01, +B42,,1901,B008,0.0674,,metraux1946guato; schmidt1942,Binford_2001_Table_5.01, +B43,,1940,B008,0.0603,,holmberg1950,Binford_2001_Table_5.01, +B44,,1968,B008,0.0167,,stearman1989,Binford_2001_Table_5.01, +B45,,1938,B008,0.0778,,aspelin1976; levistrauss1948a; levistrauss1948b; levistrauss1970; newman1953; oberg1953,Binford_2001_Table_5.01, +B46,,1600,B008,0.3873,,gogginandsturtevant1964; hann1991; widmer1983,Binford_2001_Table_5.01, +B47,,1975,B008,0.0348,,clastres1968; clastres1972; hilletal1984; jones1983; metrauxandbaldus1946; oberg1953,Binford_2001_Table_5.01, +B48,,1880,B008,0.098,,ehrenreich1887; metraux1946botocudo; metrauxandbaldus1946,Binford_2001_Table_5.01, +B49,,1954,B008,0.0968,Note Binford (2001) gives density as 0.096 persons per km2,kozaketal1979,Binford_2001_Table_5.01, +B5,,1952,B008,0.401,,bose1964; cooper1991; heinegeldernandhoehngerlachstein1958; man1883; sen1962; temple1903,Binford_2001_Table_5.01, +B50,,1910,B008,0.0408,,henry1964,Binford_2001_Table_5.01, +B51,,1870,B008,0.0189,,boschinandmacuzzi1979; cooper1946c; goni1988; lothrop1928,Binford_2001_Table_5.01, +B52,,1880,B008,0.1365,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B008,0.1498,,bird1946; bird1988; birdperscomm1970; lothrop1928,Binford_2001_Table_5.01, +B54,,1880,B008,0.0727,,chapman1982; cooper1946b; gusinde1931; lothrop1928,Binford_2001_Table_5.01, +B55,,1870,B008,0.2841,,cooper1946a; gusinde1937a; lothrop1928,Binford_2001_Table_5.01, +B6,,1906,B008,0.4474,Note Binford (2001) gives density as 0.4465 persons per km2,temple1903,Binford_2001_Table_5.01, +B60,,1980,B008,0.0907,,bahuchet1979; bahuchet1988; cavallisforza1986a; hudson1990,Binford_2001_Table_5.01, +B61,,1976,B008,0.1747,,heymer1980; hiernauxetal1975; lalouel1950,Binford_2001_Table_5.01, +B62,,1977,B008,0.2499,,skeatandblagden1906; terashima1980,Binford_2001_Table_5.01, +B63,,1980,B008,0.1364,,cavallisforza1986a; cavallisforza1986c; hiernauxetal1975; valloisandmarquer1976,Binford_2001_Table_5.01, +B64,,1980,B008,0.1596,,bailey1985; baileyandpeacock1988; fisher1987; fisherandstrickland1989; peacock1985; schebesta1962a,Binford_2001_Table_5.01, +B65,,1930,B008,0.44,,cavallisforza1986c; harako1976; hiernauxetal1975; ichikawa1978; putnam1948; roberts1953; tanno1976; turnbull1965a,Binford_2001_Table_5.01, +B66,,NA,B008,0.0436,,kellyandpoyer1993,Binford_2001_Table_5.01, +B67,,1950,B008,0.0288,,clark1951,Binford_2001_Table_5.01, +B68,,1920,B008,0.0385,,fourie1927; fourie1928; tobias1962; werner1906a,Binford_2001_Table_5.01, +B69,,1910,B008,0.24,,bleek1931a; blurtonjonesetal1992; hawkesetal1989; leeanddevore1968a; oconnelletal1991; oconnellperscomm1977; oconnellperscomm1982; woodburn1968b,Binford_2001_Table_5.01, +B7,,1903,B008,0.919,,fox1952; reed1904,Binford_2001_Table_5.01, +B70,,1920,B008,0.4081,,blackburn1971; huntingford1929; huntingford1942; huntingford1951; huntingford1954; huntingford1955a; wayland1931,Binford_2001_Table_5.01, +B71,,1928,B008,0.0152,,bleek1929; decastroandalmeida1956; decastroandalmeida1957,Binford_2001_Table_5.01, +B72,,1950,B008,0.066,,bleek1929; brooksetal1984; hitchcockandebert1989; howell1979; kaufmann1910; lee1972a; lee1979; marshall1959; marshall1960; schapera1930; tobias1962; yellen1977a,Binford_2001_Table_5.01, +B73,,1910,B008,0.125,Note Binford (2001) gives density as 0.005 persons per km2,bleek1928; guenther1986; hitchcockandebert1989; schapera1930; tobias1962,Binford_2001_Table_5.01, +B74,,1962,B008,0.0293,,hitchcockperscomm1990; silberbauer1972; silberbauer1981a; silberbauer1981b; tobias1962; weissnerandhitchcockperscomm1991,Binford_2001_Table_5.01, +B75,,1976,B008,0.0636,,hitchcockandebert1989; hitchcockperscomm1990; kentandvierich1989; tobias1962; vierich1981; wyndhamandmorrison1958,Binford_2001_Table_5.01, +B76,,1968,B008,0.0103,,eibleibesfeldt1948; eibleibesfeldt1972; hitchcockandebert1989; hitchcockperscomm1990,Binford_2001_Table_5.01, +B77,,1920,B008,0.0064,,dart1937b; informantfrommoloporivernd; steyn1984,Binford_2001_Table_5.01, +B78,,1950,B008,0.0357,,potgieter1955; toerien1958,Binford_2001_Table_5.01, +B79,,NA,B008,0.0243,,bleek1924a,Binford_2001_Table_5.01, +B8,,1870,B008,0.3338,,man1883; radcliffebrown1948; whiting1964,Binford_2001_Table_5.01, +B82,,1848,B008,0.35,,moore1979,Binford_2001_Table_5.01, +B83,,1900,B008,0.4,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B008,0.1784,,altman1987; berndtandberndt1970; petersonandlong1986,Binford_2001_Table_5.01, +B85,,1970,B008,0.385,,long1970; macintosh1952; peterson1970; peterson1973; peterson1976; peterson1992; petersonandlong1986; petersonperscomm1992; petersonperscomm1994,Binford_2001_Table_5.01, +B86,,1973,B008,0.4375,,meehan1982; petersonandlong1986,Binford_2001_Table_5.01, +B87,,1950,B008,0.7273,,hiatt1965; long1970; peterson1972; petersonandlong1986,Binford_2001_Table_5.01, +B88,,1930,B008,0.1176,,howells1937; long1970; peterson1976; petersonandlong1986; thomson1949; tindaleperscomm1967; warner1958,Binford_2001_Table_5.01, +B89,,1920,B008,0.17,,kaberry1935; kaberry1939,Binford_2001_Table_5.01, +B9,,1920,B008,0.176,,brandt1961; evans1937; kuchikura1988; rambo1985; schebesta1954; schebesta1962a; skeatandblagden1906; whiting1964,Binford_2001_Table_5.01, +B90,,1920,B008,0.193,,petersonandlong1986; thomson1939; wills1980,Binford_2001_Table_5.01, +B91,,1920,B008,0.088,,chaloupka1981; leichhardt1847; mccarthyandmacarthur1960; spencer1966,Binford_2001_Table_5.01, +B92,,1960,B008,0.23,,biernoff1979; howells1937; mcarthur1960; thomson1949,Binford_2001_Table_5.01, +B93,,1930,B008,0.31,,thomson1933; thomson1934,Binford_2001_Table_5.01, +B94,,1937,B008,0.08,,petersonandlong1986; sharp1934; sharp1940,Binford_2001_Table_5.01, +B95,,1920,B008,0.3749,,goodale1962; hart1970; hartandpilling1960; howells1937; petersonandlong1986,Binford_2001_Table_5.01, +B96,,1880,B008,0.5,,andersonandrobins1988; roth1909,Binford_2001_Table_5.01, +B97,,1930,B008,0.2288,,petersonandlong1986; rose1960; tindaleperscomm1967,Binford_2001_Table_5.01, +B98,,1926,B008,0.5769,Note Binford (2001) gives density as 0.58 persons per km2,haleandtindale1933; roth1909,Binford_2001_Table_5.01, +B99,,1900,B008,0.445,Note Binford (2001) gives density as 0.45 persons per km2,stanner1933,Binford_2001_Table_5.01, +B1,,1970,B009,1,,"brosius1986:174; harrison1949:135, 139; sellato1994:143-44; urquhart1951:515, 505",Binford_2001_Table_5.01, +B10,,1900,B009,1,,"bailey1863:296, 308; seligmannandseligmann1911:43-44",Binford_2001_Table_5.01, +B100,,NA,B009,1,,blundell1980:106-7; love1936:93,Binford_2001_Table_5.01, +B101,,1934,B009,1,,kaberry1939,Binford_2001_Table_5.01, +B102,,1909,B009,1,,memmott1983a:367,Binford_2001_Table_5.01, +B103,,1928,B009,1,,tindale1962a:269,Binford_2001_Table_5.01, +B104,,NA,B009,1,,,Binford_2001_Table_5.01, +B105,,1900,B009,1,,harris1978:128,Binford_2001_Table_5.01, +B106,,1910,B009,1,,radcliffebrown1912:146,Binford_2001_Table_5.01, +B107,,1870,B009,1,,brayshaw1990:31; lumholtz1889:194,Binford_2001_Table_5.01, +B108,,1934,B009,1,,nind1831:22,Binford_2001_Table_5.01, +B109,,1965,B009,1,,"meggitt1962:47, 50, 56",Binford_2001_Table_5.01, +B11,,1972,B009,1,,"morris1982a:36-37, 174",Binford_2001_Table_5.01, +B110,,1880,B009,1,,petersonandlong1986:116-17; tonkinson1978:53,Binford_2001_Table_5.01, +B111,,1960,B009,1,,harris1978:128,Binford_2001_Table_5.01, +B112,,1968,B009,1,,"petersonandlong1986:112-15, 124",Binford_2001_Table_5.01, +B113,,1936,B009,1,,long1971:264-65; meggitt1962:55; petersonandlong1986:104-11,Binford_2001_Table_5.01, +B114,,1848,B009,1,,colliverandwoolston1975:93,Binford_2001_Table_5.01, +B115,,1840,B009,1,,morwood1987:339; winterbotham1980:41,Binford_2001_Table_5.01, +B116,,1900,B009,1,,duncankemp1964,Binford_2001_Table_5.01, +B117,,1965,B009,1,,binfordfieldnotes1974; denham1975:120; oconnell1987:85,Binford_2001_Table_5.01, +B118,,1968,B009,1,,gould1977:21-22,Binford_2001_Table_5.01, +B119,,1850,B009,1,,gardner1978:239-46,Binford_2001_Table_5.01, +B12,,1965,B009,1,,headlandperscomm1993,Binford_2001_Table_5.01, +B120,,1968,B009,1,,"brokensha1975:19, 33; layton1983:26; petersonandlong1986:127; tindale1972:224, 244",Binford_2001_Table_5.01, +B121,,1900,B009,1,,"gason1879:257, 264; sturt1849a:1:254, 261, 296, 316, 407, 414; sturt1849a:2:70, 74",Binford_2001_Table_5.01, +B122,,1870,B009,1,,roberts1953; schulze1891,Binford_2001_Table_5.01, +B123,,1922,B009,1,,tindaleperscomm1965,Binford_2001_Table_5.01, +B124,,1900,B009,1,,"spencerandgillen1927:15, 506",Binford_2001_Table_5.01, +B125,,1880,B009,1,,parker1905,Binford_2001_Table_5.01, +B126,,1912,B009,1,,petersonandlong1986:129-34,Binford_2001_Table_5.01, +B127,,1941,B009,1,,berndtandberndt1944; long1970,Binford_2001_Table_5.01, +B128,,1890,B009,1,,,Binford_2001_Table_5.01, +B129,,1840,B009,1,,cawthorne1844; draperperscomm1993,Binford_2001_Table_5.01, +B13,,1979,B009,1,,"rai1982:63, 66, 119",Binford_2001_Table_5.01, +B130,,1910,B009,1,,,Binford_2001_Table_5.01, +B131,,1850,B009,2,,,Binford_2001_Table_5.01, +B132,,1850,B009,1,,nind1831:28,Binford_2001_Table_5.01, +B133,,1850,B009,2,,williams1985:75,Binford_2001_Table_5.01, +B134,,1850,B009,1,,"gaughwinandsullivan1984:92, 94",Binford_2001_Table_5.01, +B135,,1850,B009,1,,fisonandhowitt1880:209; howitt1904:773-77,Binford_2001_Table_5.01, +B136,,1830,B009,1,,"hiatt1967:201; jones1971:278, 279",Binford_2001_Table_5.01, +B137,,1830,B009,1,,"hiatt1967:201; jones1971:278, 279",Binford_2001_Table_5.01, +B14,,1924,B009,1,,"vanoverbergh1925:195, 196-98, 432",Binford_2001_Table_5.01, +B143,,1900,B009,1,,bowen1976:24-30; griffen1959:vii,Binford_2001_Table_5.01, +B144,,1870,B009,2,,"bean1972:76; kroeber1925a:692, 706-7; strong1929a:43-56",Binford_2001_Table_5.01, +B145,,1870,B009,2,,strong1929a:187-19,Binford_2001_Table_5.01, +B146,,1880,B009,1,,meigs1939:18-20,Binford_2001_Table_5.01, +B147,,1850,B009,1,,"kroeber1925a:712, 719; luomala1978:597",Binford_2001_Table_5.01, +B148,,1860,B009,2,,cook1955:40,Binford_2001_Table_5.01, +B149,,1870,B009,2,,kroeber1925a:617-18,Binford_2001_Table_5.01, +B15,,1940,B009,2,,furerhaimendorf1943b:366,Binford_2001_Table_5.01, +B150,,1860,B009,2,,oxendine1983:50-57,Binford_2001_Table_5.01, +B151,,1860,B009,1,,cook1955:40,Binford_2001_Table_5.01, +B152,,1850,B009,1,,voegelin1938:39-43,Binford_2001_Table_5.01, +B153,,1850,B009,2,,goldschmidt1948:445,Binford_2001_Table_5.01, +B154,,1850,B009,1,,cook1955:35,Binford_2001_Table_5.01, +B155,,1850,B009,2,,johnson1978:352,Binford_2001_Table_5.01, +B156,,1770,B009,2,,,Binford_2001_Table_5.01, +B157,,1870,B009,1,,gifford1932b:42-47,Binford_2001_Table_5.01, +B158,,1860,B009,2,,barrett1908; gifford1926b; loeb1926b,Binford_2001_Table_5.01, +B159,,1860,B009,2,,cook1956:116-17,Binford_2001_Table_5.01, +B16,,1963,B009,1,,"pookajorn1985:187, 207; velder1963:186-87",Binford_2001_Table_5.01, +B160,,1860,B009,2,,"dubois1935:28, 29",Binford_2001_Table_5.01, +B161,,1860,B009,2,,cookandheizer1965:71,Binford_2001_Table_5.01, +B162,,1860,B009,2,,dixon1910,Binford_2001_Table_5.01, +B163,,1850,B009,2,,wilsonandtowne1978:388,Binford_2001_Table_5.01, +B164,,1805,B009,2,,gifford1926b,Binford_2001_Table_5.01, +B165,,1860,B009,2,,cook1956:118,Binford_2001_Table_5.01, +B166,,1860,B009,2,,cook1956:103-5,Binford_2001_Table_5.01, +B167,,NA,B009,2,,,Binford_2001_Table_5.01, +B168,,1850,B009,2,,"collierandthalman1991:72, 177-78",Binford_2001_Table_5.01, +B169,,NA,B009,2,,cook1956:102,Binford_2001_Table_5.01, +B17,,1963,B009,1,,"gardner1965:101; gardner1988:93, 94",Binford_2001_Table_5.01, +B170,,NA,B009,2,,cook1955:122,Binford_2001_Table_5.01, +B171,,1850,B009,2,,cook1956:107,Binford_2001_Table_5.01, +B172,,1860,B009,2,,cook1956:124,Binford_2001_Table_5.01, +B173,,1860,B009,2,,cook1956:114,Binford_2001_Table_5.01, +B174,,1860,B009,1,,gifford1926b; waterman1918,Binford_2001_Table_5.01, +B175,,1850,B009,1,,cook1955:36,Binford_2001_Table_5.01, +B176,,1860,B009,1,,gray1987:37-40,Binford_2001_Table_5.01, +B177,,1860,B009,1,,gifford1939; miller1978,Binford_2001_Table_5.01, +B178,,1870,B009,2,,cook1956:101; drucker1940:226-27,Binford_2001_Table_5.01, +B179,,1860,B009,1,,cookandheizer1965:70,Binford_2001_Table_5.01, +B18,,1963,B009,1,,senandsen1955:172; williams1974:79,Binford_2001_Table_5.01, +B180,,1860,B009,2,,cook1956:100,Binford_2001_Table_5.01, +B181,,1870,B009,2,,gray1987:56,Binford_2001_Table_5.01, +B182,,1860,B009,2,,cook1956:98,Binford_2001_Table_5.01, +B183,,1860,B009,1,,gifford1926b,Binford_2001_Table_5.01, +B184,,1860,B009,2,,cook1956:97,Binford_2001_Table_5.01, +B185,,1850,B009,1,,cookandheizer1965:71,Binford_2001_Table_5.01, +B186,,1850,B009,2,,cook1956:101; schalk1978:125,Binford_2001_Table_5.01, +B187,,1860,B009,1,,kroeber1962:36-37,Binford_2001_Table_5.01, +B188,,1860,B009,2,,ray1963:204,Binford_2001_Table_5.01, +B189,,1860,B009,1,,"spier1930:5-8, 23",Binford_2001_Table_5.01, +B19,,1946,B009,2,,ehrenfels1952:66-67,Binford_2001_Table_5.01, +B190,,1760,B009,1,,aschmann1967:122,Binford_2001_Table_5.01, +B191,,1570,B009,1,,,Binford_2001_Table_5.01, +B192,,1860,B009,1,,steward1938:85-91,Binford_2001_Table_5.01, +B193,,1800,B009,1,,stiles1906:80-87,Binford_2001_Table_5.01, +B194,,1715,B009,1,,,Binford_2001_Table_5.01, +B195,,1850,B009,1,,steward1938:84,Binford_2001_Table_5.01, +B196,,1870,B009,2,,gifford1932a:180-89,Binford_2001_Table_5.01, +B197,,1860,B009,1,,steward1938:80-84,Binford_2001_Table_5.01, +B198,,1870,B009,2,,"hayden1936:142, 165-68, 70; kroeber1935:45",Binford_2001_Table_5.01, +B199,,1860,B009,1,,voegelin1938:48,Binford_2001_Table_5.01, +B2,,1968,B009,2,,eder1978:56; eder1987:105,Binford_2001_Table_5.01, +B20,,1974,B009,1,,bhanu1992:table 1.1,Binford_2001_Table_5.01, +B200,,1860,B009,1,,"steward1938:77, 78, 80",Binford_2001_Table_5.01, +B201,,1860,B009,1,,kelly1964; kellyandfowler1986,Binford_2001_Table_5.01, +B202,,1870,B009,2,,liljebladandfowler1986:414-15; steward1938:110,Binford_2001_Table_5.01, +B203,,1860,B009,1,,steward1938:110,Binford_2001_Table_5.01, +B204,,1860,B009,1,,"eulerandfowler1966:35, 101; kelly1964:11-22; stoffleandevans1978:183",Binford_2001_Table_5.01, +B205,,1870,B009,1,,davis1965:36,Binford_2001_Table_5.01, +B206,,1860,B009,1,,steward1938:58-59,Binford_2001_Table_5.01, +B207,,1860,B009,1,,gouldperscomm1992,Binford_2001_Table_5.01, +B208,,1860,B009,1,,"fowlerandliljeblad1986:443, 457",Binford_2001_Table_5.01, +B209,,1860,B009,1,,"janetski1983:53-54, 75",Binford_2001_Table_5.01, +B21,,1978,B009,2,,bird1983:58,Binford_2001_Table_5.01, +B210,,1870,B009,1,,"fowler1992:35-37, 154",Binford_2001_Table_5.01, +B211,,1860,B009,1,,steward1938:61,Binford_2001_Table_5.01, +B212,,1870,B009,1,,gifford1926b; riddell1960,Binford_2001_Table_5.01, +B213,,1870,B009,1,,steward1938:177,Binford_2001_Table_5.01, +B214,,1860,B009,1,,steward1938:132,Binford_2001_Table_5.01, +B215,,1870,B009,1,,steward1938:124-27,Binford_2001_Table_5.01, +B216,,1860,B009,1,,lowie1924:284; steward1938:161,Binford_2001_Table_5.01, +B217,,1860,B009,1,,steward1938:117,Binford_2001_Table_5.01, +B218,,1860,B009,1,,"steward1938:101, 108",Binford_2001_Table_5.01, +B219,,1860,B009,1,,cook1955:37,Binford_2001_Table_5.01, +B22,,1900,B009,2,,"landor1893:89, 125; watanabe1964a:8-9",Binford_2001_Table_5.01, +B221,,1860,B009,1,,steward1938:174,Binford_2001_Table_5.01, +B222,,1860,B009,1,,callawayetal1986:352; smith1974:123,Binford_2001_Table_5.01, +B223,,1870,B009,1,,lowie1924:284,Binford_2001_Table_5.01, +B224,,1860,B009,1,,steward1938:130,Binford_2001_Table_5.01, +B225,,1850,B009,1,,price1962:40,Binford_2001_Table_5.01, +B226,,1870,B009,1,,"kelly1932:78, 105",Binford_2001_Table_5.01, +B227,,1860,B009,1,,shimkin1947:255; steward1974a:373,Binford_2001_Table_5.01, +B228,,1860,B009,1,,steward1938:145-46,Binford_2001_Table_5.01, +B229,,1860,B009,1,,steward1938:209,Binford_2001_Table_5.01, +B23,,1900,B009,1,"Binford noted this was an ""estimate""",qiu1983,Binford_2001_Table_5.01, +B230,,1860,B009,1,,steward1974b:147,Binford_2001_Table_5.01, +B231,,1870,B009,1,,whiting1950:19,Binford_2001_Table_5.01, +B232,,1860,B009,1,,steward1938:186-89,Binford_2001_Table_5.01, +B233,,1860,B009,1,,steward1938:113,Binford_2001_Table_5.01, +B234,,1860,B009,1,,steward1974b:147,Binford_2001_Table_5.01, +B24,,1900,B009,1,,lee1967:24; shimkin1939:150,Binford_2001_Table_5.01, +B240,,1880,B009,1,,basehartperscomm1972; swanton1952:323,Binford_2001_Table_5.01, +B241,,1870,B009,1,,wallaceandhoebel1952:23,Binford_2001_Table_5.01, +B242,,1880,B009,1,,basehart1972:5; morice1906b:496; opler1937:177-82,Binford_2001_Table_5.01, +B243,,1870,B009,1,,bamforth1988:106-9,Binford_2001_Table_5.01, +B244,,1860,B009,1,,bamforth1988:106-9,Binford_2001_Table_5.01, +B245,,1860,B009,1,,"moore1987:180-86, 194",Binford_2001_Table_5.01, +B246,,1860,B009,1,,flannery1953:54; gussowetal1974:23,Binford_2001_Table_5.01, +B248,,1870,B009,1,,bamforth1988:106-9; denig1961:165,Binford_2001_Table_5.01, +B249,,1870,B009,1,,culbertson1952:135,Binford_2001_Table_5.01, +B25,,1920,B009,2,,shternberg1933:385,Binford_2001_Table_5.01, +B250,,1880,B009,1,,chamberlain1892:551,Binford_2001_Table_5.01, +B252,,1860,B009,1,,steward1938:201-6,Binford_2001_Table_5.01, +B253,,1870,B009,1,,bamforth1988:106-9; swanton1952:278,Binford_2001_Table_5.01, +B254,,1850,B009,1,,skinner1914:477,Binford_2001_Table_5.01, +B255,,1850,B009,1,,ewers1955:303,Binford_2001_Table_5.01, +B256,,1850,B009,1,,bushnell1922:26; ewers1955:303,Binford_2001_Table_5.01, +B257,,1870,B009,1,,bushnell1922:32-33; culbertson1952:107; lowrieandclarke1832,Binford_2001_Table_5.01, +B258,,1850,B009,1,,"bamforth1988:106-109; bushnell1922:20, 21",Binford_2001_Table_5.01, +B259,,1850,B009,1,,bamforth1988:106-109,Binford_2001_Table_5.01, +B26,,1900,B009,1,,"kreynovich1979:191-92, 196",Binford_2001_Table_5.01, +B260,,1880,B009,1,,bamforth1988:106-109; jenness1938:10-11,Binford_2001_Table_5.01, +B268,,1880,B009,2,,"suttles1990:453, 473",Binford_2001_Table_5.01, +B269,,1860,B009,2,,boas1891a; drucker1939,Binford_2001_Table_5.01, +B27,,1933,B009,1,,"popov1966:12, 103",Binford_2001_Table_5.01, +B270,,1870,B009,2,,smith1940a:7-14,Binford_2001_Table_5.01, +B271,,1850,B009,2,,elmendorf1960:32-55,Binford_2001_Table_5.01, +B272,,1880,B009,2,,taylor1974a:187,Binford_2001_Table_5.01, +B273,,1880,B009,2,,drucker1951:222-49; koppert1930a:53,Binford_2001_Table_5.01, +B274,,1850,B009,2,,ray1938:38-41,Binford_2001_Table_5.01, +B275,,1860,B009,2,,boyd1990:136; zenk1990:572,Binford_2001_Table_5.01, +B276,,1860,B009,2,,teit1906b:199,Binford_2001_Table_5.01, +B277,,1880,B009,2,,stern1934:7,Binford_2001_Table_5.01, +B278,,1860,B009,2,,schalk1978:165,Binford_2001_Table_5.01, +B279,,1880,B009,2,,duff1952:45,Binford_2001_Table_5.01, +B28,,1860,B009,1,,krupnik1983a:94-95,Binford_2001_Table_5.01, +B280,,1880,B009,2,,suttles1990:462; wilson1866:286,Binford_2001_Table_5.01, +B281,,NA,B009,2,,seaburgandmiller1990:561,Binford_2001_Table_5.01, +B282,,1860,B009,2,,kennedyandbouchard1990:450-51,Binford_2001_Table_5.01, +B283,,1880,B009,2,,hilton1990:313,Binford_2001_Table_5.01, +B284,,1880,B009,2,,pettitt1950:3-5,Binford_2001_Table_5.01, +B285,,1860,B009,2,,boyd1990:136; suttles1990:456,Binford_2001_Table_5.01, +B286,,1860,B009,2,,swan1870:2,Binford_2001_Table_5.01, +B287,,1880,B009,2,,schalk1978:165,Binford_2001_Table_5.01, +B288,,1890,B009,2,,schalk1978:165,Binford_2001_Table_5.01, +B289,,1880,B009,2,,"schalk1978:126, 165",Binford_2001_Table_5.01, +B290,,1890,B009,2,,"schalk1978:126, 165",Binford_2001_Table_5.01, +B291,,1880,B009,2,,schalk1978:165,Binford_2001_Table_5.01, +B292,,1880,B009,2,,"schalk1978:127, 165",Binford_2001_Table_5.01, +B293,,1880,B009,2,,adams1973:8,Binford_2001_Table_5.01, +B294,,1840,B009,2,,knechtandjordan1985:21,Binford_2001_Table_5.01, +B295,,1890,B009,2,,birketsmithanddelaguna1938:19,Binford_2001_Table_5.01, +B296,,1850,B009,2,,michael1967:306,Binford_2001_Table_5.01, +B297,,1930,B009,2,,delaguna1956:256; michael1967:306,Binford_2001_Table_5.01, +B298,,1830,B009,2,,lantis1970a:178; mitchellanddonald1988:319-21,Binford_2001_Table_5.01, +B299,,1930,B009,2,,lantis1946:163-64,Binford_2001_Table_5.01, +B3,,1900,B009,1,,hagen1908:25-28; persoon1989:511,Binford_2001_Table_5.01, +B315,,1850,B009,1,,murdock1980:130,Binford_2001_Table_5.01, +B316,,1860,B009,1,,,Binford_2001_Table_5.01, +B317,,1870,B009,2,,teit1928:93-108,Binford_2001_Table_5.01, +B318,,1880,B009,1,,,Binford_2001_Table_5.01, +B319,,1860,B009,2,,spierandsapir1930:166-67,Binford_2001_Table_5.01, +B320,,1860,B009,1,,"teit1930:39, 331",Binford_2001_Table_5.01, +B321,,1880,B009,2,,clineetal1938:87,Binford_2001_Table_5.01, +B322,,1860,B009,2,,teit1930:207-11,Binford_2001_Table_5.01, +B323,,1870,B009,1,,teit1930:211,Binford_2001_Table_5.01, +B324,,1850,B009,1,,"spinden1908:174-75, 196, 240",Binford_2001_Table_5.01, +B325,,1860,B009,2,,teit1900:241-48,Binford_2001_Table_5.01, +B326,,1870,B009,1,,teit1930:331,Binford_2001_Table_5.01, +B327,,1870,B009,1,,jenness1935:13,Binford_2001_Table_5.01, +B328,,1800,B009,2,,kinietz1947:247,Binford_2001_Table_5.01, +B329,,1700,B009,1,,speck1922:143-44,Binford_2001_Table_5.01, +B330,,1860,B009,1,,teit1930:331; turneyhigh1937:98,Binford_2001_Table_5.01, +B331,,1880,B009,1,,hickerson1967:54-55,Binford_2001_Table_5.01, +B332,,1870,B009,1,,bishop1978:222-26,Binford_2001_Table_5.01, +B333,,1850,B009,2,,teit1905:457-66,Binford_2001_Table_5.01, +B334,,1940,B009,2,,"dunning1959:57, 58, 84; rogers1969:31",Binford_2001_Table_5.01, +B335,,1900,B009,1,,"rogers1963b:67, 76, 88; rogers1969:25, 31",Binford_2001_Table_5.01, +B336,,1865,B009,1,,goldman1940:334,Binford_2001_Table_5.01, +B337,,1800,B009,1,,hickerson1962:30-33,Binford_2001_Table_5.01, +B338,,1880,B009,1,,rogers1963a:23; rogers1969:30,Binford_2001_Table_5.01, +B339,,1850,B009,1,,rogers1969:43,Binford_2001_Table_5.01, +B340,,1900,B009,1,,"morantz1983:89, 106; rogers1969:31",Binford_2001_Table_5.01, +B341,,1890,B009,1,,rogersandblack1976:19,Binford_2001_Table_5.01, +B342,,1880,B009,1,,tanner1944:592-609,Binford_2001_Table_5.01, +B343,,1880,B009,1,,dennison1981:434-35; jenness1937:14,Binford_2001_Table_5.01, +B344,,1850,B009,1,,ives1985:166-67,Binford_2001_Table_5.01, +B345,,1860,B009,1,,"helm1961:50-52, 169; ives1985:166-67; janes1983:50-51",Binford_2001_Table_5.01, +B346,,1920,B009,1,,honigmann1949:33-37,Binford_2001_Table_5.01, +B347,,1870,B009,1,,maclachlan1981:460-61,Binford_2001_Table_5.01, +B348,,1880,B009,2,,boasandfarrand1899; lane1981,Binford_2001_Table_5.01, +B349,,1880,B009,2,,jenness1943:485-86,Binford_2001_Table_5.01, +B35,,1950,B009,2,,,Binford_2001_Table_5.01, +B350,,1800,B009,1,,gillespie1981:334-35,Binford_2001_Table_5.01, +B351,,1880,B009,1,,crowandobley1981:511,Binford_2001_Table_5.01, +B352,,1860,B009,1,,"helm1961:169; savishinsky1974:47, 54",Binford_2001_Table_5.01, +B353,,1900,B009,1,,honigmann1956b:58; honigmann1981:228-29,Binford_2001_Table_5.01, +B354,,1880,B009,1,,clark1974:96,Binford_2001_Table_5.01, +B355,,1880,B009,1,,smith1976:19; smith1978a:81; smith1981:275,Binford_2001_Table_5.01, +B356,,1880,B009,1,,"slobodin1969:58-59, 64",Binford_2001_Table_5.01, +B357,,1880,B009,2,,michael1967:307; sullivan1942:10,Binford_2001_Table_5.01, +B358,,1860,B009,1,,mackenzie1966:49-56,Binford_2001_Table_5.01, +B359,,1930,B009,2,,mckennan1959:18,Binford_2001_Table_5.01, +B36,,1960,B009,1,,metraux1948:863,Binford_2001_Table_5.01, +B360,,1900,B009,1,,morantz1983:106,Binford_2001_Table_5.01, +B361,,1860,B009,1,,helm1968:120,Binford_2001_Table_5.01, +B362,,1870,B009,2,,michael1967:306,Binford_2001_Table_5.01, +B363,,1890,B009,1,,legros1982:68-69,Binford_2001_Table_5.01, +B364,,1860,B009,2,,snow1981:615,Binford_2001_Table_5.01, +B365,,1890,B009,1,,"henriksen1973:58-59, 68",Binford_2001_Table_5.01, +B369,,1870,B009,2,,ray1992:295,Binford_2001_Table_5.01, +B37,,1968,B009,1,,kloos1977:116,Binford_2001_Table_5.01, +B370,,1890,B009,1,,burch1975:257-58,Binford_2001_Table_5.01, +B371,,1880,B009,2,,burch1975:269-72; burch1984:305,Binford_2001_Table_5.01, +B372,,1890,B009,1,,"taylor1974:15-19, 64",Binford_2001_Table_5.01, +B373,,1890,B009,1,,"willmott1960:48, 53",Binford_2001_Table_5.01, +B374,,1900,B009,1,,birketsmith1929:67-69,Binford_2001_Table_5.01, +B375,,1900,B009,1,,binfordfieldnotes1971; burch1975:255,Binford_2001_Table_5.01, +B377,,1950,B009,1,,amsden1977:224; binford1991a:80,Binford_2001_Table_5.01, +B378,,1910,B009,2,,mcghee1988:11; tyrrell1897:167,Binford_2001_Table_5.01, +B379,,1920,B009,2,,moore1923:340,Binford_2001_Table_5.01, +B38,,1989,B009,1,,gragson1989:289-90; greavesperscomm1993,Binford_2001_Table_5.01, +B380,,1880,B009,2,,burch1975:260-69,Binford_2001_Table_5.01, +B381,,1920,B009,1,,"jenness1922:30, 55, 57; rasmussen1932:70, 78-85",Binford_2001_Table_5.01, +B382,,1920,B009,1,,"briggs1970:15, 372-74",Binford_2001_Table_5.01, +B383,,1880,B009,1,,"rae1850:40, 48, 49",Binford_2001_Table_5.01, +B384,,1920,B009,1,,mathiassen1928:32,Binford_2001_Table_5.01, +B385,,1880,B009,1,,"perry1898:131, 171-72, 267-68, 336, 386, 431; york1875:179",Binford_2001_Table_5.01, +B386,,1880,B009,1,,"boas1888:426; hantzsch1977:39, 99; low1906:57-58",Binford_2001_Table_5.01, +B387,,1880,B009,1,,"mclintock1860:8, 230, 232, 235, 239, 240",Binford_2001_Table_5.01, +B388,,1880,B009,2,,mirsky1937a:53; peterson1984:623,Binford_2001_Table_5.01, +B389,,1880,B009,2,,simpson1875:237; spencer1959:15,Binford_2001_Table_5.01, +B39,,1960,B009,2,,wilbert1957:90,Binford_2001_Table_5.01, +B390,,1880,B009,1,,"ekblaw1948:3; steensby1910:266, 296, 324",Binford_2001_Table_5.01, +B4,,1989,B009,1,,rizvi1990:8,Binford_2001_Table_5.01, +B40,,1990,B009,1,,politis1992:3; politisperscomm1992,Binford_2001_Table_5.01, +B41,,1920,B009,2,,baldus1937:115-23; levistrauss1936:269,Binford_2001_Table_5.01, +B42,,1901,B009,1,,metraux1946guato:410,Binford_2001_Table_5.01, +B43,,1940,B009,1,,holmberg1950:51,Binford_2001_Table_5.01, +B44,,1968,B009,1,,"stearman1989:26, 31",Binford_2001_Table_5.01, +B45,,1938,B009,1,,levistrauss1970:288; oberg1953:86,Binford_2001_Table_5.01, +B46,,1600,B009,2,,"hann1991:42, 159, 168",Binford_2001_Table_5.01, +B47,,1975,B009,1,,"clastres1972:163; oberg1953:18, 38",Binford_2001_Table_5.01, +B48,,1880,B009,1,,metrauxandbaldus1946:534,Binford_2001_Table_5.01, +B49,,1954,B009,1,,kozaketal1979:360,Binford_2001_Table_5.01, +B5,,1952,B009,1,,bose1964:305,Binford_2001_Table_5.01, +B50,,1910,B009,1,,"henry1964:11, 50, 159",Binford_2001_Table_5.01, +B51,,1870,B009,1,,cooper1946c:150; goni1988:145,Binford_2001_Table_5.01, +B52,,1880,B009,1,,cooper1946d,Binford_2001_Table_5.01, +B53,,1900,B009,1,,birdperscomm1970,Binford_2001_Table_5.01, +B54,,1880,B009,1,,chapman1982:58; cooper1946b:117; gusinde1931:205,Binford_2001_Table_5.01, +B55,,1870,B009,1,,"gusinde1937a:384, 387",Binford_2001_Table_5.01, +B6,,1906,B009,1,,"temple1903:62, 77, 84",Binford_2001_Table_5.01, +B60,,1980,B009,1,,"bahuchet1988:131; hudson1990:58, 63, 71",Binford_2001_Table_5.01, +B61,,1976,B009,1,,"heymer1980:178, 193-96",Binford_2001_Table_5.01, +B62,,1977,B009,1,,"terashima1980:234, 235, 262",Binford_2001_Table_5.01, +B63,,1980,B009,1,,cavallisforza1986c:32-33; valloisandmarquer1976:113,Binford_2001_Table_5.01, +B64,,1980,B009,1,,baileyandpeacock1988:99-100; fisherandstrickland1989:476,Binford_2001_Table_5.01, +B65,,1930,B009,2,,"tanno1976:107, 108, 130; turnbull1965a:97, 98",Binford_2001_Table_5.01, +B66,,NA,B009,1,,kellyandpoyer1993:1,Binford_2001_Table_5.01, +B67,,1950,B009,1,,clark1951:65,Binford_2001_Table_5.01, +B68,,1920,B009,1,,fourie1927:51,Binford_2001_Table_5.01, +B69,,1910,B009,1,,blurtonjonesetal1992:164; hawkesetal1989:344; woodburn1968b:104,Binford_2001_Table_5.01, +B7,,1903,B009,2,,fox1952:188; reed1904:19,Binford_2001_Table_5.01, +B70,,1920,B009,2,,huntingford1951:8; huntingford1954:128,Binford_2001_Table_5.01, +B71,,1928,B009,1,,bleek1929:109; decastroandalmeida1956:9,Binford_2001_Table_5.01, +B72,,1950,B009,1,,lee1972a:330; marshall1960:328,Binford_2001_Table_5.01, +B73,,1910,B009,1,,guenther1986:186; schapera1930:78,Binford_2001_Table_5.01, +B74,,1962,B009,1,,silberbauer1972:296; silberbauer1981a:195-98,Binford_2001_Table_5.01, +B75,,1976,B009,1,,kentandvierich1989,Binford_2001_Table_5.01, +B76,,1968,B009,1,,eibleibesfeldt1972:32-33,Binford_2001_Table_5.01, +B77,,1920,B009,1,,dart1937b:160-65; steyn1984:118,Binford_2001_Table_5.01, +B78,,1950,B009,1,,potgieter1955:8,Binford_2001_Table_5.01, +B79,,NA,B009,1,,"bleek1924a:viii, ix",Binford_2001_Table_5.01, +B8,,1870,B009,1,,radcliffebrown1948:28,Binford_2001_Table_5.01, +B82,,1848,B009,1,,moore1979:39,Binford_2001_Table_5.01, +B83,,1900,B009,1,,basedow1907; howells1937; parkhouse1895,Binford_2001_Table_5.01, +B84,,1978,B009,1,,altman1987:15-27; berndtandberndt1970:3-14,Binford_2001_Table_5.01, +B85,,1970,B009,1,,peterson1970:11; peterson1973:185; peterson1992; petersonandlong1986:40,Binford_2001_Table_5.01, +B86,,1973,B009,1,,meehan1982:31-41,Binford_2001_Table_5.01, +B87,,1950,B009,2,,peterson1972:26; petersonandlong1986:40,Binford_2001_Table_5.01, +B88,,1930,B009,1,,thomson1949:16; warner1958:127-28,Binford_2001_Table_5.01, +B89,,1920,B009,1,,kaberry1935:428,Binford_2001_Table_5.01, +B9,,1920,B009,1,,"brandt1961:131-33; rambo1985:4, 33; schebesta1962a:17, 220",Binford_2001_Table_5.01, +B90,,1920,B009,1,Binford estimate from photos,wills1980:85,Binford_2001_Table_5.01, +B91,,1920,B009,1,,leichhardt1847:507; mccarthyandmacarthur1960:90-96,Binford_2001_Table_5.01, +B92,,1960,B009,1,,biernoff1979:12; mcarthur1960:95; thomson1949:4,Binford_2001_Table_5.01, +B93,,1930,B009,1,,thomson1934:241,Binford_2001_Table_5.01, +B94,,1937,B009,1,,"petersonandlong1986:88-89, 95-99; sharp1934:425",Binford_2001_Table_5.01, +B95,,1920,B009,1,,"hartandpilling1960:35, 36, 65, 66",Binford_2001_Table_5.01, +B96,,1880,B009,1,,"andersonandrobins1988:187, 191-92",Binford_2001_Table_5.01, +B97,,1930,B009,1,,petersonandlong1986:78-79,Binford_2001_Table_5.01, +B98,,1926,B009,1,"Changed to ""1"" based on Binford (2001:279): ""The Walmbaria turned out upon reexamination (Hale and Tindale 1933) not to be stationary.""",haleandtindale1933:77-78,Binford_2001_Table_5.01,"Changed to ""1"" based on Binford (2001:279): ""The Walmbaria turned out upon reexamination (Hale and Tindale 1933) not to be stationary.""" +B99,,1900,B009,1,"Binford noted this was an ""estimate""",stanner1933:393,Binford_2001_Table_5.01, diff --git a/raw/societies.csv b/raw/societies.csv new file mode 100644 index 0000000..019ce06 --- /dev/null +++ b/raw/societies.csv @@ -0,0 +1,340 @@ +id,xd_id,pref_name_for_society,glottocode,ORIG_name_and_ID_in_this_dataset,alt_names_by_society,main_focal_year,HRAF_name_ID,HRAF_link,origLat,origLong,Lat,Long,Comment,glottocode_comment +B72,xd1,!Kung,juho1239,!Kung (B72),"Kung Bushmen, !Kung (Was Nyae), Was Nyae",1950,San (FX10),http://ehrafworldcultures.yale.edu/collection?owc=FX10,-20,21.18,-20,21.18,Original, +B296,xd1000,Kuskowagmut,kusk1241,Kuskowagmut (B296),,1850,,,61.01,-161.55,61.01,-161.55,Original, +B322,xd1001,Syilx,sout2963,Okanagan (B322),Okanagan,1860,,,49.46,-119.63,49.46,-119.63,Original, +B335,xd1003,Round Lake Ojibwa,seve1241,Round Lake Ojibwa (B335),"Weagamow, North Caribou Lake, Round Lake",1900,,,52.71,-90.62,52.71,-90.62,Original, +B339,xd1004,North Albany Ojibwa,wini1244,North Albany Ojibwa (B339),North Albany,1850,,,51.22,-83.1,51.22,-83.1,Original, +B340,xd1005,Waswanipi Cree,sout2978,Waswanipi Cree (B340),Waswanipi,1900,,,49.78,-76.64,49.78,-76.64,Original, +B341,xd1006,Wegamon Ojibwa,seve1241,Wegamon Ojibwa (B341),Wegamon,1890,,,52.79,-90.64,52.79,-90.64,Original, +B350,xd1007,Mountain Dene,nort2942,Mountain (B350),"Mountain, Sahaptin, Sahtu, Sahtu Dene",1800,,,63.68,-125.37,63.68,-125.37,Original, +B351,xd1008,Hän,hann1241,Han (B351),Han,1880,,,64.79,-141.2,64.79,-141.2,Original, +B352,xd1009,Hare,nort2942,Hare (B352),"K'ahsho Got'ine, Sahtu, Sahtu Dene",1860,,,67.47,-125,67.47,-125,Original, +B354,xd1010,Koyukon,koyu1237,Koyukon (B354),,1880,,,66.52,-153.78,66.52,-153.78,Original, +B360,xd1011,Waskaganish,sout2978,Rupert House Cree (B360),"Rupert House Cree, Rupert House",1900,,,51.08,-77.81,51.08,-77.81,Original, +B363,xd1012,Tutchone,nort2941,Tutchone (B363),,1890,,,61.24,-138.21,61.24,-138.21,Original, +B364,xd1013,Holikachuk,holi1241,Holikachuk (B364),,1860,,,63.33,-157.54,63.33,-157.54,Original, +B369,xd1014,Norton Sound Inuit,kusk1241,Norton Sound Inuit (B369),Norton Sound Eskimo,1870,,,63.98,-160.75,63.98,-160.75,Original, +B370,xd1015,Kobuk Inuit,kobu1239,Kobuk Inuit (B370),Kobuk Eskimo,1890,,,66.95,-156.94,66.95,-156.94,Original, +B371,xd1016,Kotzebue Sound Inuit,kotz1238,Kotzebue Sound Inuit (B371),Kotzebue Sound,1880,,,66.77,-161.53,66.77,-161.53,Original, +B373,xd1017,Kuujjuarapik,queb1248,Great Whale Inuit (B373),"Great Whale Eskimo, Great Whale Inuit, Kuujjuarapik, Kuujjuaraapik",1890,,,55.32,-77.69,55.32,-77.69,Original, +B375,xd1018,Noatak Inuit,nort2945,Noatak Inuit (B375),"Nuataaq Inupiaq, Nuataagmiut, Noatak Eskimo",1900,,,68.09,-160,68.09,-160,Original, +B378,xd1019,Inuvialuit,sigl1242,Mackenzie Inuit (B378),"Western Canadian Inuit, Mackenzie Eskimo, Mackenzie Inuit",1910,,,69.96,-132.09,69.67,-132.08,Revised, +B379,xd1028,Sivokamiut Inuit,cent2128,Sivokamiut Inuit (B379),Sivokamiut Eskimo,1920,,,63.49,-170.31,63.49,-170.31,Original,"4Oct2018 - Note that while EA society Na11 has always been linked to xd1028, Binford society B379 was originally linked to xd1020 (and, thus, linked to the dialect poin1245 and language nort2943. The update to Glottolog 3.3.2 forced re-mapping of xd1028 from dialect aiwa1238 (which no longer exists) to language cent2128 (always the language-level match for this xd_id)." +B380,xd1021,Inupiat,nort2944,Point Hope Inuit (B380),"Tikigagmiut, Inupiat, Point Hope Inuit, Point Hope Eskimo",1880,,,68.29,-166.62,68.41,-166.21,Revised,"3Oct2018 - Point Hope or Tikiġaġmiut is a sub-dialect of North Slope Inupiatun (nort2944) which is a dialect of the language nort2943. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +B381,xd1022,Copper Inuit,copp1244,Copper Inuit (B381),"Kitlinermiut, Copper Eskimo",1920,Copper Eskimo (ND08),http://ehrafworldcultures.yale.edu/collection?owc=ND08,68.58,-106.61,68.58,-106.61,Original, +B382,xd1023,Utkuhikhalingmiut,nets1241,Utkuhikhalingmiut (B382),,1920,,,66.99,-95.18,66.99,-95.08,Revised, +B383,xd1024,Aivilingmiut Inuit,cari1277,Aivilingmiut Inuit (B383),Aivilingmiut Eskimo,1880,,,65.16,-88.12,65.16,-88.12,Original, +B384,xd1025,Iglulik Inuit,west2618,Iglulik Inuit (B384),"Igloolik, Iglulingmiut",1920,,,69.44,-81.51,69.45,-81.51,Revised, +B359,xd1026,Nabesna,uppe1437,Nabesna (B359),Upper Tanana Indians,1930,,,63.44,-143.12,63.44,-143.12,Original, +B297,xd1027,Chugach,chug1254,Chugash (B297),"Chugachigmiut, Chugash",1930,South Alaskan Eskimo (NA10),http://ehrafworldcultures.yale.edu/collection?owc=NA10,61.21,-147.61,61.21,-147.61,Original,"3Oct2018 Assigned to dialect chug1254 (language does not change) to help differentiate this society from the closely related Koniag, also now mapped to language paci1278." +B377,xd1029,Nunamiut,nort2944,Nunamiut Inuit (B377),"Inland North Alaskan Eskimo, Nunamiut Eskimo",1950,,,68.18,-151.71,68.18,-151.71,Original,"1Oct2018 - mapped to a new dialect (nort2944) of the same language (nort2943). HH: Belongs to language North Alaskan Inupiatun [nort2943] and more specifically to the North Slope Inupiatun [nort2944] dialect. Note that the subdialect to which it was previously mapped (Anaktuvuk Pass, anak1241) does not exist in Glottolog version 3.3.2. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." +B386,xd1030,Nunatsiarmiut,baff1240,Baffin Island Inuit (B386),"Baffinland, Baffin Island Inuit",1880,,,65,-65,65.21,-64.65,Revised, +B390,xd1031,Inughuit (Northern Greenland),pola1254,Polar Inuit (B390),"Polar Eskimo, Arctic Highlanders, Smith Sound Inuit, Smith Sound Eskimo",1880,,,77.49,-69.5,77.53,-69.5,Revised,"Note 8Feb2018: Glottocode changed to [ike] based on note from HH: ""The Polar Eskimo do not speak a language intelligible to Kalaalisut and had until recent times no contact or knowledge of the Kalaalisut further south. The language is intelligible to North Baffin Inuktitut so Glottolog counts Polar Eskimo as Eastern Canadian Inuktitut [ike]. Furthermore, Oswalt 1963 is listed as a reference to Polar Eskimo but concerns a completely different people in Alaska who speak Yupik-Central [esu].""" +B361,xd1032,Tlicho,dogr1252,Dogrib (B361),Dogrib,1860,,,63.85,-115.61,63.85,-115.61,Original, +B358,xd1033,Délįne,nort2942,Satudene-Bear Lake (B358),"Bear Lake Dene, Satudene, Great Bear Lake People, Sahtu, Sahtu Dene",1860,,,65.75,-122.89,65.75,-122.89,Original, +B345,xd1034,DeneTha,sout2959,Slave (B345),"Slave, Deh Cho (Southern Slavey), Slavey, Dene (distinguish from speakers of the Dene language)",1860,,,61.15,-119.5,61.15,-119.5,Original, +B349,xd1035,Dakelh,carr1249,Carrier (B349),"Carrier, Takulli",1880,,,53.33,-123.15,53.33,-123.15,Original, +B389,xd1036,Tareumiut,nort2944,Tareumiut Inuit (B389),"Tagiumiut, Point Barrow Eskimo, Barrow",1880,,,71.32,-156.78,71.24,-156.78,Revised, +B356,xd1037,Kutchin,gwic1235,Kutchin (B356),"Gwich'in, Loucheux",1880,,,65.94,-135.23,65.94,-135.23,Original, +B374,xd1038,Caribou Inuit,cari1277,Caribou Inuit (B374),Caribou Eskimo,1900,,,64.33,-96.2,64.33,-96.2,Original, +B372,xd1039,Labrador Inuit,labr1244,Labrador Inuit (B372),"Sukinninmiut, Labrador Eskimo",1890,,,57.97,-62.02,57.83,-62.32,Revised, +B388,xd1040,Tasiilaq,tunu1234,Angmaksalik (B388),"Angmagsalik (East Greenland), Ammassalik, East Greenland Eskimo, Polar Eskimo",1880,,,65.63,-37.64,65.64,-37.64,Revised,Note 8Feb2018: Changed based on note from HH: East Greenlandic is Tunumiisiut [tunu1234] in Glottolog. +B385,xd1041,Kalaallit (West Greenland),kala1399,West Greenland (B385),"West Greenland Eskimo, West Greenland Inuit",1880,,,69.31,-50.21,69.31,-50.21,Original,Note 8Feb2018: Glottocode updated from west2617 to kala1399 +B362,xd1042,Dena'ina,tana1289,Tanaina (B362),Tanaina,1870,,,61.74,-150.45,61.74,-150.45,Original, +B347,xd1043,Tahltan,tahl1239,Tahltan (B347),Southwestern Nahane,1870,,,57.66,-127.85,57.66,-127.85,Original, +B343,xd1044,Sekani,seka1250,Sekani (B343),"Tsek'ene, Sicauni",1880,,,56.14,-120,56.14,-120,Original, +B344,xd1045,Beaver,beav1236,Beaver (B344),"Denezaa, Tsattine",1850,,,58.51,-115.76,58.51,-115.76,Original, +B355,xd1046,Dene,chip1261,Chippewyan (B355),Chipewyan,1880,Chipewyan (ND07),http://ehrafworldcultures.yale.edu/collection?owc=ND07,59.47,-106.19,59.47,-106.19,Original, +B342,xd1048,Montagnais,mont1268,Montagnais (B342),"Innu, Naskapi",1880,Montagnais (NH06),http://ehrafworldcultures.yale.edu/collection?owc=NH06,52.42,-63.33,52.42,-63.33,Original,"Note 8Feb2018: Not changed, despite comment from HH: ""Naskapi [nsk] is a different lg from Montagnais [moe]"". KK: Decided to leave, after looking into ethnographic materials: Foci are Lake St. John Band and Mistassini band [see KK notes for geographical extent of their territories]. Speck and Heye (1921): ""[the] Pikwagami (""Flat lake,"" Lake St John), are an interior Montagnais culture intermediate between that of the coast and that of the eastern Naskapi and Mistassini. Therefore, Montagnais [moe] is more appropriate choice. " +B332,xd1049,Northern Saulteaux,alba1270,North Saulteaux (B332),"N. Saulteaux, North Sauteaux",1870,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,52.28,-96.78,52.28,-96.78,Original, +B334,xd1050,Pekangekum,lacs1238,Pekangekum Ojibwa (B334),,1940,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,51.84,-93.85,51.84,-93.85,Original, +B337,xd1051,Nipigon,cent2136,Nipigon Ojibwa (B337),"Lake Nipigon Ojibway, Anishinaabek, Southern Saulteaux",1800,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,49.34,-88.31,49.34,-88.31,Original, +B331,xd1053,Rainy River Ojibwe,rain1239,Rainy River Ojibwa (B331),"Gojijiwininiwag, Rainy River, Emo",1880,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,45.21,-85.1,45.21,-85.1,Original, +B328,xd1054,Katikitegon,uppe1274,Katikitegon (B328),Wisconsin Ojibwa,1800,,,45,-91,45,-91,Original, +B327,xd1055,Eastern Ojibwa,east2542,Kitchibaun Ojibwa (B327),"Kitchibuan, Kitchibuan Ojibwa; Kitchibaun Ojibwa",1870,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,45.21,-85.1,45.21,-85.1,Original, +B346,xd1056,Kaska,kask1239,Kaska (B346),Nahane,1920,Kaska (ND12),http://ehrafworldcultures.yale.edu/collection?owc=ND12,59.73,-125,59.73,-125,Original, +B329,xd1058,Mi'kmaq,mikm1235,Micmac (B329),Micmac,1700,Mi'kmaq (NJ05),http://ehrafworldcultures.yale.edu/collection?owc=NJ05,46.99,-65,46.99,-65,Original, +B387,xd1060,Netsilik,nets1241,Netsilik Inuit (B387),"Netsilik Inuit, Netsilik Eskimo",1880,,,71.46,-94.93,71.46,-94.93,Original, +B338,xd1062,Mistissini Cree,sout2978,Mistassini Cree (B338),Mistassini Cree,1880,,,51.75,-72.66,51.75,-72.66,Original, +B365,xd1063,Naskapi,nask1242,Naskapi (B365),,1890,Montagnais (NH06),http://ehrafworldcultures.yale.edu/collection?owc=NH06,56.19,-68.92,56.19,-68.92,Original, +B299,xd1064,Nunivak,kusk1241,Nunivak (B299),Nunivak Cup'ig,1930,,,60.03,-166.3,60.03,-166.3,Original, +B353,xd1065,Attawapiskat Cree,swam1239,Attawapiskat Cree (B353),Attawapiskat,1900,,,53.62,-83.88,53.62,-83.88,Original, +B357,xd1066,Deg Xit'an,dege1248,Ingalik (B357),Ingalik,1880,,,61.82,-157.75,61.82,-157.75,Original, +B298,xd1067,Aleut,east2533,Aleut (B298),Unagan,1830,Aleut (NA06),http://ehrafworldcultures.yale.edu/collection?owc=NA06,55,-162.85,55,-162.85,Original, +B290,xd1068,Haida,nort2938,Haida (B290),,1890,,,53.54,-132.29,53.54,-132.29,Original, +B336,xd1069,Alkatcho,sout2958,Alkatcho (B336),"Tsuu'Tina, Alkatcho Carrier, Ilgatcho, Ilgachuz",1865,,,51.32,-124.02,51.32,-124.02,Original, +B273,xd1070,Nuu chah nulth,nuuc1236,Nootka (B273),"Nuu-chah-nulth, Aht, Central Nootka",1880,Nuu-chah-nulth (NE11),http://ehrafworldcultures.yale.edu/collection?owc=NE11,49.34,-125.74,49.34,-125.74,Original, +B268,xd1072,Squamish,squa1248,Squamish (B268),,1880,,,49.77,-123.19,49.77,-123.19,Original, +B282,xd1073,Comox,isla1276,Comox (B282),K'ómoks,1860,,,50,-125.5,50,-125.5,Original, +B277,xd1074,Lummi,lumm1243,Lummi (B277),Lhaq'temish,1880,,,48.84,-122.34,48.84,-122.34,Original, +B285,xd1075,Klallam,clal1241,Clallam (B285),Clallum,1860,,,47.95,-123.55,47.95,-123.55,Original, +B270,xd1076,Puyallup,sout2965,Puyallup (B270),,1870,,,47.11,-122.04,47.11,-122.04,Original, +B284,xd1077,Quileute,quil1240,Quileute (B284),,1880,,,47.77,-124.14,47.77,-124.14,Original, +B274,xd1078,Lower Chinook,chin1286,Chinook (B274),Chinook,1850,Chinookans of the Lower Columbia River (NR06),http://ehrafworldcultures.yale.edu/collection?owc=NR06,46.06,-123.75,46.06,-123.75,Original, +B271,xd1079,Twana,twan1247,Twana (B271),,1850,,,47.55,-123.16,47.55,-123.16,Original, +B281,xd1080,Tillamook,till1254,Tillamook (B281),Nehalem,1880,,,45.4,-123.82,45.4,-123.82,Original, +B275,xd1081,Coos,coos1249,Coos (B275),,1860,,,43.43,-124.11,43.43,-124.11,Original, +B292,xd1082,South Tlingit,tlin1245,Tlingit (B292),"Kolosh, Southern Tlingit",1880,Tlingit (NA12),http://ehrafworldcultures.yale.edu/collection?owc=NA12,57,-133.59,57,-133.59,Original,"Note northern and southern tlingit considered distinct dialects of tli by some, but no codes available in Glottolog." +B283,xd1083,Heiltsuk,bell1263,Bella-Bella (B283),"Bellabella, Bella Bella",1880,,,52.87,-127.87,52.87,-127.87,Original, +B286,xd1084,Makah,maka1318,Makah (B286),,1860,Nootka (NE11),http://ehrafworldcultures.yale.edu/collection?owc=NE11,48.22,-124.58,48.22,-124.58,Original, +B278,xd1085,Quinault,quin1251,Quinault (B278),,1860,Quinault (NR17),http://ehrafworldcultures.yale.edu/collection?owc=NR17,47.38,-123.82,47.38,-123.82,Original, +B280,xd1086,Cowichan,cowi1241,Cowichan (B280),Hul'q'umi'num Mustimuhw,1880,,,48.41,-123.64,48.41,-123.64,Original, +B279,xd1087,Stó:lō,chil1281,Stalo (B279),"Stalo, Halkomelem, Fraser River Cowichan",1880,,,49.23,-122.7,49.23,-122.7,Original, +B269,xd1088,Alsea,alse1251,Alsea (B269),,1860,,,44.42,-123.84,44.42,-123.84,Original, +B288,xd1090,Kwakwaka'wakw,kwak1269,Kwakiutl (B288),"Southern Kwakiutl, Kwagu'ł, Kwagyewlth",1890,,,50.42,-126.67,50.42,-126.67,Original, +B176,xd1091,Takelma,take1257,Tekelma (B176),"Rogue River Indians, Tekelma",1860,,,42.44,-123.48,42.44,-123.48,Original, +B181,xd1092,Tututni,tutu1242,Tututni (B181),,1870,,,42.61,-124.04,42.61,-124.04,Original, +B179,xd1093,Shasta,shas1239,Shasta (B179),,1860,,,41.62,-122.7,41.62,-122.7,Original, +B162,xd1094,Chimariko,chim1301,Chimariko (B162),,1860,,,40.85,-123.3,40.85,-123.3,Original, +B182,xd1095,Karuk,karo1304,Karok (B182),Karok,1860,,,41.58,-123.47,41.58,-123.47,Original, +B180,xd1096,Hupa,hupa1239,Hupa (B180),,1860,,,40.93,-123.61,40.93,-123.61,Original, +B184,xd1097,Wiyot,wiyo1248,Wiyot (B184),,1860,,,40.75,-124.14,40.75,-124.14,Original, +B167,xd1098,Lassik,wail1244,Lassik (B167),,1870,,,40.18,-123.16,40.18,-123.16,Original,"Note, Nongatl, Sinkyone and Lassik considered distinct dialects of wlk by some, but glottolog does not provide dialect identifiers" +B169,xd1099,Mattole-Bear River,matt1238,Mattole (B169),"Mattole, Bear River",1920,,,40.17,-124.04,40.17,-124.04,Original, +B166,xd1100,Sinkyone,wail1244,Sinkyone (B166),,1860,,,40.1,-123.96,40.1,-123.96,Original,"Note, Nongatl, Sinkyone and Lassik considered distinct dialects of wlk by some, but glottolog does not provide dialect identifiers" +B186,xd1101,Yurok,yuro1248,Yurok (B186),,1850,Yurok (NS31),http://ehrafworldcultures.yale.edu/collection?owc=NS31,41.4,-123.89,41.4,-123.89,Original, +B295,xd1102,Eyak,eyak1241,Eyak (B295),dAXunhyuu,1890,,,60.48,-144,60.48,-144,Original, +B178,xd1103,Tolowa,tolo1259,Tolowa (B178),,1870,,,41.87,-123.92,41.87,-123.92,Original, +B289,xd1104,Tsimshian,nucl1649,Tsimshim (B289),Ts’msyan,1880,,,54,-129.58,54,-129.58,Original, +B287,xd1105,Haisla,hais1244,Haisla (B287),Kitimat,1880,,,53.5,-128.42,53.5,-128.42,Original, +B291,xd1106,Nuxalk,bell1243,Bella-Coola (B291),"Nuxalkmc, Bellacoola, Bilqula, Bella Coola",1880,Nuxalk (NE06),http://ehrafworldcultures.yale.edu/collection?owc=NE06,52.32,-126.58,52.32,-126.58,Original, +B153,xd1107,Nomlaki,noml1242,Nomlaki (B153),Central Wintun,1850,,,40,-122.56,40,-122.56,Original,Changed 15Nov2016 to differentiate Nomlaki from Wintu +B187,xd1108,Achumawi,achu1247,Achomawi (B187),Achomawi,1860,,,41.32,-121.19,41.32,-121.19,Original, +B174,xd1109,Yana,yana1271,Northern Yana (B174),Nozi,1860,,,40.38,-122.89,40.38,-122.89,Original, +B185,xd1110,Maidu,nort2952,Mountain Maidu (B185),Pujunan,1850,,,40.28,-120.56,40.28,-120.56,Original, +B163,xd1111,Nisenan,nise1244,Nisenan (B163),"Southern Maidu, Nisenan Southern Maidu",1850,,,39.03,-121.15,39.03,-121.15,Original, +B160,xd1112,Wintu,nucl1651,Wintu (B160),Northern Wintu,1860,,,40.9,-122.35,40.9,-122.35,Original,Changed 15Nov2016 to differentiate Nomlaki from Wintu +B177,xd1113,Coast Yuki,yuki1243,Coast Yuki (B177),,1860,Yuki (NS30),http://ehrafworldcultures.yale.edu/collection?owc=NS30,39.64,-123.74,39.64,-123.74,Original, +B173,xd1115,Northern Pomo,nort2966,Nothern Pomo (B173),,1860,Pomo (NS18),http://ehrafworldcultures.yale.edu/collection?owc=NS18,39.34,-123.29,39.34,-123.29,Original, +B158,xd1116,Eastern Pomo,east2545,Eastern Pomo (B158),,1860,Pomo (NS18),http://ehrafworldcultures.yale.edu/collection?owc=NS18,39.03,-122.94,39.03,-122.94,Original, +B159,xd1116,Clear Lake Pomo,east2545,Clear Lake Pomo (B159),Eastern Pomo,1860,Pomo (NS18),http://ehrafworldcultures.yale.edu/collection?owc=NS18,39.12,-122.94,39.12,-122.94,Original, +B152,xd1118,Tübalulabal,tuba1278,Tubatulabal (B152),Tubatulabal,1850,Tubatulabal (NS22),http://ehrafworldcultures.yale.edu/collection?owc=NS22,36,-118.32,36,-118.32,Original, +B172,xd1119,Wappo,wapp1239,Wappo (B172),,1860,,,38.59,-122.54,38.59,-122.54,Original, +B170,xd1120,Lake Miwok,lake1258,Lake Miwok (B170),,1900,,,38.79,-122.48,38.79,-122.48,Original, +B155,xd1121,Patwin,patw1250,Patwin (B155),Southern Wintun,1850,,,39.08,-122.05,39.08,-122.05,Original, +B157,xd1122,Western Mono,mono1275,Monache (B157),"Monachi, Western Mono, Monache",1870,,,36.6,-117.08,36.6,-117.08,Original, +B148,xd1123,Southern Valley Yokuts,vall1251,Lake Yokuts (B148),"Lake Yokuts, Tachi Yokuts, Chunut Yokuts",1860,Yokuts (NS29),http://ehrafworldcultures.yale.edu/collection?owc=NS29,36,-119.83,36,-119.83,Original, +B151,xd1124,Wukchumni,tule1245,Wukchumi (B151),Central Foothills Yokuts,1860,Yokuts (NS29),http://ehrafworldcultures.yale.edu/collection?owc=NS29,36.45,-118.96,36.45,-118.96,Original, +B164,xd1125,Salinan,sali1253,Salinan (B164),,1805,,,35.47,-120.84,35.47,-120.84,Original, +B199,xd1126,Kawaiisu,kawa1283,Kawaiisu Shoshoni (B199),Kawaiisu Shoshoni,1860,,,35.37,-118,35.37,-118,Original, +B161,xd1127,Chumash,cruz1243,Chumash (B161),,1860,,,34.63,-119.6,34.63,-119.6,Original, +B156,xd1128,Tongva,tong1329,Gabrieleno (B156),"Gabrielo, Gabrielino, Gabrieleno",1770,,,34,-118,34,-118,Original, +B154,xd1129,Northern Foothills Yokuts,nort2937,Yokuts (northern foothill) (B154),Northern Foothill Yokuts,1850,Yokuts (NS29),http://ehrafworldcultures.yale.edu/collection?owc=NS29,37.44,-120.44,37.44,-120.44,Original, +B149,xd1130,Serrano,serr1255,Serrano (B149),,1870,,,34.52,-117,34.52,-117,Original, +B144,xd1131,Cahuilla (Desert),cahu1264,Cahuilla (B144),Desert Cahuilla,1870,,,33.59,-116.24,33.59,-116.24,Original,"Note, three Cahuilla Dialects (Mountain, Pass, Desert) are recognized by some, but Glottolog does not list any dialects" +B145,xd1132,Cupeño,cupe1243,Cupeno (B145),"Kuupangaxwichem, Cupeno",1870,,,33.26,-116.59,33.26,-116.59,Original, +B150,xd1133,Luiseño,luis1253,Luiseno (B150),"Payómkawichum, Luiseno",1860,,,33.42,-117.3,33.42,-117.3,Original, +B146,xd1134,Kiliwa,kili1268,Kiliwa (B146),K'olew,1880,,,31.44,-115.25,31.44,-115.25,Original, +B183,xd1135,Atsugewi,atsu1245,Atsugewi (B183),,1860,,,40.75,-121.12,40.75,-121.12,Original, +B175,xd1136,Central Sierra Miwok,cent2140,Sierra Miwok (B175),Miwok,1850,,,38,-119.77,38,-119.77,Original, +B147,xd1137,Kumeyaay,kumi1248,Diegueno (B147),"Diegueño, Diegueno",1850,,,32.44,-116.49,32.44,-116.49,Original,"Note, previously tipa1240 but changed by non-KK DPLACE editor in early 2016 (before 8April2016)" +B171,xd1138,Yuki,yuki1243,Yuki (B171),,1850,Yuki (NS30),http://ehrafworldcultures.yale.edu/collection?owc=NS30,39.7,-123.15,39.7,-123.15,Original, +B189,xd1139,Klamath,klam1254,Klamath (B189),,1860,Klamath (NR10),http://ehrafworldcultures.yale.edu/collection?owc=NR10,42.62,-121.5,42.62,-121.5,Original, +B188,xd1140,Modoc,klam1254,Modoc (B188),,1860,,,42,-121.31,42,-121.31,Original, +B315,xd1141,Tenino,teni1238,Tenino (B315),"Warmsprings Sahaptin, Yenino",1850,,,45.59,-120.45,45.59,-120.45,Original, +B325,xd1142,Nlaka'pamux,thom1243,Thompson (B325),"Thompson, Nitlakapamuk, Thompson River Salish",1860,,,51.26,-121.75,51.26,-121.75,Original, +B333,xd1143,Shuswap,shus1248,Shuswap (B333),Secwepemc,1850,,,53.41,-119.53,53.41,-119.53,Original, +B330,xd1144,Bitterroot Salish,kali1309,Flathead (B330),"Salish, Flathead",1860,Southeast (NR19),in process,46.28,-113.26,46.28,-113.26,Original, +B326,xd1145,Kalispel,kali1309,Kalispel (B326),,1870,Southeast (NR19),in process,47.94,-115.67,47.94,-115.67,Original, +B320,xd1146,Coeur d’Alene,coeu1236,Coeur d'Alene (B320),"Schitsu'umsh, Skitswish",1860,Southeast (NR19),in process,47.42,-116.34,47.42,-116.34,Original, +B321,xd1147,Sinkaitk,sout2963,Sinkaietk (B321),Southern Okanagon,1880,Southeast (NR19),in process,48.78,-119.56,48.78,-119.56,Original, +B317,xd1148,Wenatchi,wena1241,Wenatchi (B317),,1870,,,47.41,-120.31,47.41,-120.31,Original, +B318,xd1149,Klikitat,nucl1237,Yakima (B318),Yakima,1880,,,46.33,-120.27,46.33,-120.27,Original, +B319,xd1150,Wishram,wasc1239,Wishram (B319),,1860,,,45.72,-121.13,45.72,-121.13,Original, +B316,xd1151,Umatilla,umat1237,Umatilla (B316),,1860,,,45.49,-119.94,45.49,-119.94,Original, +B222,xd1152,Southern Ute,utee1244,Southern Ute (Wimonantci Ute) (B222),"Wimonuntci, Weminute, Wimonantci Ute",1860,Ute (NT19),http://ehrafworldcultures.yale.edu/collection?owc=NT19,37.67,-109,37.67,-109,Original, +B324,xd1153,Nez Perce,nezp1238,Nez Perce (B324),"Nimi'ipuu, Sahaptin",1850,,,46.25,-116.46,46.25,-116.46,Original, +B231,xd1155,Wadadokado,nort1551,Wadadokado Paiute (B231),"Paiute, Northern Paiute",1870,Northern Paiute (NR13),http://ehrafworldcultures.yale.edu/collection?owc=NR13,43.25,-119.14,43.25,-119.14,Original, +B226,xd1157,Kidutokado,nort1551,Kidutokado (Surprise Valley Paiute) (B226),"Gididika, Surprise Valley Paiute",1870,Northern Paiute (NR13),http://ehrafworldcultures.yale.edu/collection?owc=NR13,41.5,-120.06,41.5,-120.06,Original, +B208,xd1160,Kuyuidokado,sout2967,Kuyuidokado (Pyramid Lake Paiute) (B208),Pyramid Lake Paiute,1860,Northern Paiute (NR13),http://ehrafworldcultures.yale.edu/collection?owc=NR13,40,-119.6,40,-119.6,Original, +B210,xd1161,Toedokado,sout2967,Cattail Paiute (B210),"Stillwater Paiute, Cattail Paiute",1870,,,40.12,-118.37,40.12,-118.37,Original, +B206,xd1162,Tunava (Deep Springs),mono1275,Deep Springs Paiute (B206),Deep Springs Valley Paiute,1860,,,37.28,-118,37.28,-118,Original, +B211,xd1162,Tunava (Fish Lake),mono1275,Fish Lake Paiute (B211),Fish Lake Valley Paiute,1860,,,37.69,-118.14,37.69,-118.14,Original, +B202,xd1164,Eastern Mono,mono1275,Owens Valley Paiute (Eastern Mono) (B202),"Owens Valley Paiute, Eastern Mono",1870,,,36.88,-118.18,36.88,-118.18,Original, +B197,xd1165,Koso,pana1305,Koso Mountain Shoshoni (B197),"Western Panamint, Koso Mountain Shoshoni, Little Lake Shoshoni",1860,Western (NT22),in process,36.12,-117.7,36.12,-117.7,Original, +B192,xd1166,Tümpisa Shoshone (Death Valley),pana1305,Death Valley Shoshoni (B192),Death Valley Shoshoni,1860,Western (NT22),in process,36.52,-116.81,36.52,-116.81,Original, +B195,xd1166,Tümpisa Shoshone (Panamint),pana1305,Panamint Shoshoni (B195),Panamint Shoshoni,1850,Western (NT22),in process,36.37,-117.33,36.37,-117.33,Original, +B200,xd1166,Tümpisa Shoshone (Saline),pana1305,Saline Valley Shoshoni (B200),Saline Valley Shoshoni,1860,Western (NT22),in process,36.65,-117.79,36.65,-117.79,Original, +B218,xd1169,Mahaguaduka,west2622,Reese River Shoshoni (B218),Reese River Shoshoni,1860,Western (NT22),in process,39.25,-117.32,39.25,-117.32,Original, +B233,xd1170,Wiyambituka,west2622,Little Smokey Shoshoni (B233),"Morey Shoshoni, Great Smokey Valley Shoshoni, Little Smokey Valley Shoshoni",1860,Western (NT22),in process,39.33,-115.84,39.33,-115.84,Original, +B217,xd1171,Railroad Valley Shoshoni,west2622,Railroad Valley Shoshoni (B217),Hamilton,1860,Western (NT22),in process,38.33,-115.78,38.33,-115.78,Original, +B323,xd1174,Sanpoil,sanp1257,Sanpoil (B323),,1870,Southeast (NR19),in process,47.94,-118.44,47.94,-118.44,Original, +B221,xd1175,Tubaduka,west2622,Grouse Creek Shoshoni (B221),Grouse Creek Shoshoni,1860,,,41.59,-113.94,41.59,-113.94,Original, +B228,xd1176,Wadaduka,west2622,Wadaduica (Ruby Valley Shoshoni) (B228),"Ruby Valley Shoshoni, Pine Creek Shoshoni, Diamond Valley Shoshoni, Egan Canyon Shoshoni",1860,,,40.36,-115.39,40.36,-115.39,Original, +B216,xd1178,White Knife Shoshoni,west2622,White Knife Shoshoni (B216),"Battle Mountain Shoshoni, Tosawihi",1860,,,41,-117.31,41,-117.31,Original, +B229,xd1180,Bohogue,nort2955,Bohogue (Northern Shoshoni) (B229),Fort Hall Shoshoni,1860,,,43,-112,43,-112,Original, +B232,xd1181,Tukudika,nort2955,Sheep Eater Shoshoni (B232),"Sheep-Eater Shoshoni, Lemhi Mountain Shoshoni",1860,,,45.17,-113.84,45.17,-113.84,Original, +B207,xd1182,Agaiduka,nort2955,Salmon Eater Shoshoni (B207),"Salmon-Eater Shoshoni, Lemhi River Shoshoni",1860,,,42.94,-115.3,42.94,-115.3,Original, +B214,xd1183,Gosiute,gosi1242,Gosiute Shoshoni (B214),"Gosiute Shoshoni, Deep Creek Shoshoni",1860,Western (NT22),in process,39.88,-114,39.88,-114,Original, +B201,xd1184,Antarianunts,utee1244,Antarianunts Southern Paiute (B201),"Henry Mountains Paiute, Kaiparowits",1860,,,37.86,-110.72,37.86,-110.72,Original, +B213,xd1185,Hukundika,nort2955,Hukundika Shoshoni (B213),"Seed-Eaters, Northern Shoshoni, Hukunduka, Hukuniduica",1870,,,41.55,-112.22,41.55,-112.22,Original, +B204,xd1189,Southern Paiute (Kaibab and Las Vegas),sout2969,Kaibab Southern Paiute (B204),"Kaivavwits, Southern Paiute, Las Vegas, Southern Paiute",1860,,,36.9,-112.55,36.9,-112.55,Original, +B230,xd1194,Uintah Ute,utee1244,Uintah Ute (B230),"Tompanowots, Yampa",1860,,,40.47,-110.22,40.47,-110.22,Original, +B225,xd1196,Washo,wash1253,Washo (B225),,1850,Washo (NT20),in process,39.08,-119.82,39.08,-119.82,Original, +B234,xd1199,Uncompahgre Ute,utee1244,Uncompahgre Ute (B234),Mowataviwatsiu,1860,,,38.14,-107.8,38.14,-107.8,Original, +B252,xd1200,Bannock,bann1248,Bannock (B252),Eastern Bannock,1860,,,43.66,-112.32,43.66,-112.32,Original, +B227,xd1201,Wind River Eastern Shoshone,nort2955,Wind River Shoshoni (B227),"Wind River, Eastern Shoshoni, Kucundika, Buffalo Hunters, Buffalo-Eater",1860,,,43.19,-108.86,43.19,-108.86,Original, +B198,xd1202,Hualapai,wala1270,Walapai (B198),Walapai,1870,,,35.95,-114.5,35.95,-114.5,Original, +B196,xd1203,Yavapai,yava1252,Yavapai (B196),Apache-Mojave,1870,,,33.37,-110.5,33.37,-110.5,Original, +B250,xd1205,Kutenai,kute1249,Kutenai (B250),"Ktunaxa, Kootenay, Kootenai",1880,,,47.48,-114.08,47.48,-114.08,Original, +B348,xd1206,Chilcotin,chil1280,Chilcotin (B348),Tsilhqot'in,1880,,,51.68,-124,51.68,-124,Original, +B276,xd1207,Lillooet,lill1248,Lillooet (B276),"St'at'imc, Stlatlum",1860,,,50.46,-123,50.46,-123,Original, +B253,xd1208,Gros Ventre,gros1243,Gros-Ventre (B253),"A'ani, A'aninin, Haaninin",1870,Gros Ventre (NQ13),http://ehrafworldcultures.yale.edu/collection?owc=NQ13,48.12,-105.6,48.12,-105.6,Original, +B257,xd1210,Assiniboine,assi1247,Assiniboine (B257),"Hohe, Nakota, Stoney",1870,Assiniboine (NF04),http://ehrafworldcultures.yale.edu/collection?owc=NF04,49.49,-102.43,49.49,-102.43,Original, +B256,xd1211,Blackfoot,pieg1239,Blackfoot (B256),Siksika,1850,Blackfoot (NF06),http://ehrafworldcultures.yale.edu/collection?owc=NF06,51.01,-110.76,51.01,-110.76,Original, +B259,xd1212,Kainai,bloo1239,Blood (B259),"Blood, Kainah, Blood Tribe",1850,Blackfoot (NF06),http://ehrafworldcultures.yale.edu/collection?owc=NF06,52.79,-113.86,52.79,-113.86,Original, +B254,xd1213,Bungi,west1510,Bungi (Plains Ojibwa) (B254),"Plains Ojibwa, Bungee, Manitoba Saulteaux, Ojibway, Ojibwe",1850,Ojibwa (NG06),http://ehrafworldcultures.yale.edu/collection?owc=NG06,47.6,-97.25,47.6,-97.25,Original, +B193,xd1215,Karankawa,kara1289,Karankawa (B193),,1800,,,28.44,-96.91,28.44,-96.91,Original, +B243,xd1216,Kiowa,kiow1266,Kiowa (B243),,1870,,,36.9,-99.1,36.9,-99.1,Original, +B255,xd1217,Piegan,pieg1239,Piegan (B255),Pikuni,1850,Blackfoot (NF06),http://ehrafworldcultures.yale.edu/collection?owc=NF06,49.34,-111.21,49.34,-111.21,Original, +B258,xd1218,Plains Cree,plai1258,Plains Cree (B258),,1850,,,51.86,-102.67,51.86,-102.67,Original, +B244,xd1219,Kiowa Apache,kiow1264,Kiowa Apache (B244),"Naisha Dene, Na'isha",1860,,,35.83,-98.9,35.83,-98.9,Original, +B194,xd1221,Coahuilteco,coah1252,Coahuilenos (B194),,1715,,,26,-102.07,26,-102.07,Original, +B241,xd1222,Comanche,coma1245,Comanche (B241),,1870,Comanche (NO06),http://ehrafworldcultures.yale.edu/collection?owc=NO06,36.83,-100.5,36.83,-100.5,Original, +B248,xd1223,Crow,crow1244,Crow (B248),Apsaalooké,1870,Crow (NQ10),http://ehrafworldcultures.yale.edu/collection?owc=NQ10,45.83,-108.48,45.83,-108.48,Original, +B245,xd1224,Cheyenne,chey1247,Cheyenne (B245),,1860,,,38.83,-102.35,38.83,-102.35,Original, +B260,xd1226,Sarcee,sars1236,Sarsi (B260),"Tsuu, Sarci",1880,,,53.15,-111.04,53.15,-111.04,Original, +B249,xd1227,Teton,lako1247,Teton Sioux (Lakota) (B249),,1870,,,44.5,-102.27,44.5,-102.27,Original, +B246,xd1228,Arapaho,arap1274,Arapaho (B246),"Hinono'eiteen, Arapahoe",1860,Arapaho (NQ06),in process,40.13,-102.72,40.13,-102.72,Original, +B242,xd1259,Chiricahua,mesc1238,Chiricahua Apache (B242),"Chiricahua Apache, Eastern Apache",1880,Eastern Apache (NT08),http://ehrafworldcultures.yale.edu/collection?owc=NT08,32.52,-101.76,32.52,-101.76,Original, +B240,xd1275,Lipan Apache,lipa1241,Lipan Apache (B240),Lipan,1880,,,28.96,-98.48,28.96,-98.48,Original, +B143,xd1289,Seri,seri1257,Seri (B143),Comcaac,1900,Seri (NU31),in process,29.59,-112.18,29.59,-112.18,Original, +B191,xd1290,Chichimeca,chic1272,Chichimec (B191),Chichimec,1570,,,22,-100,22,-100,Original, +B35,xd1330,Paraujano,para1316,Paraujano (B35),Onoto,1950,,,9.9,-72.41,9.9,-72.41,Original, +B38,xd1345,Pumé,pume1238,Yaruro-Pume (B38),Yaruro,1989,Pumé (SS19),http://ehrafworldcultures.yale.edu/collection?owc=SS19,6.85,-68.77,6.85,-68.77,Original, +B39,xd1347,Guahibo,guah1255,Guahibo (B39),,1960,,,5.38,-68.31,5.38,-68.31,Original, +B36,xd1358,Shiriana,nina1238,Shiriana (B36),"Kirishana, Xiriana",1960,Yanoama (SQ18),http://ehrafworldcultures.yale.edu/collection?owc=SQ18,3.86,-66.17,3.86,-66.17,Original, +B43,xd1362,Sirionó,siri1273,Siriono (B43),"Miá, Siriono",1940,Siriono (SF21),http://ehrafworldcultures.yale.edu/collection?owc=SF21,-15,-63.58,-15,-63.58,Original, +B55,xd1383,Yahgan,yama1264,Yaghan (B55),,1870,Yahgan (SH06),http://ehrafworldcultures.yale.edu/collection?owc=SH06,-60,-68.66,-55.02,-68.98,Revised, +B54,xd1385,Ona,onaa1245,Ona (B54),,1880,Ona (SH04),http://ehrafworldcultures.yale.edu/collection?owc=SH04,-53.9,-68.62,-53.9,-68.62,Original, +B51,xd1386,Tehuelche,tehu1242,Tehuelche (B51),Patagon,1870,Tehuelche (SH05),http://ehrafworldcultures.yale.edu/collection?owc=SH05,-46,-68.7,-46,-68.7,Original, +B53,xd1387,Alacaluf,qawa1238,Alacaluf (B53),Kawésqar,1900,,,-49.55,-74.52,-49.55,-74.52,Original, +B41,xd1397,Bororo,boro1282,Bororo (B41),,1920,Bororo (SP08),http://ehrafworldcultures.yale.edu/collection?owc=SP08,16.52,-55,-16,-55,Revised, +B45,xd1401,Nambikwara,sout2994,Nambikwara (B45),Nambicura,1938,Nambicuara (SP17),http://ehrafworldcultures.yale.edu/collection?owc=SP17,-12.73,-59.55,-12.73,-59.55,Original, +B42,xd1403,Guató,guat1253,Guato (B42),Guato,1901,,,-18,-57.5,-18,-57.5,Original, +B50,xd1411,Aweikoma,xokl1240,Aweikomo (B50),"Xokleng, Shokleng, Botocudo of Santa Catarina, Bugre, Kaingang of Santa Catarina (though Aweikoma and Kaingang today considered separate groups)",1910,Xokleng (SM03),http://ehrafworldcultures.yale.edu/collection?owc=SM03,-28,-50,-28,-50,Original, +B48,xd1413,Aimoré,kren1239,Botocudo (B48),"Nac-nanuk, Nac-poruk, Botocudo",1880,,,-18.71,-41.86,-18.71,-41.86,Original, +B165,xd1418,Kashaya Pomo,kash1280,Southern Pomo (B165),"Southwest dialect, Southern Pomo",1860,,,38.54,-122.88,38.54,-122.88,Original, +B70,xd2,Dorobo,okie1245,Dorobo (B70),"Andorobo, Okiek, Wandorobbo",1920,Okiek (FL20),http://ehrafworldcultures.yale.edu/collection?owc=FL20,0,36,0,36,Original, +B65,xd5,Mbuti,bila1255,Mbuti (B65),"Sua, BaSua, Kango, BaKango, Bambuti, BaMbuti Pygmies",1930,Mbuti (FO04),http://ehrafworldcultures.yale.edu/collection?owc=FO04,1.54,28.61,1.54,28.61,Original,"Note 8Feb2018: Changed. Focus is ""Epulu net-hunters, Ituri forest"". From White pinpointing sheets: ""The Pygmies and Pygmoid peoples of the Congo have been pushed into smaller and smaller areas of the tropical forest since the invasions of Bantu and Sudanic tribes in the 16-17th centuries, and most of the groups have adopted the languages of invading tribes with whom they allied themselves. Mbuti pygmies have adopted the languages of the Bira to the south of them, the Lese to the east, the Mangbetu and Azande to the northwest, and the Mamvu-Mangutu to the north. The [...] Epulu group studied by Turnbull situated to the north of the Ituri and Epulu Rivers, and the majority of the other groups to the south of the Ituri River [...] are net-hunters, and speak a language largely influenced by the Forest Bira."" Note, though, that Ember concordance lists the language as Lese." +B25,xd617,Nivkh,gily1242,Gilyak (B25),Gilyak,1920,Nivkh (RX02),http://ehrafworldcultures.yale.edu/collection?owc=RX02,51.54,140,51.54,140,Original, +B27,xd620,Nganasan,ngan1291,Nganasan (B27),Tavgi Samoyed,1933,Samoyed_with_notes_on_Nganasan (RU04),http://ehrafworldcultures.yale.edu/collection?owc=RU04,73.83,90,73.83,90,Original, +B28,xd622,Ungazikmit,cent2128,Siberian Eskimo (B28),"Eskaleut, Asian Eskimo",1860,,,65.96,170.08,65.96,-170.08,Revised,"9May2019 - Longitude for society was corrected to western hemisphere from eastern hemisphere through addition of - sign. 1Oct2018 - the update to Glottolog 3.3.2 forced re-mapping from dialect chap1266 (which no longer exists) to language (cent2128) (always the language-level match for this society)." +B26,xd634,Yukaghir,nort2745,Yukaghir (B26),,1900,,,70,145,70,145,Original, +B22,xd635,Ainu,ainu1240,Ainu (B22),"Ainu (Hokkaido), Hokkaido",1900,Ainu (AB06),http://ehrafworldcultures.yale.edu/collection?owc=AB06,44.01,144.17,44.01,144.17,Original, +B24,xd636,Ket,kett1243,Ket (B24),"Yenisei Ostyak, Yeniseians",1900,,,62,90,62,90,Original, +B15,xd672,Chenchu,chen1255,Chenchu (B15),,1940,,,16.25,78.97,16.25,78.97,Original, +B8,xd686,Andamanese,akab1249,Big Andaman Island (B8),"Big Andaman Island, Andamese",1870,Andamans (AZ02),http://ehrafworldcultures.yale.edu/collection?owc=AZ02,13.32,92.89,13.32,92.89,Original,Changed to abj from apq on 8 April 2017 based on comments from H. Hammarström: Man (1885) worked most with (and whose variety he spoke best) Bojingya or Aka-Bea [abj] +B10,xd690,Vedda,vedd1240,Vedda (B10),"Wanniyalaeto, Veddah",1900,Vedda (AX05),http://ehrafworldcultures.yale.edu/collection?owc=AX05,8.58,81.25,8.59,81.19,Revised, +B73,xd7,Naron,naro1249,Nharo (B73),Aikwe,1910,,,-21.64,21.61,-21.64,21.61,Original, +B9,xd725,Semang,kens1248,Semang (B9),,1920,Semang (AN07),http://ehrafworldcultures.yale.edu/collection?owc=AN07,5.86,101,5.86,101,Original, +B3,xd757,Anak Dalam,kubu1239,Kubu (B3),"Orang Batin Sembilan, Orang Rimba, Kubu",1900,,,-3.04,102.69,-3.04,102.69,Original, +B1,xd1442,Punan,west2563,Punan (B1),"Penan Gang, Punan Busang",1970,,,3,114,3,114,Original,"Note, previously this language was associated with xd758, and with both Binford and EA ""Punan"" societies. This xd_id now refers only to the Binford ""Punan"" society, with the EA ""Punan"" society linked to xd758 and language iso ""pna"" (3 Mar 2016). In May 2016 received this further comment from H. Hammarström: ""The references here reference different hunting and gathering populations of Borneo, not all of which speak the [same] language"" ""[...] if you have to put one [language] for all of these then a better match is Penan-Western [pne] because e.g Urquhart 1951 is on Penan Gang and Penan Lusong and Brosius is on Penan Gang. Both Penan Gang and Penan Lusong speak varieties of Penan-Western [pne].""" +B124,xd772,Northern Aranda,east2379,Northern Arenda (B124),"Aranda (Northern), Northern Arenda, Arunta",1900,Aranda (OI08),http://ehrafworldcultures.yale.edu/collection?owc=OI08,-23.7,133.76,-23.7,133.76,Original,"Note 8Feb2018: Not changed, despite note from HH: ""Why is Strehlow not associated rather with Western Arrarnta [are]"". According to White SCCS Pinpointing sheets, focus is ""The Arunta Mbainda of Alice Springs: [...] closely studied by Spencer and Gillen in 1896, restudied in 1901, and visited by Spencer in 1926 for some follow-up reconstruction work with several informants."" [So, Strehlow was perhaps used for supporting materials?]" +B109,xd773,Walbiri,warl1254,Walbiri (B109),Warlpiri,1965,,,-20,130.57,-20,130.57,Original, +B87,xd774,Gidjingali,gunn1248,Gidjingali (B87),"Burarra, Gun-nartpa",1950,,,-12.18,134.4,-12.18,134.4,Original, +B94,xd775,Yir Yoront,jirj1239,Yir-yoront (B94),,1937,,,-15,142.17,-15,142.17,Original,"Note, previously yiy and yiry1245, however both codes have been retired" +B97,xd776,Anindilyagwa,anin1240,Groote Eylandt (B97),"Enindilywakwa, Groote Eylandt, Groote Eyelandt",1930,,,-14,136.62,-14,136.62,Original, +B88,xd777,"Yolngu, Dhuwal",dhuw1249,Murngin (B88),"Murngin, Wulamba, Dhuwal",1930,Murngin (OI17),in process,-12.93,135.84,-12.93,135.84,Original, +B95,xd778,Tiwi,tiwi1244,Tiwi (B95),,1920,Tiwi (OI20),http://ehrafworldcultures.yale.edu/collection?owc=OI20,-11.59,130.87,-11.59,130.87,Original, +B121,xd779,Diyari,dier1241,Dieri (B121),"Dieri, Dieri",1900,,,-28.54,139.09,-28.54,139.09,Original, +B106,xd780,Kariyarra,kari1304,Kariera (B106),Kariera,1910,,,-20.88,118.27,-20.88,118.27,Original, +B90,xd781,Wikmunkan,wikm1247,Wikmunkan (B90),Wikmunkun,1920,,,-13.47,142,-13.47,142,Original, +B137,xd783,Tasmanians (northwestern),port1278,Tasmanians (western) (B137),"Palawa, Tasmanians (northwestern), Tasmanians (Western), Tasmanians (West Coast)",1830,Tasmanians (OI19),in process,-41.38,145.21,-41.38,145.21,Original,"Note, previously tasm1247, but languages difficult to assign with certainty, so chose another western tasmanian language not considered a ""bookkeeping"" language by glottolog" +B130,xd784,Ngiyambaa,wang1291,Wongaibon (B130),Wongaibon,1910,,,-32.14,146.09,-32.14,146.09,Original, +B79,xd8,/Xam,xamm1241,/Xam (B79),"Xam, Cape Bushman",1970,,,-31.47,19.77,-31.47,19.77,Original, +B69,xd9,Hadza,hadz1240,Hadza (B69),"Hadzabe, Hatsa Kindiga, Hadza, Kindiga",1910,,,-3.82,35.32,-3.82,35.32,Original, +B2,xd900,Palawan Batak,bata1301,Batek (B2),"Batek, Batak, Batek (Palawan), Palawan",1968,,,10,119.11,10.03,119.09,Revised,"Changed from plw (broo1239) on 26 May 2016 based on feedback from H. Hammarström: ""The Batak in Cadeliña, Warren and Eder is Batak [bya] bata1301 not [plw] broo1239""" +B4,xd901,Shompen,shom1245,Shompen (B4),Shamhap,1989,,,7,93.77,7,93.77,Original, +B5,xd902,Onge,onge1236,Onge (B5),"Andaman Islands (Onge), Onge Andamanese",1952,,,10.7,92.47,10.7,92.47,Original, +B6,xd903,Jarawa,jara1245,Jarwa (B6),"Andaman Islands (Jarwa), Jarawa Andamanese",1906,,,12.19,92.37,12.17,92.65,Revised, +B7,xd904,Ayta (Pinatubo),boto1242,Ayta (Pinatubo) (B7),,1903,,,15.5,120.33,15.5,120.33,Original, +B11,xd905,Hill Pandaram,mala1468,Hill Pandaran (B11),"Hill Pandaran, Malapantāram, Malapandaram",1972,,,9.25,77.25,9.25,77.25,Original, +B12,xd906,Agta (Casiguran),casi1235,Agta (Casiguran) (B12),,1965,,,17.33,122.13,17.33,122.13,Original, +B13,xd907,Agta (Isabela),agta1234,Agta (Isabela) (B13),,1979,,,17.48,122.05,17.48,122.05,Original, +B14,xd908,Agta (Cagayan),cent2084,Agta (Cagayan) (B14),,1924,,,17.82,121.8,17.82,121.8,Original, +B16,xd909,Mlabri,mlab1235,Mrabri (B16),Mrabri,1963,,,18.41,100.47,18.41,100.47,Original, +B17,xd910,Paliyans,pali1274,Paliyans (B17),,1963,,,9.75,77.5,9.75,77.5,Original, +B18,xd911,Birhor,birh1242,Birhor (B18),,1963,,,23.41,84.38,23.41,84.38,Original, +B19,xd912,Kadar,kada1242,Kadar (B19),,1946,,,10.25,77.17,10.25,77.17,Original, +B20,xd913,Cholanaikkan,jenn1240,Cholanaickan (B20),"Malanaikan, Sholanaikan, Cholanaickan",1974,,,10.18,76.4,10.18,76.4,Original,"Changed to xuj (jenn1240) from mal (sout2708) on 26 May 2016 based on feedback from H. Hammarström: ""The people Bhanu studied natively speak a variety of Kurumba-Jennu [xuj]""; previously matched to language ""mal"" based on KK note: ""lat/long coordinates for society place it in Central Kerala state, much closer to lat/long for mal than for xuj (which is in neighbouring Tamil Nadu state). I couldn't access the sources, though" +B21,xd914,Nayaka,jenn1240,Nayaka (B21),,1978,,,11.9,77.21,11.9,77.21,Original, +B23,xd915,Orogens,oroq1238,Orogens (B23),,1900,,,51.91,122.5,51.91,122.5,Original, +B37,xd916,Akurio,akur1238,Akuriyo (B37),Akuriyo,1968,,,3,-55,3,-55,Original, +B40,xd917,Nukak,nuka1242,Nukak (B40),Macu Nukak,1990,,,2.56,-71.81,2.56,-71.81,Original, +B44,xd918,Yuqui,yuqu1240,Yuqui (B44),Mbia,1968,,,-16.46,-64.97,-16.46,-64.97,Original, +B46,xd919,Calusa,calu1239,Calusa (B46),,1600,,,-26.5,-82,26.48,-81.96,Revised, +B47,xd920,Aché,ache1246,Guayaki (Ache) (B47),"Guayaki (Ache), Guayaki, Ache",1975,,,-25.7,-55.38,-25.7,-55.38,Original, +B49,xd921,Héta,xeta1241,Heta (B49),Heta,1954,,,-23.52,-53.68,-23.52,-53.68,Original, +B52,xd922,Chono,chon1248,Chono (B52),Chona,1880,,,-45,-73.83,-45,-73.83,Original, +B60,xd923,Aka,base1242,Aka (B60),"Eastern Aka, Bayaka, BaAka, Ba'aka, Bayaka, Aka Pygmies, Pygmées Aka, BaBinga, BaMbenga",1980,,,2,17,2,17,Original,"Note 22Jul2021 - dialect match changed by KK from bamb1264 to base1242. Research notes relevant to Aka (society in Binford, GJB datasets), Bayaka (Binford dataset), and Mbendjele (GJB dataset) all speak varieties of yaka1272 'Yaka (Central African Republic)'. The re-assignment of dialect bamb1264 from society 'Aka' to 'Mbendjele' is well supported (c.f. Bahuchet, who mentions it is the dialect spoken in Western Aka areas). The dialect 'base1242' (Basese), now assigned to societies B60 (Aka) and GJB 'Aka', is mentioned on Wikipedia's Aka language page as being spoken in the East (and the Lobaye region, where work with the Aka was carried out, is North East of the Ouesso region, where work with the Mbendjele was carried out). This is the only evidence I have used to link 'base1242' to the Aka societies. Society B61 (Bayaka) is assigned yet another dialect (beka1240), mainly as a way to distinguish the group from Aka and Mbendjele (no additional evidence links this glottolog dialect to B61 Bayaka - match was done through a process of elimination)." +B61,xd924,Bayaka,beka1240,Bayaka (B61),,1976,,,3.58,17.76,3.58,17.76,Original,"Note 22Jul2021 - Language research notes relevant to Aka (society B60 in Binford, 'Aka' in GJB ), Bayaka (B61 in Binford dataset), and Mbendjele (GJB dataset) all of whom speak varieties of yaka1272 'Yaka (Central African Republic)'. The re-assignment of dialect bamb1264 from society 'Aka' to 'Mbendjele' is well supported (c.f. Bahuchet, who mentions it is the dialect spoken in Western Aka areas). The dialect 'base1242' (Basese), now assigned to societies B60 (Aka) and GJB 'Aka', is mentioned on Wikipedia's Aka language page as being spoken in the East (and the Lobaye region, where work with the Aka was carried out, is North East of the Ouesso region, where work with the Mbendjele was carried out). This is the only evidence I have used to link 'base1242' to the Aka societies. Society B61 (Bayaka) is assigned yet another dialect (beka1240), mainly as a way to distinguish the group from Aka and Mbendjele (no additional evidence links this glottolog dialect to B61 Bayaka - match was done through a process of elimination)." +B62,xd925,Bambote,holo1240,Bambote (B62),Bambote of Lake Tanganyika,1977,,,-6.64,28.26,-6.64,28.26,Original,"Note that Terashima (1980), the main source of cultural data for this group, says further research is needed to confirm whether Bambote speak language of a neighbouring group, or their own language. Both the Bambote and their neighbours say the group speaks a distinct language, ""Kimbote."" Rebecca Grollemund said this society should NOT be matched to iso ""tap""; she said ""Bambote is a pygmy language related to D20 languages""" +B63,xd926,Baka,baka1272,Baka (B63),"Baka BaNgombe, Baka, BaBinga, BaMbenga, Baka Pygmies",1980,,,2.39,15.31,2.39,15.31,Original, +B64,xd927,Efe,efee1239,Efe (B64),"BaMbuti, Mbuti, Bambuti Pygmies",1980,,,2.7,27.64,2.7,27.64,Original, +B66,xd928,Mikea,masi1268,Mikea (B66),"Vezo-Mikea, Masikoro-Mikea",1970,,,-22.32,43.81,-22.32,43.81,Original, +B67,xd929,Hukwe,kxoe1243,Hukwe (B67),,1950,,,-16.93,24.32,-16.93,24.32,Original, +B68,xd930,Hai//om,haio1238,Hai//om (B68),Hai//om,1920,,,-18.65,16.12,-18.65,16.12,Original, +B71,xd931,Sekele,vase1234,Sekele (B71),,1928,,,-16.42,19.53,-16.42,19.53,Original, +B74,xd932,G/wi,gwii1239,G/wi (B74),,1962,,,-22.46,23.39,-22.46,23.39,Original, +B75,xd933,Kua,kuaa1238,Kua (B75),,1976,,,-22.88,24.41,-22.88,24.41,Original, +B76,xd934,!Ko,huaa1248,!Ko (B76),,1968,,,-23.86,22.2,-23.86,22.2,Original, +B77,xd935,/'Auni-Khomani,nuuu1241,/Auni-Khomani (B77),/Auni-Khomani,1920,,,-27.37,19.82,-27.37,19.82,Original, +B78,xd936,//Xegwi,xegw1238,//Xegwi (B78),Batwa (Lake Chrissie),1950,,,-26.28,30.23,-26.28,30.23,Original, +B82,xd937,Kaurareg,kala1377,Kaurareg (B82),,1848,,,-10.77,142.12,-10.73,142.15,Revised, +B83,xd938,Larikia,lara1258,Larikia (B83),,1900,,,-12.6,130.78,-12.6,130.79,Revised, +B84,xd939,Gunwinygu,gunw1252,Gunwinggu (B84),Gunwinggu,1978,,,-12.43,134.12,-12.43,134.12,Original, +B85,xd940,Mirrngadja,djin1252,Mirrngadja (B85),,1970,,,-12.31,135.2,-12.31,135.2,Original, +B86,xd941,Burarra,gunn1247,Anbarra (B86),"Anbarra, Gun-nartpa",1973,,,-12.2,134.73,-12.2,134.73,Original, +B89,xd942,Yiiji,wuna1249,Jeidji (B89),Jeidji,1920,,,-15.55,128.19,-15.55,128.19,Original, +B91,xd943,Kaakutju,gaga1251,Kakadu (B91),Kakadu,1920,,,-13.13,132.95,-13.13,132.95,Original, +B92,xd944,Nunggubuyu,nung1290,Nunggubuyu (B92),Wubuy,1960,,,-13.76,135.98,-13.76,135.98,Original, +B93,xd945,Yintjingga,ayab1239,Yintjingga (B93),,1930,,,-14,143.5,-14,143.5,Original,"Note 8Feb2018: Glottocode changed based on comment by HH: ""Yintjingga (specifically) in the Glottolog inventory falls under Ayabadhu [ayd].""" +B96,xd946,Kuku (Yalanji),kuku1273,Kuku (Yalanji) (B96),Yuku,1880,,,-15.92,145.32,-15.92,145.32,Original, +B98,xd947,Walmbaria,flin1247,Walmbaria (B98),,1926,,,-14.34,144.22,-14.34,144.22,Original, +B99,xd948,Mulluk,mull1237,Mulluk (B99),Malakmalak,1900,,,-13.58,130.58,-13.58,130.58,Original, +B100,xd949,Worrorra,worr1237,Worora (B100),Worora,1930,,,-15.32,124.72,-15.32,124.72,Original, +B101,xd950,Kija,kitj1240,Lungga (B101),"Kija, Lungga, Kija, Lungka",1934,,,-16.91,127.83,-16.91,127.83,Original, +B102,xd951,Lardil,lard1243,Lardil (B102),,1909,,,-16.3,139.3,-16.48,139.32,Revised, +B103,xd952,Kaiadilt,kaya1319,Kaiadilt (B103),Kayardild,1928,,,-16.94,139.28,-16.94,139.03,Revised, +B104,xd953,Karajarri,kara1476,Karadjeri (B104),Karadjeri,1925,,,-18.92,121.21,-18.94,121.68,Revised, +B105,xd954,Mamu,mamu1253,Mamu (B105),,1900,,,-17.64,145.84,-17.64,145.84,Original, +B107,xd955,Warunggu,waru1264,Warunggu (B107),Woronggo,1870,,,-18.41,145.61,-18.41,145.61,Original, +B108,xd956,Djaru,jaru1254,Djaru (B108),Jaru,1934,,,-19.16,130,-19.16,130,Original, +B110,xd957,Ngatjan,ngad1260,Ngatjan (B110),,1880,,,-17.36,145.56,-17.36,145.56,Original, +B111,xd958,Mardudjara,mart1256,Mardudjara (B111),Ngatjan,1960,,,-22.79,125.06,-22.79,125.06,Original, +B112,xd959,Ildawongga,wanm1242,Ildawongga (B112),,1968,,,-22.93,127.18,-22.93,127.18,Original,"Note 8Feb2018: Note from HH: ""I thought Ildawongga were a late contacted band of Pintupi but I may be misremembering and I don't know the reference."" KK: leaving for now as Australian languages checked by C. Bowern." +B113,xd960,Pintubi,pint1250,Pintubi (B113),,1936,,,-22.86,129.44,-22.86,129.44,Original, +B114,xd961,Undanbi,waka1274,Undanbi (B114),Undambi,1848,,,-27.28,153.24,-27.27,153.02,Revised, +B115,xd962,Jinibarra,yaga1256,Jinibarra (B115),,1840,,,-27.25,152.87,-27.25,152.87,Original,Assigned Glottolog id on 26 May 2016 based on feedback from H. Hammarström +B116,xd963,Karuwali,karr1236,Karuwali (B116),,1900,,,-24.41,141.64,-24.41,141.64,Original, +B117,xd964,Alyawara,alya1239,Alyawara (B117),,1965,,,-22.27,135.17,-22.27,135.17,Original, +B118,xd965,Ngatatjara,ngaa1240,Ngatatjara (B118),,1968,,,-25.32,127.27,-25.32,127.27,Original, +B119,xd966,Badjalang,midd1357,Badjalang (B119),,1850,,,-29.59,152.78,-29.59,152.78,Original,Note 8Feb2018: KK: Updated Glottocode as the previous one (band1339) was a family-level code. +B120,xd967,Pitjandjara,pitj1243,Pitjandjara (B120),Pitjantjatjara,1968,,,-26,130,-26,130,Original, +B122,xd968,Southern Aranda,lowe1436,Southern Arenda (B122),"Aranda (Southern), Southern Arenda",1870,,,-26.09,135.52,-26.09,135.52,Original, +B123,xd969,Jankundjara,yank1247,Jankundjara (B123),Yankunytjatjara,1922,,,-27,131.95,-27,131.95,Original, +B125,xd970,Yuwaalaraay,gami1243,Ualarai (B125),Ualarai,1880,,,-29.3,147.25,-29.3,147.25,Original, +B126,xd971,Nakako,pitj1243,Nakako (B126),,1912,,,-27.31,128.19,-27.31,128.19,Original,"KK: Language match uncertain: H. Hammarström suggests closest match is [ntj], when I discussed with Claire Bowern in 2015, she was not confident it should be matched to [ntj]. Therefore, left with a DPLACE placeholder for now [x03] (26 May 2016)" +B127,xd972,Ooldea,anta1253,Ooldea (B127),,1941,,,-30.38,131.81,-30.38,131.81,Original,"Note 8Feb2018: Changed to anta1253, based on comment by HH (""Speech at Ooldea (a station) was a mix of dialects from people from different dialects and multidialectal people mainly Pitjantjatjara [pjt], but also Antakarinya [ant]. Very strange to attribute Berndt & Berndt to Wirangu"") and after looking into maps of Berndts research location. Some uncertainty remains." +B128,xd973,Paakintji,darl1243,Barkindji (B128),Barkindji,1890,,,-32.4,142.25,-32.4,142.25,Original, +B129,xd974,Kaurna,kaur1267,Kaurna (B129),Karuna,1840,,,-34.56,138.4,-34.56,138.4,Original, +B131,xd975,Yaraldi,narr1259,Jaralde (B131),Jaralde,1850,,,-35.06,139.29,-35.06,139.29,Original, +B132,xd976,Mirniny,ngad1258,Mineng (B132),"Mirniny, Mineng, Mount Barker Tribe, Minang, Noongar",1850,,,-34.95,117.81,-34.95,117.81,Original,"Note 8Feb2018: Leaving for now, despite HH comment: ""HH: The vocabulary (""Minang"") is usually attributed to the language Nyungar [nys]. Have no idea why the paper is connected to Ngadjunmaya."". KK looked into this case in depth, checked with C. Bowern before settling on this language match. Certainly still some uncertainty, though, so with more evidence could be changed." +B133,xd977,Tjapwurong,djab1234,Tjapwurong (B133),,1850,,,-35.86,141.38,-35.86,141.38,Original, +B134,xd978,Bunurong,woiw1237,Bunurong (B134),,1850,,,-38.93,145.07,-38.48,145.23,Revised, +B135,xd979,Kurnai,gana1278,Kurnai (B135),,1850,,,-37.59,147.42,-37.59,147.42,Original, +B136,xd980,Tasmanians (southeastern),sout1439,Tasmanians (eastern) (B136),"Palawa, Tasmanians (southern), Tasmanians (eastern), Tasmanians (East Coast)",1830,,,-42.62,147.49,-42.62,147.49,Original, +B168,xd983,Coast Miwok,coas1301,Coast Miwok (B168),,1850,,,38.24,-122.88,38.24,-122.88,Original, +B190,xd985,Guaicura,guai1237,Guaicura (B190),Guaycura,1760,,,25,-111.54,25,-111.54,Original, +B203,xd988,Kawich Mountain Shoshoni,west2622,Kawich Mountain Shoshoni (B203),,1860,,,37.92,-116.45,37.92,-116.45,Original, +B205,xd989,Mono Lake Northern Paiute,sout2967,Mono Lake Paiute (B205),"Kutzadika'a, Mono Lake Paiute, Kutzadika",1870,,,38.11,-118.45,38.11,-118.45,Original, +B209,xd991,Timponogas,utee1244,Ute-timanogas (B209),"Timponogas Ute, Ute-timanogas, Ute-timpanogas, Ute-timinogas",1860,,,40.22,-111.81,40.22,-111.81,Original, +B212,xd992,Wadatkuht,sout2967,Honey Lake Paiute (B212),Honey Lake Paiute,1870,Northern Paiute (NR13),http://ehrafworldcultures.yale.edu/collection?owc=NR13,40.27,-120.44,40.27,-120.44,Original, +B219,xd993,North Fork Mono,mono1275,North Fork Mono Paiute (B219),"Mono (North Fork), Mono-North Fork Paiute, Norfolk Mono",1860,,,37,-119.07,37,-119.07,Original, +B223,xd994,Bear Creek Northern Paiute,nort1551,Bear Creek Paiute (B223),Bear Creek Paiute,1870,,,43.94,-120.49,43.94,-120.49,Original, +B215,xd995,Spring Valley Shoshoni,west2622,Spring Valley Shoshoni (B215),Spring Valley,1870,,,39.19,-114.48,39.19,-114.48,Original, +B224,xd995,Antelope Valley Shoshoni,west2622,Antelope Valley Shoshoni (B224),"Spring Valley, Antelope Valley Shoshoni",1860,,,40.19,-114.24,40.19,-114.24,Original, +B272,xd997,Chehalis,lowe1427,Chehalis (B272),,1880,,,46.87,-123.67,46.87,-123.67,Original, +B293,xd998,Gitxsan,gitx1241,Gitksan (B293),Gitksan,1880,,,55.65,-128.06,55.65,-128.06,Original, +B294,xd999,Koniag,koni1262,Koniag (B294),,1840,,,57.93,-153.16,57.93,-153.16,Original,"1Oct2018 - change to dialect and language mapping from beri1255 (no longer exists) to koni1262 (dialect of language paci1278) following update to Glottolog version 3.3.2. Note, this change may not be incorporated to Bouckaert/Atkinson global tree because of timing of correction." diff --git a/raw/societies_mapping.csv b/raw/societies_mapping.csv new file mode 100644 index 0000000..1ccb637 --- /dev/null +++ b/raw/societies_mapping.csv @@ -0,0 +1,340 @@ +id,related +B72,EA: Kung [Aa1]; SCCS: Kung [SCCS2] +B296, +B322,WNAI: Southern Okanagon [WNAI99] +B335, +B339, +B340, +B341, +B350, +B351, +B352, +B354, +B360, +B363, +B364, +B369, +B370, +B371, +B373, +B375, +B378, +B379, +B380, +B381,EA: Copper Eskimo [Na3]; SCCS: Copper Eskimo [SCCS124] +B382, +B383, +B384,EA: Iglulik [Na22] +B359,EA: Nabesna [Na1] +B297,EA: Chugach [Na10] +B377,EA: Nunamiut [Na12] +B386,EA: Baffinland [Na13] +B390,EA: Polar Eskimo [Na14] +B361,EA: Dogrib [Na15] +B358,EA: Satudene [Na16] +B345,EA: Slave [Na17]; SCCS: Slave [SCCS128] +B349,EA: Carrier [Na19]; WNAI: Alkatcho Carrier [WNAI93]; WNAI: Lower Carrier [WNAI94] +B389,EA: Tareumiut [Na2] +B356,EA: Kutchin [Na20] +B374,EA: Caribou Eskimo [Na21] +B372,EA: Labrador Eskimo [Na23] +B388,EA: Angmagsalik [Na24] +B385,EA: Greenlanders [Na25] +B362,EA: Tanaina [Na26] +B347,EA: Tahltan [Na27] +B343,EA: Sekani [Na28] +B344,EA: Beaver [Na29] +B355,EA: Chipewyan [Na30] +B342,EA: Montagnais [Na32]; SCCS: Montagnais [SCCS125] +B332,EA: Northern Saulteaux [Na33]; SCCS: Saulteaux [SCCS127] +B334,EA: Pekangekum [Na34] +B337,EA: Nipigon [Na35] +B331,EA: Rainy River [Na37] +B328,EA: Katikitegon [Na38] +B327,EA: Eastern Ojibwa [Na39] +B346,EA: Kaska [Na4]; SCCS: Kaska [SCCS129] +B329,EA: Micmac [Na41]; SCCS: Micmac [SCCS126] +B387,EA: Netsilik [Na43] +B338,EA: Mistassini [Na45] +B365,EA: Naskapi [Na5] +B299,EA: Nunivak [Na6] +B353,EA: Cree Attawapiskat [Na7] +B357,EA: Ingalik [Na8]; SCCS: Ingalik [SCCS122] +B298,EA: Aleut [Na9]; SCCS: Aleut [SCCS123] +B290,EA: Haida [Nb1]; SCCS: Haida [SCCS131]; WNAI: North Masset Haida [WNAI3] +B336,EA: Alkatcho [Nb10] +B273,EA: Nootka [Nb11]; WNAI: Clayoquot Nootka [WNAI12] +B268,EA: Squamish [Nb13]; WNAI: Squamish Salish [WNAI16] +B282,EA: Comox [Nb14] +B277,EA: Lummi [Nb15]; WNAI: Lummi Salish [WNAI21] +B285,EA: Klallam [Nb16]; WNAI: Klallam Salish [WNAI22] +B270,EA: Puyallup [Nb17]; WNAI: Puyallup Salish [WNAI25] +B284,EA: Quileute [Nb18]; WNAI: Quileute Chimakuan [WNAI26] +B274,EA: Chinook [Nb19]; WNAI: Lower Chinook [WNAI27] +B271,EA: Twana [Nb2]; SCCS: Twana [SCCS133]; WNAI: Twana Salish [WNAI23] +B281,EA: Tillamok [Nb20]; WNAI: Tillamook Salish [WNAI28] +B275,EA: Coos [Nb21]; WNAI: Coos [WNAI31] +B292,EA: Tlingit [Nb22]; WNAI: South Tlingit [WNAI2] +B283,EA: Bellabella [Nb23]; WNAI: Bella Bella Kwakiutl [WNAI9] +B286,EA: Makah [Nb24]; WNAI: Makah Nootkan [WNAI13] +B278,EA: Quinault [Nb25]; WNAI: Quinault Salish [WNAI24] +B280,EA: Cowichan [Nb26]; WNAI: Cowichan Salish [WNAI17] +B279,EA: Stalo [Nb27]; WNAI: Upper Stalo Salish [WNAI19] +B269,EA: Alsea [Nb28]; WNAI: Alsea [WNAI29] +B288,EA: Kwakiutl [Nb3]; WNAI: Fort Rupert Kwakiutl [WNAI10] +B176,EA: Takelma [Nb30] +B181,EA: Tututni [Nb31]; WNAI: Tututni Athapaskan [WNAI32] +B179,EA: Shasta [Nb32]; WNAI: East Shasta [WNAI44]; WNAI: West Shasta [WNAI45] +B162,EA: Chimariko [Nb33]; WNAI: Chimariko [WNAI46] +B182,EA: Karok [Nb34]; WNAI: Karok [WNAI37] +B180,EA: Hupa [Nb35]; WNAI: Hupa Athapaskan [WNAI38] +B184,EA: Wiyot [Nb36]; WNAI: Wiyot [WNAI39] +B167,EA: Lassik [Nb37] +B169,EA: Mattole [Nb38]; WNAI: Mattole Athapaskan [WNAI41] +B166,EA: Sinkyone [Nb39]; WNAI: Sinkyone Athapaskan [WNAI40] +B186,EA: Yurok [Nb4]; SCCS: Yurok [SCCS134]; WNAI: Yurok [WNAI36] +B295,EA: Eyak [Nb5]; SCCS: Eyak [SCCS130] +B178,EA: Tolowa [Nb6]; WNAI: Tolowa Athapaskan [WNAI35] +B289,EA: Tsimshian [Nb7]; WNAI: Tsimshian [WNAI5] +B287,EA: Haisla [Nb8]; WNAI: Haisla Kwakiutl [WNAI7] +B291,EA: Bellacoola [Nb9]; SCCS: Bellacoola [SCCS132]; WNAI: Bella Coola Salish [WNAI11] +B153,EA: Nomlaki [Nc1]; WNAI: Nomlaki Wintun [WNAI50] +B187,EA: Achomawi [Nc10]; WNAI: East Achomawi [WNAI51]; WNAI: West Achomawi [WNAI52] +B174,EA: Yana [Nc11]; WNAI: Yana [WNAI62] +B185,EA: Maidu [Nc12]; WNAI: Mountain Maidu [WNAI56] +B163,EA: Nisenan [Nc13]; WNAI: Foothill Nisenan [WNAI57]; WNAI: Mountain Nisenan [WNAI58]; WNAI: Southern Nisenan [WNAI59] +B160,EA: Wintu [Nc14]; WNAI: Trinity River Wintu [WNAI47]; WNAI: McCloud River Wintu [WNAI48]; WNAI: Sacramento River Wintu [WNAI49] +B177,EA: Coast Yuki [Nc15]; WNAI: Coast Yuki [WNAI60] +B173,EA: Northern Pomo [Nc17]; WNAI: Northern Pomo [WNAI63] +B158,EA: Eastern Pomo [Nc18]; SCCS: Pomo (Eastern) [SCCS135]; WNAI: Eastern Pomo [WNAI64] +B159,EA: Eastern Pomo [Nc18]; SCCS: Pomo (Eastern) [SCCS135]; WNAI: Eastern Pomo [WNAI64] +B152,EA: Tubatulabal [Nc2]; WNAI: Tubatulabal [WNAI78] +B172,EA: Wappo [Nc20]; WNAI: Wappo Yukian [WNAI66] +B170,EA: Lake Miwok [Nc21] +B155,EA: Patwin [Nc22]; WNAI: Patwin Wintun [WNAI67] +B157,EA: Monachi [Nc23]; WNAI: Kings River Mono (Uto-Aztecan) [WNAI72] +B148,EA: Lake Yokuts [Nc24]; SCCS: Yokuts (Lake) [SCCS136]; WNAI: Lake Yokuts [WNAI76]; WNAI: Yauelmani Yokuts [WNAI77] +B151,EA: Wukchumni [Nc25]; WNAI: Kaweah Yokuts [WNAI75] +B164,EA: Salinan [Nc26]; WNAI: Salinan [WNAI80] +B199,EA: Kawaiisu [Nc27]; WNAI: Kawaiisu [WNAI79] +B161,EA: Chumash [Nc28] +B156,EA: Gabrielo [Nc29]; WNAI: Gabrielino [WNAI81] +B154,EA: Yokuts [Nc3]; WNAI: Chuckchansi Yokuts [WNAI73] +B149,EA: Serrano [Nc30]; WNAI: Serrano [WNAI84] +B144,EA: Cahuilla [Nc31]; WNAI: Desert Cahuilla [WNAI85] +B145,EA: Cupeno [Nc32]; WNAI: Cupeno [WNAI83] +B150,EA: Luiseno [Nc33]; WNAI: Luiseno [WNAI82] +B146,EA: Kiliwa [Nc34]; WNAI: Kaliwa (Hokan) [WNAI91] +B183,EA: Atsugewi [Nc4]; WNAI: Atsugewei [WNAI53] +B175,EA: Miwok [Nc5]; WNAI: Central Miwok [WNAI69] +B147,EA: Diegueno [Nc6]; WNAI: Western Diegueno [WNAI89]; WNAI: Desert Diegueno [WNAI90] +B171,EA: Yuki [Nc7]; WNAI: Yuki [WNAI61] +B189,EA: Klamath [Nc8]; SCCS: Klamath [SCCS138]; WNAI: Klamath [WNAI112] +B188,EA: Modoc [Nc9]; WNAI: Modoc [WNAI113] +B315,EA: Tenino [Nd1]; WNAI: Tenino [WNAI111] +B325,EA: Thompson [Nd10]; WNAI: Upper Thompson [WNAI98] +B333,EA: Shuswap [Nd11]; WNAI: Shuswap [WNAI96] +B330,EA: Flathead [Nd12]; WNAI: Flathead [WNAI105] +B326,EA: Kalispel [Nd13]; WNAI: Kalispel [WNAI104] +B320,EA: Coeur d’Alene [Nd14]; WNAI: Coeur d’Alene [WNAI103] +B321,EA: Sinkaitk [Nd15] +B317,EA: Wenatchi [Nd16]; WNAI: Wenatchi [WNAI102] +B318,EA: Klikitat [Nd17] +B319,EA: Wishram [Nd18]; WNAI: Wishram [WNAI110] +B316,EA: Umatilla [Nd19]; WNAI: Umatilla [WNAI108] +B222,EA: Southern Ute [Nd2]; WNAI: Wimonuch Ute (Shoshonean) [WNAI131] +B324,EA: Nez Perce [Nd20]; WNAI: Nez Perce [WNAI107] +B231,EA: Wadadokado [Nd22]; SCCS: Paiute (Northern) [SCCS137]; WNAI: Wada-Dokado Northern Paiute [WNAI114] +B226,EA: Kidutokado [Nd24]; WNAI: Kidu-Dokado Northern Paiute [WNAI115] +B208,EA: Kuyuidokado [Nd27]; WNAI: Kuyui-Dokado Northern Paiute [WNAI116] +B210,EA: Toedokado [Nd28] +B206,EA: Tunava [Nd29] +B211,EA: Tunava [Nd29] +B202,EA: Eastern Mono [Nd30]; WNAI: Owens Valley Northern Paiute [WNAI117] +B197,EA: Koso [Nd31] +B192,EA: Panamint [Nd32]; WNAI: Panamint Shoshone [WNAI118] +B195,EA: Panamint [Nd32]; WNAI: Panamint Shoshone [WNAI118] +B200,EA: Panamint [Nd32]; WNAI: Panamint Shoshone [WNAI118] +B218,EA: Mahaguaduka [Nd35]; WNAI: Reese River Shoshone [WNAI120] +B233,EA: Wiyambituka [Nd36] +B217,EA: Hamilton [Nd37] +B323,EA: Sanpoil [Nd4]; WNAI: Sanpoil [WNAI100] +B221,EA: Tubaduka [Nd40] +B228,EA: Wadaduka [Nd41]; WNAI: Ruby Valley Shoshone [WNAI122] +B216,EA: White Knife [Nd43]; WNAI: Battle Mountain Shoshone [WNAI123] +B229,EA: Bohogue [Nd45]; WNAI: Bohogue Shoshone [WNAI125] +B232,EA: Tukudika [Nd47] +B207,EA: Agaiduka [Nd46]; WNAI: Agaiduka Shoshone [WNAI126] +B214,EA: Gosiute [Nd48]; WNAI: Gosiute Shoshone [WNAI124] +B201,EA: Antarianunts [Nd49] +B213,EA: Hukundika [Nd5]; WNAI: Hukundika Shoshone [WNAI127] +B204,EA: Kaibab [Nd53]; EA: Las Vegas [Nd55]; WNAI: Kaibab Southern Paiute [WNAI133] +B230,EA: Uintah [Nd58]; WNAI: Uintah Ute [WNAI129] +B225,EA: Washo [Nd6]; WNAI: Washo [WNAI119] +B234,EA: Uncompahgre [Nd62]; WNAI: Uncompaghre Ute [WNAI130] +B252,EA: Bannock [Nd63] +B227,EA: Wind River [Nd64]; WNAI: Wind River Shoshone [WNAI128] +B198,EA: Walapai [Nd65]; WNAI: Walapai [WNAI137] +B196,EA: Yavapai [Nd66]; WNAI: Northeast Yavapai [WNAI138]; WNAI: Southeast Yavapai [WNAI139] +B250,EA: Kutenai [Nd7]; SCCS: Kutenai [SCCS139]; WNAI: Kutenai [WNAI106] +B348,EA: Chilcotin [Nd8]; WNAI: Chilcotin [WNAI95] +B276,EA: Lillooet [Nd9]; WNAI: Upper Lillooet [WNAI97] +B253,EA: Gros Ventre [Ne1]; SCCS: Gros Ventre [SCCS140] +B257,EA: Assiniboin [Ne11] +B256,EA: Blackfoot [Ne12] +B259,EA: Blood [Ne13] +B254,EA: Bungi [Ne14] +B193,EA: Karankawa [Ne16] +B243,EA: Kiowa [Ne17] +B255,EA: Piegan [Ne18] +B258,EA: Plains Cree [Ne19] +B244,EA: Kiowa Apache [Ne2] +B194,EA: Coahuilteco [Ne21] +B241,EA: Comanche [Ne3]; SCCS: Comanche [SCCS147] +B248,EA: Crow [Ne4] +B245,EA: Cheyenne [Ne5] +B260,EA: Sarsi [Ne7] +B249,EA: Teton [Ne8] +B246,EA: Arapaho [Ne9] +B242,EA: Chiricahua [Nh1]; SCCS: Chiricahua [SCCS148]; WNAI: Warm Springs Chiricahua Apache [WNAI152]; WNAI: Huachuca Chiricahua Apache [WNAI153] +B240,EA: Lipan [Nh24]; WNAI: Lipan Apache [WNAI155] +B143,EA: Seri [Ni4] +B191,EA: Chichimec [Ni5] +B35,EA: Paraujano [Sb5] +B38,EA: Yaruro [Sc2] +B39,EA: Guahibo [Sc4] +B36,EA: Shiriana [Sd6] +B43,EA: Siriono [Se1]; SCCS: Siriono [SCCS173] +B55,EA: Yahgan [Sg1]; SCCS: Yahgan [SCCS186] +B54,EA: Ona [Sg3] +B51,EA: Tehuelche [Sg4]; SCCS: Tehuelche [SCCS185] +B53,EA: Alacaluf [Sg5] +B41,EA: Bororo [Si1] +B45,EA: Nambicura [Si4]; SCCS: Nambicuara [SCCS174] +B42,EA: Guato [Si6] +B50,EA: Aweikoma [Sj3]; SCCS: Aweikoma [SCCS180] +B48,EA: Botocudo [Sj5]; SCCS: Botocudo [SCCS178] +B165, +B70,EA: Dorobo [Aa2] +B65,EA: Mbuti [Aa5]; SCCS: Mbuti [SCCS13] +B25,EA: Gilyak [Ec1]; SCCS: Gilyak [SCCS119] +B27,EA: Nganasan [ec12] +B28,EA: Ungazikmit [ec14] +B26,EA: Yukaghir [Ec6]; SCCS: Yukaghir [SCCS120] +B22,EA: Ainu [Ec7]; SCCS: Ainu [SCCS118] +B24,EA: Ket [Ec8] +B15,EA: Chenchu [Eg1] +B8,EA: Andamese [Eh1]; SCCS: Andamanese [SCCS79] +B10,EA: Vedda [Eh4]; SCCS: Vedda [SCCS80] +B73,EA: Naron [Aa7] +B9,EA: Semang [Ej3]; SCCS: Semang [SCCS77] +B3,EA: Kubu [Ib8] +B1, +B124,EA: Aranda [Id1]; SCCS: Aranda [SCCS91]; CHIRILA: Eastern and Central Arrernte [CHIRILA1048] +B109,EA: Walbiri [Id10]; CHIRILA: Warlpiri [CHIRILA192] +B87,EA: Gidjingali [Id11]; CHIRILA: Burarra [CHIRILA1143] +B94,EA: Yir Yoront [Id12]; CHIRILA: Yir-Yoront [CHIRILA27] +B97,EA: Groote Eylandt [Id13]; CHIRILA: Anindilyakwa [CHIRILA1229] +B88,EA: Murngin [Id2]; CHIRILA: Dhuwal [CHIRILA1093] +B95,EA: Tiwi [Id3]; SCCS: Tiwi [SCCS90]; CHIRILA: Tiwi [CHIRILA300] +B121,EA: Dieri [Id4]; CHIRILA: Diyari [CHIRILA1088] +B106,EA: Kariera [Id5]; CHIRILA: Kariyarra [CHIRILA855] +B90,EA: Wikmunkan [Id6]; CHIRILA: Wik-Mungkan [CHIRILA138] +B137,EA: Tasmanians [Id8] +B130,EA: Wongaibon [Id9]; CHIRILA: Ngiyambaa [CHIRILA520] +B79,EA: Xam [Aa8] +B69,EA: Hatsa Kindiga [Aa9]; SCCS: Hadza [SCCS9] +B2, +B4, +B5, +B6, +B7, +B11, +B12, +B13, +B14, +B16, +B17, +B18, +B19, +B20, +B21, +B23, +B37, +B40, +B44, +B46, +B47, +B49, +B52, +B60, +B61, +B62, +B63, +B64, +B66, +B67, +B68, +B71, +B74, +B75, +B76, +B77, +B78, +B82,CHIRILA: Kala Lagaw Ya [CHIRILA96] +B83,CHIRILA: Larrakiya [CHIRILA759] +B84,CHIRILA: Gunwinygu [CHIRILA936] +B85,CHIRILA: Djinba [CHIRILA1066] +B86,CHIRILA: Burarra [CHIRILA1143] +B89,CHIRILA: Wunambal [CHIRILA81] +B91,CHIRILA: Gagudju [CHIRILA1458] +B92,CHIRILA: Wubuy [CHIRILA94] +B93,CHIRILA: Umpila [CHIRILA283] +B96,CHIRILA: Kuku Yalanji [CHIRILA802] +B98,CHIRILA: Flinders Island [CHIRILA1044] +B99,CHIRILA: Malak Malak [CHIRILA738] +B100,CHIRILA: Worrorra [CHIRILA99] +B101,CHIRILA: Kija [CHIRILA841] +B102,CHIRILA: Lardil [CHIRILA760] +B103,CHIRILA: Kayardild [CHIRILA846] +B104,CHIRILA: Karajarri [CHIRILA860] +B105,CHIRILA: Dyirbal [CHIRILA1050] +B107,CHIRILA: Warungu [CHIRILA179] +B108,CHIRILA: Jaru [CHIRILA888] +B110,CHIRILA: Dyirbal [CHIRILA1050] +B111,CHIRILA: Manjiljarra [CHIRILA714] +B112,CHIRILA: Warnman [CHIRILA188] +B113,CHIRILA: Pintupi [CHIRILA419] +B114,CHIRILA: Turubul [CHIRILA291] +B115,CHIRILA: Duungidjawu [CHIRILA1051] +B116,CHIRILA: Karuwali [CHIRILA849] +B117,CHIRILA: Alyawarr [CHIRILA1239] +B118,CHIRILA: Ngaanyatjarra [CHIRILA577] +B119,CHIRILA: Bandjalang [CHIRILA1203] +B120,CHIRILA: Pitjantjatjara [CHIRILA413] +B122,CHIRILA: Lower Southern Aranda [CHIRILA750] +B123,CHIRILA: Yankunytjatjara [CHIRILA53] +B125,CHIRILA: Yuwaalaraay [CHIRILA5] +B126,CHIRILA: NA [CHIRILA413] +B127,CHIRILA: Wirangu [CHIRILA121] +B128,CHIRILA: Paakantyi [CHIRILA444] +B129,CHIRILA: Kaurna [CHIRILA847] +B131,CHIRILA: Yaraldi [CHIRILA50] +B132,CHIRILA: Ngatjumaya [CHIRILA529] +B133,CHIRILA: Tjapwurrung [CHIRILA297] +B134,CHIRILA: Boonwurrung [CHIRILA1164] +B135,CHIRILA: Kurnai [CHIRILA36] +B136, +B168, +B190, +B203, +B205, +B209, +B212,EA: Wadatkuht [Nd26] +B219,WNAI: San Joaquin Mono (Uto-Aztecan) [WNAI71] +B223, +B215,EA: Spring Valley [Nd39]; WNAI: Spring Valley Shoshone [WNAI121] +B224,EA: Spring Valley [Nd39]; WNAI: Spring Valley Shoshone [WNAI121] +B272, +B293,WNAI: Gitksan Tsimshian [WNAI6] +B294, diff --git a/raw/sources.bib b/raw/sources.bib new file mode 100644 index 0000000..34e17b4 --- /dev/null +++ b/raw/sources.bib @@ -0,0 +1,41602 @@ +# -*- coding: utf-8 -*- +@book{abadie1924, + author = {Abadie, Maurice}, + title = {Les races du Haut-Tonkin}, + address = {Paris}, + year = {1924}, + url = {https://archive.org/details/McGillLibrary-103431-303}, + key = {Abadie (1924)}, + lgcode = {Man [kimm1245]} +} +@article{abasadse1894, + author = {Abasadse, N. L. von.}, + title = {Die Familiengemeinde bei den Grusinern}, + journal = {Archaeology & Anthropology}, + number = {2}, + pages = {435-442}, + year = {1894}, + key = {Abasadse (1894)}, + lgcode = {Georgians [imer1248]} +} +@book{abbeville1614, + author = {Abbeville, C. d'.}, + title = {Histoire de la Mission des Peres Capucins en l'Isle de Maragnan et terres circonuoisines}, + publisher = {L'Imprimérie de François Huby}, + address = {Paris}, + year = {1614}, + glottolog_ref = {hh:ew:dAbbeville:Maragnan}, + key = {Abbeville (1614)}, + lgcode = {Tupinambá [tupi1273]} +} +@article{abbie1957, + author = {Abbie, A. A.}, + title = {Metrical Characters of a Central Australian Tribe}, + journal = {Oceania}, + publisher = {Blackwell Publishing Ltd}, + volume = {27}, + number = {3}, + pages = {220-243}, + year = {1957}, + issn = {1834-4461}, + url = {https://doi.org/10.1002/j.1834-4461.1957.tb00207.x}, + doi = {10.1002/j.1834-4461.1957.tb00207.x}, + key = {Abbie (1957)}, + lgcode = {Walbiri [warl1254]} +} +@incollection{abbott1892, + author = {Abbott, W. R.}, + title = {Ethnological Collections}, + booktitle = {Reports of the U. S. National Museum, 1890-91}, + pages = {381-428}, + year = {1892}, + key = {Abbott (1892)}, + lgcode = {Chagga [moch1256]} +} +@book{abbott1917, + author = {Abbott, F. F.}, + title = {Common People of Ancient Rome}, + address = {New York}, + year = {1917}, + key = {Abbott (1917)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{abdallah1917, + author = {Abd Allah, M. M.}, + title = {Sîwan customs}, + journal = {Harvard Afr. Studies 1}, + volume = {1}, + pages = {1-28}, + year = {1917}, + glottolog_ref = {eballiso2009:11756}, + key = {Abd Allah (1917)}, + lgcode = {Siwans [siwi1239]} +} +@book{aberle1953, + author = {Aberle, David F.}, + title = {The Kinship System of the Kalmuk Mongols}, + series = {University of New Mexico Publications in Anthropology}, + number = {8}, + pages = {1-48}, + year = {1953}, + key = {Aberle (1953)}, + lgcode = {Baga [mbul1258], Kalmyk [kalm1243]} +} +@incollection{aberle1961, + author = {Aberle, David F.}, + editor = {David Schneider and Kathleen Gough}, + title = {Navajo}, + pages = {96-201}, + year = {1961}, + key = {Aberle, 1961}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{abrahams1967, + author = {Abrahams, R. G.}, + title = {The Peoples of Greater Unyamwezi, Tanzania}, + address = {London}, + year = {1967}, + key = {Abrahams (1967)}, + lgcode = {Sukuma [suku1261], Sumbwa [sumb1240]} +} +@book{adams1973, + author = {Adams, J. W.}, + title = {The Gitksan Potlatch Population Flux, Resource Ownership and Reciprocity}, + publisher = {Holt, Rinehart and Winston of Canada}, + address = {Toronto}, + year = {1973}, + key = {Adams (1973)}, + lgcode = {Gitxsan [gitx1241]} +} +@article{adeler1939, + author = {Adeler}, + title = {Coutume maure}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A, 9}, + pages = {373-400}, + year = {1939}, + key = {Adeler (1939)}, + lgcode = {Zenaga [zena1248]} +} +@mastersthesis{adelmannd, + author = {Adelman, F.}, + title = {The Kalmuks of the Lower Volga River and Their Kinship Structure}, + school = {University of Pennsylvania}, + year = {1954}, + key = {Adelman (nd)}, + lgcode = {Kalmyk [kalm1243]} +} +@article{adney1900, + author = {Adney, T.}, + title = {Moose Hunting with the Tro-Kutchin}, + journal = {Harpers Magazine}, + number = {100}, + pages = {495-507}, + year = {1900}, + key = {Adney (1900)}, + lgcode = {Hän [hann1241]} +} +@book{adrianiandkruijt1912, + author = {Adriani, N., and A. C. Kruijt}, + title = {De Bare'e-sprekende Toradja's van Midden-Celebes}, + publisher = {Batavia: Landesdrukkerij}, + address = {Batavia}, + year = {1912}, + glottolog_ref = {mpieva:Adriani19121914DeBarees}, + howpublished = {reprinted 1950-51 Amsterdam}, + key = {Adriani and Kruijt (1912)}, + lgcode = {Toradja [pamo1252]} +} +@book{afanaseva1990, + author = {Afanas'eva, G. M.}, + title = {Traditsionnaja sistema vosproizvodstva nganasan (problemy reproduktsii obosoblennyh populjatsij)}, + publisher = {Institut Etnologii i Antropologii}, + address = {Moscow}, + year = {1990}, + key = {Afanas'eva (1990)}, + lgcode = {Nganasan [ngan1291]}, + title_english = {Nganasan Traditional Reproductive System: Problems of Reproduction among Population Isolates} +} +@article{aginsky1935, + author = {Aginsky, B. W.}, + title = {The Mechanics of Kinship}, + journal = {American Anthropologist}, + publisher = {Blackwell Publishing Ltd}, + volume = {37}, + number = {3}, + pages = {450-457}, + year = {1935}, + issn = {1548-1433}, + url = {https://doi.org/10.1525/aa.1935.37.3.02a00080}, + doi = {10.1525/aa.1935.37.3.02a00080}, + key = {Aginsky (1935)}, + lgcode = {Southern Pomo [sout2984]} +} +@article{aginsky1943, + author = {Aginsky, B. W.}, + title = {Central Sierra}, + journal = {Anth. Records}, + volume = {8}, + pages = {393-468}, + year = {1943}, + key = {Aginsky (1943)}, + lgcode = {Central Sierra Miwok [cent2140], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Miwok [nort2968], Southern Miwok [sout2985], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@book{aginskyandaginsky1967, + author = {Aginsky, B. W., and E. G. Aginsky.}, + title = {Deep Valley}, + address = {N. Y.}, + year = {1967}, + key = {Aginsky and Aginsky (1967)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{agrawal1967, + author = {Agrawal, H. N.}, + title = {Physical Characteristics of the Shompen of Great Nicobar}, + journal = {Bulletin of the Anthropological Survey of India}, + volume = {16}, + number = {1-2}, + pages = {83-97}, + year = {1967}, + key = {Agrawal (1967)}, + lgcode = {Shompen [shom1245]} +} +@article{ahlqvist1885, + author = {Ahlqvist, A.}, + title = {Unter Wogulen und Ostjaken}, + journal = {Acta Soc. Scient. Fennicae}, + volume = {14}, + pages = {133-307}, + year = {1885}, + key = {Ahlqvist (1885)}, + lgcode = {Ob Ostyak [khan1273]} +} +@book{ahmarov1907, + author = {Ahmarov, G. N.}, + title = {Svadebnye obrjady kazanskiht tatar}, + address = {Kazan}, + year = {1907}, + key = {Ahmarov (1907)}, + lgcode = {Kazan tatar [midd1325]}, + title_english = {Wedding Rituals of the Kazan Tatars} +} +@book{ajisafe1924, + author = {Ajisafe, A. K.}, + title = {The laws and customs of the Yoruba people}, + publisher = {London: George Routledge & Sons}, + address = {London}, + year = {1924}, + glottolog_ref = {eballiso2009:59283}, + key = {Ajisafe (1924)}, + lgcode = {Egba [egba1238]} +} +@book{aleksandrov1899, + author = {Aleksandrov, N. A.}, + title = {Cheremisy i chuvashi. (Lesnaja okraina) (The Mari and Chuvash. Forest Province)}, + address = {Moscow}, + year = {1899}, + key = {Aleksandrov (1899)}, + lgcode = {Chuvash [chuv1255]} +} +@book{aleksandrov1900a, + author = {Aleksandrov, N. A.}, + title = {Inorodtsy lesov}, + address = {Moscow}, + year = {1900}, + key = {Aleksandrov (1900a)}, + lgcode = {Latvians [latv1249]}, + title_english = {Non-Russian Woodland Peoples} +} +@book{aleksandrov1900b, + author = {Aleksandrov, N. A.}, + title = {Stepi. Bessarabija. Moldavane (rumyny)}, + address = {Moscow}, + year = {1900}, + key = {Aleksandrov (1900b)}, + lgcode = {Moldovans [mold1248]}, + title_english = {Steppes. Bessarabia. Moldovans (Rumanians)} +} +@book{aleksandrovandshlygina1971, + editor = {Aleksandrov, V. A., and N. V. Shlygina}, + title = {Sel'skie poselenija Pribaltiki (XIII-XX vv. )}, + address = {Moscow}, + year = {1971}, + key = {Aleksandrov and Shlygina (1971)}, + lgcode = {Estonians [esto1258], Latvians [latv1249]}, + title_english = {Rural Settlements of the Baltic Region (from the Eighteenth to the Twentieth Century)} +} +@book{alexandreandbinet1958, + author = {Alexandre, P., and J. Binet.}, + title = {Le groupe dit pahouin: fang-boulou-beti}, + publisher = {Presses Universitaires de France; International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {6}, + year = {1958}, + glottolog_ref = {eballiso2009:47214}, + key = {Alexandre and Binet (1958)}, + lgcode = {Fang [fang1246]} +} +@article{alkire1965, + author = {Alkire, W. H.}, + title = {Lamotrek Atoll and Inter-island Socioeconomic Ties}, + journal = {Illinois Studies in Anthropology}, + volume = {5}, + pages = {1-180}, + year = {1965}, + key = {Alkire (1965)}, + lgcode = {Lamotrek [lamo1243]} +} +@article{alland1963, + author = {Alland, A.}, + title = {Residence, Domicile, and Descent Groups Among the Abrong}, + journal = {Ethnology}, + volume = {2}, + pages = {276-281}, + year = {1963}, + key = {Alland (1963)}, + lgcode = {Abron [abro1238]} +} +@article{allanetal1948, + author = {Allan, W. and M. Gluckman and D. U. Peters and C. G. Trapell}, + title = {Land Holding and Land Usage Among the Plateau Tonga of Mazabuka District}, + journal = {Rhodes-Liv. Pap.}, + volume = {14}, + pages = {1-192}, + year = {1948}, + key = {Allan et al (1948)}, + lgcode = {Plateau Tonga [tong1318]} +} +@misc{allegret1927, + author = {Allegret, E.}, + title = {Correspondence}, + year = {1927}, + howpublished = {published in H. A. Junod, the Life of a South African Tribe 1: 271n}, + key = {Allegret (1927)}, + lgcode = {Mpongwe [myen1241]} +} +@book{allen1932, + author = {Allen, W. E. D.}, + title = {A History of the Georgia People}, + address = {London}, + year = {1932}, + key = {Allen (1932)}, + lgcode = {Georgians [imer1248]} +} +@article{allys1930, + author = {Allys}, + title = {Monographie de la tribu des Dzems}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {21}, + pages = {3-21}, + year = {1930}, + key = {Allys (1930)}, + lgcode = {Dzem [njye1238]} +} +@book{alphonse1956, + author = {Alphonse, E. S.}, + title = {Guaymi Grammar and Dictionary}, + publisher = {Washington: United States Government Printing Office}, + address = {Washington}, + series = {Bulletin of the Bureau of American Ethnology}, + number = {162}, + pages = {1-128}, + year = {1956}, + url = {https://repository.si.edu/handle/10088/15456}, + glottolog_ref = {wals:145}, + key = {Alphonse (1956)}, + lgcode = {Ngäbe [ngab1239]} +} +@book{altandalt1959, + author = {Alt, H., and E. Alt}, + title = {Russia's Children}, + address = {N. Y.}, + year = {1959}, + key = {Alt and Alt (1959)}, + lgcode = {Russians [russ1263]} +} +@book{altman1987, + author = {Altman, J. C.}, + title = {Hunter-Gatherers Today: An Aboriginal Economy in North Australia}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + year = {1987}, + key = {Altman (1987)}, + lgcode = {Gunwinygu [gunw1252]} +} +@article{altschuler1965a, + author = {Altschuler, M.}, + title = {Notes on Cayapa kinship}, + journal = {Ethnology}, + volume = {4}, + pages = {440-447}, + year = {1965}, + glottolog_ref = {fabreall2009ann:Barbacoa_cha05}, + key = {Altschuler (1965a)}, + lgcode = {Chachi [chac1249]} +} +@phdthesis{altschuler1965b, + author = {Altschuler, M.}, + title = {The Cayapa}, + school = {University of Minnesota}, + year = {1965}, + key = {Altschuler (1965b)}, + lgcode = {Chachi [chac1249]} +} +@incollection{altschuler1971, + author = {Altschuler, M.}, + editor = {D. S. Marshall and R. C. Suggs}, + title = {Cayapa Personality and Sexual Motivation}, + booktitle = {Human Sexual Behavior}, + address = {Princeton}, + pages = {38-58}, + year = {1971}, + key = {Altschuler (1971)}, + lgcode = {Chachi [chac1249]} +} +@article{ambrosetti1895, + author = {Ambrosetti, J. B.}, + title = {Los Indios Caingua del alto Parana}, + journal = {Boletin del Instituto Geografico Argentino}, + volume = {15}, + pages = {661-744}, + year = {1895}, + key = {Ambrosetti (1895)}, + lgcode = {Cayua [mbya1239]} +} +@book{ames1934, + author = {Ames, C. G.}, + title = {Gazetteer of the Plateau Province, Nigeria}, + publisher = {Ms.}, + pages = {474}, + year = {1934}, + glottolog_ref = {hh:he:Ames:Plateau}, + key = {Ames (1934)}, + lgcode = {Yergum [taro1263]} +} +@phdthesis{ames1953, + author = {Ames, D. W.}, + title = {Plural Marriage Among the Wolof in the Gambia}, + school = {Northwestern University}, + year = {1953}, + key = {Ames (1953)}, + lgcode = {Wolof [nucl1347]} +} +@book{ames1958, + author = {Ames, D.W.}, + title = {The dual function of the "little people" of the forest in the lives of the Wolof}, + year = {1958}, + key = {Ames (1958)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1959a, + author = {Ames, D. W.}, + editor = {W. R. Bascom and M. J. Herskovits}, + title = {Selection of Mates}, + booktitle = {Continuity and Change in African Cultures}, + address = {Chicago}, + pages = {156-68}, + year = {1959}, + key = {Ames (1959a)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1959b, + author = {Ames, D. W.}, + editor = {W. R. Bascom and M. J. Herskovits}, + title = {Wolof Co-operative Work Groups}, + booktitle = {Continuity and Change in African Cultures}, + address = {Chicago}, + pages = {224-237}, + year = {1959}, + key = {Ames (1959b)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ames1962, + author = {Ames, D. W.}, + editor = {P. Bohannan and G. Dalton}, + title = {The Rural Wolof of the Gambia}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {29-60}, + year = {1962}, + key = {Ames (1962)}, + lgcode = {Wolof [nucl1347]} +} +@book{ammar1954, + author = {Ammar, H.}, + title = {Growing Up in an Egyptian Village}, + address = {London}, + year = {1954}, + key = {Ammar (1954)}, + lgcode = {Egyptians [egyp1253]} +} +@phdthesis{amsden1977, + author = {Amsden, C. W.}, + title = {A Quantitative Analysis of Nunamiut Eskimo Settlement Dynamics: 1898 to 1969}, + school = {Department of Anthropology, University of New Mexico}, + address = {Albuerque}, + year = {1977}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Amsden (1977)}, + lgcode = {Nunamiut [nort2944]} +} +@book{amundsen1908, + author = {Amundsen, R. E. G.}, + title = {Roald Amundsen's "The Northwest Passage." Being the Record of a Voyage of Exploration of the Ship "Gjoa, " 1903-1907. 2 vols}, + publisher = {E. P. Dutton}, + address = {New York}, + year = {1908}, + key = {Amundsen (1908)}, + lgcode = {Utkuhikhalingmiut [nets1241]} +} +@misc{anderson1949, + author = {Anderson, R.}, + title = {Northern Cheyenne field notes}, + year = {1949}, + howpublished = {Manuscript}, + key = {Anderson (1949)}, + lgcode = {Cheyenne [chey1247]} +} +@incollection{andersonandrobins1988, + author = {Anderson, C., and R. Robins.}, + editor = {B. Meenan and R. Jones}, + title = {Dismissed Due to Lack of Evidence? Kuku-Yalanji Sites and the Archaeological Record}, + booktitle = {Archaeology with Ethnography: An Australian Perspective}, + publisher = {Australian National University}, + address = {Canberra}, + pages = {182-205}, + year = {1988}, + key = {Anderson and Robins (1988)}, + lgcode = {Kuku (Yalanji) [kuku1273]} +} +@book{andersson1953, + author = {Andersson, E.}, + title = {Contribution à l'ethnographie des kuta}, + publisher = {Stockholm: Almqvist & Wiksell}, + address = {Stockholm}, + series = {Studia ethnographica upsaliensia}, + volume = {6}, + pages = {1-364}, + year = {1953}, + glottolog_ref = {eballiso2009:18840}, + key = {Andersson (1953)}, + lgcode = {Kota [ndas1238]} +} +@article{anguloandfreeland1929, + author = {Angulo, J. de, and L. S. Freeland}, + title = {Notes on the Northern Paiute of California}, + journal = {Journ. Soc. Americ.}, + volume = {21}, + pages = {313-335}, + year = {1929}, + key = {Angulo and Freeland (1929)}, + lgcode = {Kidutokado [nort1551]} +} +@article{ankermann1910, + author = {Ankermann, B.}, + title = {Bericht uber eine Forschungreise ins Grasland von Kamerun}, + journal = {Zeitschrift für Ethnologie}, + volume = {42}, + pages = {288-310}, + year = {1910}, + key = {Ankermann (1910)}, + lgcode = {Bali Nyonga [mung1266]} +} +@article{anonymous1869, + author = {Anonymous}, + title = {Zametkio latyshaht rehi nfljandskihu ezdov Vitebskoj gubemii}, + journal = {Vilenskij sbornik}, + volume = {1}, + pages = {223-43}, + year = {1869}, + key = {Anonymous (1869)}, + lgcode = {Latvians [latv1249]}, + title_english = {Notes on the Latvians of the Three Infliandian Uezds of the Vitebskaja Guberia} +} +@article{anonymous1939, + author = {Anonymous}, + title = {Coutumes haoussa et peul}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {261-301}, + year = {1939}, + key = {Anonymous (1939)}, + lgcode = {Tazarawa [haus1257]} +} +@article{anonymous1939a, + author = {Anonymous}, + title = {Coutume soussou}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {575-610}, + year = {1939}, + key = {Anonymous (1939a)}, + lgcode = {Susu [susu1250]} +} +@book{antropovaandkuznetsova1964, + author = {Antropova, V.V. and V.G. Kuznetsova}, + title = {The Chukchi}, + year = {1964}, + key = {Antropova and Kuznetsova (1964)}, + lgcode = {Chukchi [chuk1273]} +} +@book{anumanrajadhon1961, + author = {Anuman Rajadhon, P.}, + editor = {W. J. Gedney}, + title = {Life and Ritual in Old Siam}, + address = {New Haven}, + year = {1961}, + key = {Anuman Rajadhon (1961)}, + lgcode = {Thai [thai1261]} +} +@article{ardener1954, + author = {Ardener, E. W.}, + title = {The kinship terminology of a group of southern Ibo}, + journal = {Africa}, + volume = {24}, + pages = {85-99}, + year = {1954}, + glottolog_ref = {weball:975}, + key = {Ardener (1954)}, + lgcode = {Igbo [nucl1417]} +} +@book{ardener1956, + author = {Ardener, E.}, + title = {Coastal Bantu of the Cameroons}, + publisher = {London: International African Institute (IAI)}, + address = {London}, + pages = {116}, + year = {1956}, + glottolog_ref = {weball:976}, + key = {Ardener (1956)}, + lgcode = {Duala [dual1243], Kpe [mokp1239]} +} +@book{arensbergandkimball1940, + author = {Arensberg, C. M., and S. T. Kimball}, + title = {Family and Community in Ireland}, + address = {Cambridge}, + year = {1940 (Revised Edition 1968)}, + key = {Arensberg and Kimball (1940)}, + lgcode = {Irish [iris1253]} +} +@book{argyle1966, + author = {Argyle, W. J.}, + title = {The Fon of Dahomey}, + address = {London}, + year = {1966}, + key = {Argyle (1966)}, + lgcode = {Fon [fonn1241]} +} +@incollection{arima1984, + author = {Arima, E. Y.}, + editor = {D. Damas}, + title = {Caribou Eskimo}, + booktitle = {Arctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {447-462}, + year = {1984}, + key = {Arima (1984)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{ariyapala1956, + author = {Ariyapala, M. B.}, + title = {Society in Medieval Ceylon}, + publisher = {K. V. G. de Silva}, + address = {Colombo}, + year = {1956}, + key = {Ariyapala (1956)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{armstrong1928, + author = {Armstrong, W. E.}, + title = {Rossel Island}, + address = {Cambridge}, + year = {1928}, + key = {Armstrong (1928)}, + lgcode = {Rossel Islanders [yele1255]} +} +@article{armstrong1954, + author = {Armstrong, R. G.}, + title = {A West African Inquest}, + journal = {American Anthropologist}, + volume = {56}, + pages = {1051-1075}, + year = {1954}, + key = {Armstrong (1954)}, + lgcode = {Idoma [idom1241]} +} +@article{armstrongandmetraux1948, + author = {Armstrong, J. M., and A. M‚traux.}, + title = {The Goajiro}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iv, 360-383}, + year = {1948}, + key = {Armstrong and Metraux (1948)}, + lgcode = {Wayuu [wayu1243]} +} +@article{arnaud1921, + author = {Arnaud, R.}, + title = {Notes sur les montagnards Habe}, + journal = {Rev. Ethnog. Trad. Pop.}, + volume = {2}, + pages = {241-318}, + year = {1921}, + key = {Arnaud (1921)}, + lgcode = {Dogon [bank1259]} +} +@book{arnaud1964, + author = {Arnaud, E.}, + title = {Noticia sobre los Indios Gavioes de Oeste}, + series = {Antropologia}, + number = {20}, + year = {1964}, + key = {Arnaud (1964)}, + lgcode = {Canela [cane1242]} +} +@article{aroandshepard1967, + author = {Aro, K. V., and M. P. Shepard}, + title = {Pacific Salmon in Canada}, + journal = {International North Pacific Fisheries Commission Bulletin}, + address = {Victoria, B.C.}, + volume = {23}, + pages = {225-327}, + year = {1967}, + key = {Aro and Shepard (1967)}, + lgcode = {Chilcotin [chil1280], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249], Lillooet [lill1248], Nlaka'pamux [thom1243], Shuswap [shus1248]} +} +@book{arsenev1926, + author = {Arsen'ev, V. K.}, + title = {Lesnye ljudi udeheitsy}, + address = {Vladivostok}, + year = {1926}, + key = {Arsen'ev (1926)}, + lgcode = {Udihe [udih1248]}, + title_english = {The Udihe, the Forest People} +} +@article{ascher1962, + author = {Ascher, R.}, + title = {Ethnography for Archeology: A Case from the Seri Indians}, + journal = {Ethnology}, + volume = {1}, + pages = {360-369}, + year = {1962}, + key = {Ascher (1962)}, + lgcode = {Seri [seri1257]} +} +@book{aschmann1967, + author = {Aschmann, H.}, + title = {The Central Desert of Baja California: Demography and Ecology}, + publisher = {Manessier}, + address = {Riverside, Calif.}, + year = {1967}, + key = {Aschmann (1967)}, + lgcode = {Guaicura [guai1237]} +} +@article{ashkenazi1948, + author = {Ashkenazi, T.}, + title = {The Anazah Tribes}, + journal = {Southwestern Journal of Anthropology}, + volume = {4}, + pages = {222-239}, + year = {1948}, + key = {Ashkenazi (1948)}, + lgcode = {Rwala [east2690]} +} +@book{ashton1952, + author = {Ashton, H.}, + title = {The Basuto}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London, New York & Toronto}, + year = {1952}, + glottolog_ref = {eballiso2009:27743}, + key = {Ashton (1952)}, + lgcode = {Sotho [sout2807]} +} +@article{asmis1911, + author = {Asmis, G.}, + title = {Die Stammesrechte der Bezirke Misahohe, Anecho und Lome-Land}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {22}, + pages = {1-133}, + year = {1911}, + key = {Asmis (1911)}, + lgcode = {Buem [siwu1238], Ewe [aguu1242]} +} +@article{asmis1912, + author = {Asmis, G.}, + title = {Die Stammersrechte des Bezirkes Sansane-Mangu}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {27}, + pages = {71-128}, + year = {1912}, + key = {Asmis (1912)}, + lgcode = {Moba [moba1244]} +} +@article{aspelin1976, + author = {Aspelin, P. L.}, + title = {Nambicuara economic dualism: Lévi-Strauss in the garden, once again}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + address = {La Haya}, + volume = {132}, + pages = {1-31}, + year = {1976}, + key = {Aspelin (1976)}, + lgcode = {Nambikwara [sout2994]} +} +@incollection{atkinson1953, + author = {Atkinson, William C.}, + editor = {H. V. Livermore}, + title = {Institutions and law}, + booktitle = {Portugal and Brazil: an introduction}, + publisher = {Oxford University Press}, + address = {Oxford}, + year = {1953}, + key = {Atkinson (1953)}, + lgcode = {Portuguese [gali1257]} +} +@article{aubert1936, + author = {Aubert, M.}, + title = {Laws and Customs of the Susus}, + journal = {Sierra Leone Stud.}, + volume = {2}, + pages = {21-44}, + year = {1936}, + key = {Aubert (1936)}, + lgcode = {Susu [susu1250]} +} +@book{audric1972, + author = {Audric, J.}, + title = {Angkor and the Khmer empire}, + year = {1972}, + key = {Audric (1972)}, + lgcode = {Ancient Khmer [oldk1249]} +} +@article{aujas1931, + author = {Aujas, L.}, + title = {Les Sereres du Senegal}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {14}, + pages = {293-333}, + year = {1931}, + key = {Aujas (1931)}, + lgcode = {Serer [sere1260]} +} +@article{autenrieth1908, + author = {Autenrieth, H.}, + title = {Recht der Kissibaleute}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {21}, + pages = {354-392}, + year = {1908}, + key = {Autenrieth (1908)}, + lgcode = {Haya [haya1250]} +} +@article{avadhani1975, + author = {Avadhani P.N.}, + title = {A study of the Punan Busang}, + journal = {Malayan Nature Journal}, + volume = {28}, + number = {3-4}, + pages = {121-172}, + year = {1975}, + key = {Avadhani (1975)}, + lgcode = {Punan [west2563]} +} +@article{avon191516, + author = {Avon.}, + title = {Vie sociale des Wabende am Tanganika}, + journal = {Anthropos}, + volume = {10-111}, + pages = {98-113}, + year = {1915-16}, + key = {Avon (1915-16)}, + lgcode = {Bende [bend1258]} +} +@book{aymard1911, + author = {Aymard, A.}, + title = {Les Touareg}, + address = {Paris}, + year = {1911}, + key = {Aymard (1911)}, + lgcode = {Kel Antessar [timb1263]} +} +@book{aymonier190004, + author = {Aymonier, E.}, + title = {Le Cambodge. 3v}, + address = {Paris}, + year = {1900-04}, + key = {Aymonier (1900-04)}, + lgcode = {Khmer [cent1989]} +} +@book{ayrout1945, + author = {Ayrout, H. H.}, + title = {The Fellaheen}, + address = {Cairo}, + year = {1945}, + key = {Ayrout (1945)}, + lgcode = {Egyptians [egyp1253]} +} +@book{ayrout1963, + author = {Ayrout, H. H.}, + title = {The Egyptian Peasant}, + year = {1963 [First published in 1938]}, + key = {Ayrout (1963)}, + lgcode = {Egyptians [egyp1253]} +} +@misc{bacdayan1962, + author = {Bacdayan, A. S.}, + year = {1962}, + howpublished = {Personal communication}, + key = {Bacdayan (1962)}, + lgcode = {Sagada [nort2877]} +} +@incollection{bachtiar1967, + author = {Bachtiar, H. W.}, + editor = {Koentjaraningrat}, + title = {Negeri Taran: A. Minangkabau Village Community}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {348-385}, + year = {1967}, + key = {Bachtiar (1967)}, + lgcode = {Minangkabau [mina1268]} +} +@article{bacon1922, + author = {Bacon, C. R. K.}, + title = {The Anuak}, + journal = {Sudan Notes and Records}, + volume = {5}, + pages = {113-129}, + year = {1922}, + glottolog_ref = {eballiso2009:9053}, + key = {Bacon (1922)}, + lgcode = {Anuak [anua1242]} +} +@article{bacon1958, + author = {Bacon, E. B.}, + title = {Obok}, + journal = {Viking Fund Publ. Anth.}, + volume = {25}, + pages = {1-235}, + year = {1958}, + key = {Bacon (1958)}, + lgcode = {Hazara [haza1239]} +} +@article{badier1929, + author = {Badier}, + title = {Monographie de la tribu des Batekes}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {10}, + pages = {37-43}, + year = {1929}, + key = {Badier (1929)}, + lgcode = {Teke [teke1278]} +} +@incollection{baegert1863, + author = {Baegert, J.}, + title = {An Account of the Aboriginal Inhabitants of the California Peninsula}, + booktitle = {Smithsonian Institution Annual Report, 1863}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {352-369}, + year = {1863}, + key = {Baegert (1863)}, + lgcode = {Guaicura [guai1237]} +} +@incollection{baegert1865, + author = {Baegert, J.}, + title = {An Account of the Aboriginal Inhabitants of the California Peninsula}, + booktitle = {Smithsonian Institution Annual Report, 1864}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {378-399}, + year = {1865}, + url = {https://archive.org/details/accountofaborigi00baeg}, + key = {Baegert (1865)}, + lgcode = {Guaicura [guai1237]}, + note = {Continued from the Smithsonian report for 1863.} +} +@article{baerandbaer1949, + author = {Baer, P., and M. Baer.}, + title = {Notes on Lacandon marriage}, + journal = {Southw. Journ. Anth.}, + volume = {5}, + pages = {101-6}, + year = {1949}, + glottolog_ref = {sil16:10140}, + key = {Baer and Baer (1949)}, + lgcode = {Lacandon [laca1243]} +} +@book{baerandengelbrecht1990, + author = {Baer, G. and B. Engelbrecht}, + title = {Wirtschaft und Technologie}, + year = {1990}, + key = {Baer and Engelbrecht (1990)}, + lgcode = {Aztec [clas1250]} +} +@article{baerandschmitz1964, + author = {Baer, G., and C. A. Schmitz}, + title = {On the Social Organization of the Ona (Selk'nam)}, + journal = {Journal de la Société des Américanistes}, + volume = {54}, + number = {1}, + pages = {23-29}, + year = {1965}, + url = {http://www.persee.fr/doc/jsa_0037-9174_1965_num_54_1_1271}, + doi = {10.3406/jsa.1965.1271}, + key = {Baer and Schmitz (1964)}, + lgcode = {Ona [onaa1245]} +} +@article{baeyens1913, + author = {Baeyens, M.}, + title = {Les Lesa}, + journal = {REv. Congol.}, + volume = {4}, + pages = {129-143, 193-206, 257-270, 321-336}, + year = {1913}, + glottolog_ref = {eballiso2009:51329}, + key = {Baeyens (1913)}, + lgcode = {Sakata [saka1287]} +} +@article{bahuchet1979, + author = {Bahuchet, S.}, + title = {Utilisation de'Pespace forestier par les Pygmees Aka, Chasseurs-sueilleurs d'Afrique Centrale}, + journal = {Information sur les sciences sociales}, + volume = {18}, + number = {6}, + pages = {999-1019}, + year = {1979}, + key = {Bahuchet (1979)}, + lgcode = {Aka [bamb1264]} +} +@incollection{bahuchet1988, + author = {Bahuchet, S.}, + editor = {I. de Garine and G. A. Harrison}, + title = {Food Supply Uncertainty among the Aka Pygmies (Lobaye, Central African Republic)}, + booktitle = {Coping with Uncertainty in the Food Supply}, + publisher = {Clarendon Press}, + address = {Oxford}, + pages = {118-149}, + year = {1988}, + key = {Bahuchet (1988)}, + lgcode = {Aka [bamb1264]} +} +@article{bailey1863, + author = {Bailey, J.}, + title = {An Account of the Wild Tribes of the Veddahs of Ceylon: Their Habits, Customs and Superstitions}, + journal = {Transactions of the Ethnological Society of London}, + volume = {2}, + pages = {278-320}, + year = {1863}, + key = {Bailey (1863)}, + lgcode = {Vedda [vedd1240]} +} +@phdthesis{bailey1985, + author = {Bailey, R. C.}, + title = {The Socioecology of the Efe Pygmy Men in the Ituri Forest, Zaire}, + school = {Department of Social Relations, Harvard University}, + address = {Cambridge}, + year = {1985}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Bailey (1985)}, + lgcode = {Efe [efee1239]} +} +@incollection{baileyandpeacock1988, + author = {Bailey, R. C., and N. R. Peacock}, + editor = {Garine, Igor de and Harrison, G.A.}, + title = {Efe pygmies of northeast Zaïre: subsistence strategies in the Ituri Forest}, + booktitle = {Coping with Uncertainty in the Food Supply}, + publisher = {Oxford Univ. Press}, + pages = {88-117}, + year = {1988}, + glottolog_ref = {eballiso2009:56046}, + key = {Bailey and Peacock (1988)}, + lgcode = {Efe [efee1239]} +} +@article{balandier1952, + author = {Balandier, G.}, + title = {Les villages gabonais}, + journal = {Mem. Inst. Et. CentrAfr.}, + volume = {5}, + pages = {1-86}, + year = {1952}, + key = {Balandier (1952)}, + lgcode = {Mitsogho [tsog1243]} +} +@book{balashov1995, + editor = {Balashov, V. A.}, + title = {Mordva: istoriko-kul'turye ocherki (The Mordva: Historical-Cultural Essays)}, + address = {Saransk}, + year = {1995}, + key = {Balashov (1995)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@book{baldus1931, + author = {Baldus, H.}, + title = {Indianerstudien im nordöstlichen Chaco}, + publisher = {Leipzig}, + series = {Forschungen zur Völkerpsychologie und Soziologie}, + volume = {II}, + pages = {1-239}, + year = {1931}, + glottolog_ref = {fabreall2009ann:714}, + key = {Baldus (1931)}, + lgcode = {Chamacoco [cham1315], Lengua [leng1262]} +} +@article{baldus1937, + author = {Baldus, H.}, + title = {The Social Position of the Woman among the Eastern Bororo (transl. I. Lillios)}, + journal = {Ensaios de etnologia brasileira}, + publisher = {São Paulo: Biblioteca Pedagógica Brasileira, série 5a, Brasiliana 101}, + volume = {101}, + pages = {112-162}, + year = {1937}, + glottolog_ref = {fabreall2009ann:716}, + key = {Baldus (1937)}, + lgcode = {Bororo [boro1282]} +} +@book{balikci1970, + author = {Balikci, A.}, + title = {The Netsilik Eskimo}, + publisher = {Natural History Press}, + address = {Garden City, N.Y.}, + year = {1970}, + key = {Balikci (1970)}, + lgcode = {Netsilik [nets1241]} +} +@article{balikei1963a, + author = {Balikei, A.}, + title = {Le regime matrimonial des Esquimaux Netsilik}, + journal = {L'Homme}, + volume = {1963}, + pages = {88-101}, + year = {1963}, + key = {Balikei (1963a)}, + lgcode = {Netsilik [nets1241]} +} +@article{balikei1963b, + author = {Balikei, A.}, + title = {Shamanistic Behavior Among the Netsilik Eskimos}, + journal = {Southw. Journ. Anth.}, + volume = {19}, + pages = {380-396}, + year = {1963}, + key = {Balikei (1963b)}, + lgcode = {Netsilik [nets1241]} +} +@article{ballard1935, + author = {Ballard, A. C.}, + title = {Southern Puget Sound Salish Kinship Terms}, + journal = {American Anthropologist}, + volume = {37}, + pages = {111-116}, + year = {1935}, + key = {Ballard (1935)}, + lgcode = {Puyallup [sout2965]} +} +@book{ballis1956, + editor = {Ballis, W. B.}, + title = {Mongolian People's Republic}, + address = {New Haven}, + year = {1956}, + key = {Ballis (1956)}, + lgcode = {Khalka [halh1238]}, + note = {3 vols} +} +@book{balsdon1963, + author = {Balsdon, J. P. V. D.}, + title = {Roman Women}, + address = {New York}, + year = {1963}, + key = {Balsdon (1963)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{balsdon1969, + author = {Balsdon, J. P. V. D.}, + title = {Life and Leisure in Ancient Rome}, + address = {New York}, + year = {1969}, + key = {Balsdon (1969)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{balyn1957, + author = {Balyn, D.}, + title = {The Geography of the Bible}, + address = {New York}, + year = {1957}, + key = {Balyn (1957)}, + lgcode = {Hebrews [anci1244]} +} +@book{bamforth1988, + author = {Bamforth, D. B.}, + title = {Ecology and Human Organization on the Great Plains}, + publisher = {Plenum Press}, + address = {New York}, + year = {1988}, + key = {Bamforth (1988)}, + lgcode = {Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa [kiow1266], Kiowa Apache [kiow1264], Plains Cree [plai1258], Sarcee [sars1236]} +} +@book{banfieldandmacintyre1915, + author = {Banfield, A. W., and J. I. MacIntyre. V-3.}, + title = {A grammar of the Nupe language}, + publisher = {Society for the Promotion of Christian Knowledge}, + address = {London}, + pages = {186}, + year = {1915}, + glottolog_ref = {hh:g:BanfieldMacintyre:Nupe}, + key = {Banfield and MacIntyre (1915)}, + lgcode = {Nupe [nupe1254]} +} +@article{bank1953, + author = {Bank, T. P.}, + title = {Health and Medical Lore of the Aleuts}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + volume = {38}, + pages = {415-431}, + year = {1953}, + key = {Bank (1953)}, + lgcode = {Aleut [east2533]} +} +@article{barandiaran1962, + author = {Barandiaran, D. de.}, + title = {Activadades vitales de subsistencia de los Indios Yekuana o Makitare}, + journal = {Antropologica}, + volume = {11}, + pages = {1-29}, + year = {1962}, + key = {Barandiaran (1962)}, + lgcode = {Ye'kuana [maqu1238]} +} +@book{bardin1944, + author = {Bardin, P.}, + title = {Les populations arabes du ontrole civil de GAfsa et leurs genres de vie}, + address = {Tunis}, + series = {Publ. Inst. Belles Lett. Arabes}, + volume = {6}, + pages = {1-64}, + year = {1944}, + key = {Bardin (1944)}, + lgcode = {Hamama [sout3114]} +} +@incollection{barger1981, + author = {Barger, W. K.}, + editor = {J. Helm}, + title = {Great Whale River, Quebec}, + booktitle = {SubArctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {673-682}, + year = {1981}, + key = {Barger (1981)}, + lgcode = {Great Whale Inuit [queb1248]} +} +@article{barker1953, + author = {Barker, J.}, + title = {Memoria sobre la cultura de los Guaika}, + journal = {Bol. Indig. Venez.}, + address = {Caracas}, + volume = {1}, + pages = {433-490}, + year = {1953}, + glottolog_ref = {fabreall2009ann:Yanomami_yanomami003}, + key = {Barker (1953)}, + lgcode = {Guaica [yano1262]} +} +@article{barnard1938, + author = {Barnard, T. T.}, + title = {The Social Organization of Ambrym}, + journal = {Man}, + volume = {28}, + pages = {133-137}, + year = {1938}, + key = {Barnard (1938)}, + lgcode = {Ranon [nort2839]} +} +@incollection{barnes1951, + author = {Barnes, J. A.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + title = {The Fort Jameson Ngoni}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {London: Oxford Univ. Press}, + address = {London}, + series = {Rhodes-Livingstone papers}, + volume = {20}, + pages = {194-252}, + year = {1951}, + glottolog_ref = {eballiso2009:33873}, + key = {Barnes (1951)}, + lgcode = {Ngoni [ngon1269]} +} +@book{barnes1954, + author = {Barnes, James A.}, + title = {Politics in a changing society: a political history of the Fort Jameson Ngoni}, + publisher = {Cape Town: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {Cape Town}, + year = {1954}, + glottolog_ref = {eballiso2009:26396}, + key = {Barnes (1954)}, + lgcode = {Ngoni [ngon1269]} +} +@article{barnett1937, + author = {Barnett, H. G.}, + title = {Oregon Coast}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {155-204}, + year = {1937}, + key = {Barnett (1937)}, + lgcode = {Alsea [alse1251], Chetco [tolo1259], Coos [coos1249], Siuslaw [sius1254], Taltushtuntede [gali1261], Tillamook [till1254], Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{barnett1938, + author = {Barnett, H. G.}, + title = {The Coast Salish of Canada}, + journal = {American Anthropologist}, + volume = {40}, + pages = {118-141}, + year = {1938}, + key = {Barnett (1938)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Musqueam [musq1240], Squamish [squa1248]} +} +@article{barnett1939, + author = {Barnett, H. G.}, + title = {Gulf of Georgia Salish}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {221-295}, + year = {1939}, + key = {Barnett (1939)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Pentlatch [pent1242], Squamish [squa1248], West Saanich [saan1246]} +} +@book{barnett1949, + author = {Barnett, H. G.}, + title = {Palauan Society}, + address = {Eugene}, + year = {1949}, + key = {Barnett (1949)}, + lgcode = {Palauans [pala1344]} +} +@book{barnett1955, + author = {Barnett, H. G.}, + title = {The Coast Salish of British Columbia}, + address = {Eugene}, + year = {1955}, + key = {Barnett (1955)}, + lgcode = {Comox [isla1276], Cowichan [cowi1241], Klahoose [slia1241], Musqueam [musq1240], Pentlatch [pent1242], Squamish [squa1248], West Saanich [saan1246]} +} +@book{barnett1960, + author = {Barnett, H. G.}, + title = {Being a Palauan}, + address = {New York}, + year = {1960}, + key = {Barnett (1960)}, + lgcode = {Palauans [pala1344]} +} +@book{barnett1968, + author = {Barnett, Homer G.}, + title = {The Nature and Function of the Potlatch}, + publisher = {Department of Anthropology, University of Oregon}, + address = {Eugene, Ore.}, + year = {1968}, + key = {Barnett (1968)}, + lgcode = {Haisla [hais1244], North Tlingit [tlin1245], South Tlingit [tlin1245], Tsimshian [nucl1649]}, + note = {Originally published in 1938} +} +@book{barnouw1950, + author = {Barnouw, Victor}, + title = {Acculturation and personality among the Wisconsin Chippewa}, + series = {American Anthropological Association, Memoir}, + volume = {72}, + year = {1950}, + key = {Barnouw (1950)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{barrau1956, + author = {Barrau, J.}, + title = {L'agriculture viviere autochtone}, + address = {Noumea}, + year = {1956}, + key = {Barrau (1956)}, + lgcode = {Ajie [ajie1238]} +} +@book{barrett1908, + author = {Barrett, S. A.}, + title = {The Ethno-geography of the Pomo and Neighboring Indians}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {6}, + pages = {1-332}, + year = {1908}, + url = {https://archive.org/details/ethnogeographyp02barrgoog}, + key = {Barrett (1908)}, + lgcode = {Central Sierra Miwok [cent2140], Eastern Pomo [east2545], Kashaya Pomo [kash1280], Northern Pomo [nort2966], Patwin [patw1250], Wappo [wapp1239], Wintu [nucl1651]} +} +@article{barrett1910, + author = {Barrett, Samuel A.}, + title = {The Material Culture of the Klamath Lake and Modoc Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {5}, + number = {4}, + pages = {239-292}, + year = {1910}, + url = {https://archive.org/details/materialcultureo00barrrich}, + key = {Barrett (1910)}, + lgcode = {Klamath [klam1254], Modoc [klam1254]} +} +@article{barrett1911a, + author = {Barrett, S. A.}, + title = {The dream dance of the Chippewa and Menominee Indians of northern Wisconsin}, + journal = {Bulletin of the Public Museum of the City of Milwaukee}, + address = {Milwaukee, Wisconsin}, + volume = {1}, + number = {2}, + pages = {251-406}, + year = {1911}, + key = {Barrett (1911a)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@article{barrett1911b, + author = {Barrett, W. E. H.}, + title = {Notes on the Customs and Beliefs of the Wa-Giriama}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {41}, + pages = {20-28}, + year = {1911}, + key = {Barrett (1911b)}, + lgcode = {Giriama [giry1241]} +} +@inbook{barrett1916, + author = {Barrett, S. A.}, + title = {Pomo Buildings}, + booktitle = {Holmes Anniversary Volume}, + address = {Washington}, + pages = {1-17}, + year = {1916}, + key = {Barrett (1916)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{barrett1917a, + author = {Barrett, S. A.}, + title = {Ceremonies of the Pomo Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {12}, + pages = {397-441}, + year = {1917}, + key = {Barrett (1917a)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{barrett1917b, + author = {Barrett, S. A.}, + title = {The Washo Indians}, + journal = {Bull. Publ. Mus. Milwaukee}, + volume = {2}, + pages = {1-52}, + year = {1917}, + key = {Barrett (1917b)}, + lgcode = {Washo [wash1253]} +} +@article{barrett1925, + author = {Barrett, S. A.}, + title = {The Cayapa Indians of Ecuador}, + journal = {Indian Notes and Monographs}, + publisher = {New York: Haye Foundation}, + volume = {40}, + pages = {1-476}, + year = {1925}, + glottolog_ref = {fabreall2009ann:Barbacoa_cha07}, + key = {Barrett (1925)}, + lgcode = {Chachi [chac1249]} +} +@article{barrett1952, + author = {Barrett, S. A.}, + title = {Material Aspects of Pomo Culture}, + journal = {Bulletin, Public Museum of the City of Milwaukee}, + volume = {20}, + pages = {1-508}, + year = {1952}, + key = {Barrett (1952)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@article{barrettandgifford1933, + author = {Barrett, Samuel A., and Edward W. Gifford}, + title = {Miwok Material Culture: Indian Life of the Yosemite Region}, + journal = {Bulletin of the Milwaukee Public Museum}, + volume = {2}, + number = {4}, + pages = {117-276}, + year = {1933}, + url = {http://www.yosemite.ca.us/library/miwok_material_culture/miwok_material_culture.pdf}, + key = {Barrett and Gifford (1933)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@book{barrow180104, + author = {Barrow, J.}, + title = {An Account of Travels into the Interior of South Africa. 2V}, + address = {London}, + year = {1801-04}, + key = {Barrow (1801-04)}, + lgcode = {/Xam [xamm1241]} +} +@book{barth1953, + author = {Barth, F.}, + title = {Principles of Social Organization in Southern Kurdistan}, + address = {Oslo}, + series = {Bulletin of the University Ethnographic Museum}, + volume = {7}, + year = {1953}, + key = {Barth (1953)}, + lgcode = {Kurd [cent1972]} +} +@article{barth1956a, + author = {Barth, F.}, + title = {Ecologic Relationships of Ethnic Groups in Swat}, + journal = {American Anthropologist}, + volume = {58}, + pages = {1079-1089}, + year = {1956}, + key = {Barth (1956a)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{barth1956b, + author = {Barth, F.}, + title = {Indus and Swat Kohistan}, + address = {Oslo}, + year = {1956}, + key = {Barth (1956b)}, + lgcode = {Kohistani [indu1241]} +} +@article{barth1959, + author = {Barth, F.}, + title = {Segmentary Opposition and the Theory of Games: A Study of Pathan Organization}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {89}, + pages = {5-21}, + year = {1959}, + key = {Barth (1959)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{barth1961, + author = {Barth, F. K.}, + title = {Nomads of South Persia. The Basseri Tribe of the Khamseh Confederacy}, + publisher = {George Allen & Unwin}, + address = {London}, + year = {1961}, + key = {Barth (1961)}, + lgcode = {Basseri [bass1257]} +} +@incollection{barth1964, + author = {Barth, F. K.}, + editor = {R. Firth and B. S. Yamey}, + title = {Capital, Investment and Social Structure of a Pastoral Nomadic Group}, + booktitle = {Capital, Saving and Credit in Peasant Societies}, + address = {Chicago}, + pages = {69-81}, + year = {1964}, + key = {Barth (1964)}, + lgcode = {Basseri [bass1257]} +} +@incollection{barth1967, + author = {Barth, F.}, + editor = {R. Firth}, + title = {Economic Spheres in Darfur}, + booktitle = {Themes in Economic Anthropology}, + series = {Association for Social Anthropology Monographs}, + volume = {6}, + pages = {149-174}, + year = {1967}, + key = {Barth (1967)}, + lgcode = {Fur [furr1244]} +} +@article{bartlett1929, + author = {Bartlett, H. H. IV-1.}, + title = {Color nomenclature in Batak and Malay}, + journal = {Michigan Academy of Science, Arts, and Letters, Papers}, + volume = {10}, + pages = {1-52}, + year = {1929}, + key = {Bartlett (1929)}, + lgcode = {Toba Batak [bata1289]} +} +@article{barton1919, + author = {Barton, R. F.}, + title = {Ifugao Law}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {15}, + pages = {1-186}, + year = {1919}, + key = {Barton (1919)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1921, + author = {Barton, J.}, + title = {Notes on the Suk Tribe of Kenia Colony}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {51}, + pages = {82-100}, + year = {1921}, + glottolog_ref = {eballiso2009:25695}, + key = {Barton (1921)}, + lgcode = {Hill Suk [west2492]} +} +@article{barton1922, + author = {Barton, R. F.}, + title = {Ifugao Economics}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {15}, + number = {5}, + pages = {385-446}, + year = {1922}, + key = {Barton (1922)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1923, + author = {Barton, J.}, + title = {Notes on the Kipsikis or Lumbwa Tribe}, + journal = {Jounr. Roy. Anth. Inst.}, + volume = {53}, + pages = {42-78}, + year = {1923}, + key = {Barton (1923)}, + lgcode = {Kipsigis [kips1239]} +} +@book{barton1930, + author = {Barton, R. F.}, + title = {The Half-Way Sun}, + address = {New York}, + year = {1930}, + key = {Barton (1930)}, + lgcode = {Ifugao [tuwa1243]} +} +@book{barton1938, + author = {Barton, R. F.}, + title = {Philippine Pagans}, + address = {London}, + year = {1938}, + key = {Barton (1938)}, + lgcode = {Ifugao [tuwa1243]} +} +@article{barton1946, + author = {Barton, R. F.}, + title = {The Religion of the Ifugaos}, + journal = {Memoirs of the American Anthropological Association}, + volume = {65}, + pages = {1-219}, + year = {1946}, + key = {Barton (1946)}, + lgcode = {Ifugao [tuwa1243]} +} +@book{barton1949, + author = {Barton, R. F.}, + title = {The Kalingas}, + address = {Chicago}, + year = {1949}, + key = {Barton (1949)}, + lgcode = {Kalinga [lubu1243]} +} +@article{bartram1953, + author = {Bartram, W.}, + title = {Observations on the Creek and Cherokee Indians}, + journal = {Transactions of the American Ethnological Society}, + volume = {3}, + pages = {1-81}, + year = {1953}, + key = {Bartram (1953)}, + lgcode = {Muscogee [cree1270]} +} +@article{bascom1942, + author = {Bascom, W. R.}, + title = {The Principle of Seniority in the Social Structure of the Yoruba}, + journal = {American Anthropologist}, + volume = {44}, + pages = {37-46}, + year = {1942}, + key = {Bascom (1942)}, + lgcode = {Ife [ifee1241]} +} +@article{bascom1944, + author = {Bascom, W. R.}, + title = {The Sociological Role of the Yoruba Cult-Group}, + journal = {Mem. Amer. Anth. Assoc.}, + publisher = {Menasha WI}, + series = {Memoirs of the American Anthropological Ass.}, + volume = {63}, + pages = {1-175}, + year = {1944}, + glottolog_ref = {eballiso2009:2024}, + key = {Bascom (1944)}, + lgcode = {Ife [ifee1241]} +} +@article{bascom1965, + author = {Bascom, W. R.}, + title = {Ponape: A Pacific Economy in Transition}, + journal = {Anth. Rec.}, + volume = {22}, + pages = {1-149}, + year = {1965}, + key = {Bascom (1965)}, + lgcode = {Ponapeans [pohn1238]} +} +@article{basedow1907, + author = {Basedow, H.}, + title = {Anthropological Notes on the Western Coastal Tribes of the Northern Territory of South Australia}, + journal = {Transactions and Proceedings and Report of the Royal Society of South Australia}, + volume = {31}, + pages = {1-62}, + year = {1907}, + glottolog_ref = {hh:ew:Basedow:WCoastal}, + key = {Basedow (1907)}, + lgcode = {Larikia [lara1258]} +} +@article{basedow1913, + author = {Basedow, H.}, + title = {Notes on the Natures of Bathurst Island}, + journal = {Journal of the Anthropology Institute}, + volume = {48}, + pages = {291-323}, + year = {1913}, + key = {Basedow (1913)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{basehart1960, + author = {Basehart, Harry W.}, + title = {Mescalero Apache Subsistence Patterns and Socio-Political Organization}, + publisher = {The University of New Mexico Mescalero-Chiricahua Land Claims Project (mimeograph)}, + address = {Albuquerque, New Mexico}, + year = {1960}, + key = {Basehart (1960)}, + lgcode = {Mescalero [mesc1238]} +} +@article{basehart1967, + author = {Basehart, Harry W.}, + title = {The Resource Holding Corporation among the Mescalero Apache}, + journal = {Southwestern Journal of Anthropology}, + volume = {23}, + pages = {277-291}, + year = {1967}, + key = {Basehart (1967)}, + lgcode = {Mescalero [mesc1238]} +} +@article{basehart1970, + author = {Basehart, Harry W.}, + title = {Mescalero Apache Band Organization and Leadership}, + journal = {Southwestern Journal of Anthropology}, + volume = {26}, + pages = {87-106}, + year = {1970}, + key = {Basehart (1970)}, + lgcode = {Mescalero [mesc1238]} +} +@incollection{basehart1971, + author = {Basehart, Harry W.}, + editor = {Basso and Opler}, + title = {Mescalero Apache Band Organization and Leadership}, + booktitle = {Apachean Culture History and Ethnology}, + pages = {35-49}, + year = {1971}, + key = {Basehart (1971)}, + lgcode = {Mescalero [mesc1238]} +} +@misc{basehart1972, + author = {Basehart, H. W.}, + title = {Band Organization and Leadership among the Mescalero Apache}, + year = {1972}, + howpublished = {Manuscript, Department of Anthropology, Southern Methodist University, Dallas}, + key = {Basehart (1972)}, + lgcode = {Chiricahua [mesc1238]} +} +@misc{basehartperscomm1972, + author = {Basehart, H. W.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Basehart pers. comm. (1972)}, + lgcode = {Lipan Apache [lipa1241]} +} +@book{basso1969, + author = {Basso, Keith H.}, + title = {Western Apache Witchcraft}, + series = {Anthropological Papers of the University of Arizona}, + volume = {15}, + pages = {1-75}, + year = {1969}, + key = {Basso (1969)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{basso1970, + author = {Basso, Keith H.}, + title = {The Cibecue Apache}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1970}, + key = {Basso (1970)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{bassoandopler1971, + editor = {Basso, Keith H., and Morris E. Opler}, + title = {Apachean Culture History and Ethnology}, + series = {Anthropological Papers of the University of Arizona}, + volume = {21}, + pages = {1-168}, + year = {1971}, + key = {Basso and Opler (1971)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@phdthesis{bastien1951, + author = {Bastien, Rémy}, + title = {La familia rural haitiana, Valle de Marbial}, + school = {Universidad Nacional Autonoma de Mexico}, + year = {1951}, + key = {Bastien (1951)}, + lgcode = {Haitians [hait1244]} +} +@book{bastien1985, + author = {Bastien, Remy}, + title = {Le paysan haitien et sa famille. Vallée de Marbial}, + publisher = {ACCT-Karthala}, + address = {Paris}, + year = {1985 [1951]}, + key = {Bastien (1985)}, + lgcode = {Haitians [hait1244]} +} +@book{batchelor1895, + author = {Batchelor, J.}, + title = {The Ainu of Japan}, + address = {New York}, + year = {1895}, + key = {Batchelor (1895)}, + lgcode = {Ainu [ainu1240]} +} +@book{batchelor1927, + author = {Batchelor, J.}, + title = {Ainu Life and Lore: Echos of a Departing Race}, + publisher = {Kyobunkwan}, + address = {Tokyo}, + year = {1927}, + key = {Batchelor (1927)}, + lgcode = {Ainu [ainu1240]} +} +@article{bateson1932, + author = {Bateson, G.}, + title = {Social Structure of the Iatmul People}, + journal = {Oceania}, + volume = {2}, + pages = {245-291, 401-451}, + year = {1932}, + key = {Bateson (1932)}, + lgcode = {Iatmul [iatm1242]} +} +@book{bateson1936, + author = {Bateson, G.}, + title = {Naven}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + pages = {312}, + year = {1936}, + glottolog_ref = {hh:e:Bateson:Naven}, + key = {Bateson (1936)}, + lgcode = {Iatmul [iatm1242]} +} +@book{baudin1961, + author = {Baudin, L.}, + title = {A Socialist Empire: The Incas of Peru}, + address = {New York}, + year = {1961}, + key = {Baudin (1961)}, + lgcode = {Inca [cusc1236]} +} +@book{baudin1962, + author = {Baudin, L.}, + title = {Daily Life in Peru}, + address = {New York}, + year = {1962}, + key = {Baudin (1962)}, + lgcode = {Inca [cusc1236]} +} +@book{baumann1888, + author = {Baumann, O.}, + title = {Eine Afrikanische Tropeninsel: Fernando Po und die Bubi}, + address = {Wien}, + year = {1888}, + key = {Baumann (1888)}, + lgcode = {Bubi [bube1242]} +} +@book{baumann1891, + author = {Baumann, O.}, + title = {Usambara und seine Nachbargebiete}, + address = {Berlin}, + year = {1891}, + key = {Baumann (1891)}, + lgcode = {Digo [digo1243], Pare [asut1235], Zigula [zigu1242]} +} +@book{baumann1894, + author = {Baumann, O.}, + title = {Durch Massailand zur Nilquelle: Reisen und Forschungen der Massai-Expedition des deutschen Antisklaverei-Komite in den Jahren 1891-1893}, + publisher = {Dietrich Reimer}, + address = {Berlin}, + pages = {385}, + year = {1894}, + glottolog_ref = {hh:hew:Baumann:Massailand}, + key = {Baumann (1894)}, + lgcode = {Goroa [goro1270], Maasi [masa1300], Tatoga [dato1239]} +} +@book{baumann1935, + author = {Baumann, H.}, + title = {Lunda}, + address = {Berlin}, + year = {1935}, + key = {Baumann (1935)}, + lgcode = {Chokwe [chok1245], Luchazi [luch1239], Luimbe [luim1238], Ndembu [lund1266]} +} +@book{baumhoff1958, + author = {Baumhoff, Martin A.}, + title = {California Athabascan Groups}, + series = {University of California Anthropological Records}, + volume = {16}, + pages = {157-238}, + year = {1958}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar016-006.pdf}, + key = {Baumhoff (1958)}, + lgcode = {Hupa [hupa1239], Mattole-Bear River [matt1238], Nongatl [wail1244], Sinkyone [wail1244]} +} +@article{baumhoff1963, + author = {Baumhoff, Martin A.}, + title = {Ecological Determinants of Aboriginal California Populations}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {49}, + number = {2}, + pages = {155-236}, + year = {1963}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp049-003.pdf}, + key = {Baumhoff (1963)}, + lgcode = {Central Sierra Miwok [cent2140], Coast Yuki [yuki1243], Eastern Pomo [east2545], Hupa [hupa1239], Karuk [karo1304], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], Mattole-Bear River [matt1238], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Miwok [nort2968], Northern Pomo [nort2966], Southern Miwok [sout2985], Southern Pomo [sout2984], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Tolowa [tolo1259], Wappo [wapp1239], Wiyot [wiyo1248], Wukchumni [tule1245], Yuki [yuki1243], Yurok [yuro1248]} +} +@article{baumstark1900, + author = {Baumstark}, + title = {Die Warangi}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {13}, + pages = {45-60}, + year = {1900}, + glottolog_ref = {eballiso2009:3022}, + key = {Baumstark (1900)}, + lgcode = {Rangi [lang1320]} +} +@book{baxterandbutt1953, + author = {Baxter, P. T. W. and A. Butt}, + title = {The Azande, and related peoples of the Anglo-Egyptian Sudan and Belgian Congo}, + publisher = {International African Institute}, + address = {London}, + series = {Ethnographic Survey of Africa: East Central Africa: Part IX}, + pages = {152}, + year = {1953}, + glottolog_ref = {hh:he:BaxterButt:Azande}, + key = {Baxter and Butt (1953)}, + lgcode = {Azande [zand1248], Bongo [bong1285], Lendu [lend1245], Logo [logo1259], Lugbara [lugb1240], Madi [madi1260], Moru [moru1253]} +} +@article{beaglehole1937, + author = {Beaglehole, E.}, + title = {Notes on Hopi Economic Life}, + journal = {Yale Univ. Publ. Anth.}, + volume = {15}, + pages = {1-88}, + year = {1937}, + key = {Beaglehole (1937)}, + lgcode = {Hopi [hopi1249]} +} +@book{beagleholeandbeaglehole1935, + author = {Beaglehole, Ernest, and Pearl Beaglehole}, + title = {Hopi of the second mesa}, + series = {American Anthropological Association Memoir}, + volume = {44}, + year = {1935}, + key = {Beaglehole and Beaglehole (1935)}, + lgcode = {Hopi [hopi1249]} +} +@article{beagleholeandbeaglehole1938, + author = {Beaglehole, E., and P. Beaglehole.}, + title = {Ethnology of Pukapuka}, + journal = {Bull. Bishop Mus.}, + volume = {110}, + pages = {1-419}, + year = {1938}, + key = {Beaglehole and Beaglehole (1938)}, + lgcode = {Pukapukans [puka1242]} +} +@article{beagleholeandbeaglehole1941, + author = {Beaglehole, E., and P. Beaglehole.}, + title = {Pangai Village in Tonga}, + journal = {Mem. Polynesian Soc.}, + volume = {18}, + pages = {1-145}, + year = {1941}, + key = {Beaglehole and Beaglehole (1941)}, + lgcode = {Tongans [tong1325]} +} +@article{beals1933, + author = {Beals, R. L.}, + title = {Ethnology of the Nisenan}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {31}, + pages = {335-414}, + year = {1933}, + key = {Beals (1933)}, + lgcode = {Nisenan [nise1244], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244]} +} +@article{beals1943, + author = {Beals, R. L.}, + title = {Aboriginal Culture of the Cahita Indians}, + journal = {Ibero-Americana}, + volume = {19}, + pages = {1-86}, + year = {1943}, + key = {Beals (1943)}, + lgcode = {Yaqui [yaqu1251]} +} +@article{beals1945, + author = {Beals, R. L.}, + title = {Ethnology of the Western Mixe}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {1-176}, + year = {1945}, + key = {Beals (1945)}, + lgcode = {Mixe [isth1238]} +} +@article{bealsandhester1958, + author = {Beals, R. L. and J. A. Hester.}, + title = {A Lacustrine Economy in California}, + journal = {Miscellanea Paul Rivet Octogenario Dictata}, + address = {Mexico}, + volume = {1}, + pages = {211-217}, + year = {1958}, + key = {Beals and Hester (1958)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@book{bean1972, + author = {Bean, L. J.}, + title = {Mukat's People: The Cahuilla Indians of Southern California}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1972}, + key = {Bean (1972)}, + lgcode = {Cahuilla (Desert) [cahu1264]} +} +@book{beardsleyetal1959, + author = {Beardsley, R. K. and J. W. Hall and R. E. Ward.}, + title = {Village Japan}, + address = {Chicago}, + year = {1959}, + key = {Beardsley et al. (1959)}, + lgcode = {Japanese [nucl1643]} +} +@article{beaton1936, + author = {Beaton, A. C.}, + title = {The Bari}, + journal = {Sudan Notes and Records}, + volume = {19}, + pages = {109-145}, + year = {1936}, + key = {Beaton (1936)}, + lgcode = {Bari [ligo1238]} +} +@article{beaton1939, + author = {Beaton, A.C.}, + title = {Fur rain cults and ceremonies}, + journal = {Sudan Notes and Records}, + volume = {22}, + number = {2}, + pages = {181-203}, + year = {1939}, + key = {Beaton (1939)}, + lgcode = {Fur [furr1244]} +} +@article{beaton1948, + author = {Beaton, A. C.}, + title = {The Fur}, + journal = {Sudan Notes and Records}, + volume = {29}, + pages = {1-39}, + year = {1948}, + glottolog_ref = {eballiso2009:31938}, + key = {Beaton (1948)}, + lgcode = {Fur [furr1244]} +} +@article{beattie1957, + author = {Beattie, J. H. N.}, + title = {Nyoro Kinship, Marriage and Affinity}, + journal = {Africa}, + volume = {27; 28}, + pages = {317-340; 1-22}, + year = {1957-58}, + key = {Beattie (1957-58)} +} +@book{beattie1960, + author = {Beattie, J. H. N.}, + title = {Bunyoro}, + address = {New York}, + year = {1960}, + key = {Beattie (1960)}, + lgcode = {Nyoro [nyor1246]} +} +@book{beattie1965, + author = {Beattie, J. H. N.}, + title = {Understanding an African kingdom: Bunyuro}, + publisher = {Holt, Rinehart & Winston}, + address = {New York}, + year = {1965}, + glottolog_ref = {eballiso2009:14859}, + key = {Beattie (1965)}, + lgcode = {Nyoro [nyor1246]} +} +@article{beaucorps1921, + author = {Beaucorps, R. de.}, + title = {Les Basongo de la Luniunga et de la Gobari}, + journal = {Mem. Inst. Roy. Colon. Belge}, + volume = {10}, + pages = {iii, 1-176}, + year = {1921}, + key = {Beaucorps (1921)}, + lgcode = {Songo [song1299]} +} +@book{beaucorps1933, + author = {Beaucorps, R. de.}, + title = {Les bayansi du bas-Kwilu}, + publisher = {Louvain: Ed. de l'Aucarn}, + address = {Louvain}, + series = {Collection africana}, + volume = {1}, + year = {1933}, + glottolog_ref = {eballiso2009:52784}, + key = {Beaucorps (1933)}, + lgcode = {Yanzi [yans1239]} +} +@article{beaucorps1951, + author = {Beaucorps, R. de.}, + title = {L'evolution economique chez les Basongo de la Gobari}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + volume = {20}, + pages = {iv, 1-68}, + year = {1951}, + key = {Beaucorps (1951)}, + lgcode = {Songo [song1299]} +} +@article{becker1909, + author = {Becker, C.}, + title = {Die Nongkrem-Puja in den Khasi-ergen (Assam)}, + journal = {Anthropos}, + volume = {4}, + pages = {892-902}, + year = {1909}, + key = {Becker (1909)}, + lgcode = {Khasi [khas1269]} +} +@book{beckerdonner1944, + author = {Becker-Donner, E.}, + title = {Über zwei Kruvölkerstämme: Kran und Grebo}, + publisher = {Wien}, + series = {Wiener Beiträge zur Kulturgeschichte und Linguisti}, + volume = {6}, + pages = {1-70}, + year = {1944}, + glottolog_ref = {weball:1957}, + key = {Becker-Donner (1944)}, + lgcode = {Krahn [west2488]} +} +@article{bee1963, + author = {Bee, R. L.}, + title = {Changes in Yuma Social Organization}, + journal = {Ethnology}, + volume = {2}, + pages = {207-227}, + year = {1963}, + key = {Bee (1963)}, + lgcode = {Quechan [quec1382]} +} +@book{beech1911, + author = {Beech, M. W. H.}, + title = {The Suk: their language and folklore}, + publisher = {Clarendon Press}, + address = {Oxford}, + year = {1911}, + glottolog_ref = {eballiso2009:1276}, + key = {Beech (1911)}, + lgcode = {Hill Suk [west2492], Plains Suk [east2420]} +} +@article{behr1893, + author = {Behr, H. F. von.}, + title = {Die Völker zwischen Rufiji und Ruvuma}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {6}, + pages = {69-87}, + year = {1893}, + glottolog_ref = {eballiso2009:41152}, + key = {Behr (1893)}, + lgcode = {Makonde [mako1251]} +} +@book{beidelman1967, + author = {Beidelman, T. C.}, + title = {The Matrilineal Peoples of Eastern Tanzania}, + address = {London}, + year = {1967}, + key = {Beidelman (1967)}, + lgcode = {Kaguru [kagu1239], Luguru [lugu1238], Ngulu [ngul1246], Zigula [zigu1242]} +} +@book{beitipa1995, + author = {Beitipa, L.}, + title = {The Livs of the River Gauja}, + address = {Turaida}, + year = {1995}, + key = {Beitipa (1995)}, + lgcode = {Livs [livv1244]} +} +@article{bel1908, + author = {Bel, A.}, + title = {La population musulmane de Tlemeen}, + journal = {Rev. Et. Ethnog. Sociol.}, + volume = {1}, + pages = {201-225, 417-447}, + year = {1908}, + key = {Bel (1908)}, + lgcode = {Algerians [algi1247]} +} +@book{belgrave1923, + author = {Belgrave, C. D.}, + title = {Siwa, the Oasis of Jupiter Ammon}, + address = {London}, + year = {1923}, + key = {Belgrave (1923)}, + lgcode = {Siwans [siwi1239]} +} +@book{belitserandkotkova1963, + editor = {Belitser, V. N., and K. A. Kotkova}, + title = {Issledovanija po material'noj kul'ture mordovskogo naroda (The Mordva Material Culture)}, + address = {Moscow}, + year = {1963}, + key = {Belitser and Kotkova (1963)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@book{bell1924, + author = {Bell, C.}, + title = {Tibet, Past and Present}, + address = {Oxford}, + year = {1924}, + key = {Bell (1924)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{bell1928, + author = {Bell, C.}, + title = {The People of Tibet}, + address = {Oxford}, + year = {1928}, + key = {Bell (1928)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{bell1934, + author = {Bell, F. L. S.}, + title = {Report on Field Work in Tanga}, + journal = {Oceania}, + volume = {4}, + pages = {290-309}, + year = {1934}, + key = {Bell (1934)}, + lgcode = {Tangga [tang1348]} +} +@article{bell1938, + author = {Bell, F. L. S.}, + title = {Courtship and Marriage Among the Tanga}, + journal = {Oceania}, + volume = {8}, + pages = {401-418}, + year = {1938}, + key = {Bell (1938)}, + lgcode = {Tangga [tang1348]} +} +@book{bellah1952, + author = {Bellah, R. N.}, + title = {Apache Kinship Systems}, + address = {Cambridge}, + year = {1952}, + key = {Bellah (1952)}, + lgcode = {Jicarilla [jica1244]} +} +@article{belo1936, + author = {Belo, J.}, + title = {A Study of a Balinese Family}, + journal = {American Anthropologist}, + volume = {38}, + pages = {12-31}, + year = {1936}, + key = {Belo (1936)}, + lgcode = {Balinese [bali1278]} +} +@book{belo1970, + author = {Belo, J.}, + title = {Traditional Balinese Culture}, + address = {New York}, + year = {1970}, + key = {Belo (1970)}, + lgcode = {Balinese [bali1278]} +} +@article{belshaw1951, + author = {Belshaw, C. S.}, + title = {Recent History of Mekeo Society}, + journal = {Oceania}, + volume = {22}, + pages = {1-23}, + year = {1951}, + key = {Belshaw (1951)}, + lgcode = {Mekeo [meke1243]} +} +@article{belshaw1955, + author = {Belshaw, C. S.}, + title = {In Search of Wealth}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {80}, + pages = {1-84}, + year = {1955}, + key = {Belshaw (1955)}, + lgcode = {Dahuni [suau1242]} +} +@book{belshaw1957, + author = {Belshaw, C. S.}, + title = {The Great Village: The Economic and Social Welfare of Hanuabada, an Urban Community in Papua}, + address = {London}, + year = {1957}, + key = {Belshaw (1957)}, + lgcode = {Motu [motu1246]} +} +@incollection{belshaw1978, + author = {Belshaw, J.}, + editor = {I. McBryde}, + title = {Population Distribution and the Pattern of Seasonal Movement in Northern New South Wales}, + booktitle = {Records of Times Past: Ethnohistorical Essays on the Culture and Ecology of the New England Tribes}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {65-81}, + year = {1978}, + key = {Belshaw (1978)}, + lgcode = {Badjalang [midd1357]} +} +@article{benedict1924, + author = {Benedict , R. F.}, + title = {A Brief Sketch of Serrano Culture}, + journal = {American Anthropologist}, + volume = {26}, + pages = {366-392}, + year = {1924}, + key = {Benedict (1924)}, + lgcode = {Serrano [serr1255]} +} +@book{benedict1934, + author = {Benedict, Ruth.}, + title = {Patterns of Culture}, + publisher = {Houghton Mifflin Company}, + address = {Boston}, + year = {1934}, + key = {Benedict (1934)}, + lgcode = {Kwakwaka'wakw [kwak1269], Zuni [zuni1245]} +} +@article{benedict1942, + author = {Benedict, P. K.}, + title = {Tibetan and Chinese Kinship Terms}, + journal = {Harvard Journ. As. Stud.}, + volume = {6}, + pages = {313-337}, + year = {1942}, + key = {Benedict (1942)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{benedict1943, + author = {Benedict, R. F.}, + title = {Thai Culture and Behavior}, + address = {Ithaca}, + year = {1943}, + key = {Benedict (1943)}, + lgcode = {Thai [thai1261]} +} +@book{benet1970, + editor = {Benet, S.}, + title = {The Village of Viriatino}, + address = {New York}, + year = {1970}, + key = {Benet (1970)}, + lgcode = {Russians [russ1263]} +} +@book{benhazera1908, + author = {Benhazera, M.}, + title = {Six mois chez les Touareg de Ahaggar}, + address = {Alger}, + year = {1908}, + key = {Benhazera (1908)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@book{bennettandzingg1935, + author = {Bennett, W. C., and R. M. Zingg.}, + title = {The Tarahumara}, + address = {Chicago}, + year = {1935}, + key = {Bennett and Zingg (1935)}, + lgcode = {Tarahumara [cent2131]} +} +@article{berengerferaud1878, + author = {Berenger-Feraud, L. J. B.}, + title = {Etude sur les Soninkes}, + journal = {Rev. Anth., ser. 2}, + volume = {1}, + pages = {586-607}, + year = {1878}, + key = {Berenger-Feraud (1878)}, + lgcode = {Soninke [soni1259]} +} +@book{bergman1927, + author = {Bergman, S.}, + title = {Through Kamchatka by dog-sled and skis}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1927}, + key = {Bergman (1927)}, + lgcode = {Koryak [kory1246]} +} +@article{bernalvilla1954, + author = {Bernal Villa, A.}, + title = {Economía de los Páez}, + journal = {Rev. olomb. Antr.}, + address = {Bogotá}, + volume = {3}, + pages = {291-367}, + year = {1954}, + glottolog_ref = {fabreall2009ann:Nasa3}, + key = {Bernal Villa (1954)}, + lgcode = {Páez [paez1247]} +} +@book{bernard1929, + author = {Bernard, A.}, + title = {L'Algerie}, + address = {Paris}, + year = {1929}, + key = {Bernard (1929)}, + lgcode = {Algerians [algi1247], Hamyan [oran1236]} +} +@book{bernard1966, + author = {Bernard, J.}, + title = {Les bisa du circle de Garango}, + publisher = {Ouagadougou & Paris: Centre Voltaique de la Recherche Scientifique (CVRS); Centre National de la Recherche Scientifique (CNRS)}, + address = {Ouagadougou & Paris}, + series = {Recherches voltaiques: collection de travaux de sciences humaines sur la Haute-Volta}, + volume = {2}, + pages = {1-247}, + year = {1966}, + glottolog_ref = {eballiso2009:57776}, + key = {Bernard (1966)}, + lgcode = {Bisa [biss1248]} +} +@book{bernatzik1933, + author = {Bernatzik, H. A.}, + title = {Aethiopien des Westen. 2V}, + address = {Wien}, + year = {1933}, + key = {Bernatzik (1933)}, + lgcode = {Balanta [bala1301], Banyun [bain1259], Bijogo [bidy1244], Diola [ejam1238], Papel [pape1239]} +} +@book{bernatzik1936, + author = {Bernatzik, H. A.}, + title = {Gari-Gari}, + address = {New York}, + year = {1936}, + key = {Bernatzik (1936)}, + lgcode = {Jur [luwo1239]} +} +@book{bernatzik1938, + author = {Bernatzik, H. A.}, + title = {Overland with the Nomad Lapps}, + address = {New York}, + year = {1938}, + key = {Bernatzik (1938)}, + lgcode = {Sami [nort2671]} +} +@book{bernatzik1944, + author = {Bernatzik, H. A.}, + title = {Im Reiche der Bidyogo}, + address = {Innsbruck}, + year = {1944}, + key = {Bernatzik (1944)}, + lgcode = {Bijogo [bidy1244]}, + unknown = {Mendes Moreira,. 1946. Beve ensaio etnografico acerca dos Bijagos. Bol. Cultural Guine Port. 1: 69-115.} +} +@book{bernatzik1947, + author = {Bernatzik, H. A.}, + title = {Akha und Meau. 2v}, + address = {Innsbruck}, + year = {1947}, + key = {Bernatzik (1947)}, + lgcode = {Akha [akha1245]}, + unknown = {Young, G. 1962. The Hill Tribes of Northern Thailand. Bangkok: Siam Society.} +} +@book{bernatzik1951, + author = {Bernatzik, H. A.}, + title = {The Spirits of the Yellow Leaves}, + publisher = {Robert Hale}, + address = {London}, + year = {1951}, + key = {Bernatzik (1951)}, + lgcode = {Mlabri [mlab1235]}, + note = {In collaboration with E. Bernatzik} +} +@article{berndt1953, + author = {Berndt, R. M.}, + title = {A Day in the Life of a Dieri Man Before Alien Contact}, + journal = {Anthropos}, + volume = {48}, + pages = {171-201}, + year = {1953}, + key = {Berndt (1953)}, + lgcode = {Diyari [dier1241]} +} +@article{berndt1955, + author = {Berndt, R. M.}, + title = {"Murngin" (Wulamba) Social Organization}, + journal = {American Anthropologist}, + volume = {57}, + pages = {84-106}, + year = {1955}, + key = {Berndt (1955)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]} +} +@book{berndt1962, + author = {Berndt, R. M.}, + title = {Excess and Restraint}, + address = {Chicago}, + year = {1962}, + key = {Berndt (1962)}, + lgcode = {Fore [fore1270]} +} +@article{berndtandberndt1944, + author = {Berndt, R. M., and C. H. Berndt}, + title = {A Preliminary Report of Field Work in the Ooldea Region, Western South Australia: Women's Life}, + journal = {Oceania}, + volume = {14}, + pages = {220-249}, + year = {1944}, + key = {Berndt and Berndt (1944)}, + lgcode = {Ooldea [anta1253]} +} +@book{berndtandberndt1970, + author = {Berndt, R. M., and C. H. Berndt}, + title = {Man, land & myth in north Australia: the Gunwinggu people}, + publisher = {Michigan State University Press}, + address = {East Lansing}, + year = {1970}, + glottolog_ref = {ozbib:484}, + key = {Berndt and Berndt (1970)}, + lgcode = {Gunwinygu [gunw1252]} +} +@book{bernotandbernot1958, + author = {Bernot, D., and L. Bernot.}, + title = {Les Khyang des Collines de Chittagong (Pakistan Oriental): Matériaux pour l'étude linguistique des Chin}, + publisher = {Librairie Plon}, + address = {Paris}, + series = {L'Homme: Cahiers de d'Éthnologie, de Géographie et de Linguistique}, + volume = {3}, + pages = {148}, + year = {1958}, + glottolog_ref = {hh:d:BernotBernot:Chin}, + key = {Bernot and Bernot (1958)}, + lgcode = {Chin [asho1236]} +} +@article{berreman1962a, + author = {Berreman, G. D.}, + title = {Pahari Polyandry}, + journal = {American Anthropologist}, + volume = {64}, + pages = {60-75}, + year = {1962}, + key = {Berreman (1962a)}, + lgcode = {Pahari [maha1287]} +} +@article{berreman1962b, + author = {Berreman, G. D.}, + title = {Sib and Clan Among the Pahari of North India}, + journal = {Ethnology}, + volume = {1}, + pages = {524-528}, + year = {1962}, + key = {Berreman (1962b)}, + lgcode = {Pahari [maha1287]} +} +@book{berreman1963, + author = {Berreman, G. D.}, + title = {Hindus of the Himalayas}, + address = {Berkeley and Los Angeles}, + year = {1963}, + key = {Berreman (1963)}, + lgcode = {Pahari [maha1287]} +} +@book{bertrand1899, + author = {Bertrand, A.}, + title = {The Kingdom of the Barotsi}, + address = {London}, + year = {1899}, + key = {Bertrand (1899)}, + lgcode = {Lozi [lozi1239]} +} +@article{bertrand1920, + author = {Bertrand.}, + title = {Quelques notes sur la vie politique, le developpement, la decadence des petites societes Bantou du bassin central du Congo}, + journal = {Rev. Inst. Sociol., Inst. Solvay}, + volume = {1}, + pages = {i, 74-91}, + year = {1920}, + key = {Bertrand (1920)}, + lgcode = {Lokele [kele1255]} +} +@book{bessaignet1958, + author = {Bessaignet, P.}, + title = {Tribesmen of the Chittagong Hill Tracts}, + publisher = {Asiatic Society of Pakistan.}, + address = {Dacca}, + series = {Asiatic Society of Pakistan, Publications}, + volume = {1}, + pages = {iii, 109, illus., map}, + year = {1958}, + glottolog_ref = {sala:625}, + key = {Bessaignet (1958)}, + lgcode = {Chakma [chak1266], Mogh [rakh1245]} +} +@book{best1924, + author = {Best, E.}, + title = {The Maori. 2v}, + address = {Wellington}, + year = {1924}, + key = {Best (1924)}, + lgcode = {Māori [maor1246]} +} +@book{best1925, + author = {Best, E.}, + title = {Maori Agriculture}, + address = {Wellington}, + year = {1925}, + key = {Best (1925)}, + lgcode = {Māori [maor1246]} +} +@book{best1952, + author = {Best, E.}, + title = {The Maori as He Was}, + address = {Wellington}, + year = {1952}, + key = {Best (1952)}, + lgcode = {Māori [maor1246]} +} +@book{best1979a, + author = {Best, Elsdon}, + title = {The Maori. Vol.I}, + year = {1979}, + howpublished = {reprint of 1924 ed.}, + key = {Best (1979a)}, + lgcode = {Māori [maor1246]} +} +@book{best1979b, + author = {Best, Elsdon}, + title = {The Maori. Vol.II}, + year = {1979}, + howpublished = {reprint of 1924 ed.}, + key = {Best (1979b)}, + lgcode = {Māori [maor1246]} +} +@misc{bestnd, + author = {Best, O. H.}, + title = {Burmawa of Kanam}, + howpublished = {Manuscript}, + key = {Best (nd)}, + lgcode = {Burmawa [bogh1241]} +} +@incollection{bhanu1982, + author = {Bhanu, B. A.}, + editor = {P. K. Misra and K. C. Malhotra}, + title = {The Nomadic Cholanaickans of Kerala: An Analysis of Their Movements}, + booktitle = {Nomads in India}, + publisher = {Anthropological Survey of India}, + address = {Calcutta}, + pages = {215-226}, + year = {1982}, + key = {Bhanu (1982)}, + lgcode = {Cholanaikkan [jenn1240]} +} +@incollection{bhanu1992, + author = {Bhanu, B. A.}, + editor = {M. J. Casimir and A. Rao}, + title = {Boundaries, obligations and reciprocity: levels of territoriality among the Cholanaickan of south India}, + booktitle = {Mobility and territoriality: social and spatial boundaries among foragers, fishers, pastoralists and peripatetics}, + publisher = {Berg}, + address = {Oxford}, + pages = {29-54}, + year = {1992}, + key = {Bhanu (1992)}, + lgcode = {Cholanaikkan [jenn1240]} +} +@book{biddulph1880, + author = {Biddulph, J.}, + title = {Tribes of the Hindoo-Koosh}, + publisher = {Office of Superintendent Printing}, + address = {Calcutta}, + pages = {364}, + year = {1880}, + glottolog_ref = {hh:hewtyp:Biddulph:Hindoo-Koosh}, + key = {Biddulph (1880)}, + lgcode = {Shina [shin1264]} +} +@book{bieber192023, + author = {Bieber, F. J.}, + title = {Kaffa. 2v}, + address = {Münster}, + year = {1920-23}, + key = {Bieber (1920-23)}, + lgcode = {Kafa [kafa1242]} +} +@incollection{biernoff1979, + author = {Biernoff , D.}, + editor = {M. Heppell}, + title = {Traditional and Contemporary Structures and Settlement in Eastern Arnhem Land with Particular Reference to the Nunggubuyu}, + booktitle = {A Black Reality—Aboriginal Camps and Housing in Remote Australia}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {153-179}, + year = {1979}, + key = {Biernoff (1979)}, + lgcode = {Nunggubuyu [nung1290]} +} +@article{biesele1972, + author = {Biesele, M.}, + title = {Hunting in semi-arid areas - the Kalahari Bushmen Today}, + journal = {Botswana Notes and Records (special ed.)}, + year = {1972}, + key = {Biesele (1972)}, + lgcode = {!Kung [juho1239]} +} +@phdthesis{biesele1975, + author = {Biesele, M.}, + title = {Folklore and ritual of !Kung hunter-gatherers}, + school = {Harvard}, + year = {1975}, + glottolog_ref = {eballiso2009:34947}, + key = {Biesele (1975)}, + lgcode = {!Kung [juho1239]} +} +@incollection{biesele1976, + author = {Biesele, M.}, + editor = {Lee, Richard Borshay and DeVore, Irven}, + title = {Aspects of !Kung folklore}, + booktitle = {Kalahari Hunter-Gatherers: Studies of the !Kung San and their Neighbours}, + publisher = {Harvard Univ. Press}, + address = {Cambridge MA & London}, + pages = {302-324}, + year = {1976}, + glottolog_ref = {eballiso2009:33436}, + key = {Biesele (1976)}, + lgcode = {!Kung [juho1239]} +} +@book{bikbulatov1964, + author = {Bikbulatov, N. V.}, + title = {Sistema rodstva bashkir (Kin System of the Bashkir)}, + address = {Moscow}, + year = {1964}, + key = {Bikbulatov (1964)}, + lgcode = {Bashkir [bash1264]} +} +@incollection{bikbulatov1980, + author = {Bikbulatov, N. V.}, + editor = {R. G. Kuzeev and N. V. Bikbulatov}, + title = {Istoricheskoer azvitieb ashkirskojs istemyr odstva (Historical Development of the Bashkir Kin System)}, + booktitle = {Obychai i kul'tumo-bytovye traditsii bashkir (Customs and Everyday Life Cultural Traditions of the Bashkir)}, + address = {Ufa}, + pages = {3-23}, + year = {1980}, + key = {Bikbulatov (1980)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatov1980a, + author = {Bikbulatov, N. V.}, + title = {Bashkirskij aul. Ocherk obshchestvennoj i kul'tumoj zhizni (Bashkir Aul: An Essay on Social and Cultural Life)}, + address = {Ufa}, + year = {1980}, + key = {Bikbulatov (1980a)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatov1981, + author = {Bikbulatov, N. V.}, + title = {Bashkirskajas istemar odstva (BashkirK in System)}, + address = {Moscow}, + year = {1981}, + key = {Bikbulatov (1981)}, + lgcode = {Bashkir [bash1264]} +} +@book{bikbulatovandfatyhova1991, + author = {Bikbulatov, N. V., and F. F. Fatyhova}, + title = {Semejnyj byt bashkir. XIX-XX w. (Family Everyday Life of the Bashkir in the Nineteenth and Twentieth Centuries)}, + address = {Moscow}, + year = {1991}, + key = {Bikbulatov and Fatyhova (1991)} +} +@book{bikbulatovandkuzeev1976, + editor = {Bikbulatov, N. V., and R. G. Kuzeev}, + title = {Etnografija Bashkirii (Ethnography of Bashkiria)}, + address = {Ufa}, + year = {1976}, + key = {Bikbulatov and Kuzeev (1976)}, + lgcode = {Bashkir [bash1264]} +} +@incollection{bikbulatovandpimenov1998, + author = {Bikbulatov, N. V., and V. V. Pimenov.}, + editor = {V. A. Tishkov}, + title = {Bashkiry (The Bashkir)}, + booktitle = {Narody i religii mira. Entsiklopedija (Peoples and Religions of the World. Encyclopedia)}, + address = {Moscow}, + pages = {85-88}, + year = {1998}, + key = {Bikbulatov and Pimenov (1998)}, + lgcode = {Bashkir [bash1264]} +} +@misc{binford1969, + author = {Binford}, + year = {1969}, + howpublished = {field notes 1969 (July)}, + key = {Binford (1969)}, + lgcode = {Noatak Inuit [nort2945]} +} +@misc{binford1971, + author = {Binford, L. R.}, + year = {1971}, + howpublished = {Field notes (Book 3) on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Binford (1971)}, + lgcode = {Nunamiut [nort2944]} +} +@incollection{binford1991a, + author = {Binford, L. R.}, + editor = {W. A. Bois-mier and C. S. Gamble}, + title = {When the Going Gets Tough, the Tough Get Going: Nunamiut Local Groups, Camping Patterns, and Economic Organization}, + booktitle = {Ethnoarchaeological Approaches to Mobile Campsites: Hunter-Gatherer and Pastoralist Case Studies}, + publisher = {International Monographs in Prehistory}, + address = {Ann Arbor, Mich.}, + series = {Ethnoarchaeology Series}, + volume = {1}, + pages = {25-137}, + year = {1991}, + key = {Binford (1991a)}, + lgcode = {Nunamiut [nort2944]} +} +@incollection{binfordandchasko1976, + author = {Binford, L. R., and W. J. Chasko}, + editor = {E. B. Zubrow}, + title = {Nunamiut Demographic History}, + booktitle = {Demographic Anthropology: Quantitative Approaches}, + publisher = {University of New Mexico Press}, + address = {Albuquerque}, + pages = {63-143}, + year = {1976}, + key = {Binford and Chasko (1976)}, + lgcode = {Nunamiut [nort2944]} +} +@misc{binfordfieldnotes1971, + author = {Binford, L. R.}, + year = {1971}, + howpublished = {Field notes (Book 3) on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Binford field notes (1971)}, + lgcode = {Noatak Inuit [nort2945]} +} +@book{binfordfieldnotes1972, + author = {Binford, L. R.}, + title = {An Archaeological Perspective}, + publisher = {Seminar Press}, + address = {New York}, + year = {1972}, + key = {Binford field notes (1972)}, + lgcode = {Noatak Inuit [nort2945]} +} +@misc{binfordfieldnotes1974, + author = {Binford, L. R.}, + year = {1974}, + howpublished = {Field notes (Alyawara, July) on file, Department of Anthropology, Southern Methodist University, Dal-las, Texas.}, + key = {Binford field notes (1974)}, + lgcode = {Alyawara [alya1239]} +} +@misc{binfordfieldnotes1993, + title = {Binford field notes 1993}, + key = {Binford field notes (1993)}, + lgcode = {Northern Aranda [east2379]} +} +@incollection{bird1946, + author = {Bird, J. B.}, + editor = {J. H. Steward}, + title = {The Alacaluf}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + volume = {143}, + number = {1}, + pages = {55-80}, + year = {1946}, + key = {Bird (1946)}, + lgcode = {Alacaluf [qawa1238]} +} +@incollection{bird1983, + author = {Bird, N.}, + editor = {P. Robb}, + title = {Wage-Gathering: SocioPOThoomic Changes and the Case of the Food-Gatheier Naikens of South India}, + booktitle = {Rural South Asia: Linkages, Change and Develop-ment}, + publisher = {Curzon Press}, + address = {London}, + pages = {57-88}, + year = {1983}, + key = {Bird (1983)}, + lgcode = {Nayaka [jenn1240]} +} +@book{bird1988, + author = {Bird, J. B.}, + editor = {J. Hyslop}, + title = {Travels and Archaeology in South Chile}, + publisher = {University of Iowa Press}, + address = {Iowa City}, + year = {1988}, + key = {Bird (1988)}, + lgcode = {Alacaluf [qawa1238]} +} +@incollection{birddavid1987, + author = {Bird-David, N.}, + editor = {P. Hockings}, + title = {Single Persons and Social Cohesion in a HunterGatherer Society}, + booktitle = {Dimensions of Social Life: Essays in Honor of David G. Mandelbaum}, + publisher = {Mouton de Gruyter}, + address = {Berlin}, + pages = {151-166}, + year = {1987}, + key = {Bird-David (1987)}, + lgcode = {Nayaka [jenn1240]} +} +@misc{birdperscomm1970, + author = {Bird}, + year = {1970}, + howpublished = {Pers. comm.}, + key = {Bird pers. comm. (1970)}, + lgcode = {Alacaluf [qawa1238]} +} +@article{birdsell1967, + author = {Birdsell, J. B.}, + title = {Preliminary Data on the Trihybrid Origin of the Australian Aborigines}, + journal = {Archaeology and Physical Anthropology in Oceania}, + volume = {2}, + pages = {100-155}, + year = {1967}, + key = {Birdsell (1967)}, + lgcode = {Mamu [mamu1253]} +} +@book{birketsmith1924, + author = {Birket-Smith, Kaj}, + title = {Ethnography of the Egedesminde district}, + series = {Meddelelser om Gronland}, + volume = {66}, + year = {1924}, + key = {Birket-Smith (1924)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{birketsmith1928a, + author = {Birket-Smith, Kaj}, + title = {The Greenlanders of the Present Day}, + series = {Greenlan}, + volume = {2}, + pages = {1-207}, + year = {1928}, + key = {Birket-Smith (1928a)}, + lgcode = {Kalaallit (West Greenland) [kala1399], Tasiilaq [tunu1234]} +} +@book{birketsmith1928b, + author = {Birket-Smith, Kaj}, + title = {Five Hundred Eskimo Words}, + series = {Rep. Fifth Thule Exp.}, + volume = {3}, + number = {iii}, + pages = {1-64}, + year = {1928}, + key = {Birket-Smith (1928b)}, + lgcode = {Iglulik Inuit [west2618], Inughuit (Northern Greenland) [pola1254]} +} +@book{birketsmith1929, + title = {The Caribou Eskimos}, + publisher = {Nordisk Forlag}, + address = {Copenhagen}, + series = {Rep. Fifth Thule Exp.}, + volume = {5}, + number = {i; ii}, + pages = {1-306; 1-419}, + key = {Birket-Smith (1929)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{birketsmith1930, + author = {Birket-Smith, Kaj}, + title = {Contributions to Chipewyan Ethnology}, + series = {Rep. Fifth Thule Exp.}, + volume = {5}, + number = {iii}, + pages = {1-113}, + year = {1930}, + key = {Birket-Smith (1930)}, + lgcode = {Dene [chip1261]} +} +@book{birketsmith1953, + author = {Birket-Smith, K.}, + title = {The Chugach Eskimo}, + address = {Copenhagen}, + series = {Nationalmuseets Skrifter, Etnografisk Raekkee}, + volume = {6}, + pages = {1-262}, + year = {1953}, + key = {Birket-Smith (1953)}, + lgcode = {Chugach [chug1254]} +} +@article{birketsmith1956, + author = {Birket-Smith, K.}, + title = {An Ethnological Sketch of Rennell Island}, + journal = {Kong. Danske Videnskab. Selskab, Hist. -Filol. Medd.}, + volume = {35}, + pages = {iii, 1-222}, + year = {1956}, + key = {Birket-Smith (1956)}, + lgcode = {Rennell Islanders [renn1242]} +} +@book{birketsmithanddelaguna1938, + author = {Birket-Smith, K., and F. De Laguna}, + title = {The Eyak Indians of the Copper River Delta, Alaska}, + publisher = {Levin and Munksgaard}, + address = {Copenhagen}, + year = {1938}, + key = {Birket-Smith and De Laguna (1938)}, + lgcode = {Eyak [eyak1241]} +} +@phdthesis{bishop1969, + author = {Bishop, C. A.}, + title = {The Northern Chippewa: An Ethnohistorical Study}, + school = {Department of Anthropology, State University of New York, Buffalo}, + year = {1969}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Bishop (1969)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@incollection{bishop1978, + author = {Bishop, C. A.}, + editor = {C. D. Laughlin, Jr., and I. A. Brady}, + title = {Cultural and Biological Adaptations to Deprivation: The Northern Ojibwa Case}, + booktitle = {Extinction and Survival in Human Populations}, + publisher = {Columbia University Press}, + address = {New York}, + pages = {208-230}, + year = {1978}, + key = {Bishop (1978)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@book{black1960, + author = {Black, C. E.}, + title = {The Transformation of Russian Society}, + address = {Cambridge}, + year = {1960}, + key = {Black (1960)}, + lgcode = {Russians [russ1263]} +} +@book{black1973, + author = {Black, L.}, + title = {The Nivkh (Gilyak) of Sakhalin and the Lower Amur}, + year = {1973}, + key = {Black (1973)}, + lgcode = {Nivkh [gily1242]} +} +@phdthesis{blackburn1971, + author = {Blackburn, R. H.}, + title = {Honey in Okiek personality, culture and society}, + school = {Department of Anthropology, Michigan State University, East Lansing}, + year = {1971}, + glottolog_ref = {eballiso2009:33929}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Blackburn (1971)}, + lgcode = {Dorobo [okie1245]} +} +@book{blackman1927, + author = {Blackman, W. S.}, + title = {The Fellahin of Upper Egypt}, + address = {London}, + year = {1927}, + key = {Blackman (1927)}, + lgcode = {Egyptians [egyp1253]} +} +@book{blackwood1935, + author = {Blackwood, B.}, + title = {Both Sides of Buka Passage}, + address = {Oxford}, + year = {1935}, + key = {Blackwood (1935)}, + lgcode = {Kurtatchi [tinp1237]} +} +@book{bleek1924a, + author = {Bleek, D. F.}, + title = {The Mantis and His Friends}, + publisher = {Maskew Miller}, + address = {Cape Town}, + year = {1924}, + key = {Bleek (1924a)}, + lgcode = {/Xam [xamm1241]} +} +@article{bleek1924b, + author = {Bleek, D. F.}, + title = {Bushman Terms of Relationship}, + journal = {Bantu Studies}, + volume = {2}, + pages = {57-70}, + year = {1924}, + key = {Bleek (1924b)}, + lgcode = {/Xam [xamm1241], Naron [naro1249]} +} +@book{bleek1928, + author = {Bleek, D. F.}, + title = {The Naron: A BuNman Tribe of the Central Kalahari}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1928}, + key = {Bleek (1928)}, + lgcode = {Naron [naro1249]} +} +@article{bleek1929, + author = {Bleek, D. F.}, + title = {Bushmen of Central Angola}, + journal = {Bantu Studies}, + volume = {3}, + pages = {105-125}, + year = {1929}, + key = {Bleek (1929)}, + lgcode = {!Kung [juho1239], Sekele [vase1234]} +} +@article{bleek1931a, + author = {Bleek, D. F.}, + title = {Traces of Former Bushmen Occupation in Tanganyika Territory}, + journal = {South African Journal of Science}, + volume = {28}, + pages = {423-429}, + year = {1931}, + key = {Bleek (1931a)}, + lgcode = {Hadza [hadz1240]} +} +@article{bleek1931b, + author = {Bleek, D. F.}, + title = {The Hadzapi or Watindiga of Tanganyika Territory}, + journal = {Africa}, + volume = {4}, + pages = {273-286}, + year = {1931}, + key = {Bleek (1931b)}, + lgcode = {Hadza [hadz1240]} +} +@book{blohm193133, + author = {Blohm, W.}, + title = {Die Nyamwezi. 3V}, + address = {Bamberg}, + year = {1931-33}, + key = {Blohm (1931-33)}, + lgcode = {Nyamwezi [nyam1276], Sumbwa [sumb1240]} +} +@phdthesis{blundell1975, + author = {Blundell, V. J.}, + title = {Aboriginal Adaptation in Northwest Australia}, + school = {Department of Anthropology, University of Wisconsin, Madison}, + year = {1975}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Blundell (1975)}, + lgcode = {Worrorra [worr1237]} +} +@article{blundell1980, + author = {Blundell, V. J.}, + title = {Hunter-Gatherer Territoriality: Ideology and Behavior in Northwest Australia}, + journal = {Ethnohistory}, + volume = {27}, + number = {2}, + pages = {103-117}, + year = {1980}, + key = {Blundell (1980)}, + lgcode = {Worrorra [worr1237]} +} +@article{blurtonjonesetal1992, + author = {Blurton-Jones, N. G. and L. C. Smith and J. F. O'Connell and K. Hawkes and C. L. Kamuzora}, + title = {Demography of the Hadza: an increasing and high density population of savanna foragers}, + journal = {American Journal of Physical Anthropology}, + volume = {89}, + pages = {159-181}, + year = {1992}, + glottolog_ref = {eballiso2009:34759}, + key = {Blurton-Jones et al. (1992)}, + lgcode = {Hadza [hadz1240]} +} +@inbook{boas1888, + author = {Boas, F.}, + title = {The Central Eskimo}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Annual Reports of the Bureau of American Ethnology}, + volume = {6}, + pages = {390-669}, + year = {1888}, + key = {Boas (1888)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@article{boas1891a, + author = {Boas, F.}, + title = {Physical Characteristics of the Tribes of the North Pacific Coast}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {61}, + pages = {424-449}, + year = {1891}, + key = {Boas (1891a)}, + lgcode = {Alsea [alse1251]} +} +@article{boas1891b, + author = {Boas, F.}, + title = {The Bilqula}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {61}, + pages = {408-424}, + year = {1891}, + key = {Boas (1891b)}, + lgcode = {Nuxalk [bell1243]} +} +@article{boas1895a, + author = {Boas, F.}, + title = {The Indians of British Columbia: Physical Characteristics of the Tribes of the North Pacific Coast, the Tinnch Tribe of Nicola Valley, the Ts'ets'a'ut, theNisk'a', Linguistics of Nisk'a' and Ts'ets'a'ut and Vocabulary of the Tinnch Tribes of Canada}, + journal = {Annual Report of the British Association for the Advancement of Science}, + volume = {65}, + pages = {523-592}, + year = {1895}, + key = {Boas (1895a)}, + lgcode = {Mi'kmaq [mikm1235], Wegamon Ojibwa [seve1241]} +} +@article{boas1895b, + author = {Boas, F.}, + title = {The Social Organization and the Secret Societies of the Kwakiutl Indians}, + journal = {Rep. U. S. Nat. Mus.}, + volume = {1895}, + pages = {311-738}, + year = {1895}, + key = {Boas (1895b)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{boas1899, + author = {Boas, F.}, + title = {Anthropometry of the Shoshonean Tribes}, + journal = {American Anthropologist}, + volume = {1}, + pages = {751-758}, + year = {1899}, + key = {Boas (1899)}, + lgcode = {Bannock [bann1248], Kuyuidokado [sout2967], Timponogas [utee1244], Tukudika [nort2955], Uintah Ute [utee1244], Uncompahgre Ute [utee1244], White Knife Shoshoni [west2622]} +} +@article{boas1901, + author = {Boas, F.}, + title = {A}, + journal = {J. Stone's Measurementso f the Natives of Northwestern Territories. Bulletin of the American Museum of Natural History}, + volume = {14}, + pages = {53-68}, + year = {1901}, + key = {Boas (1901)}, + lgcode = {Kutchin [gwic1235], Noatak Inuit [nort2945], Tahltan [tahl1239]} +} +@article{boas190107, + author = {Boas, F.}, + title = {The Eskimo of Baffinland and Hudson Bay}, + journal = {Bull. Amer. Mus. Nat. Hist.}, + volume = {15}, + pages = {1-570}, + year = {1901-07}, + key = {Boas (1901-07)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@article{boas1907, + author = {Boas, F.}, + title = {The Eskimo of Baffin Land and Hudson Bay}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {15}, + year = {1907}, + key = {Boas (1907)}, + lgcode = {Netsilik [nets1241]} +} +@article{boas1909, + author = {Boas, F.}, + title = {The Kwakiutl of Vancouver Island}, + journal = {Mem. Amer. Mus. Nat. Hist.}, + volume = {8}, + pages = {307-515}, + year = {1909}, + key = {Boas (1909)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269]} +} +@article{boas1918, + author = {Boas, F.}, + title = {Kutenai Tales}, + journal = {Bulletins of the Bureau of American Ethnology}, + publisher = {Washington, D.C.: Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + volume = {59}, + pages = {1-387}, + year = {1918}, + glottolog_ref = {hh:t:Boas:Kutenai}, + key = {Boas (1918)}, + lgcode = {Kutenai [kute1249]} +} +@article{boas1922, + author = {Boas, F.}, + title = {Das VerwandtschAftssystem der Vandau}, + journal = {Zeitschrift für Ethnologie}, + volume = {54}, + pages = {41-51}, + year = {1922}, + key = {Boas (1922)}, + lgcode = {Ndau [ndau1241]} +} +@article{boas1923, + author = {Boas, F.}, + title = {Notes on the Tillamook}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {3-16}, + year = {1923}, + key = {Boas (1923)}, + lgcode = {Tillamook [till1254]} +} +@article{boas1938, + author = {Boas, F.}, + title = {Bella Bella Texts}, + journal = {Columbia University Contributions to Anthropology}, + volume = {5}, + pages = {1-291}, + year = {1938}, + key = {Boas (1938)}, + lgcode = {Heiltsuk [bell1263]} +} +@book{boas1964, + author = {Boas, F.}, + title = {The Central Eskimo}, + publisher = {University of Nebraska Press}, + address = {Lincoln}, + year = {1964}, + key = {Boas (1964)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{boas1966, + author = {Boas, F.}, + editor = {H. Codere}, + title = {Kwakiutl Ethnography}, + address = {Chicago}, + year = {1966}, + key = {Boas (1966)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{boasandfarrand1899, + author = {Boas, F.}, + title = {Anthropometry of the Shoshonean Tribes}, + journal = {American Anthropologist}, + volume = {1}, + pages = {751-758}, + year = {1899}, + key = {Boas and Farrand (1899)}, + lgcode = {Chilcotin [chil1280], Gitxsan [gitx1241], Kwakwaka'wakw [kwak1269], Lillooet [lill1248], Nlaka'pamux [thom1243], Nuxalk [bell1243], Tsimshian [nucl1649]} +} +@article{bock1966, + author = {Bock, P. K.}, + title = {The Micmac Indians of Restigouche}, + journal = {Bulletins of the National Museum of Canada}, + volume = {213}, + pages = {1-95}, + year = {1966}, + key = {Bock (1966)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{bockani1945, + author = {Bockani, J.}, + title = {Mende Warfare}, + journal = {Farm and Forest}, + volume = {6}, + number = {2}, + pages = {104-105}, + year = {1945}, + key = {Bockani (1945)}, + lgcode = {Mende [mend1266]} +} +@article{boelaert1940, + author = {Boelaert, E.}, + title = {De Nkundo-Maatschappij}, + journal = {Kongo-Overzee}, + volume = {6}, + pages = {148-161}, + year = {1940}, + key = {Boelaert (1940)}, + lgcode = {Nkundo [nkun1238]} +} +@book{boggiani1894, + author = {Boggiani, G.}, + title = {I Ciamacoco}, + publisher = {Roma: Società Romana per l'Antropologia}, + address = {Roma}, + pages = {132}, + year = {1894}, + glottolog_ref = {hh:ew:Boggiani:Ciamacoco}, + key = {Boggiani (1894)}, + lgcode = {Chamacoco [cham1315]} +} +@article{bogoras1901a, + author = {Bogoras, W.}, + title = {The Chukchee of Northeastern Asia}, + journal = {American Anthropologist}, + volume = {3}, + pages = {80-108}, + year = {1901}, + glottolog_ref = {hh:e:Bogoras:Chukchi}, + key = {Bogoras (1901a)}, + lgcode = {Chukchi [chuk1273]} +} +@book{bogoras1901b, + author = {Bogoras, W.}, + title = {The Chukchee}, + series = {Memoirs of the American Museum of Natural History}, + volume = {11}, + pages = {1-703}, + year = {1901}, + key = {Bogoras (1901b)}, + lgcode = {Chukchi [chuk1273]} +} +@book{bogoras1904, + author = {Bogoras, W.}, + title = {The Chukchee. The Jesup North Pacific Expedition, Vol. 7}, + publisher = {E. J. Brill}, + address = {Leiden, the Netherlands}, + series = {Memoirs of the American Museum of Natural History}, + volume = {11}, + year = {1904}, + key = {Bogoras (1904)}, + lgcode = {Ungazikmit [cent2128]} +} +@article{bohannan1949, + author = {Bohannan, L.}, + title = {Dahomean Marriage}, + journal = {Africa}, + volume = {19}, + pages = {273-278}, + year = {1949}, + key = {Bohannan (1949)}, + lgcode = {Fon [fonn1241]} +} +@article{bohannan1952, + author = {Bohannan, L.}, + title = {A Genealogical Charter}, + journal = {Africa}, + volume = {22}, + pages = {301-315}, + year = {1952}, + key = {Bohannan (1952)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1953, + author = {Bohannan, P.}, + title = {Concepts of Time Among the Tiv of Nigeria}, + journal = {Southwestern Journal of Anthropology}, + volume = {9}, + pages = {251-262}, + year = {1953}, + glottolog_ref = {eballiso2009:22304}, + key = {Bohannan (1953)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannan1954a, + author = {Bohannan. P.}, + title = {Tiv Farm and Settlement}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {15}, + year = {1954}, + glottolog_ref = {eballiso2009:22303}, + key = {Bohannan (1954a)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1954b, + author = {Bohannan, P.}, + title = {The Migration and Expansion of the Tiv}, + journal = {Africa}, + volume = {24}, + pages = {2-16}, + year = {1954}, + key = {Bohannan (1954b)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1954c, + author = {Bohannan, P.}, + title = {Circumcision among the Tiv}, + journal = {Man}, + volume = {54}, + pages = {2-6}, + year = {1954}, + key = {Bohannan (1954c)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannan1955, + author = {Bohannan, P.}, + title = {Some Principles of Exchange and Investment Among the Tiv}, + journal = {American Anthropologist}, + volume = {57}, + pages = {60-70}, + year = {1955}, + glottolog_ref = {eballiso2009:22302}, + key = {Bohannan (1955)}, + lgcode = {Tiv [tivv1240]} +} +@incollection{bohannan1957a, + author = {Bohannan, L.}, + editor = {J. Middleton and D. Tait}, + title = {Political Aspects of Tiv Social Organization}, + booktitle = {Tribes Without Rulers}, + address = {London}, + pages = {33-66}, + year = {1957}, + key = {Bohannan (1957a)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannan1957b, + author = {Bohannan, P.}, + title = {Justice and Judgment among the Tiv}, + publisher = {Oxford Univ. Press}, + address = {London}, + year = {1957}, + glottolog_ref = {eballiso2009:22299}, + key = {Bohannan (1957b)}, + lgcode = {Tiv [tivv1240]} +} +@misc{bohannan1960, + author = {Bohannan, P.}, + title = {Tiv Trade and Markets}, + year = {1960}, + howpublished = {Manuscript}, + key = {Bohannan (1960)}, + lgcode = {Tiv [tivv1240]} +} +@incollection{bohannan1965, + author = {Bohannan, P.}, + editor = {J. L. Gibbs, Jr.}, + title = {The Tiv of Nigeria}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {279-317}, + year = {1965}, + key = {Bohannan (1965)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1953, + author = {Bohannan, L., and P. Bohannan.}, + title = {The Tiv of Central Nigeria}, + publisher = {London: Oxford Univ. Press for the International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {8}, + pages = {100}, + year = {1953}, + glottolog_ref = {hh:e:BohannanBohannan:Tiv}, + key = {Bohannan and Bohannan (1953)}, + lgcode = {Tiv [tivv1240]} +} +@article{bohannanandbohannan1957, + author = {Bohannan, P. and Bohannan, L.}, + title = {Tiv Markets}, + journal = {New York Academy of Sciences, Transations, series}, + volume = {2}, + pages = {613-621}, + year = {1957}, + key = {Bohannan and Bohannan (1957)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1958, + author = {Bohannan, P. and Bohannan, L.}, + title = {Three Source Notebooks in Tiv Ethnography}, + publisher = {New Haven CN: Human Relations Area Files}, + address = {New Haven}, + year = {1958}, + glottolog_ref = {eballiso2009:13443}, + key = {Bohannan and Bohannan (1958)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1966, + author = {Bohannan, P. and Bohannan, L.}, + title = {A source notebook on Tiv subsistence, technology, and economics}, + address = {New Haven}, + year = {1966}, + key = {Bohannan and Bohannan (1966)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1968, + author = {Bohannan, P. and Bohannan, L.}, + title = {Tiv Economy}, + publisher = {Evanston: Northwestern Univ. Press}, + address = {Evanston}, + series = {African studies}, + volume = {20}, + year = {1968}, + glottolog_ref = {eballiso2009:35681}, + key = {Bohannan and Bohannan (1968)}, + lgcode = {Tiv [tivv1240]} +} +@book{bohannanandbohannan1969, + author = {Bohannan, P. and Bohannan, L.}, + title = {A Source Notebook on Tiv Religion. 5v}, + address = {New Haven}, + year = {1969}, + key = {Bohannan and Bohannan (1969)}, + lgcode = {Tiv [tivv1240]} +} +@book{bois1966, + author = {Bois, Th.}, + title = {The Kurds}, + year = {1966}, + key = {Bois (1966)}, + lgcode = {Kurd [cent1972]} +} +@article{bolinder1957, + author = {Bolinder, G.}, + title = {Verwandtschaftssystem der Goajiro}, + journal = {Zeitschrift für Ethnologie}, + volume = {82}, + pages = {164-168}, + year = {1957}, + key = {Bolinder (1957)}, + lgcode = {Wayuu [wayu1243]}, + note = {English translation: 1957. Indians on Horseback. London.} +} +@book{bollig1927, + author = {Bollig, L.}, + title = {Die Bewohner der Truk-Inseln}, + address = {Münster}, + series = {Anthropos Ethnologische Bibliothek}, + volume = {3}, + year = {1927}, + key = {Bollig (1927)}, + lgcode = {Trukese [chuu1238]} +} +@book{bolton1916, + author = {Bolton, H. E. (editor).}, + title = {Spanish Exploration in the Southwest, 1542-1706}, + publisher = {Charles Scribner's Sons}, + address = {New York}, + year = {1916}, + key = {Bolton (1916)}, + lgcode = {Karankawa [kara1289]} +} +@book{bonniard1934, + author = {Bonniard, F.}, + title = {Le tell septentrional en Tunisie}, + address = {Paris}, + year = {1934}, + key = {Bonniard (1934)}, + lgcode = {Tunisians [tuni1260]} +} +@misc{bordiend, + author = {Bordie, J. G.}, + school = {University of Texas}, + howpublished = {Personal communication}, + key = {Bordie (nd)}, + lgcode = {Sindhi [sind1272]} +} +@incollection{borisova1924, + author = {Borisova, A.}, + editor = {V. G. Bogoraz-Tan}, + title = {Vzaimootnoshenija polov u chuharej (Gender Relations among the Veps)}, + booktitle = {Staryj i novyj byt (Old and New Everyday Life Styles)}, + address = {Leningrad}, + pages = {59-79}, + year = {1924}, + key = {Borisova (1924)}, + lgcode = {Veps [veps1250]} +} +@incollection{borwnlee1927, + author = {Borwnlee, J.}, + editor = {G. Thompson}, + title = {Account of the Amakosae, or Southern Caffres}, + booktitle = {Travels and Adventures in Southern Africa}, + address = {London}, + volume = {2}, + pages = {335-375}, + year = {1927}, + key = {Borwnlee (1927)}, + lgcode = {Xhosa [xesi1238]} +} +@book{bosch1930, + author = {Bosch, F.}, + title = {Les Banyamwezi}, + address = {Münster}, + year = {1930}, + key = {Bosch (1930)}, + lgcode = {Nyamwezi [nyam1276]} +} +@article{boschinandmacuzzi1979, + author = {Boschin, M. T., and L. R. Macuzzi.}, + title = {Ensayo metodologico para la reconstruccion ethnohistorica: su aplicacion a la coprension del modelo Tehuelche Meridional}, + journal = {Colegio de Graduados en Antropologia, Serie Monografica (Buenos Aires)}, + volume = {4}, + pages = {3-37}, + year = {1979}, + key = {Boschin and Macuzzi (1979)}, + lgcode = {Tehuelche [tehu1242]} +} +@article{bose1936, + author = {Bose, J. K.}, + title = {Social Organization of the Aimol Kuki}, + journal = {Journ. Dept. Lett. Univ. Calcutta}, + volume = {25}, + pages = {vii, 1-24}, + year = {1936}, + key = {Bose (1936)}, + lgcode = {Aimol [aimo1244]} +} +@article{bose1964, + author = {Bose, S.}, + title = {Economy of the Onge of Little Andaman}, + journal = {Man in India}, + volume = {44}, + number = {4}, + pages = {298-310}, + year = {1964}, + glottolog_ref = {hh:e:Bose:Onge}, + key = {Bose (1964)}, + lgcode = {Onge [onge1236]} +} +@article{boseandray1953, + author = {Bose, U., and P. C. Ray.}, + title = {Application of Performance Tests on the Bhils of Central India}, + journal = {Bulletin of the Department of Anthropology}, + publisher = {Manage of Publications}, + address = {Delhi}, + volume = {1}, + number = {1}, + pages = {31-58}, + year = {1953}, + key = {Bose and Ray (1953)}, + lgcode = {Bhil [bhil1251]} +} +@book{bostock1950, + author = {Bostock, P. G.}, + title = {The Taita}, + address = {London}, + year = {1950}, + key = {Bostock (1950)}, + lgcode = {Teita [tait1250]} +} +@book{bouille1937, + author = {Bouillé, R.}, + title = {Les coutumes familiales au Kanem}, + address = {Paris}, + year = {1937}, + key = {Bouillé (1937)}, + lgcode = {Buduma [budu1265], Daza [daza1242], Kanembu [kane1243], Shuwa [char1283]} +} +@incollection{bourdieu1966, + author = {Bourdieu, P.}, + editor = {J. G. Peristiany}, + title = {The sentiment of honor in Kabyle society}, + booktitle = {Honour and Shame: The Values of Mediterranean Society}, + publisher = {University of Chicago Press}, + address = {Chicago}, + year = {1966}, + key = {Bourdieu (1966)}, + lgcode = {Kabyle [kaby1243]} +} +@article{bourgeau1933, + author = {Bourgeau, J.}, + title = {Notes sur la coutume des Sereres du Sine et du Saloum}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ.}, + volume = {16}, + pages = {1-65}, + year = {1933}, + key = {Bourgeau (1933)}, + lgcode = {Serer [sere1260]} +} +@article{bourgeois1954, + author = {Bourgeois, R.}, + title = {Banyarwanda et Barundi}, + journal = {Mem. Acad. Roy. Sci. Colon., Cl. Sci. Mor. Polit.}, + publisher = {Bruxelles}, + series = {Mémoires de l'ARSOM (Académie Royale des Sciences d'Outre-Mer), collection in-}, + volume = {35}, + pages = {1-472}, + year = {1954}, + glottolog_ref = {eballiso2009:486}, + key = {Bourgeois (1954)}, + lgcode = {Rundi [rund1242]} +} +@book{bourilly1932, + author = {Bourilly, J.}, + title = {Elements de l'ethnographie marocaine}, + address = {Paris}, + year = {1932}, + key = {Bourilly (1932)}, + lgcode = {Beraber [cent2194]} +} +@book{bourne1874, + author = {Bourne, B. F.}, + title = {The Captive in Patagonia}, + address = {Boston}, + year = {1874}, + key = {Bourne (1874)}, + lgcode = {Tehuelche [tehu1242]} +} +@article{bouronclecarreon1964, + author = {Bouroncle Carreon, A.}, + title = {Contribucion al estudio de los Aymaras}, + journal = {America Indigena}, + volume = {24}, + pages = {129-169, 233-269}, + year = {1964}, + key = {Bouroncle Carreon (1964)}, + lgcode = {Aymara [cent2142]} +} +@book{bouton1640, + author = {Bouton, J.}, + title = {Relation de l'establissement des Français depuis l'an 1635 en l'isle de Martinique}, + address = {Paris}, + year = {1640}, + key = {Bouton (1640)}, + lgcode = {Callinago [isla1278]} +} +@book{bowen1976, + author = {Bowen, T.}, + title = {Seri Prehistory: The Archaeology of the Central Coast of Sonora, Mexico}, + publisher = {University of Arizona Press}, + address = {Tucson}, + series = {Anthropological Papers of the University of Arizona}, + number = {27}, + year = {1976}, + key = {Bowen (1976)}, + lgcode = {Seri [seri1257]} +} +@book{bowers1950, + author = {Bowers, A. W.}, + title = {Mandan Social and Ceremonial Organization}, + address = {Chicago}, + year = {1950}, + key = {Bowers (1950)}, + lgcode = {Mandan [mand1446]} +} +@book{bowers1964, + author = {Bowers, N.}, + title = {Personal communication to A}, + address = {Lomax}, + year = {1964}, + key = {Bowers (1964)}, + lgcode = {Kakoli [umbu1258]} +} +@article{bowers1965, + author = {Bowers, A. W.}, + title = {Hidatsa Social and Ceremonial Organization}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {194}, + pages = {1-528}, + year = {1965}, + key = {Bowers (1965)}, + lgcode = {Hidatsa [hida1246]} +} +@incollection{boyd1990, + author = {Boyd, R.T.}, + editor = {W. Suttles}, + title = {Demographic History, 1774-1874}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {135-148}, + year = {1990}, + key = {Boyd (1990)}, + lgcode = {Coos [coos1249], Klallam [clal1241]} +} +@article{boyer1953, + author = {Boyer, G.}, + title = {Les Diawara}, + journal = {Mem. Inst. Franc. Af. Noire}, + volume = {29}, + pages = {1-122}, + year = {1953}, + key = {Boyer (1953)}, + lgcode = {Soninke [soni1259]} +} +@book{bradbury1957, + author = {Bradbury, R. E.}, + title = {The Benin Kingdom and the Edo-speaking Peoples of Southwestern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {13}, + year = {1957}, + glottolog_ref = {eballiso2009:1480}, + key = {Bradbury (1957)}, + lgcode = {Edo [bini1246], Isoko [isok1239], Kukuruku [yekh1238]} +} +@article{brain1969, + author = {Brain, J. L.}, + title = {Matrilineal descent and marital stability: a Tanzanian case}, + journal = {Journal of Asian and African Studies}, + volume = {4}, + number = {2}, + pages = {122-131}, + year = {1969}, + glottolog_ref = {eballiso2009:15472}, + key = {Brain (1969)}, + lgcode = {Luguru [lugu1238]} +} +@article{brandt1961, + author = {Brandt, J. H.}, + title = {The Negrito of Peninsular Thailand}, + journal = {Journal of the Siam Society}, + volume = {49}, + number = {2}, + pages = {123-160}, + year = {1961}, + glottolog_ref = {sala:983}, + key = {Brandt (1961)}, + lgcode = {Semang [kens1248]} +} +@article{brau1942, + author = {Brau, C.}, + title = {Le droit coutumier Lunda}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {10}, + pages = {155-267}, + year = {1942}, + key = {Brau (1942)}, + lgcode = {Luwa [sond1250]} +} +@book{brayshaw1990, + author = {Brayshaw, H.}, + title = {Well Beaten Paths}, + publisher = {Department of History, James Cook University of North Queensland}, + address = {Cairns}, + series = {Studies in North Queensland History}, + number = {10}, + year = {1990}, + key = {Brayshaw (1990)}, + lgcode = {Warunggu [waru1264]} +} +@article{brepoels1930, + author = {Brepoels, H.}, + title = {Het familiehoofd bij de Nkundo negers}, + journal = {Congo}, + volume = {2}, + pages = {ii, 332-430}, + year = {1930}, + key = {Brepoels (1930)}, + lgcode = {Nkundo [nkun1238]} +} +@book{breton1665, + author = {Breton, R.}, + title = {Observations of the Island Carib}, + publisher = {Besada, Marina et al}, + address = {Auxerre}, + year = {1665}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na038}, + key = {Breton (1665)}, + lgcode = {Callinago [isla1278]} +} +@article{bretonanddelapaix1929, + author = {Breton, R., and A. de la Paix.}, + editor = {J. Rennard}, + title = {Relation de l'ile de la Guadeloup}, + journal = {Histoire Coloniale}, + address = {Paris}, + volume = {1}, + pages = {45-74}, + year = {1929}, + key = {Breton and de la Paix (1929)}, + lgcode = {Callinago [isla1278]} +} +@book{bridges1949, + author = {Bridges, E. Lucas.}, + title = {Uttermost part of the earth}, + publisher = {E. P. Dutton}, + address = {New York}, + year = {1949}, + key = {Bridges (1949)}, + lgcode = {Ona [onaa1245]} +} +@article{briggs1951, + author = {Briggs, L. P.}, + title = {The Ancient Khmer Empire. The Kambuja, or Angkor, period}, + journal = {Transactions of the American Philosophical Society}, + volume = {41}, + pages = {241-250}, + year = {1951}, + key = {Briggs (1951)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@article{briggs1958, + author = {Briggs, L. L.}, + title = {The Living Races of the Sahara Desert}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {28}, + pages = {ii, 1-217}, + year = {1958}, + key = {Briggs (1958)}, + lgcode = {Chaambra [algi1247], Regeibat [hass1238], Teda [teda1241], Tuareg Ahaggar [hogg1238]} +} +@book{briggs1960, + author = {Briggs, L.C.}, + title = {Tribes of the Sahara}, + year = {1960}, + key = {Briggs (1960)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@book{briggs1970, + author = {Briggs, J.}, + title = {Never in Anger: Portrait of an Eskimo Family}, + publisher = {Harvard University Press}, + address = {Cambridge, Mass.}, + year = {1970}, + key = {Briggs (1970)}, + lgcode = {Utkuhikhalingmiut [nets1241]} +} +@book{bright1959, + author = {Bright, J.}, + title = {A History of Israel}, + address = {Philadelphia}, + year = {1959}, + key = {Bright (1959)}, + lgcode = {Hebrews [anci1244]} +} +@phdthesis{brink1969, + author = {Brink, P. J.}, + title = {The Pyramid Lake Paiute of Nevada}, + school = {Department of Anthropology, Boston University, Boston}, + year = {1969}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Brink (1969)}, + lgcode = {Kidutokado [nort1551]} +} +@book{brinton1859, + author = {Brinton, D. G.}, + title = {Notes on the Floridian Peninsula}, + address = {Philadelphia}, + year = {1859}, + key = {Brinton (1859)}, + lgcode = {Timucua [timu1245]} +} +@article{broadfoot1885, + author = {Broadfoot, J. S.}, + title = {On Parts of the Ghilzi Country}, + journal = {Roy. Geog. Soc. Suppl. Pap.}, + volume = {1}, + pages = {341-400}, + year = {1885}, + key = {Broadfoot (1885)}, + lgcode = {Ghilzai [ghil1238]} +} +@article{brohez1905, + author = {Brohez.}, + title = {Les Balubas}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {29}, + pages = {460-478}, + year = {1905}, + key = {Brohez (1905)}, + lgcode = {Shila [luba1250]} +} +@article{brohm1963, + author = {Brohm, J.}, + title = {Buddhism and Animism in a Burmese Village}, + journal = {Journal of Asian Studies}, + volume = {22}, + pages = {155-167}, + year = {1963}, + key = {Brohm (1963)}, + lgcode = {Burmese [nucl1310]} +} +@book{brokensha1975, + author = {Brokensha, P.}, + title = {The Pitjantlatjara and Their Crafts}, + publisher = {Aboriginal ArtsBoard}, + address = {North Sydney}, + year = {1975}, + key = {Brokensha (1975)}, + lgcode = {Pitjandjara [pitj1243]} +} +@incollection{brooksetal1984, + author = {Brooks, A. S. and D. E. Gelburd and J. E. Yellen}, + editor = {J. D. Clark and S. A. Brandt}, + title = {Food production and culture change among the !Kung San: implications for prehistoric research}, + booktitle = {From Hunters to Farmers: The Causes and Consequences of Food Production in Africa}, + publisher = {Univ. of California Press}, + address = {Berkeley}, + pages = {293-310}, + year = {1984}, + glottolog_ref = {eballiso2009:19366}, + key = {Brooks et al. (1984)}, + lgcode = {!Kung [juho1239]} +} +@article{brosius1986, + author = {Brosius, J. P.}, + title = {River, Forest and Mountain: the Penan Gang Landscape}, + journal = {Sarawak Museum Journal}, + volume = {36}, + number = {57}, + pages = {173-184}, + year = {1986}, + key = {Brosius (1986)}, + lgcode = {Punan [west2563]} +} +@book{brown1926, + author = {Brown, J. Tom.}, + title = {Among the Bantu nomads}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1926}, + key = {Brown (1926)}, + lgcode = {Tswana [tswa1253]} +} +@article{brown1944, + author = {Brown, H. D.}, + title = {The Nkumu of the Tumba}, + journal = {Africa}, + volume = {14}, + pages = {431-447}, + year = {1944}, + key = {Brown (1944)}, + lgcode = {Bakongo [sans1272], Ekonda [ekon1238]} +} +@incollection{brown1955, + author = {Brown, P.}, + editor = {D. Forde}, + title = {The Igbira}, + booktitle = {Peoples of the Niger-Benue Confluence}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + pages = {53-74}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Brown (1955)}, + lgcode = {Ebira [ebir1243]} +} +@book{brownandhutt1935, + author = {Brown, G. G., and A. M. B. Hutt.}, + title = {Anthropology in Action}, + address = {London}, + year = {1935}, + key = {Brown and Hutt (1935)}, + lgcode = {Hehe [hehe1240]} +} +@misc{brownnd, + author = {Brown, L. K.}, + howpublished = {Personal Communication}, + key = {Brown (nd)}, + lgcode = {Japanese [nucl1643]} +} +@book{brumbachandjarvenpa1989, + author = {Brumbach, H. J., and R. Jarvenpa.}, + title = {Ethnoarchaeological and Cultural Frontiers}, + publisher = {Peter Lang}, + address = {New York}, + year = {1989}, + key = {Brumbach and Jarvenpa (1989)}, + lgcode = {Dene [chip1261]} +} +@book{brundage1963, + author = {Brundage, B. C.}, + title = {Empire of the Inca}, + address = {Norman}, + year = {1963}, + key = {Brundage (1963)}, + lgcode = {Inca [cusc1236]} +} +@article{bruner1959, + author = {Bruner, E. M.}, + title = {Kinship Organization Among the Urban Batak of Sumatra}, + journal = {Trans. N. Y. Acad. Sci., ser. 2}, + volume = {22}, + pages = {118-125}, + year = {1959}, + key = {Bruner (1959)}, + lgcode = {Toba Batak [bata1289]} +} +@article{brussaux1907, + author = {Brussaux, E.}, + title = {Notes sur les Moundans}, + journal = {Bull. Soc. Anth. Paris, ser. 5}, + volume = {8}, + pages = {273-295}, + year = {1907}, + key = {Brussaux (1907)}, + lgcode = {Mundang [mund1325]} +} +@article{brutsch1950, + author = {Brutsch, J. R.}, + title = {Les relations de parente chez les Duala}, + journal = {Bull. Soc. Et. Camerounaises}, + volume = {3}, + pages = {211-230}, + year = {1950}, + key = {Brutsch (1950)}, + lgcode = {Duala [dual1243]} +} +@article{bruwer1949, + author = {Bruwer, J.}, + title = {The composition of a Chewa village (Mudzi)}, + journal = {African Studies}, + volume = {8}, + pages = {191-198}, + year = {1949}, + glottolog_ref = {eballiso2009:21817}, + key = {Bruwer (1949)}, + lgcode = {Chewa [chew1246]} +} +@article{bruwer1955, + author = {Bruwer, J. P.}, + title = {Unkhoswe: The System of Guardianship in Cewa Matrilineal Society}, + journal = {African Studies}, + volume = {14}, + pages = {113-122}, + year = {1955}, + glottolog_ref = {eballiso2009:27536}, + key = {Bruwer (1955)}, + lgcode = {Chewa [chew1246]} +} +@article{bruwer1958, + author = {Bruwer, J. P. van S.}, + title = {Matrilineal Kinship Among the Kunda}, + journal = {Africa}, + volume = {28}, + pages = {207-224}, + year = {1958}, + key = {Bruwer (1958)}, + lgcode = {Kunda [kund1255]} +} +@article{bruyns1951, + author = {Bruyns, L.}, + title = {De sociaal-economische ontwikkeling van made Bakongo}, + journal = {Mem. Inst. Roy. Colon. Belge, Sect. Sci. Mor. Polit.}, + volume = {22}, + pages = {iii, 1-343}, + year = {1951}, + key = {Bruyns (1951)}, + lgcode = {Bakongo [sans1272]} +} +@book{bryant1949, + author = {A. T. Bryant}, + title = {The Zulu people}, + publisher = {Shuter and Shooter}, + address = {Pietermaritzburg}, + year = {1949}, + key = {Bryant (1949)}, + lgcode = {Zulu [zulu1248]} +} +@book{buch1882, + author = {Buch, M.}, + title = {Die Wotjaken. Eine ethnologische Studien}, + address = {Helsingfors}, + year = {1882}, + key = {Buch (1882)}, + lgcode = {Udmurt [sout2681]} +} +@book{buchner1887, + author = {Buchner, M.}, + title = {Kamerun}, + year = {1887}, + key = {Buchner (1887)}, + lgcode = {Duala [dual1243]} +} +@article{buck1930, + author = {Buck, P. H.}, + title = {Samoan Material Culture}, + journal = {Bulletins of the Bishop Museum}, + volume = {75}, + pages = {1-724}, + year = {1930}, + key = {Buck (1930)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]} +} +@article{buck1932a, + author = {Buck, P. H.}, + title = {Ethnology of Manihiki and Rakahanga}, + journal = {Bull. Bishop Mus.}, + volume = {99}, + pages = {1-238}, + year = {1932}, + key = {Buck (1932a)}, + lgcode = {Manihikians [raka1237]} +} +@article{buck1932b, + author = {Buck, P. H.}, + title = {Ethnology of Tongareva}, + journal = {Bull. Bishop Mus.}, + volume = {92}, + pages = {1-225}, + year = {1932}, + key = {Buck (1932b)}, + lgcode = {Tongarevans [penr1237]} +} +@article{buck1934, + author = {Buck, P. H.}, + title = {Mangaian Society}, + journal = {Bull. Bishop Mus.}, + volume = {122}, + pages = {1-207}, + year = {1934}, + key = {Buck (1934)}, + lgcode = {Mangaians [raro1241]} +} +@article{buck1938, + author = {Buck, P. H.}, + title = {Ethnology of Mangareva}, + journal = {Bull. Bishop Mus.}, + volume = {117}, + pages = {1-519}, + year = {1938}, + key = {Buck (1938)}, + lgcode = {Mangarevans [mang1401]} +} +@book{buck1949, + author = {Buck, P. H.}, + title = {The Coming of the Maori}, + address = {Wellington}, + year = {1949}, + key = {Buck (1949)}, + lgcode = {Māori [maor1246]} +} +@book{buck1950, + author = {Buck, P. H.}, + title = {The Material Culture of Kapingamarangi}, + series = {Bull. Bishop Mus.}, + volume = {200}, + year = {1950}, + key = {Buck (1950)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{buck1957, + author = {Buck, P. H.}, + title = {Arts and Crafts of Hawaii}, + journal = {Bishop Mus. Spec. Publ.}, + volume = {45}, + pages = {1-606}, + year = {1957}, + key = {Buck (1957)}, + lgcode = {Hawaiians [hawa1245]} +} +@book{buckandmasland1950, + author = {Buck, P. W. and J. W. Masland.}, + title = {The Governments of Foreign Powers}, + address = {New York}, + year = {1950}, + key = {Buck and Masland (1950)}, + lgcode = {Japanese [nucl1643]} +} +@book{budge1926, + author = {Budge, E. A. W.}, + title = {Dwellers on the Nile}, + address = {London}, + year = {1926}, + key = {Budge (1926)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@article{bufe1913, + author = {Bufe, E.}, + title = {Die Bakundu}, + journal = {Archiv. Anth.}, + volume = {40}, + pages = {228-239}, + year = {1913}, + key = {Bufe (1913)}, + lgcode = {Kundu [orok1266]} +} +@article{bugge1952, + author = {Bugge, A.}, + title = {The native Greenlander--a blending of old and new}, + journal = {Arctic}, + volume = {5}, + pages = {45-53}, + year = {1952}, + key = {Bugge (1952)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{bullock1928, + author = {Bullock, C.}, + title = {The Mashona}, + address = {Cape Town}, + year = {1928}, + key = {Bullock (1928)}, + lgcode = {Shona [shon1251]} +} +@book{bulow1971, + author = {Bülow, Werner von}, + title = {Der Stammbaum der Könige von Samoa}, + year = {1897}, + howpublished = {Globus, 1971}, + key = {Bülow (1971)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{bunzel1930, + author = {Bunzel, R.}, + title = {Zuni Katcinas}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {47}, + pages = {837-1086}, + year = {1930}, + key = {Bunzel (1930)}, + lgcode = {Zuni [zuni1245]} +} +@article{bunzel1932, + author = {Bunzel, R.}, + title = {Introduction to Zuni Ceremonialism}, + journal = {Annual Reports of the Bureau of American Ethnology}, + address = {Washington}, + volume = {47}, + number = {i}, + pages = {467-544}, + year = {1932}, + key = {Bunzel (1932)}, + lgcode = {Zuni [zuni1245]} +} +@article{bunzel1952, + author = {Bunzel, R.}, + title = {Chichicastenanago}, + journal = {Publications of the American Ethnological Society}, + volume = {22}, + pages = {1-438}, + year = {1952}, + key = {Bunzel (1952)}, + lgcode = {K'iche' [kich1262]} +} +@book{burch1975, + author = {Burch, E. S. Jr. and Burch, E.S., Jr.}, + title = {Eskimo kinsmen: Changing family relationships in Northwest Alaska}, + publisher = {West Publishing Company}, + address = {St. Paul}, + series = {American Ethnological Society Monograph}, + number = {59}, + year = {1975}, + key = {Burch (1975)}, + lgcode = {Inupiat [nort2944], Kobuk Inuit [kobu1239], Kotzebue Sound Inuit [kotz1238], Noatak Inuit [nort2945], Tareumiut [nort2944]} +} +@incollection{burch1984, + author = {Burch, E. S.}, + editor = {D. Damas}, + title = {Kotzebue Sound Eskimo}, + booktitle = {Arctic}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {303-319}, + year = {1984}, + key = {Burch (1984)}, + lgcode = {Kotzebue Sound Inuit [kotz1238]} +} +@misc{burd1952, + author = {Burd, W. W.}, + title = {Karimata: A Village in the Southern Ryukyus}, + year = {1952}, + howpublished = {Unpublished manuscript}, + key = {Burd (1952)}, + lgcode = {Miyakans [miya1259]} +} +@article{burel1910, + author = {Burel, G.}, + title = {Les populations de la moyenne Sanga: Les Pomo et les Boumali}, + journal = {Rev. Ethnog. Sociol.}, + volume = {1}, + pages = {3-32}, + year = {1910}, + key = {Burel (1910)}, + lgcode = {Sanga [bomw1238]} +} +@article{burgesse1944, + author = {Burgesse, J. A.}, + title = {The Woman and Child Among the Lac-St.-Jean Montagnais}, + journal = {Primitive Man}, + volume = {17}, + pages = {1-18}, + year = {1944}, + key = {Burgesse (1944)}, + lgcode = {Montagnais [mont1268]} +} +@book{burling1963, + author = {Burling, R.}, + title = {Rengsanggri: Family and kinship in a Garo village}, + publisher = {University of Pennsylvania Press}, + address = {Philadelphia}, + pages = {377}, + year = {1963}, + glottolog_ref = {sala:1094}, + key = {Burling (1963)}, + lgcode = {Garo [garo1247]} +} +@article{burrows1936, + author = {Burrows, E. G.}, + title = {Ethnology of Futuna}, + journal = {Bull. Bishop Mus.}, + volume = {138}, + pages = {1-239}, + year = {1936}, + key = {Burrows (1936)}, + lgcode = {Futunans [east2447]} +} +@article{burrows1937, + author = {Burrows, E. G.}, + title = {Ethnology of Uvea}, + journal = {Bull. Bishop Mus.}, + volume = {145}, + pages = {1-176}, + year = {1937}, + key = {Burrows (1937)}, + lgcode = {Uveans [wall1257]} +} +@misc{burrows1949, + author = {Burrows, Edwin Grant.}, + title = {The people of Ifaluk: a little-disturbed atoll culture}, + year = {1949}, + howpublished = {Unpublished manuscript submitted as a final report, Coordinated investigation of Micronesian Anthropology. Washington, Pacific Science Board, National Research Council.}, + key = {Burrows (1949)}, + lgcode = {Ifaluk [nucl1479]} +} +@book{burrowsandspiro1953, + author = {Burrows, E. G., and M. E. Spiro.}, + title = {An Atoll Culture}, + address = {New Haven}, + year = {1953}, + key = {Burrows and Spiro (1953)}, + lgcode = {Ifaluk [nucl1479]} +} +@book{burssens1958, + author = {Burssens, H.}, + title = {Les peuplades de l'entre Congo-Ubangi}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, Congo}, + volume = {4; Annales du MRCB (Musée Royal du Congo Belge): monographies ethnographiques, #4}, + year = {1958}, + glottolog_ref = {eballiso2009:34309}, + key = {Burssens (1958)}, + lgcode = {Bwaka [ngba1284], Mbandja [mban1263], Ngala [ling1263], Ngbandi [nort2774], Ngombe [binj1250]} +} +@book{burton1876, + author = {Burton, R. F.}, + title = {Two Trips to Gorilla Land and the Cataracts of the Congo}, + address = {London}, + year = {1876}, + key = {Burton (1876)}, + lgcode = {Mpongwe [myen1241]} +} +@book{bush1964, + author = {Bush, N. F.}, + title = {Thailand: An Introduction to Modern Siam}, + address = {Princeton}, + year = {1964}, + key = {Bush (1964)}, + lgcode = {Thai [thai1261]} +} +@book{bushnell1922, + author = {Bushnell, D. I., Jr.}, + title = {Villages of the Algonquian, iauian and Caddoan Tribes West of the Mississippi}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau American Ethnology Bulletin}, + number = {77}, + year = {1922}, + key = {Bushnell (1922)}, + lgcode = {Assiniboine [assi1247], Blackfoot [pieg1239], Cheyenne [chey1247], Plains Cree [plai1258], Teton [lako1247]} +} +@book{busia1951, + author = {Busia, K. A.}, + title = {The Position of the Chief in the Modern Political System of Ashanti}, + address = {London}, + year = {1951}, + key = {Busia (1951)}, + lgcode = {Ashanti [asan1239]} +} +@incollection{busia1954, + author = {Busia, K. A.}, + editor = {D. Forde}, + title = {The Ashanti of the Gold Coast}, + booktitle = {African Worlds}, + address = {London}, + pages = {190-209}, + year = {1954}, + key = {Busia (1954)}, + lgcode = {Ashanti [asan1239]} +} +@book{busyginandzorin1984, + author = {Busygin, E. P., and N. V. Zorin}, + title = {Etnografija narodov Srednego Povolzh'ja (Ethnography of the Peoples of the Middle Volga Region). Part. 1}, + address = {Kazan'.}, + year = {1984}, + key = {Busygin and Zorin (1984)}, + lgcode = {Udmurt [sout2681]} +} +@inbook{butt1952a, + author = {Butt, Audrey}, + title = {The Luo of Kenya}, + booktitle = {The Nilotes of the Anglo-Egyptian Sudan and Uganda}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {4}, + year = {1952}, + key = {Butt (1952a)}, + lgcode = {Luo [luok1236]} +} +@book{butt1952b, + author = {Butt, Audrey}, + editor = {Forde, Daryll}, + title = {The Nilotes of the Anglo-Egyptian Sudan and Uganda}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {4}, + year = {1952}, + glottolog_ref = {eballiso2009:36615}, + key = {Butt (1952b)}, + lgcode = {Acholi [dhop1238], Jur [luwo1239], Shilluk [shil1265]} +} +@incollection{buxton1958, + author = {Buxton, J.}, + editor = {J. Middleton and D. Tait}, + title = {The Mandari of the Souterhn Sudan}, + booktitle = {Tribes Without Rulers}, + address = {London}, + pages = {67-96}, + year = {1958}, + key = {Buxton (1958)}, + lgcode = {Mondari [mand1425]} +} +@incollection{byhan1926, + author = {Byhan, A.}, + editor = {G. Buschan}, + title = {Die Kaukasischen Völker}, + booktitle = {Illustrierte Völkerkunde}, + address = {Stuttgart}, + volume = {2}, + number = {ii}, + pages = {749-844}, + year = {1926}, + key = {Byhan (1926)}, + lgcode = {Abkhaz [abkh1244]} +} +@article{bynghall1909, + author = {Byng-Hall, F. F. w.}, + title = {Notes on the Bassa-Komo Tribe}, + journal = {Journ. Afr. Soc.}, + volume = {8}, + pages = {13-20}, + year = {1909}, + key = {Byng-Hall (1909)}, + lgcode = {Basakomo [basa1282]} +} +@article{bystrom1954, + author = {Bystrom, K.}, + title = {Notes on the Ekparabong Clan}, + journal = {Orientalia Suecana}, + volume = {3}, + pages = {3126}, + year = {1954}, + key = {Bystrom (1954)}, + lgcode = {Ekoi [ejag1239]} +} +@phdthesis{cadelina1982, + author = {Cadelina, R. V.}, + title = {Batak Interhousehold Food Sharing: A Systematic Analysis of Food Management of Marginal Agriculturalists in the Philippines}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + year = {1982}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Cadelina (1982)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{cadire1953, + author = {Cadire, L. M., et al.}, + title = {Vietnamese Ethnographic Papers}, + address = {New Haven}, + year = {1953}, + key = {Cadire (1953)}, + lgcode = {Annamese [viet1252]} +} +@book{cagnolo1933, + author = {Cagnolo, C.}, + title = {The Akikuyu}, + address = {Nyeri}, + year = {1933}, + key = {Cagnolo (1933)}, + lgcode = {Kikuyu [kiku1240]} +} +@article{caldwellandcalhoun1932, + author = {Caldwell, M. G., and J. Calhoun.}, + title = {The Culture of the Campas Indians}, + journal = {Sci. Monthly}, + volume = {1932}, + pages = {238-242}, + year = {1932}, + key = {Caldwell and Calhoun (1932)}, + lgcode = {Asháninka [ajyi1238]} +} +@incollection{callardandwheeler1963, + author = {Callard, K. and R. S. Wheeler.}, + editor = {G. McT. Kahin}, + title = {Pakistan}, + booktitle = {Major Governments of Asia}, + address = {Ithaca}, + pages = {419-532}, + year = {1963}, + key = {Callard and Wheeler (1963)}, + lgcode = {Punjabi [west2386]} +} +@incollectin{callawayetal1986, + author = {Callaway, D. G. and J. C. Janetski and 0. C. Stewart.}, + editor = {W. L. d'Azevedo}, + title = {Ute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {336-367}, + year = {1986}, + key = {Callaway et al. (1986)}, + lgcode = {Southern Ute [utee1244], Timponogas [utee1244]} +} +@book{callenderandelguindi1971, + author = {Callender, C., and F. el Guindi.}, + title = {Life-Crisis Rituals Among the Kenuz}, + address = {Cleveland}, + series = {Case Western Reserve University Studies in Anthropology}, + volume = {3}, + year = {1971}, + key = {Callender and el Guindi (1971)}, + lgcode = {Barabra [kenu1236]} +} +@incollection{cameron1890, + author = {Cameron, D.}, + editor = {L. F. R. Masson}, + title = {A sketch of the customs, manners, and way of living of the natives in the barren country about Nipigon}, + booktitle = {Les Bourgeois de la Compagnie du Nord-Ouest}, + address = {Quebec}, + volume = {2}, + pages = {229-300}, + year = {1890}, + key = {Cameron (1890)}, + lgcode = {Nipigon [cent2136]} +} +@book{cammann1951, + author = {Cammann, Schuyler}, + title = {Trade Through the Himalyas, The Early British Attempts to Open Tibet}, + publisher = {Princeton University Press}, + address = {Princeton}, + year = {1951}, + key = {Cammann (1951)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{campana1902, + author = {Campana, D. del.}, + title = {Notizie intorno ai Ciriguani}, + journal = {Arch. Antr. Ethnol.}, + address = {Florencia}, + volume = {32}, + pages = {17-139}, + year = {1902}, + glottolog_ref = {fabreall2009ann:Tupi_chiriguano021}, + key = {Campana (1902)}, + lgcode = {Guaraní [east2555]} +} +@book{campbell1928, + author = {Campbell, D.}, + title = {On the trail of the veiled Tuareg}, + year = {1928}, + key = {Campbell (1928)}, + lgcode = {Tuareg Ahaggar [hogg1238]} +} +@article{campbelletal1936, + author = {Campbell, T. D. and J. H. Gray and C. J. Hackett}, + title = {Physical Anthropology of the Aborigines of CentralAustralia}, + journal = {Oceania}, + volume = {7}, + pages = {106-139, 246-261}, + year = {1936}, + key = {Campbell et al. (1936)}, + lgcode = {Alyawara [alya1239], Pintubi [pint1250], Pitjandjara [pitj1243]} +} +@article{cann1929, + author = {Cann, G. P.}, + title = {A Day in the Life of an Idle Shilluk}, + journal = {Sudan Notes and Records}, + volume = {12}, + pages = {251-253}, + year = {1929}, + key = {Cann (1929)}, + lgcode = {Shilluk [shil1265]} +} +@book{cannon1983, + editor = {Cannon , M.}, + title = {Historical Records of Victoria}, + publisher = {Victorian Government Printing Office}, + address = {Melbourne}, + series = {Foundation Series}, + volume = {2B: Aborigines and Protectors 1838-1839}, + year = {1983}, + key = {Cannon (1983)}, + lgcode = {Bunurong [woiw1237]} +} +@misc{carbou1912, + author = {Carbou, H.}, + title = {La region du Tehad et du Quadai 1: 172}, + address = {Paris}, + year = {1912}, + key = {Carbou (1912)}, + lgcode = {Daza [daza1242], Kanembu [kane1243]} +} +@book{carcopino1940, + author = {Carcopino, J.}, + editor = {H. T. Howell}, + title = {Daily Life in Ancient Rome}, + address = {New Haven}, + year = {1940}, + key = {Carcopino (1940)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{cardim1906, + author = {Cardim, F.}, + title = {A Treatise on Brasil}, + journal = {Haklyutus Posthumus or Purchas His Pilgrimes}, + address = {Glasgow}, + volume = {16}, + pages = {417-517}, + year = {1906}, + key = {Cardim (1906)}, + lgcode = {Tupinambá [tupi1273]} +} +@book{careyandtuck1896, + author = {Carey, B. S., and H. P. Tuck.}, + title = {The Chin Hills. 2V}, + address = {Rangoon}, + year = {1896}, + key = {Carey and Tuck (1896)}, + lgcode = {Chin [asho1236]} +} +@article{carneiro1958, + author = {Carneiro, R.}, + title = {Extra-marital Sex Freedom Among the Kuikuru Indians}, + journal = {Revista do Museu Paulista, n. s.}, + volume = {10}, + pages = {135-142}, + year = {1958}, + key = {Carneiro (1958)}, + lgcode = {Kuikuru [kuik1246]} +} +@article{carneiro1962, + author = {Carneiro, R. L.}, + title = {The Amahuaca Indians}, + journal = {Explorers Journal}, + volume = {40}, + pages = {iv, 28-37}, + year = {1962}, + key = {Carneiro (1962)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiro1964a, + author = {Carneiro, R. L.}, + title = {Shifting Cultivation Among the Amahuaca}, + journal = {Niedersächsisches Landesmuseum, Völkerkundliche Abhandlungen}, + address = {Hannover}, + volume = {1}, + pages = {9-18}, + year = {1964}, + key = {Carneiro (1964a)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiro1964b, + author = {Carneiro, R. L.}, + title = {The Amahuaca and the Spirit World}, + journal = {Ethnology}, + volume = {3}, + pages = {6-11}, + year = {1964}, + glottolog_ref = {fabreall2009ann:Pano-Takana_amahuaca02}, + key = {Carneiro (1964b)}, + lgcode = {Amahuaca [amah1246]} +} +@misc{carneiro1968, + author = {Carneiro, R. L.}, + title = {Hunting and Hunting Magic Among the Amahuaca}, + year = {1968}, + howpublished = {Manuscript}, + key = {Carneiro (1968)}, + lgcode = {Amahuaca [amah1246]} +} +@article{carneiroanddole1957, + author = {Carneiro, R., and G. E. Dole.}, + title = {La cultura de los indios Kuikurus}, + journal = {Runa: Archivo para las Ciencias del Hombre}, + address = {Buenos Aires}, + volume = {8}, + number = {ii}, + pages = {169-202}, + year = {1957}, + key = {Carneiro and Dole (1957)}, + lgcode = {Kuikuru [kuik1246]} +} +@book{carobaroja1944, + author = {Caro Baroja, J.}, + title = {La vida rural en Vera de Bidasoa}, + address = {Madrid}, + year = {1944}, + key = {Caro Baroja (1944)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{carobaroja1955, + author = {Caro Baroja, J.}, + title = {Estudios saharianos}, + publisher = {Madrid: Júcar}, + address = {Madrid}, + year = {1955}, + glottolog_ref = {eballiso2009:5306}, + key = {Caro Baroja (1955)}, + lgcode = {Delim [hass1238], Regeibat [hass1238]} +} +@book{carobaroja1958, + author = {Caro Baroja, J.}, + title = {Los Vascos. 2nd Edition}, + address = {Madrid}, + year = {1958}, + key = {Caro Baroja (1958)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{carrapiett1909, + author = {Carrapiett, W. J. S.}, + title = {The Salons}, + address = {Rangoon}, + year = {1909}, + key = {Carrapiett (1909)}, + lgcode = {Moken [moke1242]} +} +@book{carrasco1959, + author = {Carrasco, P.}, + title = {Land and Polity in Tibet}, + address = {Seattle}, + year = {1959}, + key = {Carrasco (1959)}, + lgcode = {Central Tibetans [dbus1238]} +} +@incollection{carrasco1967, + author = {Carrasco, Pedro.}, + editor = {Cohen, Ronald, and John Middleton}, + title = {The Civil Religious Hierarchy in Meso American Communities: Pre-Spanish Background and Colonial Development}, + booktitle = {Comparative Political Systems: Studies in the Politics of Pre-Industrial Societies}, + publisher = {Natural History Press}, + address = {Garden City}, + pages = {397-414}, + year = {1967}, + key = {Carrasco (1967)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@article{cartry1966, + author = {Cartry, M.}, + title = {Clans, lgnages et groupements familiaux chez les Gourmantche}, + journal = {L'Homme}, + volume = {6}, + pages = {ii, 53-81}, + year = {1966}, + key = {Cartry (1966)}, + lgcode = {Gurma [gour1243]} +} +@book{casilis1859, + author = {Casilis, E. A.}, + title = {Les Bassoutos}, + address = {Paris}, + year = {1859}, + key = {Casilis (1859)}, + lgcode = {Sotho [sout2807]} +} +@article{castagn1930, + author = {Castagn‚, J.}, + title = {Magie et exorcisme chez les Kazak-Kirghizes}, + journal = {Revue des Etudes Islamiques}, + volume = {4}, + pages = {53-156}, + year = {1930}, + key = {Castagn (1930)}, + lgcode = {Kazakh [kaza1248]} +} +@article{castagne1929, + author = {Castagne, J.}, + title = {Le droit familial des montagnards du Caucase et des Tcherkesses en particulier}, + journal = {Rev. Et. Islamiques}, + volume = {3}, + pages = {245-275}, + year = {1929}, + key = {Castagne (1929)}, + lgcode = {Cherkess [kaba1278]} +} +@book{castetterandbell1942, + author = {Castetter, E. F. and W. H. Bell.}, + title = {Pima and Papago Indian Agriculture}, + address = {Albuquerque}, + series = {University of New Mexico Inter-American Studies}, + volume = {1}, + pages = {1-245}, + year = {1942}, + key = {Castetter and Bell (1942)}, + lgcode = {Pima [akim1239], Tohono O'odham [toho1246]} +} +@book{castetterandbell1951, + author = {Castetter, Edward F., and Willis H. Bell}, + title = {Yuman Indian Agriculture. University of New Mexico Press: Albuquerque, N. Mex.}, + year = {1951}, + key = {Castetter and Bell (1951)}, + lgcode = {Mojave [moha1256], Quechan [quec1382]} +} +@article{castetterandopler1936, + author = {Castetter, E. F., and M. E. Opler.}, + title = {The Ethnobiology of the Chiricahua and Mescalero Apache}, + journal = {Univ. New Mex. Bull., Biol. Ser.}, + volume = {4}, + pages = {v, 3-63}, + year = {1936}, + key = {Castetter and Opler (1936)}, + lgcode = {Mescalero [mesc1238]} +} +@article{castinel1945, + author = {Castinel, J.}, + title = {Le mariage et la mort dans la region du Yanga}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {7}, + pages = {148-155}, + year = {1945}, + key = {Castinel (1945)}, + lgcode = {Gurma [gour1243]} +} +@book{castren1853, + author = {Castren, M. A.}, + title = {Reiseerrinnerungen aus den Jahren 1838-1844}, + address = {St. Petersburg}, + year = {1853}, + key = {Castren (1853)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{cauneille1950, + author = {Cauneille, A.}, + title = {Les nomades Regueibat}, + journal = {Trav. Inst. Rech. Sahar. Univ. Alger}, + volume = {6}, + pages = {83-100}, + year = {1950}, + key = {Cauneille (1950)}, + lgcode = {Regeibat [hass1238]} +} +@inbook{cavallisforza1986a, + author = {Cavalli-Sforza, L. L.}, + editor = {L. L. Cavalli-Sforza}, + title = {Demographic Data}, + booktitle = {African pygmies}, + publisher = {Academic Press}, + address = {New York}, + pages = {23-45}, + year = {1986}, + glottolog_ref = {eballiso2009:32705}, + key = {Cavalli-Sforza (1986a)}, + lgcode = {Aka [bamb1264], Baka [baka1272]} +} +@book{cavallisforza1986c, + editor = {Cavalli-Sforza, L. L.}, + title = {African Pygmies}, + publisher = {Academic Press}, + address = {New York}, + year = {1986}, + key = {Cavalli-Sforza (1986c)}, + lgcode = {Baka [baka1272], Mbuti [bila1255]} +} +@article{cawthorne1844, + author = {Cawthorne, W. A.}, + title = {Rough Notes on the Manners and Customs of the Natives}, + journal = {Reprinted in Proceedings of the Royal Geographical Society of South Australia}, + volume = {27}, + pages = {47-77}, + year = {1844}, + glottolog_ref = {hh:e:Cawthorne:Manners-Customs}, + key = {Cawthorne (1844)}, + lgcode = {Kaurna [kaur1267]} +} +@book{cecchi188587, + author = {Cecchi, A.}, + title = {Da Zeila alle frontiere del Caffa. 3V}, + address = {Roma}, + year = {1885-87}, + key = {Cecchi (1885-87)}, + lgcode = {Gibe [west2721]} +} +@article{celerier1927, + author = {Celerier, J.}, + title = {La transhumance dans le Moyen-Atlas}, + journal = {Hesperis}, + volume = {7}, + pages = {53-68}, + year = {1927}, + key = {Celerier (1927)}, + lgcode = {Beraber [cent2194]} +} +@book{cerulli193233, + author = {Cerulli, E.}, + title = {Etiopia occidentale. 2V}, + address = {Roma}, + year = {1932-33}, + key = {Cerulli (1932-33)}, + lgcode = {Gibe [west2721], Kafa [kafa1242]} +} +@book{cerulli1956, + author = {Cerulli, E.}, + title = {Peoples of South-west Ethiopia and Its Borderland}, + publisher = {London: International African Institute}, + address = {London}, + series = {Ethnographic Survey of Africa: North-Eastern Africa}, + volume = {III}, + pages = {148}, + year = {1956}, + glottolog_ref = {hh:he:Cerulli:SWEthiopia}, + key = {Cerulli (1956)}, + lgcode = {Anfillo [anfi1235], Arbore [arbo1245], Basketo [bask1236], Burji [burj1242], Darasa [gede1246], Galab [daas1238], Konso [kons1243], Mao [hozo1236], Sidama [sida1246], Suri [suri1267]} +} +@article{cesard193537, + author = {Cesard, E.}, + title = {Le Muhaya}, + journal = {Anthropos}, + volume = {20; 21; 22}, + pages = {75-106, 451-462; 489-508, 821-849; 15-60}, + year = {1935-37}, + key = {Cesard (1935-37)}, + lgcode = {Haya [haya1250]} +} +@book{chabot1950, + author = {Chabot, H. T.}, + title = {Verwantschap, stand en sexe in Zuid-Celebes}, + address = {Groningen}, + year = {1950}, + key = {Chabot (1950)}, + lgcode = {Macassarese [maka1311]} +} +@misc{chagnon1967, + author = {Chagnon, N. A.}, + title = {Yanomamo Social Organization and Warfare}, + year = {1967}, + howpublished = {Manuscript}, + key = {Chagnon (1967)}, + lgcode = {Yanomami [yano1261]} +} +@misc{chagnon1968a, + author = {Chagnon, N. A.}, + title = {Personal Fierceness and Headmen in Yanomamo Disputes}, + year = {1968}, + howpublished = {Manuscript}, + key = {Chagnon (1968a)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1968b, + author = {Chagnon, N. A.}, + title = {Yanomamo: The Fierce People}, + publisher = {New York: Holt, Rinehart and Winston}, + address = {New York}, + series = {Case studies in cultural anthropology}, + pages = {164}, + year = {1968}, + glottolog_ref = {hh:e:Chagnon:Yanomamo:1968}, + key = {Chagnon (1968b)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1971, + author = {Chagnon, N. A.}, + title = {Die soziale Organisation und die Kriege der Yanomamö-Indianer}, + year = {1971}, + key = {Chagnon (1971)}, + lgcode = {Yanomami [yano1261]} +} +@book{chagnon1974, + author = {Chagnon, N. A.}, + title = {Studying the Yanomamö}, + year = {1974}, + key = {Chagnon (1974)} +} +@book{chagnon1977, + author = {Chagnon, N. A.}, + title = {The Fierce People}, + year = {1977 (2nd ed.)}, + key = {Chagnon (1977)}, + lgcode = {Yanomami [yano1261]} +} +@article{chalmers1890, + author = {Chalmers, J.}, + title = {Toaripi and Koiari Tribes}, + journal = {Rep. Austr. Assoc. Adv. Sci.}, + volume = {2}, + pages = {ii, 311-323}, + year = {1890}, + key = {Chalmers (1890)}, + lgcode = {Koiari [gras1249]} +} +@incollection{chaloupka1981, + author = {Chaloupka, G.}, + editor = {T. Stokes}, + title = {The Traditional Movement of a Band of Aboriginals in Kakadu}, + booktitle = {Kakadu National Park Education Resources}, + publisher = {Australian National Parks and Wildlife Service}, + address = {Canberra}, + pages = {162-171}, + year = {1981}, + key = {Chaloupka (1981)}, + lgcode = {Kaakutju [gaga1251]} +} +@article{chamberlain1892, + author = {Chamberlain, A. F.}, + title = {Report on the Kootenay Indians of South-Eastern British Columbia}, + journal = {Reports of the British Association forthe Advancement of Science}, + volume = {62}, + pages = {539-617}, + year = {1892}, + key = {Chamberlain (1892)}, + lgcode = {Kutenai [kute1249], Shuswap [shus1248]} +} +@book{chamberlain1951, + author = {Chamberlain, Robert S.}, + title = {The Pre-Conquest Tribute and Service System of the Maya as Preparation for the Spanish Repartimiento-Ecomienda in Yucatan}, + series = {University of Miami Hispanic-American Studies}, + number = {10}, + year = {1951}, + key = {Chamberlain (1951)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@book{chance1966, + author = {Chance, N. A.}, + title = {The Eskimo of North Alaska}, + address = {New York}, + year = {1966}, + key = {Chance (1966)}, + lgcode = {Tareumiut [nort2944]} +} +@article{chapelle1929, + author = {Chapelle, F. de la}, + title = {Une cite de l'Quad Dra' sous le protectorat des nomades}, + journal = {Hesperis}, + volume = {9}, + pages = {29-42}, + year = {1929}, + key = {Chapelle (1929)}, + lgcode = {Drawa [susi1238]} +} +@book{chapelle1957a, + author = {Chapelle, J.}, + title = {Nomades noirs du Sahara}, + address = {Paris}, + year = {1957}, + key = {Chapelle (1957a)}, + lgcode = {Teda [teda1241]} +} +@book{chapelle1957b, + author = {Chapelle, J.}, + title = {Nomades noirs du Soudan}, + address = {Paris}, + year = {1957}, + key = {Chapelle (1957b)}, + lgcode = {Daza [daza1242]} +} +@book{chapman1982, + author = {Chapman, A.}, + title = {Drama and power in a hunting society: the Selk'nam of Tierra del Fuego}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1982}, + glottolog_ref = {fabreall2009ann:Chon_selknam24}, + key = {Chapman (1982)}, + lgcode = {Ona [onaa1245]} +} +@article{chard1961, + author = {Chard, C. S.}, + title = {Sternberg's Materials on the Sexual Life of the Gilyak}, + journal = {Anthropological Papers of the University of Alaska}, + volume = {10}, + pages = {13-23}, + year = {1961}, + key = {Chard (1961)}, + lgcode = {Nivkh [gily1242]} +} +@article{chard1963, + author = {Chard, C. S.}, + title = {The Nganasan—Wild Reindeer Hunters of the Taimyr Peninsula}, + journal = {Arctic Anthropology}, + volume = {1}, + pages = {105-121}, + year = {1963}, + key = {Chard (1963)}, + lgcode = {Nganasan [ngan1291]} +} +@article{charles1911, + author = {Charles, L.}, + title = {Les Lobi}, + journal = {Rev. Ethnog. Sociol.}, + volume = {2}, + pages = {202-220}, + year = {1911}, + glottolog_ref = {eballiso2009:45348}, + key = {Charles (1911)}, + lgcode = {Lobi [lobi1245]} +} +@article{charsleyandmckenny1974, + author = {Charsley, S. R., and M. G. McKenny.}, + title = {The social structure of Nyakyusa}, + journal = {Africa}, + volume = {44}, + pages = {422-424}, + year = {1974}, + key = {Charsley and McKenny (1974)}, + lgcode = {Nyakyusa [nyak1261]} +} +@article{chatterjeeanddas1927, + author = {Chatterjee, A., and T. Das.}, + title = {The Hos of Seraikella}, + journal = {Anth. Pap. Univ. Calcutta, n. s.}, + volume = {1}, + pages = {1-94}, + year = {1927}, + key = {Chatterjee and Das (1927)}, + lgcode = {Ho [hooo1248]} +} +@article{chattopadhyay1941, + author = {Chattopadhyay, K. P.}, + title = {Khasi Kinship and Social Organization}, + journal = {Univ. Calcutta Anth. Papers, n. s.}, + publisher = {(Calcutta University anthropological papers, n. s. 6.) Calcutta: Calcutta University}, + address = {(Calcutta University anthropological papers, n. s. 6.) Calcutta}, + volume = {6}, + pages = {1-39}, + year = {1941}, + glottolog_ref = {stampe:160}, + key = {Chattopadhyay (1941)}, + lgcode = {Khasi [khas1269]} +} +@book{cheremin1909, + author = {Cheremin, N. A.}, + title = {Ozeryj kraj (The Lake Region)}, + address = {Moscow}, + year = {1909}, + key = {Cheremin (1909)}, + lgcode = {Karelians [livv1243]} +} +@article{cheron1913, + author = {Cheron, G.}, + title = {Les Minianka}, + journal = {Rev. Ethnog. Sociol.}, + volume = {4}, + pages = {165-186}, + year = {1913}, + key = {Cheron (1913)}, + lgcode = {Minianka [mama1271]} +} +@book{cheshihinvetrinskijv1901, + author = {Cheshihin-VetrinskijV,. E.}, + title = {Sredi latyshej (Among the Latvians)}, + address = {Moscow}, + year = {1901}, + key = {Cheshihin-VetrinskijV (1901)}, + lgcode = {Latvians [latv1249]} +} +@article{chevalier1908, + author = {Chevalier, A.}, + title = {Les Massifs montagneux du rd-ouest de la Cote d'Ivoire}, + journal = {Geographie}, + volume = {20}, + pages = {207-224}, + year = {1908}, + key = {Chevalier (1908)}, + lgcode = {Dan [gwee1242]} +} +@article{chevalier1909, + author = {Chevalier, A.}, + title = {La region des sources du Niger}, + journal = {Geographie}, + volume = {19}, + pages = {337-352}, + year = {1909}, + key = {Chevalier (1909)}, + lgcode = {Koranko [kura1250]} +} +@book{chien1967, + author = {Ch'ien, Tuan-sheng.}, + title = {The Government & Politics of China}, + address = {Cambridge}, + year = {1967}, + key = {Ch'ien (1967)}, + lgcode = {Chekiang [wuch1236]} +} +@book{childs1949, + author = {Childs, G. M.}, + title = {Umbundu Kinship and Character}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1949}, + glottolog_ref = {eballiso2009:9479}, + key = {Childs (1949)}, + lgcode = {Mbundu [umbu1257]} +} +@article{chisholm1910, + author = {Chisholm, J. A.}, + title = {Notes on the Manners and Customs of the Winamwanga and Wiwa}, + journal = {Journ. Afr. Soc.}, + volume = {9}, + pages = {360-387}, + year = {1910}, + glottolog_ref = {eballiso2009:35038}, + key = {Chisholm (1910)}, + lgcode = {Iwa [nyam1275]} +} +@article{chiu1962, + author = {Chiu, C. C.}, + title = {The Kinship Organization of the Take-Bakha Bunun}, + journal = {Bull. Inst. Ethnol. Academia Sinica}, + volume = {13}, + pages = {192-193}, + year = {1962}, + key = {Chiu (1962)}, + lgcode = {Bunun [bunu1267]} +} +@book{chlenov1973, + author = {Chlenov, M. A.}, + title = {K harakteristike sotsial'noj organizatsii aziatskih eskimosov (Asian Eskimo Social Organization)}, + address = {Moscow}, + year = {1973}, + key = {Chlenov (1973)}, + lgcode = {Ungazikmit [cent2128]} +} +@book{chodzidlo1951, + author = {Chodzidlo, Teofil.}, + title = {Die Familie bei den Jakuten}, + address = {Yakut (Siberia)}, + series = {Interntionale Schriftenreihe fur Soziale und Politische Wissenschaften, Ethnologische Reihe}, + volume = {1}, + year = {1951}, + key = {Chodzidlo (1951)}, + lgcode = {Yakut [yaku1245]} +} +@article{chook1967, + author = {Chook, P. P.}, + title = {Kinship and Culture: Some Problems in Ndembu Kinship}, + journal = {Southw. Journ. Anth.}, + volume = {23}, + pages = {74-89}, + year = {1967}, + key = {Chook (1967)}, + lgcode = {Ndembu [lund1266]} +} +@article{chou1902, + author = {Chou, Ta-Kuan.}, + editor = {P. Pelliot}, + title = {Mémoires sur les coutumes du Cambodge}, + journal = {Bulletin de l'Ecole Française d'Extreme-Orient}, + volume = {2}, + pages = {123-177}, + year = {1902}, + key = {Chou (1902)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@phdthesis{chowning1957, + author = {Chowning, A.}, + title = {Lakalai Society}, + school = {University of Pennsylvania}, + year = {1957}, + key = {Chowning (1957)}, + lgcode = {Lakalai [naka1262]} +} +@article{chowning1962, + author = {Chowning, A.}, + title = {Cognatic Kin Groups Among the Molima of Fergusson Island}, + journal = {Ethnology}, + volume = {1}, + pages = {92-101}, + year = {1962}, + key = {Chowning (1962)}, + lgcode = {Molima [moli1248]} +} +@book{christensen1954, + author = {Christensen, J. B.}, + title = {Double Descent Among the Fanti}, + publisher = {New Haven CN: Human Relations Area Files}, + address = {New Haven}, + series = {Behavioral science monographs}, + volume = {4}, + year = {1954}, + glottolog_ref = {eballiso2009:20218}, + key = {Christensen (1954)}, + lgcode = {Fante [fant1241]} +} +@article{christensen1963, + author = {Christensen, J. B.}, + title = {Utani: joking, sexual license and social obligations among the Luguru}, + journal = {American Anthropologist}, + volume = {65}, + pages = {1314-1327}, + year = {1963}, + glottolog_ref = {weball:4144}, + key = {Christensen (1963)}, + lgcode = {Luguru [lugu1238]} +} +@book{christie1909, + author = {Christie, Emerson B.}, + title = {The Subanuns of Sindangan Bay}, + publisher = {Manila: Bureau of Science, Division of Ethnology}, + address = {Manila}, + series = {Bureau of Science Division of Ethnology Publications}, + volume = {6}, + number = {1}, + pages = {152}, + year = {1909}, + glottolog_ref = {hh:ew:Christie:Subanuns}, + key = {Christie (1909)}, + lgcode = {Subanun [cent2089]} +} +@book{christy1894, + author = {Christy, M. (editor).}, + title = {The Voyages of Captain Luke Fox of Hull and Captain Thomas James of Bristol in Search of a Northwest Pas-sage, in 1631-1632}, + publisher = {Hakluyt Society}, + address = {London}, + year = {1894}, + key = {Christy (1894)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{ciezadeleon1554, + author = {Cieza de Leon, P. de.}, + title = {Parte primera de la cronica del Peru}, + address = {Antwerp}, + year = {1554}, + key = {Cieza de Leon (1554)}, + lgcode = {Inca [cusc1236]} +} +@article{clark1938, + author = {Clark, W. T.}, + title = {Manners, Customs and Beliefs of the Northern Bega}, + journal = {Sudan Notes and Records}, + volume = {21}, + pages = {1-30}, + year = {1938}, + key = {Clark (1938)}, + lgcode = {Amarar [amar1281], Bisharin [bish1251]} +} +@article{clark1951, + author = {Clark, J.D.}, + title = {Bushman Hunters of the Barotse Forests}, + journal = {Northern Rhodesia Journal}, + volume = {1}, + number = {3}, + pages = {56-65}, + year = {1951}, + key = {Clark (1951)}, + lgcode = {Hukwe [kxoe1243]} +} +@article{clark1963, + author = {Clark, J.}, + title = {Hunza in the Himalayas}, + journal = {Natural History}, + volume = {72}, + pages = {38-45}, + year = {1963}, + key = {Clark (1963)}, + lgcode = {Burusho [buru1296]} +} +@book{clark1974, + author = {Clark, A. McF.}, + title = {Koyukuk River Culture}, + publisher = {National Museums of Canada}, + address = {Ottawa}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper}, + number = {18}, + year = {1974}, + key = {Clark (1974)}, + lgcode = {Koyukon [koyu1237]} +} +@inproceedings{clark1975, + author = {Clark, A. McF.}, + editor = {A. McF.Clark}, + title = {Upper Koyukon River Koyukon Athapaskan Social Culture: An Overview}, + booktitle = {Northern Athapaskan Conference, 1971}, + publisher = {National Museums of Canada}, + address = {Ottawa}, + series = {National Museum of Man Mercury Series, Canadian Ethnology Service Paper}, + volume = {1}, + number = {27}, + pages = {147-180}, + year = {1975}, + key = {Clark (1975)}, + lgcode = {Koyukon [koyu1237]} +} +@article{clastres1968, + author = {Clastres, P.}, + title = {Ethnographie des Indiens Guayaki}, + journal = {Journal of the Societe des Americanistes}, + volume = {57}, + pages = {8-61}, + year = {1968}, + key = {Clastres (1968)}, + lgcode = {Aché [ache1246]} +} +@incollection{clastres1972, + author = {Clastres, P.}, + editor = {M. Bicchieri}, + title = {The Guayaki}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {138-174}, + year = {1972}, + key = {Clastres (1972)}, + lgcode = {Aché [ache1246]} +} +@article{claus1911, + author = {Claus, H.}, + title = {Die Wagogo}, + journal = {Baessler-Arch., Beihefte}, + volume = {2}, + pages = {1-72}, + year = {1911}, + key = {Claus (1911)}, + lgcode = {Gogo [gogo1263]} +} +@article{clement1903, + author = {Clement, E.}, + title = {Ethographical notes on the Western Australian Aborigines}, + journal = {Internationales Archive for Ethnographic}, + volume = {16}, + number = {I/II}, + pages = {1-29}, + year = {1903}, + glottolog_ref = {ozbib:1161}, + key = {Clement (1903)}, + lgcode = {Kariyarra [kari1304]} +} +@article{clifford1936, + author = {Clifford, M.}, + title = {A Nigerian Chiefdom}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {66}, + pages = {393-436}, + year = {1936}, + key = {Clifford (1936)}, + lgcode = {Igala [igal1242]} +} +@article{clifford1944, + author = {Clifford, M.}, + title = {Notes on the Bassa-Komo Tribe}, + journal = {Man}, + volume = {44}, + pages = {107-116}, + year = {1944}, + key = {Clifford (1944)}, + lgcode = {Basakomo [basa1282]} +} +@article{cline1936, + author = {Cline, W.}, + title = {Notes on the People of Siwah and El Garah in the Libyan Desert}, + journal = {Gen. Ser. Anth.}, + publisher = {Menasha WI: George Banta}, + volume = {4}, + pages = {1-64}, + year = {1936}, + glottolog_ref = {eballiso2009:15831}, + key = {Cline (1936)}, + lgcode = {Siwans [siwi1239]} +} +@book{cline1950, + author = {Cline, W.}, + title = {The Teda of Tibesti, Borkou, and Kawar in the Eastern Sahara}, + publisher = {Menasha, Wisconsin: George Banta}, + series = {Gen. Ser. Anth.}, + volume = {12}, + pages = {1-52}, + year = {1950}, + glottolog_ref = {hh:e:Cline:Teda}, + key = {Cline (1950)}, + lgcode = {Daza [daza1242], Teda [teda1241]} +} +@incollection{clineetal1938, + author = {Cline, W. and R. S. Commons and M. Mandelbaum and R. H. Post and. L. V. W. Walters}, + editor = {L. Spier}, + title = {The Sinkaietk or Southern Okanagon of Washington}, + booktitle = {Contributions from the Laboratory of Anthropology, No. 2}, + publisher = {George Banta}, + address = {Menasha, Wisconsin}, + series = {General Series in Anthro-pology}, + number = {6}, + pages = {1-262}, + year = {1938}, + key = {Cline et al. (1938)}, + lgcode = {Sinkaitk [sout2963], Syilx [sout2963]} +} +@book{clozel1896, + author = {Clozel, F.}, + title = {Les Bayas}, + address = {Paris}, + year = {1896}, + key = {Clozel (1896)}, + lgcode = {Gbaya [nort2775]} +} +@book{clozelandvillamur1902, + author = {Clozel, F. J., and R. Villamur.}, + title = {Les coutumes indigenes de la Cote d'Ivorie}, + publisher = {Paris: Augustin Challamel}, + address = {Paris}, + year = {1902}, + glottolog_ref = {eballiso2009:9396}, + key = {Clozel and Villamur (1902)}, + lgcode = {Abron [abro1238], Alagya [alla1248], Anyi [anyi1245], Avikam [avik1243], Bakwe [bakw1243], Baule [baou1238]} +} +@book{cobo189095, + author = {Cobo, B.}, + title = {Historia del Nuevo Mundo. 4v}, + address = {Seville}, + year = {1890-95}, + key = {Cobo (1890-95)}, + lgcode = {Inca [cusc1236]} +} +@article{codere1950, + author = {Codere, H.}, + title = {Fighting with Property}, + journal = {Monog. Amer. Ethn. Soc.}, + volume = {18}, + pages = {1-143}, + year = {1950}, + key = {Codere (1950)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269]} +} +@book{codrington1891, + author = {Codrington, R. H.}, + title = {The Melanesians}, + address = {Oxford}, + year = {1891}, + key = {Codrington (1891)}, + lgcode = {Mota [mota1237]} +} +@book{codrington1926, + author = {Codrington, H. W.}, + title = {A Short History of Ceylon}, + publisher = {MacMillan and Co.}, + address = {London}, + year = {1926}, + key = {Codrington (1926)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{coedes1968, + author = {Coedes, G.}, + editor = {W. F. Vella}, + title = {The Indianized States of Southeast Asia}, + address = {Honolulu}, + year = {1968}, + key = {Coedes (1968)}, + lgcode = {Khmer [cent1989]} +} +@phdthesis{cohen1960, + author = {Cohen, R.}, + title = {The structure of Kanuri society}, + school = {University of Wisconsin}, + year = {1960}, + glottolog_ref = {eballiso2009:47830}, + key = {Cohen (1960)}, + lgcode = {Kanuri [cent2050]} +} +@article{cohen1961, + author = {Cohen, R.}, + title = {Marriage Instability Among the Kanuri of Northern Nigeria}, + journal = {American Anthropologist}, + volume = {63}, + pages = {1231-1249}, + year = {1961}, + key = {Cohen (1961)}, + lgcode = {Kanuri [cent2050]} +} +@book{cohen1967, + author = {Cohen, R.}, + title = {The Kanuri of Bornu}, + publisher = {New York: Holt, Rinehart & Winston}, + address = {New York}, + year = {1967}, + glottolog_ref = {eballiso2009:47833}, + key = {Cohen (1967)}, + lgcode = {Kanuri [cent2050]} +} +@article{cohn1958, + author = {Cohn, B. S.}, + title = {Changing Traditions of a Low Caste}, + journal = {Journal of American Folklore}, + volume = {71}, + pages = {412-421}, + year = {1958}, + key = {Cohn (1958)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@misc{cohnnd, + author = {Cohn, B. S.}, + title = {Chamar Family in a North Indian Village}, + howpublished = {Manuscript}, + key = {Cohn (nd)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@article{cole1913, + author = {Cole, F. C.}, + title = {The Wild Tribes of the Davao District}, + journal = {Field Mus. Nat. Hist. Anth. Ser.}, + volume = {12}, + pages = {48-203}, + year = {1913}, + key = {Cole (1913)}, + lgcode = {Bilaan [koro1310]} +} +@article{coll1903, + author = {Coll, C. van.}, + title = {Gegevens over land en volk van Suriname}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + volume = {55}, + pages = {451-640}, + year = {1903}, + glottolog_ref = {fabreall2009ann:2116}, + key = {Coll (1903)}, + lgcode = {Lokono [araw1276]} +} +@book{colle1913, + author = {Colle, P.}, + title = {Les Baluba}, + address = {Bruxelles}, + series = {Coll. Monog. Ethnog.}, + volume = {10-11}, + year = {1913}, + key = {Colle (1913)}, + lgcode = {Buye [buyu1239]} +} +@article{colle1921, + author = {Colle, P.}, + title = {L'organisation politique des Bashi}, + journal = {Congo}, + volume = {2}, + pages = {657-684}, + year = {1921}, + glottolog_ref = {eballiso2009:5}, + key = {Colle (1921)}, + lgcode = {Bashi [shii1238]} +} +@article{colle1922a, + author = {Colle, P.}, + title = {Le mariage chez les Bashi}, + journal = {Congo}, + volume = {3}, + pages = {ii, 535-551}, + year = {1922}, + key = {Colle (1922a)}, + lgcode = {Bashi [shii1238]} +} +@article{colle1922b, + author = {Colle, P.}, + title = {Les clans au pays des Bashi}, + journal = {Congo}, + volume = {3}, + pages = {i, 337-352}, + year = {1922}, + key = {Colle (1922b)}, + lgcode = {Bashi [shii1238]} +} +@book{collierandthalman1991, + author = {Collier, E. T. and S. B. Thalman}, + title = {Interviews with Tom Smith and Maria Copa: Isabel Kelley's Ethnographic Notes on the Coast Miwok Indians of Marin and Southern Sonoma Counties California}, + series = {MAPOM Occasional Papers}, + volume = {6}, + year = {1991}, + key = {Collier and Thalman (1991)}, + lgcode = {Coast Miwok [coas1301]} +} +@book{collinder1949, + author = {Collinder, B.}, + title = {The Lapps}, + address = {Princeton}, + year = {1949}, + key = {Collinder (1949)}, + lgcode = {Sami [nort2671]} +} +@article{colliverandwoolston1975, + author = {Colliver, F. S., and F. P. Woolston.}, + title = {The Aborigines of Stradbroke Island}, + journal = {Proceedings of the Royal Society of Queensland}, + volume = {86}, + number = {16}, + pages = {91-104}, + year = {1975}, + glottolog_ref = {ozbib:1211}, + key = {Colliver and Woolston (1975)}, + lgcode = {Undanbi [waka1274]} +} +@book{colson1950, + author = {Colson, E.}, + title = {Marriage and the Family Among the Plateau Tonga of Northern Rhodesia}, + address = {New York}, + year = {1950}, + key = {Colson (1950)}, + lgcode = {Plateau Tonga [tong1318]} +} +@incollection{colson1951, + author = {Colson, E.}, + editor = {Colson, Elizabeth and Gluckman, Max}, + title = {The Plateau Tonga of Northern Rhodesia}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {London: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {London}, + pages = {94-162}, + year = {1951}, + glottolog_ref = {eballiso2009:40613}, + key = {Colson (1951)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{colson1953, + author = {Colson, E.}, + title = {The Makah Indians}, + address = {Minneapolis}, + year = {1953}, + key = {Colson (1953)}, + lgcode = {Makah [maka1318]} +} +@book{colson1960, + author = {Colson, E.}, + title = {The Social Organization of the Gwembe Tonga}, + publisher = {Manchester Univ. Press}, + address = {New York}, + series = {Kariba studies serie}, + volume = {riba studies series}, + year = {1960}, + glottolog_ref = {eballiso2009:27121}, + key = {Colson (1960)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{condominas1957, + author = {Condominas, G.}, + title = {Nous avons mange la foret}, + address = {Paris}, + year = {1957}, + key = {Condominas (1957)}, + lgcode = {Mnong Gar [east2333]} +} +@article{condominas1960, + author = {Condominas, G.}, + title = {Les Mnong Gar du centre Viet-Nam}, + journal = {Viking Fund Publ. Anth.}, + volume = {29}, + pages = {15-23}, + year = {1960}, + key = {Condominas (1960)}, + lgcode = {Mnong Gar [east2333]} +} +@phdthesis{conklin1954, + author = {Conklin, H. C.}, + title = {The Relation of Hanunoo Culture to the Plant World}, + school = {Yale University}, + year = {1954}, + howpublished = {Unpublished}, + key = {Conklin (1954)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conklin1955, + author = {Conklin, Harold C. IV-5.}, + title = {Hanunoo color catgories}, + journal = {Southwestern Journal of Anthropology}, + volume = {11}, + pages = {339-344}, + year = {1955}, + key = {Conklin (1955)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conklin1957, + author = {Conklin, H. C.}, + title = {Hanunoo Agriculture}, + journal = {United Nations Food and Agric. Org. Forestry Devel. Pap.}, + volume = {12}, + pages = {1-209}, + year = {1957}, + key = {Conklin (1957)}, + lgcode = {Hanunoo [hanu1241]} +} +@article{conolly1897, + author = {Conolly, R. M. V-6.}, + title = {Social life in Fanti-land}, + journal = {Anthropological Institute of Great Britain and Ireland, Journal}, + volume = {26}, + pages = {128-53}, + year = {1897}, + key = {Conolly (1897)}, + lgcode = {Fante [fant1241]} +} +@article{conradt1902, + author = {Conradt, L.}, + title = {Die Ngumba in Sudkamerun}, + journal = {Globus}, + volume = {81}, + pages = {333-337, 350-354, 369-372}, + year = {1902}, + glottolog_ref = {eballiso2009:724}, + key = {Conradt (1902)}, + lgcode = {Ngumba [kwas1243]} +} +@book{contenau1954, + author = {Contenau, G.}, + title = {Everyday Life in Babylon and Assyria}, + address = {New York}, + year = {1954}, + key = {Contenau (1954)}, + lgcode = {Babylonians [akka1240]} +} +@article{conzemius1932, + author = {Conzemius, E.}, + title = {Ethnographic Survey of the Miskito and Sumu Indians of Honduras and Nicaragua}, + journal = {Bulletins of the Bureau of American Ethnology}, + publisher = {Washington: BAE 106}, + volume = {106}, + pages = {1-191}, + year = {1932}, + glottolog_ref = {fabreall2009ann:Misumalpa_miskito027}, + key = {Conzemius (1932)}, + lgcode = {Miskito [misk1235]} +} +@book{cook1785, + author = {Cook, J.}, + title = {A Voyage to the Pacific Ocean}, + address = {London}, + year = {1785}, + key = {Cook (1785)}, + lgcode = {Aleut [east2533]} +} +@article{cook1900, + author = {Cook, A. C.}, + title = {The Aborigines of the Canary Islands}, + journal = {American Anthropologist}, + volume = {2}, + pages = {451-493}, + year = {1900}, + key = {Cook (1900)}, + lgcode = {Guanche [guan1277]} +} +@article{cook1908, + author = {Cook, W. A.}, + title = {The Bororo Indians of Matto Grosso, Brazil}, + journal = {Smithsonian Miscellaneous Collections}, + volume = {50}, + pages = {48-62}, + year = {1908}, + key = {Cook (1908)}, + lgcode = {Bororo [boro1282]} +} +@book{cook1931, + author = {Cook. P. A. W.}, + title = {Social Organisation and Ceremonial Institutions of the Bomvana}, + publisher = {Cape Town: J.C. Juta}, + address = {Cape Town}, + year = {1931}, + glottolog_ref = {eballiso2009:5015}, + key = {Cook (1931)}, + lgcode = {Bomvana [bomv1238]} +} +@article{cook1942, + author = {Cook, P. IV-6.}, + title = {The application of the Rorschach test to a Samoan group}, + journal = {Rorschach Research Exchange}, + volume = {6}, + pages = {51-60}, + year = {1942}, + key = {Cook (1942)}, + lgcode = {American Samoans [samo1305]} +} +@article{cook1955, + author = {Cook, S. F.}, + title = {The Aboriginal Population of the San Joaquin Valley, California}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {16}, + number = {2}, + pages = {31-81}, + year = {1955}, + key = {Cook (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Lake Miwok [lake1258], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@article{cook1956, + author = {Cook, S. F.}, + title = {The Aboriginal Population of the North Coast of California}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {16}, + number = {3}, + year = {1956}, + key = {Cook (1956)}, + lgcode = {Clear Lake Pomo [east2545], Hupa [hupa1239], Karuk [karo1304], Kashaya Pomo [kash1280], Mattole-Bear River [matt1238], Northern Pomo [nort2966], Sinkyone [wail1244], Tolowa [tolo1259], Wappo [wapp1239], Wiyot [wiyo1248], Yuki [yuki1243], Yurok [yuro1248]} +} +@book{cookandheizer1965, + author = {Cook, S. F., and R. F. Heizer}, + title = {The Quantitative Approach to the Relation between Population and Settlement Size}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Contributions of the University of the California Archaeological Research Facility}, + number = {64}, + year = {1965}, + key = {Cook and Heizer (1965)}, + lgcode = {Central Sierra Miwok [cent2140], Chumash [cruz1243], Karuk [karo1304], Maidu [nort2952], Nisenan [nise1244], Shasta [shas1239], Wappo [wapp1239], Wintu [nucl1651]} +} +@article{cooley1962a, + author = {Cooley, F. L.}, + title = {Ambonese Adat}, + journal = {Yale Univ. Asia Studies, Cult. Rep. Ser.}, + volume = {10}, + pages = {1-94}, + year = {1962}, + key = {Cooley (1962a)}, + lgcode = {Ambonese [ambo1250]} +} +@article{cooley1962b, + author = {Cooley, F. L.}, + title = {Ambonese Kin Groups}, + journal = {Ethnology}, + volume = {1}, + pages = {102-112}, + year = {1962}, + key = {Cooley (1962b)}, + lgcode = {Ambonese [ambo1250]} +} +@article{coon1931, + author = {Coon, C. S.}, + title = {Tribes of the Rif}, + journal = {Harvard African Studies}, + publisher = {Cambridge MA: Harvard Univ. Press}, + address = {Cambridge MA}, + series = {Harvard African studies}, + volume = {9}, + pages = {1-417}, + year = {1931}, + glottolog_ref = {eballiso2009:6585}, + key = {Coon (1931)}, + lgcode = {Riffians [tari1263]} +} +@book{coon1939, + author = {Coon, C. S.}, + title = {Races of Europe}, + publisher = {Macmillan and Co.}, + address = {New York}, + year = {1939}, + key = {Coon (1939)}, + lgcode = {Dutch [dutc1256]} +} +@incollection{coon1949, + author = {Coon, Carleton S.}, + editor = {Robert J. Kerner}, + title = {Racial history}, + booktitle = {Yugoslavia}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1949}, + key = {Coon (1949)}, + lgcode = {Serbs [serb1264]} +} +@article{coon1950, + author = {Coon, C. S.}, + title = {The Mountain of Giants}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {23}, + pages = {iii, 1-105}, + year = {1950}, + key = {Coon (1950)}, + lgcode = {Gheg [gheg1238]} +} +@article{cooper1917, + author = {Cooper, J. M.}, + title = {Analytical and Critical Bibliography of the Tribes of Tierra del Fuego and Adjacent Territory}, + journal = {Bull. Bur. Amer. Ethn.}, + address = {Washington}, + volume = {63}, + pages = {1-233}, + year = {1917}, + glottolog_ref = {fabreall2009ann:2223}, + key = {Cooper (1917)}, + lgcode = {Alacaluf [qawa1238], Yahgan [yama1264]} +} +@incollection{cooper1946a, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Yahgan}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {81-106}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946a)}, + lgcode = {Yahgan [yama1264]} +} +@incollection{cooper1946b, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Ona}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {107-125}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946b)}, + lgcode = {Ona [onaa1245]} +} +@incollection{cooper1946c, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Patagonian and Pampean hunters}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {127-168}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + key = {Cooper (1946c)}, + lgcode = {Tehuelche [tehu1242]} +} +@incollection{cooper1946d, + author = {Cooper, J. M.}, + editor = {J. H. Steward}, + title = {The Chono}, + booktitle = {The Marginal Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians}, + volume = {1}, + number = {Bureau of American Ethnology Bulletin No. 143}, + pages = {47-55}, + year = {1946}, + url = {http://library.si.edu/digital-library/book/bulletin14311946smit}, + glottolog_ref = {fabreall2009ann:Chon25}, + key = {Cooper (1946d)}, + lgcode = {Chono [chon1248]} +} +@article{cooper1956, + author = {Cooper, J. M.}, + title = {The Gros Ventre of Montana: Religion and Ritual}, + journal = {Catholic University of America Anthropological Series}, + volume = {16}, + pages = {1-491}, + year = {1956}, + key = {Cooper (1956)}, + lgcode = {Gros Ventre [gros1243]} +} +@misc{cooper1991, + author = {Cooper, Z.}, + title = {Abandoned Onge Encampments and Their Relevance in Understanding the Archaeological Record in the Andaman Islands}, + year = {1991}, + howpublished = {Prepared for the Symposium on Living Traditions: South Asian Ethnoarchaeology, Cambridge, U.K., September 23-25. Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas.}, + key = {Cooper (1991)}, + lgcode = {Onge [onge1236]} +} +@book{copway1851, + author = {Copway, G.}, + title = {The Traditional History and Characteristic Sketches of the Ojibway Nation}, + publisher = {Benjamin B. Busey}, + address = {Boston}, + year = {1851}, + key = {Copway (1851)} +} +@article{corbusier1886, + author = {Corbusier, Wm. F.}, + title = {The Apache-Yumas and Apache-Mojaves}, + journal = {American Antiquarian}, + volume = {8}, + pages = {276-284, 325-339}, + year = {1886}, + key = {Corbusier (1886)}, + lgcode = {Yavapai [yava1252]} +} +@article{corfield1938, + author = {Corfield, F. D.}, + title = {The Koma}, + journal = {Sudan Notes and Records}, + volume = {25}, + pages = {123-165}, + year = {1938}, + glottolog_ref = {weball:4554}, + key = {Corfield (1938)}, + lgcode = {Koma [komo1258]} +} +@article{cornell1964, + author = {Cornell, J. B.}, + title = {Ainu Assimilation and Cultural Extinction: Acculturation Policy in Hokkaido}, + journal = {Ethnology}, + volume = {3}, + pages = {287-304}, + year = {1964}, + key = {Cornell (1964)}, + lgcode = {Ainu [ainu1240]} +} +@book{cortier1908, + author = {Cortier, M.}, + title = {D'une rive a l'autre du Soudan}, + address = {Paris}, + year = {1908}, + key = {Cortier (1908)}, + lgcode = {Ifora [tadh1242]} +} +@book{cory1953, + author = {Cory, H.}, + title = {Sukuma Law and Custom}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1953}, + glottolog_ref = {eballiso2009:6430}, + key = {Cory (1953)}, + lgcode = {Sukuma [suku1261]} +} +@book{coryandhartnoll1945, + author = {Cory, H., and M. M. Hartnoll.}, + title = {Customary Law of the Haya Tribe}, + address = {London}, + year = {1945}, + key = {Cory and Hartnoll (1945)}, + lgcode = {Haya [haya1250]} +} +@article{cotlarciuc1913, + author = {Cotlarciuc, N.}, + title = {Beitraege zum lebenden Ehe- und Familienrecht der Rumaenen}, + journal = {Zeits. Oesterr. Volkskunde}, + volume = {19}, + pages = {16-32, 93-104}, + year = {1913}, + key = {Cotlarciuc (1913)}, + lgcode = {Romanians [baya1255]} +} +@book{coudreau1893, + author = {Coudreau, H. A.}, + title = {Chez nos Indiens}, + address = {Paris}, + year = {1893}, + key = {Coudreau (1893)}, + lgcode = {Rucuyen [waya1269]} +} +@book{coughlin1950, + author = {Coughlin, R. J.}, + title = {The Position of Women in Vietnam}, + address = {New Haven}, + year = {1950}, + key = {Coughlin (1950)}, + lgcode = {Annamese [viet1252]} +} +@incollection{coughlin1965, + author = {Coughlin, R. J.}, + editor = {D. V. Hart, et al.}, + title = {Pregnancy and Childbirth in Vietnam}, + booktitle = {Southeast Asian Birth Customs: Three Studies in Human Reproduction}, + address = {New Haven}, + year = {1965}, + key = {Coughlin (1965)}, + lgcode = {Annamese [viet1252]} +} +@book{courlander1960, + author = {Courlander, H.}, + title = {The Drum and the Hoe: Life and Lore of the Haitian People}, + address = {Berkeley and Los Angeles}, + year = {1960}, + key = {Courlander (1960)}, + lgcode = {Haitians [hait1244]} +} +@article{coutouly1920, + author = {Coutouly, F. de.}, + title = {Quelques coutumes des Kroumen du Bas-Cavally}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {3}, + pages = {79-98}, + year = {1920}, + key = {Coutouly (1920)}, + lgcode = {Bakwe [bakw1243]} +} +@article{coutouly1923, + author = {Coutouly, F. de.}, + title = {Les populations du cercle de Dori}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {6}, + pages = {269-301, 471-496, 637-671}, + year = {1923}, + key = {Coutouly (1923)}, + lgcode = {Liptako [west2454], Udalan Tuareg [timb1263]} +} +@book{covarrubias1937, + author = {Covarrubias, Miguel.}, + title = {Island of Bali}, + address = {New York}, + year = {1937}, + key = {Covarrubias (1937)}, + lgcode = {Bali Nyonga [mung1266], Balinese [bali1278]} +} +@article{cowan1946, + author = {Cowan, F. H.}, + title = {Notas etnograficas sobre los Mazateco de Oaxaca}, + journal = {America Indigena}, + volume = {6}, + pages = {27-39}, + year = {1946}, + glottolog_ref = {sil16:10450}, + key = {Cowan (1946)}, + lgcode = {Mazateco [huau1238]} +} +@article{cowan1947, + author = {Cowan, F. H.}, + title = {Linguistic and Ethnological Aspects of Mazateco Kinship}, + journal = {Southw. Journ. Anth.}, + volume = {3}, + pages = {247-256}, + year = {1947}, + glottolog_ref = {sil16:10451}, + key = {Cowan (1947)}, + lgcode = {Mazateco [huau1238]} +} +@book{coxe1804, + author = {Coxe, W.}, + title = {Account of Russian Discoveries Between Asia and America}, + address = {London}, + year = {1804}, + key = {Coxe (1804)}, + lgcode = {Aleut [east2533]} +} +@article{coxhead1914, + author = {Coxhead, J. C. C.}, + title = {The Native Tribes of Northeastern Rhodesia}, + journal = {Roy. Anth. Inst. Occ. Pap.}, + publisher = {London: Royal Anthropological Inst. of Great Britain and Ireland (RAI)}, + address = {London}, + series = {Occasional papers}, + volume = {5}, + pages = {43-57}, + year = {1914}, + glottolog_ref = {eballiso2009:31863}, + key = {Coxhead (1914)}, + lgcode = {Iwa [nyam1275]} +} +@article{crabbeck1943, + author = {Crabbeck, G.}, + title = {Les Gbwaka}, + journal = {Bull. Juris. Indig. Droit Cout. Congol.}, + volume = {11}, + pages = {85-108}, + year = {1943}, + key = {Crabbeck (1943)}, + lgcode = {Bwaka [ngba1284]} +} +@article{craig1967, + author = {Craig, A. K.}, + title = {Brief Ethnology of the Campa Indians}, + journal = {America Indigena}, + volume = {27}, + pages = {223-235}, + year = {1967}, + key = {Craig (1967)}, + lgcode = {Asháninka [ajyi1238]} +} +@book{crane1955, + editor = {Crane, R. L.}, + title = {Jammu and Kashmir State}, + address = {New Haven}, + year = {1955}, + key = {Crane (1955)}, + lgcode = {Kashmiri [kash1277]} +} +@book{cranz1767, + author = {Cranz, D.}, + title = {The History of Greenland}, + publisher = {Brethren's Society}, + address = {London}, + volume = {1}, + year = {1767}, + key = {Cranz (1767)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{crazzolara1954, + author = {Crazzolara, J. P.}, + title = {Lwoo Clans}, + address = {Verona}, + year = {1954}, + key = {Crazzolara (1954)}, + lgcode = {Jur [luwo1239]} +} +@book{cremer192427, + author = {Cremer, J.}, + title = {Les Bobo}, + address = {Paris}, + volume = {2}, + year = {1924-27}, + key = {Cremer (1924-27)}, + lgcode = {Bobo [nort2819]} +} +@book{cresswell1969, + author = {Cresswell, R.}, + title = {Une communaut‚ rurale d'Irlande}, + address = {Paris}, + series = {Travaux et Memoires de I'Institut d'Ethnologie}, + volume = {74}, + pages = {1-571}, + year = {1969}, + key = {Cresswell (1969)}, + lgcode = {Irish [iris1253]} +} +@article{crocker1961, + author = {Crocker, W. H.}, + title = {The Canela since Nimuendaji}, + journal = {Anthropological Quarterly}, + volume = {23}, + pages = {69-84}, + year = {1961}, + key = {Crocker (1961)}, + lgcode = {Canela [cane1242]} +} +@article{crosby1937, + author = {Crosby, K. H.}, + title = {Polygamy in Mende Country}, + journal = {Africa}, + volume = {10}, + pages = {249-264}, + year = {1937}, + key = {Crosby (1937)}, + lgcode = {Mende [mend1266]} +} +@article{crosson1900, + author = {Crosson.}, + title = {L'thnographie de la Cote d'Ivoire}, + journal = {Rens. Colon. Doc. Com. Afr. Franc.}, + volume = {10}, + pages = {93-99, 111-118}, + year = {1900}, + key = {Crosson (1900)}, + lgcode = {Attie [atti1239]} +} +@incollection{crowandobley1981, + author = {Crow, J. R., and P. R. Obley}, + editor = {Helm, J.}, + title = {Han}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washinton D. C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {506-513}, + year = {1981}, + glottolog_ref = {hh:e:CrowObley:Han}, + key = {Crow and Obley (1981)}, + lgcode = {Hän [hann1241]} +} +@book{cruise1824, + author = {Cruise, R. A.}, + title = {Journal of a Ten Month's Residence in New Zealand. 2nd edit.}, + address = {London}, + year = {1824}, + key = {Cruise (1824)}, + lgcode = {Māori [maor1246]} +} +@book{cuentas1929, + author = {Cuentas, J.A.}, + title = {Chucuito: Album grafico e historico}, + year = {1929}, + key = {Cuentas (1929)}, + lgcode = {Aymara [cent2142]} +} +@book{culbertson1952, + author = {Culbertson, T. A.}, + editor = {J. F. McDermott}, + title = {Journal of an Expedition to the Mauvaises Terres and the Upper Missouri in 1850}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {147}, + year = {1952}, + key = {Culbertson (1952)}, + lgcode = {Assiniboine [assi1247], Gros Ventre [gros1243], Teton [lako1247]} +} +@book{culshaw1949, + author = {Culshaw, W. J.}, + title = {Tribal Heritage. A Study of the Santals}, + publisher = {Lutterworth Press}, + address = {London}, + year = {1949}, + key = {Culshaw (1949)}, + lgcode = {Santal [sant1410]} +} +@book{culwickandculwick1935, + author = {Culwick, A. T., and G. M. Culwick}, + title = {Ubena of the Rivers}, + publisher = {London: George Allen & Unwin}, + address = {London}, + year = {1935}, + glottolog_ref = {eballiso2009:59285}, + key = {Culwick and Culwick (1935)}, + lgcode = {Bena [bena1262]} +} +@article{cummins1904, + author = {Cummins, S. L.}, + title = {Sub-Tribes of the Bahr-el-Ghazal Dinka}, + journal = {Jounr. Roy. Anth. Inst.}, + volume = {34}, + pages = {149-166}, + year = {1904}, + glottolog_ref = {eballiso2009:42978}, + key = {Cummins (1904)}, + lgcode = {Dinka [sout2832]} +} +@article{cunhataborde1950, + author = {Cunha Taborde, A. de.}, + title = {Apontamentos etnograficos sobre as Felupes de Suzana}, + journal = {Bol. Cultural Guine Port.}, + volume = {5}, + pages = {187-223}, + year = {1950}, + key = {Cunha Taborde (1950)}, + lgcode = {Diola [ejam1238]} +} +@article{cunnison1950, + author = {Cunnison, I. G.}, + title = {Kinship and Local Organization in the Luapula}, + journal = {Commun. Rhodes-Liv. Inst.}, + publisher = {Livingstone (Northern Rhodesia)}, + series = {Comm. from the Rhodes-Livingstone Inst.}, + volume = {5}, + pages = {1-32}, + year = {1950}, + glottolog_ref = {eballiso2009:5639}, + key = {Cunnison (1950)}, + lgcode = {Luapula [luun1238]} +} +@article{cunnison1954, + author = {Cunnison, I.}, + title = {The Humr and Their Land}, + journal = {Sudan Notes}, + volume = {35}, + pages = {ii, 50-68}, + year = {1954}, + key = {Cunnison (1954)}, + lgcode = {Messiria Humr [tama1331]} +} +@book{cunnison1959, + author = {Cunnison, I. G.}, + title = {The Luapula Peoples of Northern Rhodesia}, + address = {Manchester}, + year = {1959}, + key = {Cunnison (1959)}, + lgcode = {Luapula [luun1238]} +} +@book{curtis1908, + author = {Curtis, E. S.}, + title = {The Teton Sioux. The Yanktonai. The Assiniboin.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {3}, + pages = {3-118, 137-190}, + year = {1908}, + key = {Curtis (1908)}, + lgcode = {Teton [lako1247]} +} +@book{curtis1909, + author = {Curtis, E. S.}, + title = {The Apsaroke, or Crows. The Hidatsa.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {4}, + pages = {129-172, 180-196}, + year = {1909}, + key = {Curtis (1909)}, + lgcode = {Hidatsa [hida1246]} +} +@book{curtis1909b, + author = {Curtis, E. S.}, + title = {The Mandan. The Arikara. The Atsina.}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {5}, + year = {1909}, + key = {Curtis (1909b)}, + lgcode = {Arikara [arik1262]} +} +@book{curtis1911, + author = {Curtis, E. S.}, + title = {The Nez Perces. Wallawalla. Umatilla. Cayuse. The Chinookan tribes.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {8}, + pages = {3-195}, + year = {1911}, + key = {Curtis (1911)}, + lgcode = {Nez Perce [nezp1238]} +} +@book{curtis1912, + author = {Curtis, E. S.}, + title = {The Salishan tribes of the coast. The Chimakum and the Quilliute. The Willapa.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {9}, + pages = {19-195}, + year = {1912}, + key = {Curtis (1912)}, + lgcode = {Lummi [lumm1243]} +} +@misc{curtis1926, + author = {Curtis, Edward S.}, + title = {The Tiwa. The Keres}, + publisher = {Plimpton Press}, + address = {Cambridge}, + series = {The North American Indian}, + volume = {16}, + pages = {65-248}, + year = {1926}, + key = {Curtis (1926)}, + lgcode = {Acoma [acom1246]}, + note = {Reprinted by Johnson Reprint, 1970} +} +@book{curtis1930, + author = {Curtis, E. S.}, + title = {The Indians of Oklahoma. The Wichita. The southern Cheyenne. The Oto. The Comanche. The Peyote cult.}, + address = {Norwood}, + series = {The North American Indian}, + volume = {19}, + year = {1930}, + key = {Curtis (1930)}, + lgcode = {Wichita [wich1260]} +} +@article{cushing1882, + author = {Cushing, F. H.}, + title = {The Nation of the Willows}, + journal = {Atlantic Monthly}, + volume = {50}, + pages = {362-374, 541-559}, + year = {1882}, + key = {Cushing (1882)}, + lgcode = {Havasupai [hava1249]} +} +@book{cushing1896, + author = {Cushing, Frank}, + title = {Outlines of Zuni Creation Myths}, + series = {Annual Report of the Bureau of Ethnology}, + volume = {13}, + pages = {321-447}, + year = {1896}, + url = {https://archive.org/details/cu31924104094002}, + key = {Cushing (1896)}, + lgcode = {Zuni [zuni1245]} +} +@article{cushing1920, + author = {Cushing, F. H.}, + title = {Zuni Breadstuffs}, + journal = {Indian Notes and Monographs}, + volume = {8}, + pages = {1-673}, + year = {1920}, + key = {Cushing (1920)}, + lgcode = {Zuni [zuni1245]} +} +@book{cusinier1946, + author = {Cusinier, J.}, + title = {Les Mu'o'ng}, + series = {Trav. Mem. Inst. Ethnol.}, + volume = {45}, + year = {1946}, + key = {Cusinier (1946)}, + lgcode = {Muong [muon1246]} +} +@incollection{cybulski1990b, + author = {Cybulski, J. S.}, + editor = {W. Suttles}, + title = {Human Biology}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D. C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {52-59}, + year = {1990}, + key = {Cybulski (1990b)}, + lgcode = {Gitxsan [gitx1241], Haida [nort2938], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Stó:lō [chil1281]} +} +@book{czaplieka1914, + author = {Czaplieka, M. A.}, + title = {Aboriginal Siberia}, + publisher = {At the Clarendon Press}, + address = {Oxford}, + year = {1914}, + key = {Czaplieka (1914)}, + lgcode = {Koryak [kory1246]} +} +@book{czekanowski1917, + author = {Czekanowski, J.}, + title = {Forschungen im Nil-Kongo Zwischengebiet}, + address = {Leipzig}, + series = {WissenschAftliche Ergebnisse der Deutschen Zentral-Afrika Expedition, 1907-1908, unter Führung Adolf Friedrichs Herzog zu Mecklenburg}, + volume = {6}, + number = {1}, + pages = {103-412}, + year = {1917}, + glottolog_ref_id = {86631}, + key = {Czekanowski (1917)}, + lgcode = {Banyaruanda [kiny1244]} +} +@book{czekanowski1924, + author = {Czekanowski, Jan}, + title = {Forschungen im Nil-Kongo Zwischengebiet}, + publisher = {Klinkhardt und Bierman}, + address = {Leipzig}, + series = {WissenschAftliche Ergebnisse der Deutschen Zentral-Afrika Expedition, 1907-1908, unter Führung Adolf Friedrichs Herzog zu Mecklenburg}, + volume = {6}, + number = {2}, + year = {1924}, + url = {https://archive.org/details/forschungenimnil02czek}, + glottolog_ref_id = {158170}, + key = {Czekanowski (1924)}, + lgcode = {Abarambo [bara1361], Baboa [bwaa1238], Bakongo [sans1272], Bira [bila1255], Budu [budu1250], Konjo [konz1239], Lendu [lend1245], Lese [lese1243], Logo [logo1259], Madi [madi1260], Mamvu [mamv1243], Mangbetu [nucl1420], Ndaka Babali [bali1274], Plains Bira [bera1259]} +} +@article{daigre193232, + author = {Daigre}, + title = {Les Bandas de l'Oubangui-Chari}, + journal = {Anthropos}, + volume = {26; 27}, + pages = {547-695; 153-181}, + year = {1932-32}, + key = {Daigre (1932-32)}, + lgcode = {Banda [west2458]} +} +@book{dallet1874, + author = {Dallet, C.}, + title = {Histoire de l'eglise de Coree, v. I.}, + address = {Paris}, + year = {1874}, + key = {Dallet (1874)}, + lgcode = {Koreans [kore1280]} +} +@book{dalman1932, + author = {Dalman, G.}, + title = {Arbeit und Sitte in Palestina. 8 v.}, + address = {Gütersloh}, + year = {1932}, + key = {Dalman (1932)}, + lgcode = {Hebrews [anci1244]} +} +@article{damas1964, + author = {Damas, D.}, + title = {The Patterning of the Iglulingmiut Kinship System}, + journal = {Ethnology}, + volume = {3}, + pages = {377-388}, + year = {1964}, + key = {Damas (1964)}, + lgcode = {Iglulik Inuit [west2618]} +} +@incollection{damas1972, + author = {Damas, D.}, + editor = {M. G. Bicchieri}, + title = {The Copper Eskimo}, + booktitle = {Hunters and Gatherers Today A Socioeconomic Study of Eleven Such Cultures in th Twentieth Century}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {3-50}, + year = {1972}, + key = {Damas (1972)}, + lgcode = {Copper Inuit [copp1244]} +} +@incollection{damas1984, + author = {Damas, D. (editor)}, + editor = {D. Damas}, + title = {Copper Eskimo}, + booktitle = {Arctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {397-414}, + year = {1984}, + key = {Damas (1984)}, + lgcode = {Copper Inuit [copp1244]} +} +@misc{damas1992, + author = {Damas}, + year = {1992}, + howpublished = {letter 7/6/92}, + key = {Damas (1992)}, + lgcode = {Iglulik Inuit [west2618]} +} +@book{damm1938, + author = {Damm, Hans, et al.}, + title = {Zentralkurolinen, Part II: Ifaluk, Aurepik, Faraulip, Sorol, Mogemog (The Central Carolines Part II)}, + publisher = {Friederichsen, De Gruyter}, + address = {Hamburg}, + series = {Ergebnisse der Südsee-Expedition 1908-1910. Section B}, + volume = {10, Part 2}, + year = {1938}, + key = {Damm (1938)}, + lgcode = {Ifaluk [nucl1479]} +} +@article{daniel1910, + author = {Daniel, F.}, + title = {Etude sur les Soninkes ou Sarakoles}, + journal = {Anthropos}, + volume = {5}, + pages = {27-49}, + year = {1910}, + glottolog_ref = {eballiso2009:16000}, + key = {Daniel (1910)}, + lgcode = {Soninke [soni1259]} +} +@article{daniell1856, + author = {Daniell, W. F.}, + title = {On the Ethnography of Akkrah and Adampe}, + journal = {Journ. Ethnol. Soc. London}, + volume = {4}, + pages = {1-32}, + year = {1856}, + key = {Daniell (1856)}, + lgcode = {Adangme [adan1247], Ga [gaaa1244]} +} +@article{danielsson1954, + author = {Danielsson, B.}, + title = {Raroian Culture}, + journal = {Atoll Research Bulletin}, + publisher = {Smithsonian Institution}, + address = {Washington D.C.}, + volume = {32}, + pages = {1-109}, + year = {1954}, + key = {Danielsson (1954)}, + lgcode = {Raroians [tuam1242]} +} +@book{danielsson1955, + author = {Danielsson, B.}, + title = {Work and Life on Raroia}, + address = {Uppsala}, + year = {1955}, + key = {Danielsson (1955)}, + lgcode = {Raroians [tuam1242]} +} +@book{darmagnac1934, + author = {d'Armagnac.}, + title = {LeMzab et les pays Chaamba}, + address = {Alger}, + year = {1934}, + key = {d'Armagnac (1934)}, + lgcode = {Chaambra [algi1247]} +} +@article{dart1937b, + author = {Dart, R.A.}, + title = {The physical characters of the /?Auni=Khomani Bushmen}, + journal = {Bantu Studies}, + volume = {11}, + pages = {176-246}, + year = {1937}, + key = {Dart (1937b)}, + lgcode = {/'Auni-Khomani [nuuu1241]} +} +@book{das1902, + author = {Das, Sarat Chandra}, + title = {Journey to Lhasa and Central Tibet}, + publisher = {John Murray}, + address = {London}, + year = {1902}, + key = {Das (1902)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{das1945, + author = {Das, T. C.}, + title = {The Purums}, + address = {Calcutta}, + year = {1945}, + glottolog_ref = {sala:1987}, + key = {Das (1945)}, + lgcode = {Purum [puru1266]} +} +@article{das1967, + author = {Das, A. K.}, + title = {Scientific Analysis of "Santal" Social System}, + journal = {Bulletin of the Cultural Research Institute}, + volume = {6}, + number = {i-ii}, + pages = {5-9}, + year = {1967}, + key = {Das (1967)}, + lgcode = {Santal [sant1410]} +} +@book{dasandbanerjee1962, + author = {Das, A. K., and S. K. Banerjee.}, + title = {The Lepchas of Darjeeling District}, + publisher = {Cultural Research Institute}, + address = {Calcutta}, + year = {1962}, + key = {Das and Banerjee (1962)}, + lgcode = {Lepcha [lepc1244]} +} +@book{dasent1861, + author = {Dasent, G. W.}, + title = {The Story of the Burnt Njal}, + address = {Edinburgh}, + year = {1861}, + key = {Dasent (1861)}, + lgcode = {Icelanders [icel1247]} +} +@book{dass1954, + author = {Dass, A.}, + title = {An Economic Survey of Gajju Chak}, + address = {Lahore}, + series = {Punjab Village Surveys}, + volume = {6}, + year = {1954}, + key = {Dass (1954)}, + lgcode = {Punjabi [west2386]} +} +@article{dattamajumder1956, + author = {Datta-Majumder, Nabendu}, + title = {The Santal. A Study in Culture Change}, + journal = {Memoirs of the Department of Anthropology, Government of India}, + volume = {2}, + pages = {1-150}, + year = {1956}, + key = {Datta-Majumder (1956)}, + lgcode = {Santal [sant1410]} +} +@incollection{davenport1964, + author = {Davenport, W.}, + editor = {W. H. Goodenough}, + title = {Social Structure of Santa Cruz Island}, + booktitle = {Explorations in Cultural Anthropology}, + address = {New York}, + pages = {57-93}, + year = {1964}, + key = {Davenport (1964)}, + lgcode = {Santa Cruz Islanders [natu1246]} +} +@misc{davenportnd, + author = {Davenport, W.}, + howpublished = {Unpublished ethnographic notes}, + key = {Davenport (nd)}, + lgcode = {Cantonese [yuec1235]} +} +@article{davidson1948, + author = {Davidson, J. W.}, + title = {Political Development in Western Samoa}, + journal = {Pacific Affairs}, + volume = {21}, + pages = {136-149}, + year = {1948}, + key = {Davidson (1948)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{davies1949, + author = {Davies, R. P.}, + title = {Syrian Arabic Kinship Terms}, + journal = {Southw. Journ. Anth.}, + volume = {5}, + pages = {244-252}, + year = {1949}, + key = {Davies (1949)}, + lgcode = {Lebanese [nort3139]} +} +@book{davis1959, + author = {Davis, W. St.}, + title = {A Day in Old Rome}, + address = {New York}, + year = {1959}, + key = {Davis (1959)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{davis1965, + author = {Davis, E. L.}, + title = {An Ethnography of the Kuzedika Paiute of Mono Lake, Mono County, California}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {University of Utah Anthropological Papers}, + number = {75}, + year = {1965}, + key = {Davis (1965)}, + lgcode = {Mono Lake Northern Paiute [sout2967]} +} +@article{dawson1891, + author = {Dawson, G. M.}, + title = {Notes on the Shuswap People of British Columbia}, + journal = {Proceedings and Transactions of the Royal Society of Canada}, + volume = {9}, + number = {2}, + pages = {3-44}, + year = {1891}, + key = {Dawson (1891)}, + lgcode = {Shuswap [shus1248]} +} +@article{dazevedo1962, + author = {d'Azevedo, W. L.}, + title = {Common Principles of Variant Kinship Structure Among the Gola of Western Liberia}, + journal = {American Anthropologist}, + volume = {64}, + pages = {504-520}, + year = {1962}, + key = {d'Azevedo (1962)}, + lgcode = {Gola [gola1255]} +} +@book{dazevedo1963, + editor = {D'Azevedo, W. L.}, + title = {The Washo Indians of California and Nevada}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {University of Utah Anthropological Papers}, + number = {67}, + year = {1963}, + key = {d'Azevedo (1963)}, + lgcode = {Washo [wash1253]} +} +@article{deacon1927, + author = {Deacon, A. B.}, + title = {The Regulation of Marriage in Ambrym}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {57}, + pages = {325-342}, + year = {1927}, + key = {Deacon (1927)}, + lgcode = {Ranon [nort2839]} +} +@article{deacon1929, + author = {Deacon, A. B.}, + title = {Notes on Some Islands of the New Hebrides}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {59}, + pages = {498-506}, + year = {1929}, + key = {Deacon (1929)}, + lgcode = {Epi [lame1260]} +} +@book{deacon1934, + author = {Deacon, A. B.}, + title = {Malekula}, + address = {London}, + year = {1934}, + key = {Deacon (1934)}, + lgcode = {Seniang [sout2857]} +} +@misc{deananddean1954, + author = {Dean, J., and G. Dean}, + title = {Bilaan Word List}, + year = {1954}, + howpublished = {Unpublished Ms.}, + key = {Dean and Dean (1954)}, + lgcode = {Bilaan [koro1310]} +} +@book{deane1921, + author = {Deane, W.}, + title = {Fijian Society}, + address = {London}, + year = {1921}, + key = {Deane (1921)}, + lgcode = {Mbau Fijians [bauu1243]} +} +@incollection{debertrodano1978, + author = {De Bertrodano, R. E.}, + editor = {I. McBryde}, + title = {Description of an Aboriginal Tribe}, + booktitle = {Records of Times Past}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {281-286}, + year = {1978}, + key = {de Bertrodano (1978)}, + lgcode = {Badjalang [midd1357]} +} +@book{decary193033, + author = {Decary, R.}, + title = {L'Androy. 2V}, + address = {Paris}, + year = {1930-33}, + key = {Decary (1930-33)}, + lgcode = {Antandroy [tand1256]} +} +@article{decastroandalmeida1956, + author = {De Castro, M. E., and A. Alemeida}, + title = {Canones de mulheres indigenas de Angola}, + journal = {Progresso Cien}, + volume = {23}, + pages = {6-16}, + year = {1956}, + key = {De Castro and Almeida (1956)}, + lgcode = {Sekele [vase1234]} +} +@article{decastroandalmeida1957, + author = {De Castro, M. E., and A. Alemeida}, + title = {Subsidio para a estudo anthropologico dos Mucussos e mangares (Angolo)}, + journal = {Ultram}, + volume = {6}, + pages = {1-14}, + year = {1957}, + key = {De Castro and Almeida (1957)}, + lgcode = {Sekele [vase1234]} +} +@article{decker1942, + author = {Decker, J. M. de.}, + title = {Contribution a Petude du mariage chez les Bambunda}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {10}, + pages = {125-146}, + year = {1942}, + key = {Decker (1942)}, + lgcode = {Bunda [mpuo1241]} +} +@article{decleene1937a, + author = {De Cleene, N.}, + title = {La famille dans l'organisation sociale du Mayombe}, + journal = {Africa}, + volume = {10}, + pages = {1-16}, + year = {1937}, + key = {De Cleene (1937a)}, + lgcode = {Yombe [yomb1244]} +} +@article{decleene1937b, + author = {De Cleene, N.}, + title = {La structure de la societe Yombe}, + journal = {Bull. Seances Inst. Roy. Colon. Belge}, + volume = {8}, + pages = {44-51}, + year = {1937}, + key = {De Cleene (1937b)}, + lgcode = {Yombe [yomb1244]} +} +@article{dejong1912, + author = {DeJong, J.}, + title = {Social Organization of the Southern Peigans}, + journal = {Internationales Archiv Ethnographie}, + volume = {20}, + pages = {191-197}, + year = {1912}, + key = {DeJong (1912)}, + lgcode = {Piegan [pieg1239]} +} +@article{delacauw1936, + author = {Delacauw, A.}, + title = {Droit coutumier des Barundi}, + journal = {Congo}, + volume = {17}, + pages = {i, 332-357, 481-522}, + year = {1936}, + key = {Delacauw (1936)}, + lgcode = {Rundi [rund1242]} +} +@article{delacour191213, + author = {Delacour, A.}, + title = {Les Tenda}, + journal = {Rev. Ethnog. Sociol.}, + volume = {3; 4}, + pages = {287-296, 307-381; 31-53, 105-120, 140-153}, + year = {1912-13}, + key = {Delacour (1912-13)}, + lgcode = {Coniagui [wame1240]} +} +@book{delafosse1897, + author = {DelAfosse, M.}, + title = {Essai sur le peuple et la langue sara}, + publisher = {Paris: André'}, + address = {Paris}, + year = {1897}, + glottolog_ref = {eballiso2009:36341}, + key = {DelAfosse (1897)}, + lgcode = {Sara [sarr1246]} +} +@article{delafosse1899, + author = {DelAfosse, M.}, + title = {Les Vai}, + journal = {Anthropologie}, + volume = {10}, + pages = {129-250, 294-314}, + year = {1899}, + key = {DelAfosse (1899)}, + lgcode = {Vai [vaii1241]} +} +@article{delafosse190809, + author = {DelAfosse, M.}, + title = {Le peuple Siena ou Senoufo}, + journal = {Rev. et. Ethnog. Sociol.}, + volume = {1; 2}, + pages = {17-32, 79-92, 151-159, 242-275, 448-457, 483-486; 1-21}, + year = {1908-09}, + key = {DelAfosse (1908-09)}, + lgcode = {Senufo [ceba1235]} +} +@book{delaguna1956, + author = {de Laguna, F.}, + title = {Chugash Prehistory: The Archaeology of Prince William Sound, Alaska}, + publisher = {University of Washington Press}, + address = {Seattle}, + year = {1956}, + key = {de Laguna (1956)}, + lgcode = {Chugach [chug1254]} +} +@book{delaguna1960, + author = {de Laguna, Frederica}, + title = {The story of a Tlingit community: A problem in the relationship between archeological, ethnological, and historical methods}, + series = {Bulletin of the Bureau of American Ethnology}, + volume = {172}, + year = {1960}, + key = {de Laguna (1960)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@incollection{delaguna1990, + author = {de Laguna, F.}, + editor = {Wayne Suttles}, + title = {Eyak}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {189-198}, + year = {1990}, + glottolog_ref = {hh:e:DeLaguna:Eyak}, + key = {de Laguna (1990)}, + lgcode = {Eyak [eyak1241]} +} +@book{delaporte1925, + author = {Delaporte, L. J.}, + title = {Mesopotamia}, + address = {New York}, + year = {1925}, + key = {Delaporte (1925)}, + lgcode = {Babylonians [akka1240]} +} +@book{delbert1961, + author = {Delbert, J.}, + title = {Le Paysan Cambodgien}, + address = {Paris}, + year = {1961}, + key = {Delbert (1961)}, + lgcode = {Khmer [cent1989]} +} +@article{deleeuwe1966, + author = {De Leeuwe, J.}, + title = {Development in Bambuti society}, + journal = {Antropos}, + volume = {61}, + pages = {737-763}, + year = {1966}, + howpublished = {German}, + key = {De Leeuwe (1966)}, + lgcode = {Mbuti [bila1255]} +} +@article{deleval1912, + author = {Deleval, H.}, + title = {Les tribus Kavati du Mayombe}, + journal = {Rev. Congolaise}, + volume = {3}, + pages = {32-40, 103-115, 170-186, 253-264}, + year = {1912}, + key = {Deleval (1912)}, + lgcode = {Yombe [yomb1244]} +} +@article{delhaise1908, + author = {Delhaise, C.}, + title = {Chez les Wabemba}, + journal = {Bulletin de la Societe Royale Belge de Geographie}, + volume = {32}, + pages = {173-227, 261-283}, + year = {1908}, + glottolog_ref = {hh:e:Delhaise:Wabemba}, + key = {Delhaise (1908)}, + lgcode = {Bemba [town1238]} +} +@article{delhaise1909a, + author = {Delhaise, C.}, + title = {Chez les Wasongola du sud}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {33}, + pages = {34-58, 109-135, 159-214}, + year = {1909}, + key = {Delhaise (1909a)}, + lgcode = {Songola [song1300]} +} +@article{delhaise1909b, + author = {Delhaise, C.}, + title = {Les Warega}, + journal = {Coll. Monog. Ethnog.}, + volume = {5}, + pages = {1-376}, + year = {1909}, + key = {Delhaise (1909b)}, + lgcode = {Rega [lega1249]} +} +@article{delhaise1912, + author = {Delhaise, C.}, + title = {Les Bapopoïe}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {XXXVI}, + pages = {86-113, 149-202}, + year = {1912}, + glottolog_ref = {hh:ew:Delhaise-Arnould:Bapopoie}, + key = {Delhaise (1912)}, + lgcode = {Popoi [popo1291]} +} +@article{delmond1953, + author = {Delmond, P.}, + title = {Dans la boucle du Niger: Dori, ville peule}, + journal = {Mem. Inst. Franc. Afr. Noire}, + volume = {23}, + pages = {9-109}, + year = {1953}, + key = {Delmond (1953)}, + lgcode = {Liptako [west2454]} +} +@article{deloria1932, + author = {Deloria, E.}, + title = {Dakota Texts}, + journal = {Publ. Amer. Ethn. Soc.}, + publisher = {New York: Stechert}, + address = {New York}, + series = {Publications of the American Ethnological Society}, + volume = {14}, + pages = {1-279}, + year = {1932}, + glottolog_ref = {mpieva:Deloria1932Dakotate}, + key = {Deloria (1932)}, + lgcode = {Teton [lako1247]} +} +@book{dempsey1955, + author = {Dempsey, J.}, + title = {Mission on the Nile}, + address = {London}, + year = {1955}, + key = {Dempsey (1955)}, + lgcode = {Shilluk [shil1265]} +} +@article{dempwolff1914, + author = {Dempwolff, O.}, + title = {Beitrage zur Volksbeschreibung der Hehe}, + journal = {Baessler-Archiv}, + volume = {4}, + pages = {87-173}, + year = {1914}, + glottolog_ref = {hh:e:Dempwolff:Hehe}, + key = {Dempwolff (1914)}, + lgcode = {Hehe [hehe1240]} +} +@book{dempwolff1916, + author = {Dempwolff, O.}, + title = {Die Sandawe}, + address = {Hamburg}, + year = {1916}, + key = {Dempwolff (1916)}, + lgcode = {Sandawe [sand1273]} +} +@article{demuenynck1908, + author = {Demuenynck.}, + title = {Au pays de Mahagi}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {33}, + pages = {36-80, 93-133}, + year = {1908}, + key = {Demuenynck (1908)}, + lgcode = {Alur [alur1250]} +} +@article{denham1975, + author = {Denham, W. W.}, + title = {Population Properties of Physical Groups among the Alyawara Tribe of Central Australia}, + journal = {Archaeology and Physical Anthropology in Oceania}, + volume = {10}, + pages = {115-159}, + year = {1975}, + key = {Denham (1975)}, + lgcode = {Alyawara [alya1239]} +} +@book{denhamandclapperton1826, + author = {Denham, D., and H. Clapperton.}, + title = {Narrative of Travels and Discoveries in Northern and Central Africa}, + publisher = {London: John Murray}, + address = {London}, + year = {1826}, + glottolog_ref = {eballiso2009:52947}, + key = {Denham and Clapperton (1826)}, + lgcode = {Kanuri [cent2050]} +} +@incollection{denig1930, + author = {Denig, E. T.}, + editor = {J. N. B. Hewitt}, + title = {Indian Tribes of the Upper Missouri}, + booktitle = {Forty-Sixth Annual Report of the Bureau of American Ethnology}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {375-628}, + year = {1930}, + key = {Denig (1930)}, + lgcode = {Assiniboine [assi1247]} +} +@incollection{denig1953, + author = {Denig, E. T.}, + editor = {J. C. Ewers}, + title = {Of the Crow Nation}, + booktitle = {Smithsonian Anthropological Papers No. 33. Bureau of Amerian Ethnology Bulletin No. 151}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {1-74}, + year = {1953}, + key = {Denig (1953)}, + lgcode = {Crow [crow1244]} +} +@book{denig1961, + author = {Denig, E. T.}, + editor = {J. C. Ewers}, + title = {Five Indian Tribes of the Upper Missouri: Sioux, Arickaras, Assiniboines, Crees, Crows}, + publisher = {University of Oklahoma Press}, + address = {Norman}, + year = {1961}, + key = {Denig (1961)}, + lgcode = {Crow [crow1244]} +} +@article{denis1935, + author = {Denis, P. J.}, + title = {L'organisation d'un peuple primitif}, + journal = {Congo}, + volume = {16}, + pages = {481-502}, + year = {1935}, + glottolog_ref = {eballiso2009:5919}, + key = {Denis (1935)}, + lgcode = {Sakata [saka1287]} +} +@incollection{denisova1984, + author = {Denisova, N. P.}, + editor = {N. E. Egorov and V. A. Prohorova}, + title = {Administrativno-fiskal'nyei pravovye funktsii obshchiny u chuvashej (IX - nachaloX X v. ) (Administrative-Fiscal and Jurisdictional Functions of the Chuvash Community in the Nineteenth and early Twentieth Centuries)}, + booktitle = {Voprosy istorii dorevoljutsionnoj Chuvashii (Issues of the History of pre-Revolution Chuvashia)}, + address = {Cheboksary}, + pages = {46-71}, + year = {1984}, + key = {Denisova (1984)}, + lgcode = {Chuvash [chuv1255]} +} +@book{dennis1940, + author = {Dennis, W.}, + title = {The Hopi Child}, + address = {New York}, + year = {1940}, + key = {Dennis (1940)}, + lgcode = {Hopi [hopi1249]} +} +@incollection{dennison1981, + author = {Dennison, G.}, + editor = {J. Helm}, + title = {Sekani}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {433-441}, + year = {1981}, + key = {Dennison (1981)}, + lgcode = {Sekani [seka1250]} +} +@article{densmore1929, + author = {Densmore, F.}, + title = {Chippewa Customs}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {86}, + pages = {1-204}, + year = {1929}, + key = {Densmore (1929)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{dentan1967, + author = {Dentan, R. H.}, + title = {The Semai of West Malaysia}, + address = {New York}, + year = {1967}, + key = {Dentan (1967)}, + lgcode = {Senoi [sema1266]} +} +@article{denys1908, + author = {Denys, N.}, + editor = {W. F. Ganong}, + title = {The Description and Natural History of the Coasts of North America}, + journal = {Publications of the Champlain Society}, + volume = {2}, + pages = {399-452, 572-606}, + year = {1908}, + key = {Denys (1908)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{depuydt1868, + author = {De Puydt, L.}, + title = {Account of Scientific Explorations in the Isthmus of Darien in the Years 1861 and 1865}, + journal = {Journal of the Royal Geographic Society}, + volume = {38}, + pages = {69-110}, + year = {1868}, + key = {De Puydt (1868)}, + lgcode = {Guna [bord1248]} +} +@article{descazes1885, + author = {Descazes, E.}, + title = {Sur les Batekes}, + journal = {Rev. Ethnog.}, + volume = {4}, + pages = {160-168}, + year = {1885}, + key = {Descazes (1885)}, + lgcode = {Teke [teke1278]} +} +@book{deschamps1936, + author = {Deschamps, H.}, + title = {Les Antaisaka}, + address = {Tananarive}, + year = {1936}, + key = {Deschamps (1936)}, + lgcode = {Antaisaka [tesa1236]} +} +@book{deschlippe1956, + author = {De Schlippe, P.}, + title = {Shifting Cultivation in Africa}, + address = {London}, + year = {1956}, + key = {De Schlippe (1956)}, + lgcode = {Azande [zand1248]} +} +@incollection{desoignies1903, + author = {Desoignies.}, + editor = {S. R. Steinmetz}, + title = {Die Msalala}, + booktitle = {Rechtsverhaltnisse von eingeborenen Volkern in Afrika und Ozeanien}, + publisher = {Berlin: Julius Springer-Verlag}, + address = {Berlin}, + pages = {268-282}, + year = {1903}, + glottolog_ref = {eballiso2009:35292}, + key = {Desoignies (1903)}, + lgcode = {Sumbwa [sumb1240]} +} +@book{despois1930, + author = {Despois, J.}, + title = {Le Tunisie}, + address = {Paris}, + year = {1930}, + key = {Despois (1930)}, + lgcode = {Tunisians [tuni1260]} +} +@book{despois1940, + author = {Despois, J.}, + title = {La Tunisie orientale: Sahel et basse steppe}, + address = {Paris}, + year = {1940}, + key = {Despois (1940)}, + lgcode = {Hamama [sout3114], Sahel [sahi1245]} +} +@book{destaing190711, + author = {Destaing, E.}, + title = {Etude sur le dialecte berbère des Beni Snous}, + publisher = {Paris: Ernest Leroux}, + address = {Paris}, + series = {Publ. de l'Ecole des Lettres d'Alger; Bulletin de correspondence de africaine}, + volume = {34-35}, + year = {1907-11}, + glottolog_ref = {eballiso2009:58253}, + key = {Destaing (1907-11)}, + lgcode = {Zekara [chen1266]} +} +@article{devallee1925, + author = {Devallee.}, + title = {Le Baghirmi}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {3-76}, + year = {1925}, + key = {Devallee (1925)}, + lgcode = {Shuwa [char1283]} +} +@book{devaux1961, + author = {DeVaux, R.}, + title = {Ancient Israel, Its Life and Institutions}, + address = {New York}, + year = {1961}, + key = {DeVaux (1961)}, + lgcode = {Hebrews [anci1244]}, + note = {John McHugh, Translator} +} +@incollection{devereaux1950, + author = {Devereaux, G.}, + editor = {Gez Roheim}, + title = {Heterosexual behavior of the Mohave Indians}, + booktitle = {Psychoanalysis and the Social Sciences (vol. 2)}, + publisher = {International. Universities Press}, + address = {New York}, + year = {1950}, + key = {Devereaux (1950)}, + lgcode = {Mojave [moha1256]} +} +@book{devos1965, + author = {DeVos, G.}, + title = {Social Values and Personal Attitudes in Primary Human Relations in Niiike}, + series = {University of Michigan Center for Japanese Studies, Occasional Papers}, + year = {1965}, + key = {DeVos (1965)}, + lgcode = {Japanese [nucl1643]} +} +@book{devosandwagatsuma1967, + author = {DeVos, G., and H. Wagatsuma.}, + title = {Japan's Invisible Race}, + address = {Berkeley and Los Angeles}, + year = {1967}, + key = {DeVos and Wagatsuma (1967)}, + lgcode = {Japanese [nucl1643]} +} +@book{devreux1864, + author = {Yves d'Evreux.}, + editor = {F. Denis}, + title = {Voyage dans le nord du Brésil fait durant les années 1613 et 1614}, + publisher = {Leipzig & Paris: Librairie A. Franck}, + address = {Leipzig and Paris}, + pages = {526}, + year = {1864}, + glottolog_ref = {hh:ew:dEvreux:Nord-Bresil}, + key = {d'Evreux (1864)}, + lgcode = {Tupinambá [tupi1273]} +} +@book{dewey1962, + author = {Dewey, A. G.}, + title = {Peasant Marketing in Java}, + address = {New York}, + year = {1962}, + key = {Dewey (1962)}, + lgcode = {Javanese [java1254]} +} +@incollection{dhertefelt1965, + author = {D'Hertefelt, M.}, + editor = {J. L. Gibbs}, + title = {The Rwanda of Rwanda}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {403-440}, + year = {1965}, + key = {D'Hertefelt (1965)}, + lgcode = {Banyaruanda [kiny1244]} +} +@book{dhertefeltetal1962, + author = {D'Hertefelt, M. and A. Trouwborst and J. Scherer}, + title = {Les anciens royaumes de la zone interlacustrine meridionale}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {14; Annales du MRAC (Musée Royal de l'Afrique Centrale): monographies ethnographiques, #6}, + year = {1962}, + glottolog_ref = {eballiso2009:23731}, + key = {D'Hertefelt et al. (1962)}, + lgcode = {Banyaruanda [kiny1244], Rundi [rund1242]} +} +@book{diamond1964, + author = {Diamond, D.}, + title = {Personal communication to A}, + address = {Lomax}, + year = {1964}, + key = {Diamond (1964)}, + lgcode = {Anaguta [igut1238]} +} +@book{dias1953, + author = {Dias, J.}, + title = {Rio de Onor}, + address = {Porto}, + year = {1953}, + key = {Dias (1953)}, + lgcode = {Portuguese [gali1257]} +} +@book{dickson1949, + author = {Dickson, H. R. P.}, + title = {The Arab of the Desert}, + address = {London}, + year = {1949}, + key = {Dickson (1949)}, + lgcode = {Mutair [sout3119]} +} +@article{diebold1966, + author = {Diebold, A. R., Jr.}, + title = {The Reflection of Coresidence in Mareno Kinship Terminology}, + journal = {Ethnology}, + volume = {5}, + pages = {37-79}, + year = {1966}, + key = {Diebold (1966)}, + lgcode = {Huave [sanm1287]} +} +@book{dieterlen1951, + author = {Dieterlen, G.}, + title = {Essai sur la religion Bambara}, + publisher = {Paris: Presses Universitaires de France}, + address = {Paris}, + series = {Bibl. de sociologie contemporain}, + volume = {bl. de sociologie contemporaine}, + year = {1951}, + glottolog_ref = {eballiso2009:17734}, + key = {Dieterlen (1951)}, + lgcode = {Bambara [bamb1269]} +} +@article{dieterlen1956, + author = {Dieterlen, G.}, + title = {Parente et mariage chez les Dogon}, + journal = {Africa}, + volume = {26}, + pages = {107-148}, + year = {1956}, + key = {Dieterlen (1956)}, + lgcode = {Dogon [bank1259]} +} +@book{dieterlenandcisse1972, + author = {Dieterlen, G., and Y. Cisse.}, + title = {Les fondaments de la société d`initiation du Komo}, + publisher = {Paris: Mouton & Co.}, + address = {Paris}, + series = {Cahiers de l'homme: ethnologie, géographie, linguistique, nouvelle série}, + volume = {10}, + year = {1972}, + glottolog_ref = {eballiso2009:16502}, + key = {Dieterlen and Cisse (1972)}, + lgcode = {Bambara [bamb1269]} +} +@article{dietschy1959, + author = {Dietschy, H.}, + title = {Das Häuptlingswesen bei den Karaja}, + journal = {Mitt. Mus. Volkerk. Hamburg}, + address = {Hamburg}, + volume = {25}, + pages = {168-176}, + year = {1959}, + key = {Dietschy (1959)} +} +@misc{dietschy1962, + author = {Dietschy, H.}, + year = {1962}, + howpublished = {Personal communication}, + key = {Dietschy (1962)}, + lgcode = {Carajá [kara1500]} +} +@misc{dietschynd, + author = {Dietschy, H.}, + title = {Le systeme de parente et la structure des Indiens Caraja}, + howpublished = {Manuscript}, + key = {Dietschy (nd)}, + lgcode = {Carajá [kara1500]} +} +@article{dimdelobosom1933, + author = {Dim Delobosom, A. A.}, + title = {L'empire Mogho-Daba: Coutumes des Mossi de la Haute-Volta}, + journal = {Et. Sociol. Ethnol. Jurid.}, + volume = {11}, + pages = {1-308}, + year = {1933}, + key = {Dim Delobosom (1933)}, + lgcode = {Mossi (Ouagadougou) [moss1236]} +} +@article{dixon1905, + author = {Dixon, R. B.}, + title = {The Northern Maidu}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {17}, + pages = {119-346}, + year = {1905}, + key = {Dixon (1905)}, + lgcode = {Foothill Maidu [nort2951], Maidu [nort2952], Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244], Valley Maidu [vall1252]} +} +@article{dixon1907, + author = {Dixon, R. B.}, + title = {The Shasta}, + journal = {Bulletin of the American Museum of Natural History}, + volume = {17}, + pages = {381-498}, + year = {1907}, + key = {Dixon (1907)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]} +} +@article{dixon1910, + author = {Dixon, R. B.}, + title = {The Chimariko Indians and Language}, + journal = {Univ. Calif. Publ. Amer. Arch. Ethn.}, + volume = {5}, + number = {5}, + pages = {293-380}, + year = {1910}, + url = {https://archive.org/details/chimarikoindians00dixorich}, + key = {Dixon (1910)}, + lgcode = {Chimariko [chim1301]} +} +@book{dobrizhoffer1822, + author = {Dobrizhoffer, M.}, + title = {An Account of the Abipones. 3v}, + address = {London}, + year = {1822}, + key = {Dobrizhoffer (1822)}, + lgcode = {Abipón [abip1241]} +} +@book{doke1931, + author = {Doke, C. M.}, + title = {The Lambas of Northern Rhodesia}, + address = {London}, + year = {1931}, + key = {Doke (1931)}, + lgcode = {Lamba [lamb1271]} +} +@article{dole1958, + author = {Dole, G. E.}, + title = {Ownership and Exchange Among the Kuikuru Indians}, + journal = {Revista do Museu Paulista, n. s.}, + volume = {10}, + pages = {125-133}, + year = {1958}, + key = {Dole (1958)}, + lgcode = {Kuikuru [kuik1246]} +} +@misc{dole1961, + author = {Dole, G. E.}, + title = {The Influence of Population Density on the Development of Social Organization Among the Amahuaca of East Peru}, + year = {1961}, + howpublished = {Paper presented at American Anthropological Association meeting, Philadelphia}, + key = {Dole (1961)}, + lgcode = {Amahuaca [amah1246]} +} +@article{dole1962, + author = {Dole, G. E.}, + title = {Endocannibalism Among the Amahuaca Indians}, + journal = {Transactions of the New York Academy of Sciences, ser. 2}, + volume = {24}, + pages = {567-573}, + year = {1962}, + key = {Dole (1962)}, + lgcode = {Amahuaca [amah1246]} +} +@book{dolganovaetal1995, + author = {Dolganova, L. N. and I. A. Morozov and E. N. Minasenko}, + title = {Igry i razvlechenija udmurtov: istorija i sovremennost' (Games and Entertainments of the Udmurt: History and Modernity)}, + address = {Moscow}, + year = {1995}, + key = {Dolganova et al. (1995)}, + lgcode = {Udmurt [sout2681]} +} +@book{dollone1912, + author = {D'Ollone, H. M.}, + title = {In Forbidden China}, + address = {Boston}, + year = {1912}, + key = {D'Ollone (1912)}, + lgcode = {Lolo [sich1238]} +} +@phdthesis{donald1968a, + author = {Donald, L. H.}, + title = {Changes in Yalunka Social Organization}, + school = {University of Oregon}, + year = {1968}, + key = {Donald (1968a)}, + lgcode = {Yalunka [yalu1240]} +} +@misc{donald1968b, + author = {Donald, L. H.}, + year = {1968}, + howpublished = {Personal communication}, + key = {Donald (1968b)}, + lgcode = {Yalunka [yalu1240]} +} +@book{donner1932, + author = {Donner, K.}, + title = {Samojedische Woerterverzeichnisse}, + publisher = {Helsinki: Suomalais-Ugrilainen Sura}, + address = {Helsinki}, + series = {Suomalais-Ugrilaisen Seuran Toimituksia}, + volume = {64}, + pages = {vi+171}, + year = {1932}, + glottolog_ref = {mpieva:Donner1932Samojedi}, + key = {Donner (1932)}, + lgcode = {Selkup [selk1253]} +} +@book{donner1954, + author = {Donner, K.}, + title = {Among the Samoyed in Siberia}, + address = {New Haven}, + year = {1954}, + key = {Donner (1954)}, + lgcode = {Selkup [selk1253], Yurak-Samoyeds [nene1249]}, + note = {Trans} +} +@book{donoghue1964, + author = {Donoghue, J. D.}, + title = {Cam Ani, a Fishing Village in Central Vietnam}, + address = {Lansing}, + year = {1964}, + key = {Donoghue (1964)}, + lgcode = {Annamese [viet1252]} +} +@misc{donoghue1972, + author = {Donoghue, J. D.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Donoghue (1972)}, + lgcode = {Rade [rade1240]} +} +@book{donoghueetal1962, + author = {Donoghue, J. D. and D. D. Whitney and I. Ishino}, + title = {People in the Middle: The Rhade of South Vietnam}, + address = {East Lansing}, + year = {1962}, + key = {Donoghue et al. (1962)}, + lgcode = {Rade [rade1240]} +} +@book{dorman1935, + author = {Dorman, S. S.}, + title = {Pygmies and Bushmen of the Kalahari}, + publisher = {Seeley, Service & Co.}, + address = {London}, + year = {1935}, + key = {Dorman (1935)}, + lgcode = {Tswana [tswa1253]} +} +@article{dorsey1884, + author = {Dorsey, J. O.}, + title = {Omaha Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {3}, + pages = {205-320}, + year = {1884}, + key = {Dorsey (1884)}, + lgcode = {Omaha [omah1248]} +} +@article{dorsey1894, + author = {Dorsey, J. O.}, + title = {Siouan Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {15}, + pages = {218-222}, + year = {1894}, + key = {Dorsey (1894)}, + lgcode = {Teton [lako1247]} +} +@article{dorsey1897, + author = {Dorsey, J. O.}, + title = {Siouan Sociology}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {15}, + pages = {205-244}, + year = {1897}, + key = {Dorsey (1897)}, + lgcode = {Ponca [ponc1241]} +} +@book{dorsey1904a, + author = {Dorsey, G. A.}, + title = {The Mythology of the Wichita}, + address = {Washington}, + year = {1904}, + key = {Dorsey (1904a)}, + lgcode = {Wichita [wich1260]} +} +@article{dorsey1904b, + author = {Dorsey, G. A.}, + title = {Traditions of the Skidi Pawnee}, + journal = {Memoirs of the American Folk-Lore Society}, + volume = {8}, + pages = {1-366}, + year = {1904}, + key = {Dorsey (1904b)}, + lgcode = {Pawnee [pawn1254]} +} +@article{dorseyandmurie1940, + author = {Dorsey, G. A., and J. R. Murie.}, + title = {Notes on Skidi Pawnee Society}, + journal = {Field Museum of Natural History Anthropological Series}, + volume = {27}, + pages = {67-119}, + year = {1940}, + key = {Dorsey and Murie (1940)}, + lgcode = {Pawnee [pawn1254]} +} +@incollection{dossantos1901, + author = {Dos Santos, J.}, + editor = {G. M. Theal}, + title = {Eastern Ethiopia}, + booktitle = {Records of South-Eastern Africa}, + address = {London}, + volume = {7}, + pages = {183-383}, + year = {1901}, + key = {Dos Santos (1901)}, + lgcode = {Ndau [ndau1241]} +} +@article{douglas1952, + author = {Douglas,.}, + title = {Alternate Generations Among the Lele of the Kasai}, + journal = {Africa}, + volume = {22}, + pages = {59-65}, + year = {1952}, + key = {Douglas (1952)}, + lgcode = {Lele [lele1265]} +} +@incollection{douglas1962, + author = {Douglas, M.}, + editor = {P. Bohannan and G. Dalton}, + title = {Lele Economy Compared with the Bushong}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {211-233}, + year = {1962}, + key = {Douglas (1962)}, + lgcode = {Lele [lele1265]} +} +@book{douglas1963, + author = {Douglas, M.}, + title = {The Lele of the Kasai}, + publisher = {London: Oxford University Press}, + address = {London}, + pages = {286}, + year = {1963}, + glottolog_ref = {hh:e:Douglas:Lele}, + key = {Douglas (1963)}, + lgcode = {Lele [lele1265]} +} +@phdthesis{douglass1967, + author = {Douglass, W. A.}, + title = {Opportunity, Choice-Making, and Rural Depopulation in Two Spanish Basque Villages}, + school = {University of Chicago}, + year = {1967}, + key = {Douglass (1967)}, + lgcode = {Spanish Basques [west1508]} +} +@book{douglass1969, + author = {Douglass, W. A.}, + title = {Death in Murelaga}, + address = {Seattle}, + year = {1969}, + key = {Douglass (1969)}, + lgcode = {French Basques [labo1236], Spanish Basques [west1508]} +} +@book{downs1956, + author = {Downs, R. E.}, + title = {The Religion of the Bare'e-speaking Toradja}, + address = {The Hague}, + year = {1956}, + key = {Downs (1956)}, + lgcode = {Toradja [pamo1252]} +} +@book{downs1966, + author = {Downs, J. F.}, + title = {The Two Worlds of the Washo: An Indian tribe of California and Nevada}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1966}, + key = {Downs (1966)}, + lgcode = {Washo [wash1253]} +} +@book{doyly1929, + author = {D'Oyly, John.}, + title = {A Sketch of the Constitution of the Kandyan Kingom}, + publisher = {Government Printer, Ceylon}, + address = {Colombo}, + year = {1929}, + key = {D'Oyly (1929)}, + lgcode = {Sinhalese [sinh1246]} +} +@article{dozier1954, + author = {Dozier, E. P.}, + title = {The Hopi-Tewa of Arizona}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {44}, + number = {3}, + pages = {259-376}, + year = {1954}, + glottolog_ref = {hh:e:Dozier:Hopi-Tewa}, + key = {Dozier (1954)}, + lgcode = {Hano [ariz1237], Nambé Pueblo [namb1296], Ohkay Owingeh [sanj1276], San Ildefonso [sani1273]} +} +@incollection{dozier1961, + author = {Dozier, E. C.}, + editor = {Spicer, Edward H.}, + title = {Rio Grande Pueblos}, + booktitle = {Perspectives in American Indian Culture Change}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {94-186}, + year = {1961}, + key = {Dozier (1961)}, + lgcode = {San Ildefonso [sani1273]} +} +@book{dozier1966a, + author = {Dozier, E. P.}, + title = {Mountain Arbiters}, + address = {Tucson}, + year = {1966}, + key = {Dozier (1966a)}, + lgcode = {Kalinga [lubu1243]} +} +@article{dozier1966b, + author = {Dozier, E. P.}, + title = {Factionalism at Santa Clara Pueblo}, + journal = {Ethnology}, + volume = {5}, + number = {2}, + pages = {172-185}, + year = {1966}, + key = {Dozier (1966b)}, + lgcode = {Santa Clara [sant1421]} +} +@book{dozier1967, + author = {Dozier, E. P.}, + title = {The Kalinga of Northern Luzon}, + address = {New York}, + year = {1967}, + key = {Dozier (1967)}, + lgcode = {Kalinga [lubu1243]} +} +@book{dozier1970, + author = {Dozier, Edward P.}, + title = {The Pueblo Indians of North America}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1970}, + key = {Dozier (1970)}, + lgcode = {Hopi [hopi1249], Nambé Pueblo [namb1296], San Ildefonso [sani1273], Santa Clara [sant1421]} +} +@article{drabbe1940, + author = {Drabbe, P.}, + title = {Het leven van den Tanembarees}, + journal = {Int. Arch. Ethnog.}, + volume = {38}, + pages = {1-432}, + year = {1940}, + key = {Drabbe (1940)}, + lgcode = {Tanimbarese [sela1259], Toradja [pamo1252]}, + note = {Supplement} +} +@phdthesis{draper1972, + author = {Draper, Patricia}, + title = {!Kung Bushman childhood}, + school = {Harvard}, + year = {1972}, + glottolog_ref = {eballiso2009:50521}, + key = {Draper (1972)}, + lgcode = {!Kung [juho1239]} +} +@incollection{draper1975, + author = {Draper, Patricia}, + editor = {Reiter, Rayna P.}, + title = {!Kung women: contrasts in sexual egalitarianism in foraging and sedentary context}, + booktitle = {Toward an Anthropology of Women}, + publisher = {Monthly Review Press}, + address = {New York}, + pages = {77-109}, + year = {1975}, + glottolog_ref = {eballiso2009:50548}, + key = {Draper (1975)}, + lgcode = {!Kung [juho1239]} +} +@book{draper1978, + author = {Draper, Patricia}, + title = {The Learning Environment for Aggression and Anti-Social Behavior among the !Kung}, + year = {1978}, + key = {Draper (1978)}, + lgcode = {!Kung [juho1239]} +} +@misc{drapernd, + author = {Draper, Patricia}, + title = {!Kung Subsistence Work at /Du/da.}, + howpublished = {forthcoming}, + key = {Draper (nd)}, + lgcode = {!Kung [juho1239]} +} +@misc{draperperscomm1993, + author = {Draper, Patricia}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Draper pers. comm. (1993)}, + lgcode = {Kaurna [kaur1267]} +} +@book{dreyfus1900, + author = {Dreyfus, C.}, + title = {Six mois dans l'Attie}, + address = {Paris}, + year = {1900}, + key = {Dreyfus (1900)}, + lgcode = {Attie [atti1239]} +} +@book{dreyfus1963, + author = {Dreyfus, S.}, + title = {Les Kayapo du nord}, + address = {Paris and La Haye}, + year = {1963}, + key = {Dreyfus (1963)}, + lgcode = {Kayapo [kaya1330]} +} +@article{driberg1922, + author = {Driberg, J. H.}, + title = {A Preliminary Account of the Didinga}, + journal = {Sudan Notes and Records}, + volume = {5}, + pages = {208-222}, + year = {1922}, + glottolog_ref = {eballiso2009:1206}, + key = {Driberg (1922)}, + lgcode = {Didinga [didi1258]} +} +@book{driberg1923, + author = {Driberg, J. H.}, + title = {The Lango}, + address = {London}, + year = {1923}, + key = {Driberg (1923)}, + lgcode = {Lango [lang1324]} +} +@article{driberg1925a, + author = {Driberg, J. H.}, + title = {Didinga Customary Law}, + journal = {Sudan Notes and Records}, + volume = {8}, + pages = {153-175}, + year = {1925}, + key = {Driberg (1925a)}, + lgcode = {Didinga [didi1258]} +} +@article{driberg1925b, + author = {Driberg, J. H.}, + title = {LAfon Hill}, + journal = {Sudan Notes and Records}, + volume = {8}, + pages = {47-57}, + year = {1925}, + key = {Driberg (1925b)}, + lgcode = {Pari [pari1256]} +} +@book{driberg1932, + author = {Driberg, J. H.}, + title = {At Home with the Savage}, + address = {New York}, + year = {1932}, + key = {Driberg (1932)}, + lgcode = {Didinga [didi1258]} +} +@article{driberg1932a, + author = {Driberg, J. H.}, + title = {Some Aspects of Lango Kinship}, + journal = {Sociologus}, + volume = {8}, + pages = {44-61}, + year = {1932}, + key = {Driberg (1932a)} +} +@article{driver1936, + author = {Driver, H. E.}, + title = {Wappo Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {36}, + pages = {179-220}, + year = {1936}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-004.pdf}, + key = {Driver (1936)}, + lgcode = {Wappo [wapp1239]} +} +@article{driver1937, + author = {Driver, H. E.}, + title = {Southern Sierra Nevada}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {53-154}, + year = {1937}, + key = {Driver (1937)}, + lgcode = {Eastern Mono [mono1275], Kawaiisu [kawa1283], Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], Koso [pana1305], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Paiute (Las Vegas) [sout2969], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Tübalulabal [tuba1278], Tümpisa Shoshone (Panamint) [pana1305], Tümpisa Shoshone (Saline and Panamint) [pana1305], Western Mono [mono1275], Wukchumni [tule1245]} +} +@article{driver1939, + author = {Driver, H. E.}, + title = {Northwest California}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {297-433}, + year = {1939}, + key = {Driver (1939)}, + lgcode = {Cahto [kato1244], Chimariko [chim1301], Coast Yuki [yuki1243], Hupa [hupa1239], Karuk [karo1304], Mattole-Bear River [matt1238], Nongatl [wail1244], Sinkyone [wail1244], Tolowa [tolo1259], Wiyot [wiyo1248], Yurok [yuro1248]} +} +@book{driveranddriver1963, + author = {Driver, H. E., and W. Driver.}, + title = {Ethnography and Acculturation of the Chichimeca-Joanaz of Northeast Mexico}, + publisher = {Bloomington: Indiana University}, + address = {Bloomington}, + pages = {x+265}, + year = {1963}, + glottolog_ref = {hh:e:DriverDriver:Chichimeca-Jonaz}, + key = {Driver and Driver (1963)}, + lgcode = {Chichimeca [chic1272]} +} +@article{driverandmassey1957, + author = {Driver, H. E., and W. C. Massey.}, + title = {Comparative Studies of North American Indians}, + journal = {Trans. Amer. Phil. Soc., n. s.}, + volume = {47}, + pages = {ii, 165-456}, + year = {1957}, + key = {Driver and Massey (1957)}, + lgcode = {Coahuilteco [coah1252]} +} +@book{driverandmiles195255, + author = {Driver, G. R., and J. C. Miles.}, + title = {The Babylonian Laws. 2v}, + address = {Oxford}, + year = {1952-55}, + key = {Driver and Miles (1952-55)}, + lgcode = {Babylonians [akka1240]} +} +@article{drucker1936a, + author = {Drucker, P.}, + title = {The Tolowa and Their Southwest Oregon Kin}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + pages = {221-300}, + year = {1936}, + key = {Drucker (1936a)}, + lgcode = {Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{drucker1936b, + author = {Drucker, P.}, + title = {A Karuk World-Renewal Ceremony at Panamiuk}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {35}, + pages = {23-28}, + year = {1936}, + key = {Drucker (1936b)}, + lgcode = {Karuk [karo1304], Tututni [tutu1242]} +} +@article{drucker1937, + author = {Drucker, P.}, + title = {Southern California}, + journal = {Anth. Rec.}, + volume = {1}, + pages = {1-52}, + year = {1937}, + key = {Drucker (1937)}, + lgcode = {Akwa’ala [paip1241], Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Chemehuevi [chem1251], Cupeño [cupe1243], Kumeyaay [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253], Quechan [quec1382], San Juan [sout2969], Serrano [serr1255], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{drucker1937b, + author = {Drucker, Philip}, + title = {The Tolowa and Their Southwest Oregon Kin}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + pages = {221-300}, + year = {1937}, + key = {Drucker (1937b)}, + lgcode = {Chetco [tolo1259], Taltushtuntede [gali1261], Tolowa [tolo1259]} +} +@article{drucker1939, + author = {Drucker, P.}, + title = {Contributions to Alsea Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {35}, + number = {7}, + pages = {81-101}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp035-009.pdf}, + key = {Drucker (1939)}, + lgcode = {Alsea [alse1251]} +} +@article{drucker1940, + author = {Drucker, P.}, + title = {The Tolowa and Their Southwest Oregon Kin}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + number = {4}, + pages = {221-300}, + year = {1940}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-005.pdf}, + key = {Drucker (1940)}, + lgcode = {Haida (Northern) [nort2938], Haida (Southern) [sout2956], Haihais [oowe1239], Haisla [hais1244], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], Makah [maka1318], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], Quileute [quil1240], Tolowa [tolo1259], Tsimshian [nucl1649]} +} +@article{drucker1941, + author = {Drucker, P.}, + title = {Yuman-Piman}, + journal = {Anth. Rec.}, + volume = {6}, + pages = {91-230}, + year = {1941}, + key = {Drucker (1941)}, + lgcode = {Chemehuevi [chem1251], Cocopa [coco1261], Hualapai [wala1270], Kamia [kumi1248], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Maricopa [mari1440], Mojave [moha1256], Pima [akim1239], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Tohono O'odham [toho1246], Yaqui [yaqu1251], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{drucker1950, + author = {Drucker, P.}, + title = {Northwest Coast}, + journal = {Anthropological Records}, + volume = {9}, + pages = {157-294}, + year = {1950}, + key = {Drucker (1950)}, + lgcode = {Gitxsan [gitx1241], Haida (Northern) [nort2938], Haida (Southern) [sout2956], Haihais [oowe1239], Haisla [hais1244], Heiltsuk [bell1263], Kwakwaka'wakw [kwak1269], North Tlingit [tlin1245], Nuu chah nulth [nuuc1236], Nuxalk [bell1243], South Tlingit [tlin1245], Tsimshian [nucl1649]} +} +@book{drucker1951, + author = {Drucker, P.}, + title = {The Northern and Central Nootkan Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {144}, + pages = {1-480}, + year = {1951}, + key = {Drucker (1951)}, + lgcode = {Nuu chah nulth [nuuc1236]} +} +@book{drucker1965, + author = {Drucker, Philip}, + title = {Cultures of the North Pacific Coast}, + publisher = {Chandler Press}, + address = {San Francisco}, + year = {1965}, + key = {Drucker (1965)}, + lgcode = {Haida (Northern) [nort2938], Haida (Southern) [sout2956], Tsimshian [nucl1649]} +} +@incollection{drucker1990, + author = {Drucker, P.}, + editor = {W. Suttles}, + title = {Central Coast Salish}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {453-475}, + year = {1990}, + key = {Drucker (1990)}, + lgcode = {Squamish [squa1248]} +} +@book{druckerandheizer1967, + author = {Drucker, Philip, and Robert F. Heizer}, + title = {To Make My Name Good}, + publisher = {University of California Press}, + address = {Berkeley, Calif.}, + year = {1967}, + key = {Drucker and Heizer (1967)}, + lgcode = {Haisla [hais1244], Kwakwaka'wakw [kwak1269], North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@inproceedings{dry1956, + author = {Dry, D. P. L.}, + title = {Some Aspects of Hausa Family Structure}, + booktitle = {Proceedings of the International West African Conference (1949)}, + pages = {158-163}, + year = {1956}, + key = {Dry (1956)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@book{dube1955, + author = {Dube, S. C.}, + title = {Indian Village}, + address = {Ithaca}, + year = {1955}, + key = {Dube (1955)}, + lgcode = {Telugu [telu1262]} +} +@article{dube1956, + author = {Dube, S. C.}, + title = {Cultural Factors in Rural Community Development}, + journal = {Journal of Asian Studies}, + volume = {16}, + pages = {19-30}, + year = {1956}, + key = {Dube (1956)}, + lgcode = {Uttar Pradesh [bhoj1244]} +} +@article{dubie1953, + author = {Dubie, P.}, + title = {La vie materielle des Maures}, + journal = {Mem. Inst. Franc. Afr. Noire}, + volume = {23}, + pages = {111-252}, + year = {1953}, + key = {Dubie (1953)}, + lgcode = {Trarza [hass1238]} +} +@article{dubois1908, + author = {Du Bois, C. G.}, + title = {The Religion of the Luiseno Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {8}, + pages = {69-186}, + year = {1908}, + key = {Du Bois (1908)}, + lgcode = {Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253]} +} +@article{dubois1932, + author = {Du Bois, C. A.}, + title = {Tolowa Notes}, + journal = {American Anthropologist}, + volume = {34}, + pages = {248-262}, + year = {1932}, + key = {Du Bois (1932)}, + lgcode = {Tolowa [tolo1259]} +} +@book{dubois1935, + author = {Du Bois, C. A.}, + title = {Wintu Ethnography}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {36}, + number = {1}, + pages = {1-148}, + year = {1935}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-002.pdf}, + key = {Du Bois (1935)}, + lgcode = {Wintu [nucl1651], Wintu (McCloud River) [nucl1651], Wintu (Sacramento River) [nucl1651], Wintu (Trinity River) [nucl1651]} +} +@incollection{dubois1936, + author = {Du Bois, C.}, + title = {The Wealth Concept as an Integrative Factor in Tolowa-Tututni Culture}, + booktitle = {Essays in Anthropology Presented to A. L. Kroeber}, + address = {Berkeley}, + pages = {49-65}, + year = {1936}, + key = {Du Bois (1936)}, + lgcode = {Tolowa [tolo1259], Tututni [tutu1242]} +} +@article{dubois1938, + author = {Dubois, H. M.}, + title = {Monographie des Betsileo}, + journal = {Trav. Mem. Inst. Ethnol.}, + volume = {34}, + pages = {1-1510}, + year = {1938}, + key = {Dubois (1938)}, + lgcode = {Betsileo [bets1235]} +} +@article{dubois1940, + author = {Du Bois, C.}, + title = {How They Pay Debts in Alor}, + journal = {Asia}, + volume = {40}, + pages = {482-486}, + year = {1940}, + key = {Du Bois (1940)}, + lgcode = {Alorese [abui1241]} +} +@incollection{dubois1941, + author = {Du Bois, C.}, + editor = {L. Spier et al.}, + title = {Attitudes Toward Food and Hunger in Alor}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {272-281}, + year = {1941}, + key = {Du Bois (1941)}, + lgcode = {Alorese [abui1241]} +} +@book{dubois1944, + author = {Du Bois, C.}, + title = {The People of Alor}, + address = {Minneapolis}, + year = {1944}, + key = {Du Bois (1944)}, + lgcode = {Alorese [abui1241]} +} +@incollection{dubois1945, + author = {Du Bois, C.}, + editor = {A. Kardiner}, + title = {The Alorese}, + booktitle = {The Psychological Frontiers of Society}, + address = {New York}, + pages = {101-145}, + year = {1945}, + key = {Du Bois (1945)}, + lgcode = {Alorese [abui1241]} +} +@article{duchaillu1861, + author = {Du Chaillu, P. B.}, + title = {Observations on the People of Western Equatorial Africa}, + journal = {Trans. Ethnol. Soc. London, n. s.}, + volume = {1}, + pages = {305-315}, + year = {1861}, + glottolog_ref = {eballiso2009:7544}, + key = {Du Chaillu (1861)}, + lgcode = {Mpongwe [myen1241]} +} +@incollection{duff1951, + author = {Duff, Wilson}, + title = {Notes on Carrier Social Organization}, + booktitle = {Anthropology in British Columbia}, + volume = {2}, + pages = {28-34}, + year = {1951}, + key = {Duff (1951)}, + lgcode = {Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@misc{duff1952, + author = {Duff, Wilson}, + title = {The Upper Stalo Indians of the Fraser River of B. C.}, + publisher = {British Columbia Provincial Museum}, + address = {Victoria}, + series = {Anthropology in British Columbia Memoir}, + number = {1}, + pages = {1-136}, + year = {1952}, + key = {Duff (1952)}, + lgcode = {Stó:lō [chil1281]} +} +@article{duffsutherlanddunbar1915, + author = {Duff-Sutherland-Dunbar, G.}, + title = {Abors and Galongs}, + publisher = {Memoirs of the Asiatic Society of Bengal 5 (Extra number)}, + volume = {5 (Extra number)}, + year = {1915}, + glottolog_ref = {lapolla-tibeto-burman:524}, + key = {Duff-Sutherland-Dunbar (1915)}, + lgcode = {Adi [bori1243]} +} +@book{duffy1959, + author = {Duffy, J.}, + title = {Portuguese Africa}, + address = {Cambridge, Mass.}, + year = {1959}, + key = {Duffy (1959)}, + lgcode = {Mbundu [umbu1257]} +} +@article{dugast1944, + author = {Dugast, I.}, + title = {L'agriculture chez les Ndiki de population Banên}, + journal = {Bulletin de la Soci‚t‚ d'Etudes Cameroun, n. s.}, + volume = {8}, + pages = {7-130}, + year = {1944}, + key = {Dugast (1944)}, + lgcode = {Banen [tune1261]} +} +@article{dugast1949, + author = {Dugast, I.}, + title = {Inventaire ethnique du Sud-Cameroun}, + journal = {Mem. Inst. Franc. Afr. Noire, Cent. Cameroun, Ser. Pop.}, + publisher = {Dakar}, + series = {Mémoires de l'IFAN (Inst. Français de l'Afrique Noire), série 'populations'}, + volume = {1}, + pages = {1-159}, + year = {1949}, + glottolog_ref = {eballiso2009:52161}, + key = {Dugast (1949)}, + lgcode = {Ngumba [kwas1243]} +} +@book{dugast1955, + author = {Dugast, I.}, + title = {Monographie de la tribu des Ndiki: Vie matérielle}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {58}, + number = {i}, + pages = {1-824}, + year = {1955}, + key = {Dugast (1955)}, + lgcode = {Banen [tune1261]} +} +@misc{dugast1959, + author = {Dugast, I.}, + title = {Monographie de la tribu des Ndiki. Vie sociale et familiale}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {58}, + number = {ii}, + pages = {1-635}, + year = {1959}, + key = {Dugast (1959)}, + lgcode = {Banen [tune1261]} +} +@book{duggancronin1929, + author = {Duggan-Cronin, A. M.}, + title = {The Bantu tribes of South Africa. Volume 2, Section 1, The Suto-Chuana Tribes, Subgroup 1, the Bechuana}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1929}, + key = {Duggan-Cronin (1929)}, + lgcode = {Tswana [tswa1253]} +} +@misc{duggancronin1931, + author = {Duggan-Cronin, A. M.}, + title = {The Bantu tribes of South Africa, Vol. 2, Section 2, sub-group 2, the Bapedi Transvaal Basotho}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1931}, + key = {Duggan-Cronin (1931)}, + lgcode = {Pedi [tswe1238]}, + note = {with introductory article on the Bapedi by Werner Eiselen} +} +@article{dulphy1939, + author = {Dulphy, M.}, + title = {Coutume serere de la Petite-Cote}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {237-321}, + year = {1939}, + key = {Dulphy (1939)}, + lgcode = {Serer [sere1260]} +} +@article{dumarest1919, + author = {Dumarest, N.}, + title = {Notes on Chochiti}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {27}, + pages = {137-237}, + year = {1919}, + key = {Dumarest (1919)}, + lgcode = {Cochiti [coch1273]} +} +@book{duncanjohnstoneandblair1932, + author = {Duncan-Johnstone, A., and H. A. Blair.}, + title = {Enquiry into the Constitution and Organisation of the Dagbon Kingdom}, + address = {Accra}, + year = {1932}, + key = {Duncan-Johnstone and Blair (1932)}, + lgcode = {Dagomba [dagb1246]} +} +@book{duncankemp1964, + author = {Duncan-Kemp, A. M.}, + title = {Where Strange Paths Go Down}, + publisher = {W. R. Smith and Paterson}, + address = {Brisbane}, + year = {1964}, + key = {Duncan-Kemp (1964)}, + lgcode = {Karuwali [karr1236]} +} +@article{dundas1915, + author = {Dundas, C.}, + title = {The Organization and Laws of Some Bantu Tribes of East Africa}, + journal = {Journ. Roy Anth. Inst.}, + volume = {45}, + pages = {234-306}, + year = {1915}, + glottolog_ref = {eballiso2009:2269}, + key = {Dundas (1915)}, + lgcode = {Kamba [kamb1297]} +} +@book{dundas1924, + author = {Dundas, C.}, + title = {Kilimanjaro and Its Peoples}, + address = {London}, + year = {1924}, + key = {Dundas (1924)}, + lgcode = {Chagga [moch1256]} +} +@article{dunglas1939, + author = {Dunglas, E.}, + title = {Coutumes et moeurs des Bete}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {10}, + pages = {361-451}, + year = {1939}, + key = {Dunglas (1939)}, + lgcode = {Bete [dalo1238]} +} +@book{duningorkavich1904, + author = {Dunin-Gorkavich, A. A.}, + title = {Tobol'skij Sever}, + address = {St. Petersburg}, + year = {1904}, + key = {Dunin-Gorkavich (1904)}, + lgcode = {Mansi [mans1258]} +} +@book{dunn1956, + author = {Dunn, H. d.}, + title = {Pagan Peoples of the Central Area of Northern Nigeria}, + address = {London}, + year = {1956}, + key = {Dunn (1956)}, + lgcode = {Gure [gbir1241]} +} +@incollection{dunn1971a, + author = {Dunn, E.}, + editor = {J. R. Millar}, + title = {The Importance of Religion in the Soviet Rural Community}, + booktitle = {The Soviet Rural Community}, + pages = {346-375}, + year = {1971}, + key = {Dunn (1971a)}, + lgcode = {Russians [russ1263]} +} +@incollection{dunn1971b, + author = {Dunn, S. P.}, + editor = {J. R. Millar}, + title = {Structure and Functions of the Soviet Rural Family}, + booktitle = {The Soviet Rural Community}, + address = {Urbana}, + pages = {325-345}, + year = {1971}, + key = {Dunn (1971b)}, + lgcode = {Russians [russ1263]} +} +@article{dunnanddunn1963, + author = {Dunn, S. P., and E. Dunn.}, + title = {The Great Russian Peasant}, + journal = {Ethnology}, + address = {Urbana}, + volume = {2}, + pages = {320-338}, + year = {1963}, + key = {Dunn and Dunn (1963)}, + lgcode = {Russians [russ1263]} +} +@book{dunnanddunn1967, + author = {Dunn, S. P., and E. Dunn.}, + title = {The Peasants of Central Russia}, + address = {New York}, + year = {1967}, + key = {Dunn and Dunn (1967)}, + lgcode = {Russians [russ1263]} +} +@book{dunning1959, + author = {Dunning, R. W.}, + title = {Social and Economic Change among the Northern Ojibwa}, + publisher = {University of Toronto Press}, + address = {Toronto}, + year = {1959}, + key = {Dunning (1959)}, + lgcode = {North Albany Ojibwa [wini1244], Pekangekum [lacs1238]} +} +@article{dunning1959a, + author = {Dunning, R. W.}, + title = {Rules of Residence and Ecology Among the Northern Ojibwa}, + journal = {American Anthropologist}, + volume = {61}, + pages = {806-816}, + year = {1959}, + key = {Dunning (1959a)}, + lgcode = {Pekangekum [lacs1238]} +} +@book{dunning1959b, + author = {Dunning, R. W.}, + title = {Social and Economic Change Among the Northern Ojibwa}, + address = {Toronto}, + year = {1959}, + key = {Dunning (1959b)}, + lgcode = {Northern Saulteaux [alba1270], Pekangekum [lacs1238]} +} +@article{dupicq1931, + author = {Ardant du Picq.}, + title = {Les Dyerma}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {14}, + pages = {461-704}, + year = {1931}, + key = {du Picq (1931)}, + lgcode = {Zerma [zarm1239]} +} +@book{dupire1962a, + author = {Dupire, M.}, + title = {Peuls nomades: Etude descriptive des Wodaabe nomades du sahel nigerien}, + address = {Paris}, + series = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {64}, + pages = {1-327}, + year = {1962}, + key = {Dupire (1962a)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{dupire1962b, + author = {Dupire, M.}, + editor = {P. Bohannan and G. Dalton}, + title = {Trade and Markets in the Economy of the Nomadic Fulani of Niger}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {335-62}, + year = {1962}, + key = {Dupire (1962b)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{dupire1963, + author = {Dupire, M.}, + editor = {D. Paulme}, + title = {The Position of Women in a Pastoral Society (Wodaabe)}, + booktitle = {Women of Tropical Africa}, + address = {Berkeley (and London)}, + pages = {47-92}, + year = {1963}, + key = {Dupire (1963)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@article{durand1929, + author = {Durand, O.}, + title = {Moeurs et instuttions d'une famille peule}, + journal = {Bull. Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {12}, + pages = {1-85}, + year = {1929}, + key = {Durand (1929)}, + lgcode = {Futajalonke [pula1262]} +} +@book{durham1909, + author = {Durham, M. E.}, + title = {High Albania}, + address = {London}, + year = {1909}, + key = {Durham (1909)}, + lgcode = {Gheg [gheg1238]} +} +@book{durham1928, + author = {Durham, M. E.}, + title = {Some Tribal Origins, Laws and Customs of the Balkans}, + address = {London}, + year = {1928}, + key = {Durham (1928)}, + lgcode = {Gheg [gheg1238]} +} +@article{durlach1928, + author = {Durlach, T.}, + title = {The Relationship Systems of the Tlingit, Haida and Tsimshian}, + journal = {Publ. Amer. Ethn. Soc.}, + volume = {11}, + pages = {1-177}, + year = {1928}, + key = {Durlach (1928)}, + lgcode = {Tlingit [tlin1245]} +} +@book{dutertre1667, + author = {Du Tertre, J. B.}, + title = {Histoire générale des Antilles habitées par les Français, v. 2, 2d edit.}, + address = {Paris}, + year = {1667}, + key = {Du Tertre (1667)}, + lgcode = {Callinago [isla1278]} +} +@book{duttandgeib1987, + author = {Dutt, A.K. and Geib, M.M.}, + title = {Fully Annotated Atlas of South Asia}, + year = {1987}, + key = {Dutt and Geib (1987)}, + lgcode = {Toda [toda1252]} +} +@book{dutton1923, + author = {Dutton, Eric Aldhelm Torlough}, + title = {The Basuto of Basutoland}, + publisher = {Jonathan Cape}, + address = {London}, + year = {1923}, + key = {Dutton (1923)}, + lgcode = {Sotho [sout2807]} +} +@article{duvallee1925, + author = {Duvallee.}, + title = {Le Baghirmi}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {3-76}, + year = {1925}, + key = {Duvallee (1925)}, + lgcode = {Bagirmi [bagi1246]} +} +@book{duveyrier1864, + author = {Duveyrier, H.}, + title = {Les Touareg du nord}, + address = {Paris}, + year = {1864}, + key = {Duveyrier (1864)}, + lgcode = {Azjer [ghat1242]} +} +@article{dysonhudson1963, + author = {Dyson-Hudson, N.}, + title = {The Karimojong Age System}, + journal = {Ethnology}, + volume = {2}, + pages = {353-401}, + year = {1963}, + glottolog_ref = {eballiso2009:32778}, + key = {Dyson-Hudson (1963)}, + lgcode = {Karamojong [nucl1430]} +} +@article{dzhanashvili1894, + author = {Dzhanashvili, M. G.}, + title = {Abkhaziya i Abkhaztsy}, + journal = {Zapiski Kavkazskago Otdiela Inperalorskago Russkago Geograficheskago Obshchestva}, + address = {Tiflis}, + volume = {16}, + pages = {1-59}, + year = {1894}, + key = {Dzhanashvili (1894)}, + lgcode = {Abkhaz [abkh1244]} +} +@book{earle1832, + author = {Earle, A.}, + title = {A Narrative of Nine Months' Residence in New Zealand in 1827}, + address = {London}, + year = {1832}, + key = {Earle (1832)}, + lgcode = {Māori [maor1246]} +} +@book{earthy1933, + author = {Earthy, E. D.}, + title = {Valenge Woman}, + address = {London}, + year = {1933}, + key = {Earthy (1933)}, + lgcode = {Lenge [leng1257]} +} +@incollection{ebihara1964, + author = {Ebihara, M.}, + editor = {LeBar, Frank M. and Hickey, Gerald C. and Musgrave, John K.}, + title = {Khmer}, + booktitle = {Ethnic Groups of Mainland Southeast Asia}, + publisher = {Human Relations Area Files Press}, + address = {New Haven}, + pages = {94-105}, + year = {1964}, + glottolog_ref = {sala:2514}, + key = {Ebihara (1964)}, + lgcode = {Khmer [cent1989]} +} +@incollection{edel1937, + author = {Edel, M. M.}, + editor = {M. Mead}, + title = {The Bachiga of East Africa}, + booktitle = {Cooperation and Competition Among Primitive Peoples}, + address = {New York}, + pages = {127-152}, + year = {1937}, + glottolog_ref = {eballiso2009:51249}, + key = {Edel (1937)}, + lgcode = {Kiga [chig1238]} +} +@book{edel1957, + author = {Edel, M. M.}, + title = {The Chiga of Western Uganda}, + publisher = {New York: Oxford Univ. Press; International African Inst. (IAI)}, + address = {New York}, + year = {1957}, + glottolog_ref = {eballiso2009:9341}, + key = {Edel (1957)}, + lgcode = {Kiga [chig1238]} +} +@article{eder1978, + author = {Eder, J.F.}, + title = {The Caloric Returns to Food Collecting: Disruption and Change among the Batak of the Philippine Tropical Forest}, + journal = {Human Ecology}, + volume = {6}, + number = {1}, + pages = {55-69}, + year = {1978}, + key = {Eder (1978)}, + lgcode = {Palawan Batak [bata1301]} +} +@article{eder1984, + author = {Eder, J.F.}, + title = {The Impact of Subsistence Change on Mobility and Settlement Pattern in a Tropical Forest Foraging Economy: Some Implications for Archeology}, + journal = {American Anthropologist}, + volume = {86}, + pages = {837-853}, + year = {1984}, + key = {Eder (1984)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{eder1987, + author = {Eder, J.F.}, + title = {On the Road to Tribal Extinction: Depopulation, Deculturation, and Adaptive Well-Being among the Batak of the Philippines}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1987}, + key = {Eder (1987)}, + lgcode = {Palawan Batak [bata1301]} +} +@book{edwards1962, + author = {Edwards, A. C.}, + title = {The Ovimbundu under Two Sovereignties}, + address = {London}, + year = {1962}, + key = {Edwards (1962)}, + lgcode = {Mbundu [umbu1257]} +} +@article{eells1877, + author = {Eells, M.}, + title = {Twana Indians of the Skokomish Reservation}, + journal = {Bulletins of the U. S. Geographical and Geological survey of the Territories}, + volume = {3}, + pages = {57-114}, + year = {1877}, + key = {Eells (1877)}, + lgcode = {Twana [twan1247]} +} +@article{eells1884, + author = {Eells, M.}, + title = {Census of the Challam and Twana Indians of Washington}, + journal = {American Antiquarian and Oriental Journal}, + volume = {6}, + pages = {35-38}, + year = {1884}, + key = {Eells (1884)}, + lgcode = {Klallam [clal1241], Twana [twan1247]} +} +@article{eells1887a, + author = {Eells, M.}, + title = {Decrease of Population among the Indians of Puget Sound}, + journal = {American Antiquarian and Oriental Journal}, + volume = {9}, + pages = {271-276}, + year = {1887}, + key = {Eells (1887a)}, + lgcode = {Twana [twan1247]} +} +@article{eells1887b, + author = {Eells, M.}, + title = {The Twana, Chemakum and Clallum Indians of Washington}, + journal = {Ann. Rep. Smiths. Inst.}, + volume = {1886-87}, + pages = {605-681}, + year = {1887}, + key = {Eells (1887b)}, + lgcode = {Klallam [clal1241]} +} +@book{efimenko1877, + author = {Efimenko, A.}, + title = {Narodnye juridicheskie obychai loparej, karelov i samoedov Arhangel'skoj Guberii (Traditional Legal Customs of the Saami, Karelians, and Samoyeds of the Arhangel'skajaG uberia)}, + address = {St. Petersburg}, + year = {1877}, + key = {Efimenko (1877)}, + lgcode = {Karelians [livv1243]} +} +@book{efremova1982, + author = {Efremova, L. S.}, + title = {Latyshskajak rest'janskajase m'jav Latgale, 1860-1939 (Latvian Rural Family in Latgal)}, + address = {Riga}, + year = {1982}, + key = {Efremova (1982)}, + lgcode = {Latvians [latv1249]} +} +@article{egboh1971, + author = {Egboh, E. O.}, + title = {The beginning of the end of traditional religion in Iboland, Southeastern Nigeria}, + journal = {Civilizations}, + volume = {21}, + pages = {269-279}, + year = {1971}, + key = {Egboh (1971)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh1972a, + author = {Egboh, E. O.}, + title = {A reassessment of the concept of Ibo traditional religion}, + journal = {Numen}, + volume = {19}, + pages = {68-79}, + year = {1972}, + key = {Egboh (1972a)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh1972b, + author = {Egboh, E. O.}, + title = {Polygamy in Iboland, South-eastern Nigeria: with special reference to polygamy practice among Christian Ibos}, + journal = {Civilizations}, + volume = {22}, + pages = {431-444}, + year = {1972}, + key = {Egboh (1972b)}, + lgcode = {Igbo [nucl1417]} +} +@article{egboh19734, + author = {Egboh, E. O.}, + title = {The place of women in the Ibo society of Southeastern Nigeria, from earliest times to the present}, + journal = {Civilizations}, + volume = {23-24}, + pages = {305-316}, + year = {1973/4}, + key = {Egboh (1973/4)}, + lgcode = {Igbo [nucl1417]} +} +@book{egede1818, + author = {Egede, H.}, + title = {A description of Greenland}, + publisher = {Allman}, + address = {London}, + year = {1818}, + key = {Egede (1818)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{egerton1939, + author = {Egerton, F. C. C.}, + title = {African Majesty}, + address = {New York}, + year = {1939}, + key = {Egerton (1939)}, + lgcode = {Bamileke [fefe1239]} +} +@incollection{eggan1937, + author = {Eggan, F.}, + editor = {F. Eggan}, + title = {The Cheyenne and Arapaho Kinship System}, + booktitle = {Social Anthropology of North American Tribes: Essays in Social Organization, Law and Religion}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {35-98}, + year = {1937}, + key = {Eggan (1937)}, + lgcode = {Arapaho [arap1274]} +} +@article{eggan1937a, + author = {Eggan, F.}, + title = {Historical Changes in the Choctaw Kinship System}, + journal = {American Anthropologist}, + volume = {39}, + pages = {34-52}, + year = {1937}, + key = {Eggan (1937a)}, + lgcode = {Choctaw [choc1276], Yuchi [yuch1247]} +} +@incollection{eggan1937b, + author = {Eggan, F.}, + editor = {Eggan}, + title = {The Cheyenne and Arapaho Kinship System}, + booktitle = {Social Anthropology of North American Tribes}, + address = {Chicago}, + pages = {33-95}, + year = {1937}, + key = {Eggan (1937b)}, + lgcode = {Arapaho [arap1274], Cheyenne [chey1247]} +} +@book{eggan1950, + author = {Eggan, F.}, + title = {Social Organization of the Western Pueblo}, + address = {Chicago}, + year = {1950}, + key = {Eggan (1950)}, + lgcode = {Acoma [acom1246], Hopi [hopi1249], Laguna [acom1246], Zuni [zuni1245]} +} +@article{eggan1960, + author = {Eggan, F.}, + title = {The Sagada Igorots of Northern Luzon}, + journal = {Viking Fund. Publ. Anth.}, + volume = {29}, + pages = {24-50}, + year = {1960}, + key = {Eggan (1960)}, + lgcode = {Sagada [nort2877]} +} +@book{egganandpandey1979, + author = {Eggan, F. and Pandey, T.N.}, + title = {Zuni History, 1850 - 1970}, + year = {1979}, + key = {Eggan and Pandey (1979)}, + lgcode = {Zuni [zuni1245]} +} +@incollection{eglar1957, + author = {Eglar, Z. S.}, + editor = {S. Maron}, + title = {Panjabi Village Life}, + booktitle = {Pakistan: Society and Culture}, + address = {Chapel Hill}, + pages = {62-80}, + year = {1957}, + key = {Eglar (1957)}, + lgcode = {Punjabi [west2386]} +} +@book{eglar1960, + author = {Eglar, Z. S.}, + title = {A Punjabi Village in Pakistan}, + address = {New York}, + year = {1960}, + key = {Eglar (1960)}, + lgcode = {Punjabi [west2386]} +} +@book{ehrenfels1952, + author = {Ehrenfels, U. R.}, + title = {Kadar of Cochin}, + publisher = {Madras: University of Madras}, + address = {Madras}, + series = {Anthropological series}, + volume = {1}, + pages = {319}, + year = {1952}, + glottolog_ref = {hh:e:Ehrenfels:Kadar}, + key = {Ehrenfels (1952)}, + lgcode = {Kadar [kada1242]} +} +@article{ehrenreich1887, + author = {Ehrenreich, P.}, + title = {Über die Botocudos der Brasilianischen Provinzen Espiritu Santo and Minas Geraes}, + journal = {Zeitschrift für Ethnologie}, + volume = {19}, + pages = {1-46, 49-82}, + year = {1887}, + key = {Ehrenreich (1887)}, + lgcode = {Aimoré [kren1239]} +} +@article{ehrenreich1891, + author = {Ehrenreich, P.}, + title = {Beiträge zur Völkerkunde Brasiliens}, + journal = {Veröffentlichungen aus dem Koniglichen Museum fur Völkerkunde}, + address = {Leipzig}, + volume = {2}, + pages = {1-80}, + year = {1891}, + glottolog_ref = {fabreall2009ann:3137}, + key = {Ehrenreich (1891)}, + lgcode = {Carajá [kara1500]} +} +@article{ehrmann1940, + author = {Ehrmann, W. W.}, + title = {The Timucua Indians of Sixteenth Century Florida}, + journal = {Florida Hist. Quart.}, + volume = {18}, + pages = {168-191}, + year = {1940}, + key = {Ehrmann (1940)}, + lgcode = {Timucua [timu1245]} +} +@book{eibleibesfeldt1948, + author = {Eibl-Eibesfeldt, I.}, + title = {Die !Ko-Buschmann-Gesellschaft}, + publisher = {R. Piper}, + address = {Munich}, + year = {1948}, + key = {Eibl-Eibesfeldt (1948)}, + lgcode = {!Ko [huaa1248]} +} +@misc{eibleibesfeldt1972, + author = {Eibl-Eibesfeldt, I.}, + title = {Die !Ko-Buschmann-Gesellschaft}, + publisher = {R. Piper}, + address = {Munich}, + year = {1972}, + key = {Eibl-Eibesfeldt (1972)}, + lgcode = {!Ko [huaa1248]} +} +@article{eichhorn191124, + author = {Eichhorn, A.}, + title = {Beiträge zur Kenntnis der Waschambaa}, + journal = {Baessler-Archiv}, + volume = {1; 3; 7; 8}, + pages = {155-222; 69-131; 56-98; 1-53}, + year = {1911-24}, + key = {Eichhorn (1911-24)}, + lgcode = {Shambaa [sham1280]} +} +@book{eilers1934, + author = {Eilers, A.}, + editor = {G. Thilenius}, + title = {Inseln um Ponape}, + address = {Hamburg}, + series = {Ergebnisse der Suedsee-Expedition 1908-1910}, + volume = {2, B, 8}, + pages = {1-464}, + year = {1934}, + key = {Eilers (1934)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{ekblaw192728, + author = {Ekblaw, W. E.}, + title = {The Material Response of the Polar Eskimo to Their Far Arctic Environment}, + journal = {Ann. Assoc. Amer. Geog.}, + volume = {17; 18}, + pages = {147-198; 1-24}, + year = {1927-28}, + key = {Ekblaw (1927-28)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekblaw1928, + author = {Ekblaw, W. E.}, + title = {The Material Response of the Polar Eskimo to Their Far Arctic Environment (Continued)}, + journal = {Annals of the Association of American Geographers}, + volume = {18}, + number = {1}, + pages = {1-44}, + year = {1928}, + key = {Ekblaw (1928)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekblaw1948, + author = {Ekblaw, W. E.}, + title = {Significance of Movement among the Polar Eskimo}, + journal = {Bulletin of the Massachusetts Archaeological Society}, + volume = {10}, + pages = {1-4}, + year = {1948}, + key = {Ekblaw (1948)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@article{ekvall1961, + author = {Ekvall, Robert B.}, + title = {The nomadic pattern of living among the Tibetans as preparation for war}, + journal = {American Anthropologist}, + volume = {63}, + pages = {1250-63}, + year = {1961}, + key = {Ekvall (1961)}, + lgcode = {Central Tibetans [dbus1238]} +} +@article{ekvall1964, + author = {Ekvall, Robert B.}, + title = {Peace and war among the Tibetan nomads}, + journal = {American Anthropologist}, + volume = {66}, + pages = {1119-48}, + year = {1964}, + key = {Ekvall (1964)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{eljashevish1994, + author = {Eljashevish, B. S.}, + title = {Istoriko-Etnograficheskioec herki (1926-1929) (Historical-Ethnographic Essays [1926-1929])}, + address = {Moscow}, + year = {1994}, + key = {Eljashevish (1994)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@article{elkin1940a, + author = {Elkin, A. P.}, + title = {Kinship in South Australia}, + journal = {Oceania}, + volume = {8}, + pages = {419-452}, + year = {1940}, + key = {Elkin (1940a)}, + lgcode = {Diyari [dier1241]} +} +@incollection{elkin1940b, + author = {Elkin, H.}, + editor = {R. Linton}, + title = {The Northern Arapaho of Wyoming}, + booktitle = {Acculturation in Seven American Indian Tribes}, + address = {New York}, + pages = {207-258}, + year = {1940}, + key = {Elkin (1940b)}, + lgcode = {Arapaho [arap1274]} +} +@article{elkin1950, + author = {Elkin, A.}, + title = {The Complexity of Social Organization in Arnhem Land}, + journal = {Southwestern Journal of Anthropology}, + volume = {6}, + pages = {1-20}, + year = {1950}, + key = {Elkin (1950)}, + lgcode = {Yolngu, Dhuwal [dhuw1249]} +} +@article{elkin1953, + author = {Elkin, A. P.}, + title = {Delayed Exchange in the Wabag Sub-District}, + journal = {Oceania}, + volume = {23}, + pages = {161-201}, + year = {1953}, + key = {Elkin (1953)}, + lgcode = {Enga [enga1252]} +} +@book{elliott1886, + author = {Elliott, H. W.}, + title = {Our Arctic Province}, + address = {New York}, + year = {1886}, + key = {Elliott (1886)}, + lgcode = {Aleut [east2533]} +} +@misc{ellis1905, + author = {Ellis, H.}, + title = {Studies in the psychology of sex (vol 1)}, + publisher = {Random House}, + address = {New York}, + year = {1905}, + key = {Ellis (1905)}, + lgcode = {Tahitians [tahi1242]} +} +@book{ellis1914, + author = {Ellis, G. W.}, + title = {Negro Culture in West Africa}, + address = {New York}, + year = {1914}, + key = {Ellis (1914)}, + lgcode = {Vai [vaii1241]} +} +@article{elmendorf1948, + author = {Elmendorf, W. W.}, + title = {The Cultural Setting of the Twana Secret Society}, + journal = {American Anthropologist}, + volume = {50}, + pages = {625-633}, + year = {1948}, + url = {http://www.jstor.org/stable/663758}, + key = {Elmendorf (1948)}, + lgcode = {Twana [twan1247]} +} +@book{elmendorf1960, + author = {Elmendorf, W. W.}, + title = {The Structure of Twana Culture with Comparative Notes on the Structure of Yurok Culture}, + publisher = {Washington State University}, + address = {Pullman}, + series = {Research Studies Monographic Supplement}, + volume = {28}, + pages = {1-576}, + year = {1960}, + key = {Elmendorf (1960)}, + lgcode = {Twana [twan1247], Yurok [yuro1248]} +} +@misc{elmendorf1963, + author = {Elmendorf, W. W.}, + year = {1963}, + howpublished = {Personal communication}, + key = {Elmendorf (1963)}, + lgcode = {Nez Perce [nezp1238]} +} +@article{elmley1927, + author = {Elmley, E. D.}, + title = {The Turkana of Kolosia District}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {57}, + pages = {157-201}, + year = {1927}, + key = {Elmley (1927)}, + lgcode = {Turkana [turk1308]} +} +@book{elwin1939, + author = {Elwin, V.}, + title = {The Baiga}, + address = {London}, + year = {1939}, + key = {Elwin (1939)}, + lgcode = {Baiga [chha1249]} +} +@book{elwin1950, + author = {Elwin, V.}, + title = {Bondo Highlanders}, + publisher = {Bombay: Oxford Univ. Press}, + address = {London}, + pages = {290}, + year = {1950}, + glottolog_ref = {hh:e:Elwin:Bondo}, + key = {Elwin (1950)}, + lgcode = {Khond [kuii1252]} +} +@book{elwin1957, + author = {Elwin, V.}, + title = {The Muria and Their Ghotul}, + address = {Bombay}, + year = {1957}, + key = {Elwin (1957)}, + lgcode = {Muria Gond [west2408]} +} +@misc{ember1954, + author = {Ember, M.}, + year = {1954}, + howpublished = {Unpublished ethnographic notes}, + key = {Ember (1954)}, + lgcode = {Byelorussians [bela1254]} +} +@article{ember1959, + author = {Ember, M.}, + title = {The Nonunilinear Descent Groups of Samoa}, + journal = {American Anthropologist}, + volume = {61}, + pages = {573-577}, + year = {1959}, + key = {Ember (1959)}, + lgcode = {American Samoans [samo1305]} +} +@article{ember1962, + author = {Ember, M.}, + title = {Political Authority and the Structure of Kinship in Aboriginal Samoa}, + journal = {American Anthropologist}, + volume = {64}, + pages = {964-971}, + year = {1962}, + key = {Ember (1962)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{emeneau1939, + author = {Emeneau, M. B.}, + title = {Kinship and Marriage Among the Coorgs}, + journal = {Journ. Roy. As. Soc. Bengal, Letters}, + volume = {4}, + pages = {123-147}, + year = {1939}, + key = {Emeneau (1939)}, + lgcode = {Kodavas [koda1255]} +} +@incollection{emeneau1941, + author = {Emeneau, M. B.}, + editor = {Spier, Hallowell, and Newman}, + title = {Language and Social Forms: A Study of Toda Kinship Terms and Double Descent}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {158-179}, + year = {1941}, + key = {Emeneau (1941)}, + lgcode = {Toda [toda1252]} +} +@book{emmons1911, + author = {Emmons, G. T.}, + title = {The Tahltan Indians}, + publisher = {University of Pennsylvania Museum}, + address = {Philadelphia}, + series = {University of Pennsylvania Museum Anthropological Publications}, + volume = {4}, + number = {1}, + pages = {1-120}, + year = {1911}, + key = {Emmons (1911)}, + lgcode = {Tahltan [tahl1239]} +} +@article{emory1965, + author = {Emory, K. P.}, + title = {Kapingamarangi}, + journal = {Bull. Bishop Mus.}, + volume = {228}, + pages = {1-357}, + year = {1965}, + key = {Emory (1965)}, + lgcode = {Kapingamarangi [kapi1249]} +} +@article{empain1922, + author = {Empain, A.}, + title = {Les Bakela de la Loto}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {46}, + pages = {206-265}, + year = {1922}, + glottolog_ref = {eballiso2009:49543}, + key = {Empain (1922)}, + lgcode = {Kela [yela1238]} +} +@book{endle1911, + author = {Endle, S.}, + title = {The Kacharis}, + publisher = {London: MacMillan}, + address = {London}, + pages = {184}, + year = {1911}, + glottolog_ref = {hh:ew:Endle:Kacharis}, + key = {Endle (1911)}, + lgcode = {Kachari [kach1279]} +} +@book{englehardt1899, + author = {Englehardt, E. A.}, + title = {A Russian Province of the North}, + address = {Westminster}, + year = {1899}, + key = {Englehardt (1899)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@incollection{entwistle1953, + author = {Entwistle, William J.}, + editor = {H. V. Livermore}, + title = {Religion}, + booktitle = {Portual and Brazil: an introduction}, + publisher = {Oxford University Press}, + address = {Oxford}, + year = {1953}, + key = {Entwistle (1953)}, + lgcode = {Portuguese [gali1257]} +} +@book{erdland1914, + author = {Erdland, P. A.}, + title = {Die Marshall-Insulaner}, + publisher = {Munster}, + address = {Wien}, + year = {1914}, + key = {Erdland (1914)}, + lgcode = {Marshallese - Jaluit Atoll [rali1241], Marshallese - Jaluit atoll [rali1241]} +} +@article{erickson1943, + author = {Erickson, E. H.}, + title = {Observations on the Yurok: Childhood and World Image}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {25}, + pages = {257-302}, + year = {1943}, + key = {Erickson (1943)}, + lgcode = {Yurok [yuro1248]} +} +@article{erikson1939, + author = {Erikson, Erik H.}, + title = {Observations on Sioux education}, + journal = {Journal of Psychology}, + volume = {7}, + pages = {101-56}, + year = {1939}, + key = {Erikson (1939)}, + lgcode = {Teton [lako1247]} +} +@book{erikson1950, + author = {Erikson, Erik H.}, + title = {Childhood and society}, + publisher = {W. W. Norton}, + address = {New York}, + year = {1950}, + key = {Erikson (1950)}, + lgcode = {Teton [lako1247]} +} +@book{erman1923, + author = {Erman, A.}, + editor = {H. Ranke}, + title = {Aegypten und aegyptisches Leben im Altertum}, + address = {Tübingen}, + year = {1923}, + key = {Erman (1923)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@book{espinosa1907, + author = {Espinosa, A. de.}, + editor = {Markham}, + title = {The Guanches of Teneriffe}, + address = {London}, + year = {1907}, + key = {Espinosa (1907)}, + lgcode = {Guanche [guan1277]} +} +@book{espinosa1935, + author = {Espinosa, L.}, + title = {Los Tupi del oriente peruano}, + address = {Madrid}, + year = {1935}, + key = {Espinosa (1935)}, + lgcode = {Cocama [coca1259]} +} +@article{essene1940, + author = {Essene, F.}, + title = {Round Valley}, + journal = {Anth. Rec.}, + volume = {8}, + pages = {1-97}, + year = {1940}, + key = {Essene (1940)}, + lgcode = {Lassik [wail1244]} +} +@article{essene1942, + author = {Essene, F.}, + title = {Round Valley}, + journal = {Anth. Rec.}, + volume = {8}, + pages = {1-97}, + year = {1942}, + key = {Essene (1942)}, + lgcode = {Cahto [kato1244], Northern Pomo [nort2966], Yuki [yuki1243]} +} +@incollection{etoeva1977, + author = {Etoeva, Z. I.}, + editor = {A. A. Shennikov}, + title = {Poselenija i zhilishcha vepsov kontsa XIX- nachala XX v. (Settlements and Homes of the Veps in the Late Nineteenth and Early Twentieth Centuries)}, + booktitle = {Etnografija narodov Vostochnoj Evropy (Ethnography of the East European Peoples)}, + address = {Leningrad}, + pages = {125-39}, + year = {1977}, + key = {Etoeva (1977)}, + lgcode = {Veps [veps1250]} +} +@article{euler1954, + author = {Euler, Robert C.}, + title = {Notes on Land Tenure at Isleta Pueblo}, + journal = {El palacio}, + volume = {61}, + pages = {368-373}, + year = {1954}, + key = {Euler (1954)}, + lgcode = {Isleta [sout2961]} +} +@book{euler1972, + author = {Euler, R.C.}, + title = {The Paiute People}, + address = {Phoenix}, + series = {Indian Tribal Series}, + year = {1972}, + key = {Euler (1972)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@book{eulerandfowler1966, + author = {Euler, R.C., and C. Fowler}, + title = {Southern Paiute Ethnohistory}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {Glen Canyon Series No. 28., University of Utah Anthropological Papers No. 78.}, + year = {1966}, + key = {Euler and Fowler (1966)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@book{evans1922, + author = {Evans, I. H. N.}, + title = {Among Primitive Peoples in North Borneo}, + publisher = {London: Seeley}, + address = {London}, + pages = {313}, + year = {1922}, + glottolog_ref = {hh:he:Evans:Borneo}, + key = {Evans (1922)}, + lgcode = {Kadazan-Dusun [cent2100]} +} +@book{evans1937, + author = {Evans, I. H. N.}, + title = {The Negritos of Malaya}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1937}, + key = {Evans (1937)}, + lgcode = {Semang [kens1248]} +} +@book{evans1957, + author = {Evans, E. E.}, + title = {Irish Folk-Ways}, + address = {London}, + year = {1957}, + key = {Evans (1957)}, + lgcode = {Irish [iris1253]} +} +@article{evanspritchard1927, + author = {Evans-Pritchard, E. E.}, + title = {A Preliminary Account of the Ingassana Tribe}, + journal = {Sudan Notes and Records}, + volume = {10}, + pages = {69-83}, + year = {1927}, + key = {Evans-Pritchard (1927)}, + lgcode = {Ingassana [gaam1241]} +} +@article{evanspritchard1929, + author = {Evans-Pritchard, E. E.}, + title = {The Bongo}, + journal = {Sudan Notes and Records}, + volume = {12}, + pages = {1-61}, + year = {1929}, + glottolog_ref = {hh:e:Evans-Pritchard:Bongo}, + key = {Evans-Pritchard (1929)}, + lgcode = {Bongo [bong1285]} +} +@article{evanspritchard1932a, + author = {Evans-Pritchard, E. E.}, + title = {Ethnological Observations in Dar Fung}, + journal = {Sudan Notes and Records}, + volume = {15}, + pages = {1-61}, + year = {1932}, + glottolog_ref = {hh:hw:Evans-Pritchard:Fung}, + key = {Evans-Pritchard (1932a)}, + lgcode = {Meban [maba1273]} +} +@article{evanspritchard1932b, + author = {Evans-Pritchard, E. E.}, + title = {Heredity and Gestation, as the Azande See Them}, + journal = {Sociologus}, + volume = {3}, + pages = {400-414}, + year = {1932}, + key = {Evans-Pritchard (1932b)}, + lgcode = {Azande [zand1248]} +} +@incollection{evanspritchard1936, + author = {Evans-Pritchard, Edward Evan}, + editor = {L. H. Dudley Buxton}, + title = {Daily life of the Nuer in dry-season camps}, + booktitle = {Custom is King}, + address = {London}, + series = {Hutchinson's Scientific and Technical Publications}, + pages = {291-299}, + year = {1936}, + key = {Evans-Pritchard (1936)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1937, + author = {Evans-Pritchard, E. E.}, + title = {Witchcraft, Oracles and Magic Among the Azande}, + publisher = {Oxford: Clarendon Press}, + address = {Oxford}, + year = {1937}, + glottolog_ref = {eballiso2009:34997}, + key = {Evans-Pritchard (1937)}, + lgcode = {Azande [zand1248]} +} +@article{evanspritchard1940, + author = {Evans-Pritchard, E. E.}, + title = {The Political System of the Anuak}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {4}, + pages = {1-164}, + year = {1940}, + key = {Evans-Pritchard (1940)}, + lgcode = {Anuak [anua1242]} +} +@incollection{evanspritchard1940a, + author = {Evans-Pritchard, E. E.}, + editor = {Fortes and Evans-Pritchard}, + title = {The Nuer of the Southern Sudan}, + booktitle = {African Political Systems}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + address = {Oxford}, + pages = {272-292}, + year = {1940}, + glottolog_ref = {eballiso2009:34993}, + key = {Evans-Pritchard (1940a)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1940b, + author = {Evans-Pritchard, E. E.}, + title = {The Nuer}, + address = {Oxford}, + year = {1940}, + key = {Evans-Pritchard (1940b)}, + lgcode = {Nuer [nuer1246]} +} +@article{evanspritchard1940c, + author = {Evans-Pritchard, E. E.}, + title = {The Relationship Between the Anuak and the Fori}, + journal = {Sudan Notes and Records}, + volume = {23}, + pages = {337-340}, + year = {1940}, + glottolog_ref = {eballiso2009:35002}, + key = {Evans-Pritchard (1940c)}, + lgcode = {Pari [pari1256]} +} +@article{evanspritchard1947, + author = {Evans-Pritchard, E. E.}, + title = {Further Observations on the Political System of the Anuak}, + journal = {Sudan Notes and Records}, + volume = {28}, + pages = {62-97}, + year = {1947}, + glottolog_ref = {eballiso2009:40844}, + key = {Evans-Pritchard (1947)}, + lgcode = {Anuak [anua1242]} +} +@book{evanspritchard1948, + author = {Evans-Pritchard, E. E.}, + title = {The Divine Kingship of the Shilluk of the Nilotic Sudan}, + address = {Cambridge}, + year = {1948}, + key = {Evans-Pritchard (1948)}, + lgcode = {Shilluk [shil1265]} +} +@article{evanspritchard1949a, + author = {Evans-Pritchard, E. E.}, + title = {Luo Tribes and Clans}, + journal = {Rhodes-Liv. Journ.}, + volume = {7}, + pages = {24-40}, + year = {1949}, + glottolog_ref = {eballiso2009:2793}, + key = {Evans-Pritchard (1949a)}, + lgcode = {Luo [luok1236]} +} +@book{evanspritchard1949b, + author = {Evans-Pritchard, E. E.}, + title = {The Sanusi of Cyrenaica}, + address = {Oxford}, + year = {1949}, + key = {Evans-Pritchard (1949b)}, + lgcode = {Sanusi [liby1240]} +} +@article{evanspritchard1950a, + author = {Evans-Pritchard, E. E.}, + title = {Marriage Customs of the Kenya Luo}, + journal = {Africa}, + volume = {20}, + pages = {132-142}, + year = {1950}, + key = {Evans-Pritchard (1950a)}, + lgcode = {Luo [luok1236]} +} +@article{evanspritchard1950b, + author = {Evans-Pritchard, Edward Evan.}, + title = {The Nuer family}, + journal = {Sudan Notes and Records}, + volume = {31}, + pages = {21-42}, + year = {1950}, + key = {Evans-Pritchard (1950b)}, + lgcode = {Nuer [nuer1246]} +} +@book{evanspritchard1951, + author = {Evans-Pritchard, E. E.}, + title = {Kinship and Marriage Among the Nuer}, + address = {Oxford}, + year = {1951}, + key = {Evans-Pritchard (1951)} +} +@book{evanspritchard1956, + author = {Evans-Pritchard, E. E.}, + title = {The Azande System of Agriculture}, + address = {London}, + year = {1956}, + key = {Evans-Pritchard (1956)}, + lgcode = {Azande [zand1248]} +} +@article{evanspritchard1957, + author = {Evans-Pritchard, E. E.}, + title = {The Zande Royal Court}, + journal = {Zaire}, + volume = {11}, + pages = {361-389, 493-511, 687-713}, + year = {1957}, + key = {Evans-Pritchard (1957)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1963, + author = {Evans-Pritchard, E. E.}, + title = {The Zande State}, + address = {London}, + year = {1963}, + key = {Evans-Pritchard (1963)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1971, + author = {Evans-Pritchard, E. E.}, + title = {The Azande: history and political institutions}, + publisher = {Oxford: Clarendon Press}, + pages = {439}, + year = {1971}, + glottolog_ref = {hh:e:Evans-Pritchard:Azande:History}, + key = {Evans-Pritchard (1971)}, + lgcode = {Azande [zand1248]}, + note = {revision of earlier articles} +} +@book{evanspritchard1974, + editor = {Evans-Pritchard, E. E.}, + title = {Man and Woman among the Azande}, + address = {London}, + year = {1974}, + key = {Evans-Pritchard (1974)}, + lgcode = {Azande [zand1248]} +} +@book{evanspritchard1974a, + author = {Evans-Pritchard, E. E.}, + title = {Bild der Völker. Die Brockhaus Völkerkunde, Bd. 6}, + year = {1974}, + key = {Evans-Pritchard (1974a)}, + lgcode = {Semang [kens1248]} +} +@article{even1931, + author = {Even, A.}, + title = {Quelques coutumes des tribus Badondos et Bassoundis}, + journal = {Bulletin de la Société des Recherches Congolaises}, + volume = {7}, + pages = {77-94}, + year = {1931}, + glottolog_ref = {hh:e:Even:Badondos}, + key = {Even (1931)}, + lgcode = {Sundi [koon1244]} +} +@book{ewers1937, + author = {Ewers, John C.}, + title = {Teton Dakota ethnology and history}, + publisher = {National Park Service}, + address = {Berkeley}, + year = {1937}, + key = {Ewers (1937)}, + lgcode = {Teton [lako1247]} +} +@book{ewers1955, + author = {Ewers, John C.}, + title = {The Horse in Blackfoot Indian Culture}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {159}, + pages = {1-374}, + year = {1955}, + key = {Ewers (1955)}, + lgcode = {Bitterroot Salish [kali1309], Blackfoot [pieg1239], Crow [crow1244], Gros Ventre [gros1243], Kainai [bloo1239], Kiowa Apache [kiow1264], Piegan [pieg1239], White Knife Shoshoni [west2622]} +} +@book{ewers1958, + author = {Ewers, John C.}, + title = {The Blackfeet}, + address = {Norman}, + year = {1958}, + key = {Ewers (1958)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{ewers1971, + author = {Ewers, John C.}, + title = {The Blackfeet: Raiders on The Northwestern Plains}, + publisher = {University of Oklahoma Press}, + address = {Norman}, + year = {1971}, + key = {Ewers (1971)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{ezell1961, + author = {Ezell, Paul H.}, + title = {Hispanic Acculturation of Gila River Pima}, + series = {American Anthropological Association Memoir}, + volume = {90}, + pages = {1-171}, + year = {1961}, + key = {Ezell (1961)}, + lgcode = {Pima [akim1239]} +} +@article{faidherbe1882, + author = {Faidherbe, L. L. C. V-8.}, + title = {Grammaire et vocabulaire de la langue Peul}, + publisher = {Paris: Miasonneuve et Libraires}, + year = {1882}, + glottolog_ref = {hh:s:Faidherbe:Poul}, + key = {Faidherbe (1882)}, + lgcode = {Bororo Fulani [boro1274]} +} +@article{fainberg1962, + author = {Fainberg, L. A.}, + title = {Terminologija rodstva nganasan kak istoricheskij istochnik (Nganasan Kinship Terminology as a Source for the Study of Their History)}, + journal = {Trudy Instituta Etnografi}, + volume = {78}, + pages = {226-37}, + year = {1962}, + key = {Fainberg (1962)}, + lgcode = {Nganasan [ngan1291]} +} +@book{fainsod1958, + author = {Fainsod, M.}, + title = {How Russia is Ruled}, + address = {Cambridge}, + year = {1958}, + key = {Fainsod (1958)}, + lgcode = {Russians [russ1263]} +} +@incollection{falad1963, + author = {Falad, S.}, + editor = {D. Paulme}, + title = {Women of Dakar and the Surrounding Urban Area}, + booktitle = {Women of Africa}, + address = {London}, + pages = {217-229}, + year = {1963}, + key = {Falad (1963)}, + lgcode = {Wolof [nucl1347]} +} +@book{falkenberg1962, + author = {Falkenberg, J.}, + title = {Kin and Totem}, + address = {Oslo}, + year = {1962}, + key = {Falkenberg (1962)}, + lgcode = {Murriny Patha [murr1258]} +} +@book{fallers1956, + author = {Fallers, L. A.}, + title = {Bantu Bureaucracy}, + address = {Cambridge}, + year = {1956}, + key = {Fallers (1956)}, + lgcode = {Soga [soga1242]} +} +@book{fallers1960, + author = {Fallers, M. C.}, + title = {The Eastern Lacustrine Bantu}, + address = {London}, + year = {1960}, + key = {Fallers (1960)}, + lgcode = {Ganda [gand1255], Soga [soga1242]} +} +@article{farabee1918, + author = {Farabee, W. C.}, + title = {The Central Arawaks}, + journal = {Univ. Penn. Mus. Anth. Publ.}, + publisher = {Philadephia: University Museum}, + series = {University Museum Anthropological Publication}, + volume = {9}, + pages = {13-121}, + year = {1918}, + glottolog_ref = {hh:hew:Farabee:CArawaks}, + key = {Farabee (1918)}, + lgcode = {Wapishana [wapi1253]} +} +@article{farabee1924, + author = {Farabee, W. C.}, + title = {The Central Caribs}, + journal = {Univ. Penn. Mus. Anth. Pap.}, + publisher = {University of Pennsylvania}, + series = {Anthropological Publications of the University Museum}, + volume = {10}, + pages = {13-152}, + year = {1924}, + glottolog_ref = {mpieva:Farabee1924Thecentr}, + key = {Farabee (1924)}, + lgcode = {Macushi [macu1259]} +} +@article{faron1961a, + author = {Faron, L. C.}, + title = {A Reinterpretation of Choco Society}, + journal = {Southw. Journ. Anth.}, + volume = {17}, + pages = {94-102}, + year = {1961}, + glottolog_ref = {fabreall2009ann:Choco11}, + key = {Faron (1961a)}, + lgcode = {Emberá [nort2972]} +} +@article{faron1961b, + author = {Faron, L. C.}, + title = {Mapuche Social Structure}, + journal = {Illinois Studies in Anthropology}, + publisher = {Urbana: University of Illinois Press}, + volume = {1}, + pages = {1-247}, + year = {1961}, + glottolog_ref = {fabreall2009ann:Mapuche415}, + key = {Faron (1961b)}, + lgcode = {Mapuche [mapu1245]} +} +@article{faron1962, + author = {Faron, L. C.}, + title = {Marriage residence and domestic groups among the Panamanian Chocó}, + journal = {Ethnology}, + volume = {1}, + pages = {13-38}, + year = {1962}, + glottolog_ref = {fabreall2009ann:Choco12}, + key = {Faron (1962)}, + lgcode = {Emberá [nort2972]} +} +@book{faron1964, + author = {Faron, L. C.}, + title = {Hawks of the Sun}, + publisher = {Pittsburgh}, + address = {Pittsburgh}, + year = {1964}, + glottolog_ref = {fabreall2009ann:Mapuche421}, + key = {Faron (1964)}, + lgcode = {Mapuche [mapu1245]} +} +@book{faron1968, + author = {Faron, L. C.}, + title = {The Mapuche Indians of Chile}, + publisher = {New York: Holt, Rinehart and Winston}, + address = {New York}, + year = {1968}, + glottolog_ref = {fabreall2009ann:Mapuche422}, + key = {Faron (1968)}, + lgcode = {Mapuche [mapu1245]} +} +@misc{fathauer1954a, + author = {Fathauer, G. H.}, + title = {Kinship and Social Structure of the Trobriand Islands}, + year = {1954}, + howpublished = {Manuscript}, + key = {Fathauer (1954a)}, + lgcode = {Trobriands [kili1267]} +} +@article{fathauer1954b, + author = {Fathauer, George H.}, + title = {The Structure and Causation of Mohave Warfare}, + journal = {Southwestern Journal of Anthropology}, + volume = {10}, + pages = {97-118}, + year = {1954}, + key = {Fathauer (1954b)}, + lgcode = {Mojave [moha1256]} +} +@book{faublee1946, + author = {Faublee, J.}, + title = {Ethnopgrahie de Madagascar}, + address = {Paris}, + year = {1946}, + key = {Faublee (1946)}, + lgcode = {Sakalava [saka1291]} +} +@incollection{faye1923, + author = {Faye, P.L.}, + editor = {A. L. Kroeber}, + title = {Notes on the Southern Maidu}, + booktitle = {Phoebe Apperson Hearst Memorial Volume}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {35-53}, + year = {1923}, + key = {Faye (1923)}, + lgcode = {Nisenan [nise1244]} +} +@article{fayet1939, + author = {Fayet, J. C.}, + title = {Coutumes des Sereres N'Doute}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {195-212}, + year = {1939}, + key = {Fayet (1939)}, + lgcode = {Serer [sere1260]} +} +@book{fedjanovich1997, + author = {Fedjanovich, T. P.}, + title = {Semejnye obychai i obrjady finno-ugorskih narodov Uralo-Povolzh'ja (konets XIX veka - 1980-e gody)}, + address = {Moscow}, + year = {1997}, + key = {Fedjanovich (1997)}, + lgcode = {Erzya Mordvins [erzy1239], Udmurt [sout2681]}, + title_english = {Family Customs and Rites of the Finno-Ugric Peoples of the Ural-Volga Region (from the Late Nineteenth Century to the 1990s)} +} +@article{fegan1930, + author = {Fegan, E. S.}, + title = {Some Notes on the Bachama Tribe}, + journal = {Journ. Afr. Soc.}, + volume = {29}, + pages = {269-279, 376-400}, + year = {1930}, + key = {Fegan (1930)}, + lgcode = {Bachama [baca1246]} +} +@book{fei1946, + author = {Fei, Hsiao-Tung}, + title = {Peasant Life in China}, + address = {New York}, + year = {1946}, + key = {Fei (1946)}, + lgcode = {Chekiang [wuch1236]} +} +@book{feilberg1952, + author = {Feilberg, C. G.}, + title = {Les Papis}, + address = {Copenhagen}, + year = {1952}, + key = {Feilberg (1952)}, + lgcode = {Bakhtiari [bakh1245]} +} +@article{fejos1943, + author = {Fejos, P.}, + title = {Ethnography of the Yagua}, + journal = {Viking Fund Publ. Anth.}, + publisher = {New York: The Viking Fundation}, + series = {Viking Fund publications in anthropology}, + volume = {1}, + pages = {1-144}, + year = {1943}, + glottolog_ref = {fabreall2009ann:Peba-Yagua_yawa33}, + key = {Fejos (1943)}, + lgcode = {Yagua [yagu1244]} +} +@article{felkin1883, + author = {Felkin, W.}, + title = {Notes on the Moru or Madi Tribe of Central Africa}, + journal = {proc. Roy. Soc. Edinburgh}, + volume = {12}, + pages = {303-353}, + year = {1883}, + glottolog_ref = {eballiso2009:25992}, + key = {Felkin (1883)}, + lgcode = {Moru [moru1253]} +} +@article{felkin1885, + author = {Felkin, R. W.}, + title = {Notes on the Fur Tribe}, + journal = {Proceedings of the Royal Society of Edinburgh}, + volume = {23}, + pages = {205-265}, + year = {1885}, + key = {Felkin (1885)}, + lgcode = {Fur [furr1244]} +} +@incollection{fenton1940, + author = {Fenton, William N.}, + title = {Masked medicine societies of the Iroquois}, + booktitle = {Annual Report of the Smithsonian Institution}, + publisher = {Government Printing Office}, + address = {Washington, D. C.}, + pages = {397-429}, + year = {1940}, + key = {Fenton (1940)}, + lgcode = {Seneca [sene1264]} +} +@book{fenton1957, + author = {Fenton, William Nelson}, + title = {Factionalism at Taos Pueblo, New Mexico}, + series = {Bureau of American Ethnology. Bulletin}, + volume = {164}, + pages = {297-344}, + year = {1957}, + key = {Fenton (1957)}, + lgcode = {Taos [taos1236]} +} +@book{feoktistova1980, + author = {Feoktistova, L. H.}, + title = {Zemledelie u estontsev: XVIII- nachalo XX v.}, + address = {Moscow}, + year = {1980}, + key = {Feoktistova (1980)}, + lgcode = {Estonians [esto1258]}, + title_english = {Agriculture among the Estonians: From the Eighteenth to the Early Twentieth Century} +} +@book{fernea1966, + editor = {Fernea, R. A.}, + title = {Contemporary Egyptian Nubia. 2v}, + address = {New Haven}, + year = {1966}, + key = {Fernea (1966)}, + lgcode = {Barabra [kenu1236]} +} +@book{ferrell1969, + author = {Ferrell, R.}, + title = {Taiwan Aboriginal Groups: Problems in Cultural and Linguistic Classification}, + series = {Academia Sinica, Institute of Ethnology Monographs}, + volume = {17}, + year = {1969}, + key = {Ferrell (1969)}, + lgcode = {Atayal [atay1247]} +} +@article{ffoulkes1908, + author = {Ffoulkes, A.}, + title = {The Fanti Family System}, + journal = {Journ. Afr. Soc.}, + volume = {7}, + pages = {394-409}, + year = {1908}, + glottolog_ref = {eballiso2009:39270}, + key = {Ffoulkes (1908)}, + lgcode = {Fante [fant1241]} +} +@article{ffoulkes1909, + author = {Ffoulkes, A.}, + title = {Fanti Marriage Customs}, + journal = {Journ. Afr. Soc.}, + volume = {8}, + pages = {31-48}, + year = {1909}, + key = {Ffoulkes (1909)}, + lgcode = {Fante [fant1241]} +} +@incollection{fidler1934, + author = {Fidler, P.}, + title = {Journal of a Journey with the Chepawyans, or Northern Indians, to the Slave Lake, and to the East and West of the Slave River in 1791 & 2}, + booktitle = {Publications}, + publisher = {Champlain Society}, + address = {Toronto}, + volume = {21}, + pages = {495-555}, + year = {1934}, + key = {Fidler (1934)}, + lgcode = {Dene [chip1261]} +} +@book{field1937, + author = {Field, M. J.}, + title = {Religion and Medicine of the Ga People}, + address = {London}, + year = {1937}, + key = {Field (1937)}, + lgcode = {Ga [gaaa1244]} +} +@book{field1940, + author = {Field, M. J.}, + title = {Social Organization of the Ga People}, + publisher = {Accra: Crown Agents for the Colonies}, + address = {London}, + year = {1940}, + glottolog_ref = {eballiso2009:32512}, + key = {Field (1940)}, + lgcode = {Ga [gaaa1244]} +} +@article{field1943, + author = {Field, M. J.}, + title = {The AGricultural System of the Manya-Krobo of the Gold Coast}, + journal = {Africa}, + volume = {14}, + pages = {54-65}, + year = {1943}, + key = {Field (1943)}, + lgcode = {Adangme [adan1247]} +} +@book{field1949, + author = {Field, M. J.}, + title = {Akim Kotoku}, + address = {London}, + year = {1949}, + key = {Field (1949)}, + lgcode = {Akyem [akye1239]} +} +@book{finsch1893, + author = {Finsch, O.}, + title = {Ethnologische Erfahrungen und Belegstucke aus der Südsee 3}, + address = {Wien}, + pages = {19-89}, + year = {1893}, + key = {Finsch (1893)}, + lgcode = {Makin [bana1287], Marshallese - Jaluit Atoll [rali1241]} +} +@book{firedl1962, + author = {Firedl, E.}, + title = {Vasilika, a Village in Modern Greece}, + address = {New York}, + year = {1962}, + key = {Firedl (1962)}, + lgcode = {Greeks [mode1248]} +} +@book{firkovich1969, + author = {Firkovich, R.}, + title = {Karaimika v Litve}, + address = {Trakaj}, + year = {1969}, + key = {Firkovich (1969)}, + lgcode = {Lithuanian Karaim [kara1464]}, + title_english = {The Karaim Studies in Lithuania} +} +@book{firth1936, + author = {Firth, R.}, + title = {We, the Tikopia}, + address = {London}, + year = {1936}, + key = {Firth (1936)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1939, + author = {Firth, R.}, + title = {A Primitive Polynesian Economy}, + address = {London}, + year = {1939}, + key = {Firth (1939)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1940, + author = {Firth, R.}, + title = {Work of the Gods}, + series = {London School of Economics Monographs on Social Anthropology}, + volume = {1-2}, + year = {1940}, + key = {Firth (1940)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1943, + author = {Firth, Rosmary.}, + title = {Housekeeping among Malay peasants}, + address = {London}, + series = {London School of Economics Monographs on Social Anthropology}, + volume = {7}, + year = {1943}, + key = {Firth (1943)}, + lgcode = {Malays [mala1479]} +} +@book{firth1946, + author = {Firth, R.}, + title = {Malay Fishermen: Their Peasant Economy}, + address = {London}, + year = {1946}, + key = {Firth (1946)}, + lgcode = {Malays [mala1479]} +} +@misc{firth1952, + author = {Firth, R.}, + title = {Conflict and Adjustment in Tikopia Religions Systems}, + year = {1952}, + howpublished = {Manuscript}, + key = {Firth (1952)}, + lgcode = {Tikopia [tiko1237]} +} +@article{firth1956, + author = {Firth, R.}, + title = {Ceremonies for Children and Social Frequency in Tikopia}, + journal = {Oceania}, + volume = {27}, + pages = {12-55}, + year = {1956}, + key = {Firth (1956)}, + lgcode = {Tikopia [tiko1237]} +} +@book{firth1959, + author = {Firth, R.}, + title = {Economics of the New Zealand Maori}, + address = {Wellington}, + year = {1959}, + key = {Firth (1959)}, + lgcode = {Māori [maor1246]}, + note = {2nd Edition} +} +@article{firth1960, + author = {Firth, R.}, + title = {Succession to Chieftainship in Tikopia}, + journal = {Oceania}, + volume = {30}, + pages = {161-180}, + year = {1960}, + key = {Firth (1960)}, + lgcode = {Tikopia [tiko1237]} +} +@article{fisch1913, + author = {Fisch, R.}, + title = {Die Dagbamba}, + journal = {Baessler-Arch.}, + volume = {3}, + pages = {132-164}, + year = {1913}, + key = {Fisch (1913)}, + lgcode = {Dagomba [dagb1246]} +} +@article{fischer187879, + author = {Fischer, G. A.}, + title = {Das Wapokomo-Land und seine Bewohner}, + journal = {Mitt. Geog. Ges. Hamburg}, + volume = {2}, + pages = {1-57}, + year = {1878-79}, + glottolog_ref = {eballiso2009:24561}, + key = {Fischer (1878-79)}, + lgcode = {Pokomo [poko1261]} +} +@book{fischer1950, + author = {Fischer, Ana M.}, + title = {The Role of the Trukese Mother and Its Effect on Child Training}, + year = {1950}, + howpublished = {Final SIM Report, Pacific Science Board, National Research Council, imeographed, Washington}, + key = {Fischer (1950)}, + lgcode = {Trukese [chuu1238]} +} +@article{fischer1957a, + author = {Fischer, H. T.}, + title = {Some Notes on Kinship Systems and Relationship Terms of Sumba, Manggarai and South Timor}, + journal = {Intern. Arch. Ethnog.}, + volume = {48}, + pages = {1-31}, + year = {1957}, + key = {Fischer (1957a)}, + lgcode = {Kodi [kodi1247]} +} +@misc{fischer1957b, + author = {Fischer, J. L.}, + year = {1957}, + howpublished = {Personal Communication}, + key = {Fischer (1957b)}, + lgcode = {Tigrinya [tigr1271]} +} +@book{fisher1900, + author = {Fisher, W. E. G.}, + title = {The Transvaal and the Boers}, + address = {London}, + year = {1900}, + key = {Fisher (1900)}, + lgcode = {Boers [afri1274]} +} +@phdthesis{fisher1987, + author = {Fisher, J. W.}, + title = {Shadows in the Forest: Ethnoarchaeology among the Efe Pygmies}, + school = {Department of Anthropology, University of California, Berkeley}, + year = {1987}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Fisher (1987)}, + lgcode = {Efe [efee1239]} +} +@article{fisherandstrickland1989, + author = {Fisher, J. W., and H. C. Strickland}, + title = {Ethnoarchaeology among the Efe Pygmies, Zaire: Spatial Organization of Campsites}, + journal = {American Journal of Physical Anthropology}, + volume = {78}, + pages = {473-484}, + year = {1989}, + key = {Fisher and Strickland (1989)}, + lgcode = {Efe [efee1239]} +} +@book{fisonandhowitt1880, + author = {Fison, L., and A. W. Howitt}, + title = {Kamilaroi and Kurnai}, + publisher = {George Robertson}, + address = {Melbourne}, + year = {1880}, + key = {Fison and Howitt (1880)}, + lgcode = {Kurnai [gana1278]} +} +@book{fitzgerald1941, + author = {Fitzgerald, C. P.}, + title = {The Tower of Five Glories}, + address = {London}, + year = {1941}, + key = {Fitzgerald (1941)}, + lgcode = {Minchia [cent2004]} +} +@article{fitzpatrick1910, + author = {Fitzpatrick, J. F. J.}, + title = {Some Notes on the Kwolla District and Its Tribes}, + journal = {Journ. Afr. Soc.}, + volume = {10}, + pages = {16-52, 213-221}, + year = {1910}, + glottolog_ref = {eballiso2009:29648}, + key = {Fitzpatrick (1910)}, + lgcode = {Angas [ngas1240], Yergum [taro1263]} +} +@book{fitzsimmons1957, + editor = {Fitzsimmons, T.}, + title = {RSFSR. 2v}, + address = {New Haven.}, + year = {1957}, + key = {Fitzsimmons (1957)}, + lgcode = {Russians [russ1263]} +} +@book{flad1860, + author = {Flad, J. M. A.}, + title = {A Short Description of the Falashas and Kemants}, + address = {Chrishona}, + year = {1860}, + key = {Flad (1860)}, + lgcode = {Beta Israel [qima1242]} +} +@article{flannery1932, + author = {Flannery, R.}, + title = {The Position of Woman Among the Mescalero Apache}, + journal = {Prim. Man}, + volume = {5}, + pages = {26-33}, + year = {1932}, + key = {Flannery (1932)}, + lgcode = {Mescalero [mesc1238]} +} +@book{flannery1953, + author = {Flannery, R.}, + title = {The Gros Ventres of Montana, Pt. I: Social Life}, + publisher = {Catholic University of America Press}, + address = {Washington, D.C.}, + series = {Catholic University of America Anthropological Series}, + volume = {15}, + pages = {1-221}, + year = {1953}, + url = {https://hdl.handle.net/2027/uc1.32106008103498}, + key = {Flannery (1953)}, + lgcode = {Arapaho [arap1274], Gros Ventre [gros1243]} +} +@article{flatz1963, + author = {Flatz, G.}, + title = {3 The Mrabri: Anthropometric, Genetic, and Medical Examinatiigns}, + journal = {Journal of the Siam Society}, + volume = {51}, + number = {2}, + pages = {161-170}, + year = {1963}, + key = {Flatz (1963)}, + lgcode = {Mlabri [mlab1235]} +} +@phdthesis{fleming1965, + author = {Fleming, H. C.}, + title = {The Age-Grading Cultures of East Africa}, + school = {University of Pittsburgh}, + year = {1965}, + key = {Fleming (1965)}, + lgcode = {Banna [hame1242], Burji [burj1242], Hamar [hame1242], Tsamai [tsam1247]} +} +@article{fletcherandlaflesche1911, + author = {Fletcher, A. C. and F. La Flesche.}, + title = {The Omaha Tribe}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {27}, + pages = {17-672}, + year = {1911}, + key = {Fletcher and La Flesche (1911)}, + lgcode = {Omaha [omah1248]} +} +@book{fock1963, + author = {Fock, N.}, + title = {Waiwai: Religion and Society of an Amazonian Tribe}, + publisher = {Copenhagen: The National Museum}, + address = {Copenhagen}, + series = {Nationalmuseets Skrifter: Etnografisk Række}, + volume = {VIII}, + pages = {316}, + year = {1963}, + glottolog_ref = {hh:e:Fock:Waiwai}, + key = {Fock (1963)}, + lgcode = {Wai-wai [waiw1244]} +} +@article{foelich1956, + author = {Foelich, J. C.}, + title = {Le commandement et l'organisation sociale chez des Fali}, + journal = {Et. Camerounaises}, + volume = {53-54}, + pages = {20-50}, + year = {1956}, + key = {Foelich (1956)}, + lgcode = {Fali [sout2782]} +} +@book{foote1966, + author = {Foote, D. C.}, + title = {Human Biographical Studies in Northwestern Arctic Alaska: The Upper Kobuk River Project, 1965. Final Report to the Association on American Indian Affairs}, + address = {New York}, + year = {1966}, + key = {Foote (1966)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@book{forbes1964, + author = {Forbes, R. J.}, + title = {Studies in Ancient Technology. 2d edit. 9v}, + address = {Leiden}, + year = {1964}, + key = {Forbes (1964)}, + lgcode = {Hebrews [anci1244]} +} +@article{force1960, + author = {Force, R. W.}, + title = {Leadership and Cultural Change in Palau}, + journal = {Fieldiana, Anthropology}, + volume = {50}, + pages = {1-211}, + year = {1960}, + key = {Force (1960)}, + lgcode = {Palauans [pala1344]} +} +@book{forceandforce1972, + author = {Force, R.W. and Force, M.}, + title = {Just one House: A Description and Analysis of Kinship in the Palau Islands}, + year = {1972}, + key = {Force and Force (1972)}, + lgcode = {Palauans [pala1344]} +} +@book{ford1941, + author = {Ford, C. S.}, + title = {Smoke from Their Fires}, + address = {New Haven}, + year = {1941}, + key = {Ford (1941)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@article{forde1931, + author = {Forde, C. D.}, + title = {Ethnography of the Yuma Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {28}, + pages = {83-278}, + year = {1931}, + key = {Forde (1931)}, + lgcode = {Quechan [quec1382]} +} +@article{forde1939, + author = {Forde, C. D.}, + title = {Government in Umor}, + journal = {Africa}, + volume = {12}, + pages = {129-162}, + year = {1939}, + key = {Forde (1939)}, + lgcode = {Yako [loka1252]} +} +@article{forde1941, + author = {Forde, C. D.}, + title = {Marriage and the Family Among the Yako}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {5}, + pages = {1-121}, + year = {1941}, + key = {Forde (1941)}, + lgcode = {Yako [loka1252]} +} +@incollection{forde1950, + author = {Forde, C. D.}, + editor = {Radcliffe-Brown and Forde}, + title = {Double Descent Among the Yako}, + booktitle = {African systems of kinship and marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London, New York & Toronto}, + pages = {285-332}, + year = {1950}, + glottolog_ref = {eballiso2009:25048}, + key = {Forde (1950)}, + lgcode = {Yako [loka1252]} +} +@book{forde1951, + author = {Forde, D.}, + title = {The Yoruba-speaking Peoples of Southwestern Nigeria}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {4}, + year = {1951}, + glottolog_ref = {eballiso2009:13680}, + key = {Forde (1951)}, + lgcode = {Egba [egba1238], Ekiti [ekit1244], Ife [ifee1241], Oyo Yoruba [ilaa1245]} +} +@article{forde1952, + author = {Forde, C. D.}, + title = {Land and Labour in a Cross River Village}, + journal = {Geographical Journal}, + volume = {90}, + pages = {24-51}, + year = {1952}, + key = {Forde (1952)}, + lgcode = {Yako [loka1252]} +} +@article{forde1955, + author = {Forde, Daryll}, + title = {The Nupe}, + journal = {In Peoples of the Niger-Benve confluence, edited by Daryll Ford, International African Institute, Ethnographic Survey of Africa, Western African, pt.}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + pages = {17-52}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Forde (1955)}, + lgcode = {Nupe [nupe1254]} +} +@book{forde1964, + author = {Forde, C. D.}, + title = {Yako Studies}, + address = {London}, + year = {1964}, + key = {Forde (1964)}, + lgcode = {Yako [loka1252]} +} +@book{fordeandjones1950, + author = {Forde, D. and G. I. Jones}, + title = {The Ibo and Ibibio-speaking Peoples of South-Eastern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {3}, + year = {1950}, + glottolog_ref = {eballiso2009:51522}, + key = {Forde and Jones (1950)}, + lgcode = {Efik [efik1245], Ibibio [ibib1240], Igbo [nucl1417]} +} +@book{fordeandscott1946, + author = {Forde, D. and R. Scott}, + title = {The Native Economies of Nigeria}, + address = {London}, + year = {1946}, + key = {Forde and Scott (1946)}, + lgcode = {Bororo Fulani [boro1274], Hausa Kanawa [kano1249]} +} +@book{fordeetal1955, + author = {Forde, D. and P. Brown and R. G. Armstrong}, + title = {Peoples of the Niger-Benue Confluence}, + publisher = {London: International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {10}, + year = {1955}, + glottolog_ref = {eballiso2009:51521}, + key = {Forde et al. (1955)}, + lgcode = {Eloyi [eloy1241], Idoma [idom1241], Igala [igal1242]} +} +@book{forster1777, + author = {Forster, J. G. A.}, + title = {A Voyage Round the World in Britannic Majesty's Sloop Resolution, Commanded by Captain J. Cook, During the Years 1772, 3, 4, and 5}, + address = {London}, + year = {1777}, + key = {Forster (1777)}, + lgcode = {Marquesans [nort2845]} +} +@article{fortes1937, + author = {Fortes, M.}, + title = {Communal Fishing and Fishing Magic in the Northern Territories of the Gold Coast}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {67}, + pages = {131-142}, + year = {1937}, + key = {Fortes (1937)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortes1938, + author = {Fortes, M.}, + title = {Social and Psychological Aspects of Education in Taleland}, + journal = {Africa}, + volume = {9}, + number = {4}, + pages = {Supplement}, + year = {1938}, + key = {Fortes (1938)}, + lgcode = {Tallensi [taln1239]} +} +@incollection{fortes1940, + author = {Fortes, M.}, + editor = {M. Fortes and E. E. Evans-Pritchard}, + title = {The Political System of the Tallensi}, + booktitle = {African Political Systems}, + publisher = {London: Oxford Univ. Press; International Inst. of African Languages and Cultures (IIALC)}, + address = {London}, + pages = {239-271}, + year = {1940}, + glottolog_ref = {eballiso2009:31988}, + key = {Fortes (1940)}, + lgcode = {Tallensi [taln1239]} +} +@book{fortes1945, + author = {Fortes, M.}, + title = {The Dynamics of Clanship Among the Tallensi}, + address = {London}, + year = {1945 (new ed. 1967)}, + key = {Fortes (1945)}, + lgcode = {Tallensi [taln1239]} +} +@book{fortes1949a, + author = {Fortes, M.}, + title = {The Web of Kinship Among the Tallensi}, + address = {London}, + year = {1949}, + key = {Fortes (1949a)}, + lgcode = {Tallensi [taln1239]} +} +@incollection{fortes1949b, + author = {Fortes, M.}, + editor = {M. Fortes}, + title = {Time and Social Structure: An Ashanti Case Study}, + booktitle = {Social Structure}, + address = {Oxford}, + pages = {54-84}, + year = {1949}, + key = {Fortes (1949b)}, + lgcode = {Ashanti [asan1239]} +} +@book{fortes1949c, + author = {Fortes, M.}, + title = {Time and social structure and other essays}, + address = {London, New York}, + year = {1949}, + key = {Fortes (1949c)}, + lgcode = {Ashanti [asan1239]} +} +@incollection{fortes1950, + author = {Fortes, M.}, + editor = {A. R. Radcliffe-Brown and D. Forde}, + title = {Kinship and Marriage Among the Ashanti}, + booktitle = {African Studies of Kinship and Marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + pages = {252-284}, + year = {1950}, + glottolog_ref = {eballiso2009:10091}, + key = {Fortes (1950)}, + lgcode = {Ashanti [asan1239]} +} +@misc{fortes1969, + author = {Fortes, M.}, + title = {Kinship and the Social Order}, + address = {Chicago}, + year = {1969}, + key = {Fortes (1969)}, + lgcode = {Ashanti [asan1239]} +} +@article{fortes1975, + author = {Fortes, M.}, + title = {Tallensi Ritual Festivals and the Ancestors}, + journal = {Cambridge Anthropology}, + volume = {2}, + number = {2}, + pages = {3-31}, + year = {1975}, + key = {Fortes (1975)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortesandfortes1936, + author = {Fortes, M. and S. L. Fortes}, + title = {Food in the Domestic Economy of the Tallensi}, + journal = {Africa}, + volume = {9}, + pages = {237-276}, + year = {1936}, + key = {Fortes and Fortes (1936)}, + lgcode = {Tallensi [taln1239]} +} +@article{fortesetal1947, + author = {Fortes, M. and R. W. Steel and P. Ady}, + title = {Ashanti Survey, 1945-46}, + journal = {Geographical Journal}, + volume = {110}, + pages = {149-179}, + year = {1947}, + key = {Fortes et al. (1947)}, + lgcode = {Ashanti [asan1239]} +} +@article{fortune1932a, + author = {Fortune, R. F.}, + title = {Omaha Secret Societies}, + journal = {Columbia University Contributions to Anthropology}, + volume = {14}, + pages = {1-193}, + year = {1932}, + key = {Fortune (1932a)}, + lgcode = {Omaha [omah1248]} +} +@book{fortune1932b, + author = {Fortune, R. F.}, + title = {Sorcerers of Dobu}, + address = {New York}, + year = {1932}, + key = {Fortune (1932b)}, + lgcode = {Dobuans [dobu1241]} +} +@article{fortune1935, + author = {Fortune, R. F.}, + title = {Manus Religion}, + journal = {Memoirs of the American Philosophical Society}, + volume = {3}, + pages = {1-391}, + year = {1935}, + key = {Fortune (1935)}, + lgcode = {Manus [tita1241]} +} +@article{fosbrooke1948, + author = {Fosbrooke, H. A.}, + title = {An Administrative Survey of the Masai Social System}, + journal = {Tanganyika Notes and Records}, + volume = {26}, + pages = {1-50}, + year = {1948}, + glottolog_ref = {eballiso2009:23091}, + key = {Fosbrooke (1948)}, + lgcode = {Maasi [masa1300]} +} +@article{foster1940, + author = {Foster, G. M.}, + title = {Notes on the Popoluca of Veracruz}, + journal = {Publicaciones del Instituto Panamericano de Geografia e Historia}, + publisher = {México, DF: Instituto Panamericano de Geografía e Historia}, + volume = {51}, + pages = {1-41}, + year = {1940}, + glottolog_ref = {hh:s:Foster:Popoluca-Veracruz}, + key = {Foster (1940)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1942, + author = {Foster, G. M.}, + title = {A Primitive Mexican Economy}, + journal = {Monographs of the American Ethnological Society}, + volume = {5}, + pages = {1-115}, + year = {1942}, + key = {Foster (1942)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1943, + author = {Foster, G. M.}, + title = {The Geographical, Linguistic, and Cultural Position of the Popoluca of Veracruz}, + journal = {American Anthropologist}, + volume = {45}, + pages = {531-546}, + year = {1943}, + glottolog_ref = {hh:w:Foster:Popoluca}, + key = {Foster (1943)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1944, + author = {Foster, G. M.}, + title = {A Summary of Yuki Culture}, + journal = {Anthropological Records}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {5}, + number = {3}, + pages = {155-244}, + year = {1944}, + key = {Foster (1944)}, + lgcode = {Huchnom [yuki1243], Yuki [yuki1243]} +} +@article{foster1945, + author = {Foster, G. M.}, + title = {Sierra Popoluca Folklore and Beliefs}, + journal = {niversity of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {177-250}, + year = {1945}, + key = {Foster (1945)}, + lgcode = {Sierra Popoluca [high1276]} +} +@article{foster1948, + author = {Foster, G. M.}, + title = {Empire's Children}, + journal = {Publ. Inst. Soc. Anth., Smithsonian Inst.}, + volume = {6}, + pages = {1-297}, + year = {1948}, + key = {Foster (1948)}, + lgcode = {Tarasco [pure1242]} +} +@article{fourie1927, + author = {Fourie, L.}, + title = {7 Preliminary Notes on Certain Customs of the Hei//orn Bushmen}, + journal = {Veroffentlichungen der Wissenschaftlichen Vereinigung in Sildwestafrika}, + volume = {1}, + pages = {19-63}, + year = {1927}, + key = {Fourie (1927)}, + lgcode = {Hai//om [haio1238]} +} +@incollection{fourie1928, + author = {Fourie, L.}, + editor = {C. H. Hahn, H. Vedder, and L. Fourie}, + title = {The Bushmen of South West Africa}, + booktitle = {The native tribes of South West Africa}, + publisher = {Frank Cass}, + address = {London}, + pages = {79-106}, + year = {1928}, + glottolog_ref = {guldemann:1856}, + key = {Fourie (1928)}, + lgcode = {Hai//om [haio1238]} +} +@article{fourneau1938, + author = {Fourneau, J.}, + title = {Une tribu paienne du Nord-Cameroun: Les Guissiga}, + journal = {Journ. Soc. Africanistes}, + volume = {8}, + pages = {163-195}, + year = {1938}, + key = {Fourneau (1938)}, + lgcode = {Gisiga [sout3051]} +} +@incollection{fowler1966, + author = {Fowler, D.}, + editor = {W. L. d'Azevedo}, + title = {Great Basin Social Organization}, + booktitle = {The Current Status of Anthropological Research in the Great Basin: 1964}, + publisher = {Desert Research Institute, University of Nevada}, + address = {Reno}, + series = {Publications in the Social Sciences}, + volume = {1}, + pages = {57-73}, + year = {1966}, + key = {Fowler (1966)}, + lgcode = {Kuyuidokado [sout2967]} +} +@book{fowler1992, + author = {Fowler, C. S.}, + title = {In the Shadow of Fox Peak: An Ethnography of the Cattail-Eater Northern Paiute People of Stillwater Marsh}, + publisher = {U.S. Department of Interior, Fish and Wildlife Service, Region 1. U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Cultural Resource Series}, + number = {5}, + year = {1992}, + key = {Fowler (1992)}, + lgcode = {Toedokado [sout2967]} +} +@incollection{fowlerandliljeblad1986, + author = {Fowler, C. S., and S. Liljeblad}, + editor = {W. L. d'Azevedo}, + title = {Northern Paiute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {435-465}, + year = {1986}, + key = {Fowler and Liljeblad (1986)}, + lgcode = {Kuyuidokado [sout2967], Tunava (Deep Springs) [mono1275]} +} +@article{fox1952, + author = {Fox, R.B.}, + title = {The Pinatubo Negritos: Their Useful Plants and Material Culture}, + journal = {Philippine Journal of Science}, + volume = {81}, + number = {3-4}, + pages = {173-394}, + year = {1952}, + key = {Fox (1952)}, + lgcode = {Ayta (Pinatubo) [boto1242]} +} +@phdthesis{fox1954, + author = {Fox, R. B.}, + title = {Religion and Society Among the Tagbanua of Palawan Island}, + school = {University of Chicago}, + year = {1954}, + key = {Fox (1954)}, + lgcode = {Tagbanua [tagb1258]}, + note = {Unpublished doctoral dissertation} +} +@article{fox1963, + author = {Fox, R. G.}, + title = {Caste Dominance and Coercion in the Nilgiris}, + journal = {Papers of the Michigan Academy of Science, Arts, and Letters}, + volume = {48}, + pages = {493-512}, + year = {1963}, + key = {Fox (1963)}, + lgcode = {Toda [toda1252]} +} +@book{fox1967, + author = {Fox, Robin}, + title = {The Keresan Bridge}, + address = {London}, + series = {London School of Economics Monographs Social Anthropology}, + number = {35}, + year = {1967}, + key = {Fox (1967)}, + lgcode = {Cochiti [coch1273]} +} +@article{frachtenberg1914, + author = {Frachtenberg, Leo J.}, + title = {Lower Umpqua Texts and Notes on the Kusan Dialects}, + journal = {Columbia University Contributions to Anthropology}, + publisher = {New York: Columbia Univ. Press}, + address = {New York}, + series = {Columbia University Contributions to Anthropology}, + volume = {4}, + pages = {1-156}, + year = {1914}, + glottolog_ref = {mpieva:Frachtenberg1914LowerUmp}, + key = {Frachtenberg (1914)}, + lgcode = {Siuslaw [sius1254]} +} +@article{frachtenberg1921, + author = {Frachtenberg, Leo J.}, + title = {The Ceremonial Societies of the Quileute Indians}, + journal = {American Anthropologist}, + volume = {23}, + pages = {320-352}, + year = {1921}, + key = {Frachtenberg (1921)}, + lgcode = {Quileute [quil1240]} +} +@phdthesis{frake1955, + author = {Frake, C. O.}, + title = {Social Organization and Shifting Cultivation Among the Sindangan Subanun}, + school = {Yale University}, + year = {1955}, + key = {Frake (1955)}, + lgcode = {Subanun [cent2089]}, + note = {Unpublished Ph. D. disertation} +} +@article{frake1960, + author = {Frake, C. O.}, + title = {The Eastern Subanun of Mindanao}, + journal = {Viking Fund Publ. Anth.}, + volume = {29}, + pages = {51-64}, + year = {1960}, + key = {Frake (1960)}, + lgcode = {Subanun [cent2089]} +} +@book{franciscanfathers1910, + author = {Franciscan Fathers. I-4.}, + title = {An ethnological dictionary of the Navaho language}, + address = {St. Michaels, Arizona}, + year = {1910}, + key = {Franciscan Fathers (1910)}, + lgcode = {Navajo [nava1243]} +} +@book{frankenetal1960, + author = {Franken, H. J. and R. Goris and C. J. Grader and V. E. Korn and J. L. Swellengrebel}, + title = {Bali: Studies in Life, Thought, and Ritual}, + address = {The Hague}, + year = {1960}, + key = {Franken et al. (1960)}, + lgcode = {Balinese [bali1278]} +} +@article{franz1931, + author = {Franz, G. H.}, + title = {Some customs of the Transvaal Basotho}, + journal = {Bantu Studies}, + volume = {5}, + pages = {241-46}, + year = {1931}, + glottolog_ref = {eballiso2009:41982}, + key = {Franz (1931)}, + lgcode = {Pedi [tswe1238]} +} +@book{fraser1960, + author = {Fraser, Thomas M., Jr.}, + title = {Rusembilan: a Malay fishing village in Southern Thailand}, + publisher = {Cornell University Press}, + address = {Ithaca}, + year = {1960}, + key = {Fraser (1960)}, + lgcode = {Malays [mala1479]} +} +@book{fraser1966, + author = {Fraser, Thomas M., Jr.}, + title = {Fishermen of South Thailand: the Malay villagers}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1966}, + key = {Fraser (1966)}, + lgcode = {Malays [mala1479]} +} +@article{freed1960, + author = {Freed, Stanley A.}, + title = {Changing Washo Kinship}, + journal = {Anth. Records}, + volume = {14}, + number = {6}, + pages = {349-418}, + year = {1960}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar014-007.pdf}, + key = {Freed (1960)}, + lgcode = {Washo [wash1253]} +} +@article{freed1963, + author = {Freed, Stanley A.}, + title = {Reconstruction of Aboriginal Washo Social Organization}, + journal = {University of Utah Anthropological Papers}, + volume = {67}, + pages = {8-24}, + year = {1963}, + key = {Freed (1963)}, + lgcode = {Washo [wash1253]} +} +@article{freeland1923, + author = {Freeland, L. S.}, + title = {Pomo Doctors and Poisoners}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {57-73}, + year = {1923}, + key = {Freeland (1923)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{freeman1955a, + author = {Freeman, J. D.}, + title = {Iban Agriculture}, + journal = {Colonial Research Studies}, + volume = {18}, + pages = {1-148}, + year = {1955}, + key = {Freeman (1955a)}, + lgcode = {Iban [iban1264]} +} +@book{freeman1955b, + author = {Freeman, J. D.}, + title = {Report on the Iban of Sarawak}, + address = {Kuching}, + year = {1955}, + key = {Freeman (1955b)}, + lgcode = {Iban [iban1264]}, + note = {2nd Edition 1970} +} +@article{freeman1957, + author = {Freeman, J.}, + title = {Iban Pottery}, + journal = {Sarawak Museum Journal}, + volume = {8}, + pages = {53-176}, + year = {1957}, + key = {Freeman (1957)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1958a, + author = {Freeman, J. D.}, + title = {The Family System of the Iban}, + journal = {Cambridge Papers in Social Anthropology}, + volume = {I}, + pages = {15-52}, + year = {1958}, + key = {Freeman (1958a)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1958b, + author = {Freeman, J. D.}, + title = {The Iban of Western Borneo}, + journal = {Viking Fund Publications in Anthropology}, + volume = {29}, + pages = {65-87}, + year = {1958}, + key = {Freeman (1958b)}, + lgcode = {Iban [iban1264]} +} +@article{freeman1965, + author = {Freeman, J. D.}, + title = {Some observations on Kinship and Political Authority in Samoa}, + journal = {American Anthropologist}, + volume = {66}, + pages = {553-568}, + year = {1965}, + key = {Freeman (1965)}, + lgcode = {American Samoans [samo1305]} +} +@book{freeman1970, + author = {Freeman, D.}, + title = {Report on the Iban}, + year = {1970}, + key = {Freeman (1970)}, + lgcode = {Iban [iban1264]} +} +@book{freikin1954, + author = {Freikin, Z. G.}, + title = {Turkmenskaia SSR}, + address = {Moskva}, + year = {1954}, + key = {Freikin (1954)}, + lgcode = {Turkmen [turk1304]} +} +@book{fremerey1978, + author = {Fremerey, M.}, + title = {Indonesien}, + year = {1978}, + key = {Fremerey (1978)}, + lgcode = {Mee [ekar1243]} +} +@incollection{french1961, + author = {French, David}, + editor = {Spicer, Edward H.}, + title = {Wasco-Wishram}, + booktitle = {Perspectives in American Indian Culture Change}, + publisher = {University of Chicago Press}, + address = {Chicago}, + pages = {337-429}, + year = {1961}, + key = {French (1961)}, + lgcode = {Wishram [wasc1239]} +} +@article{fricandradin1906, + author = {Fric, V. A., and P. Radin.}, + title = {Contributions to the Study of the Bororo Indians}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {36}, + pages = {382-406}, + year = {1906}, + key = {Fric and Radin (1906)}, + lgcode = {Bororo [boro1282]} +} +@book{fried1953, + author = {Fried, M.}, + title = {Fabric of Chinese Society}, + address = {N. Y.}, + year = {1953}, + key = {Fried (1953)}, + lgcode = {Chekiang [wuch1236]} +} +@book{friedlander1908, + author = {Friedlander, L.}, + title = {Roman Life and Manners Under the Early Empire}, + address = {London}, + year = {1908}, + key = {Friedlander (1908)}, + lgcode = {Ancient Romans [lati1261]} +} +@misc{friedrich1954, + author = {Friedrich, P. W.}, + title = {The Social Organization of a Ukrainian Village}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Friedrich (1954)}, + lgcode = {Ukranians [east2270]} +} +@article{frikel1959, + author = {Frikel, P.}, + title = {Agricultura dos Indios Munduruku}, + journal = {Boletim do Museu Paraense Emílio Goeldi}, + volume = {4}, + pages = {1-35}, + year = {1959}, + key = {Frikel (1959)}, + lgcode = {Munduruku [mund1330]} +} +@book{friters1949, + author = {Friters, G. M.}, + title = {Outer Mongolia and Its International Position}, + address = {Baltimore}, + year = {1949}, + key = {Friters (1949)}, + lgcode = {Khalka [halh1238]} +} +@book{fritsch1872, + author = {Fritsch, G. T.}, + title = {Die Eingeborenen Sud-Afrika's}, + address = {Breslau}, + year = {1872}, + key = {Fritsch (1872)}, + lgcode = {/Xam [xamm1241]} +} +@article{froelich1949a, + author = {Froelich, J. C.}, + title = {Generalites sur les Kabre}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {11}, + pages = {77-105}, + year = {1949}, + key = {Froelich (1949a)}, + lgcode = {Kabre [kabi1261]} +} +@article{froelich1949b, + author = {Froelich, J. C.}, + title = {Les Konkomba}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {11}, + pages = {409-437}, + year = {1949}, + key = {Froelich (1949b)}, + lgcode = {Konkomba [konk1269]} +} +@book{froelichetal1963, + author = {Froelich, J. C. P. Alexandre, and R. Cornevin.}, + title = {Les populations du Nord-Togo}, + publisher = {Paris & London: Presses Universitaires de France; International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {10}, + year = {1963}, + glottolog_ref = {eballiso2009:53333}, + key = {Froelich et al. (1963)}, + lgcode = {Basari [ntch1242], Kabre [kabi1261], Konkomba [konk1269], Moba [moba1244], Tem [temm1241]} +} +@article{fromm1912, + author = {Fromm, P.}, + title = {Ufipa--Land und Leute}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {25}, + pages = {79-101}, + year = {1912}, + key = {Fromm (1912)}, + lgcode = {Fipa [fipa1238]} +} +@article{fuchs1956, + author = {Fuchs, P.}, + title = {Ueber die Tubbu von Tibesti}, + journal = {Archiv für Völkerkunde}, + volume = {11}, + pages = {43-66}, + year = {1956}, + key = {Fuchs (1956)}, + lgcode = {Teda [teda1241]} +} +@book{fuente1949, + author = {Fuente, J. de la.}, + title = {Yalagag: una villa zapoteca serrana}, + address = {Mexico}, + year = {1949}, + key = {Fuente (1949)}, + lgcode = {Zapotec [yala1267]} +} +@book{fuks1840, + author = {Fuks, A.}, + title = {Zapiski o chuvashah i cheremisah Kazanskoj gubemii (Notes on the Chuvash and Mari of the Kazanskaja Guberia)}, + address = {Kazan'}, + year = {1840}, + key = {Fuks (1840)}, + lgcode = {Chuvash [chuv1255]} +} +@article{fulop1955, + author = {Fulop, M.}, + title = {Notas sobre los terminos y el sistema de parentesco de los Tukano}, + journal = {Rev. Colomb. Antr.}, + address = {Bogotá}, + volume = {4}, + pages = {121-164}, + year = {1955}, + glottolog_ref = {fabreall2009ann:Tukano_tucano08}, + key = {Fulop (1955)}, + lgcode = {Tucano [tuca1252]} +} +@article{furerhaimendorf1943a, + author = {Fürer-Haimendorf, C. von.}, + title = {Avenues to Marriage Among the Bondos of Orissa}, + journal = {Man in India}, + volume = {23}, + pages = {158-172}, + year = {1943}, + key = {Fürer-Haimendorf (1943a)}, + lgcode = {Khond [kuii1252]} +} +@book{furerhaimendorf1943b, + author = {Fürer-Haimendorf, C. von.}, + title = {The Chenchus}, + publisher = {Macmillan}, + address = {London}, + series = {The Aboriginal Tribes of Hyderabad}, + volume = {1}, + year = {1943}, + key = {Fürer-Haimendorf (1943b)}, + lgcode = {Chenchu [chen1255]} +} +@book{furerhaimendorf1945, + author = {Fürer-Haimendorf, C. von.}, + title = {The Reddis of the Bison Hills}, + address = {London}, + year = {1945}, + key = {Fürer-Haimendorf (1945)}, + lgcode = {Reddi [mukh1238]} +} +@book{furerhaimendorf1964, + author = {Fürer-Haimendorf, C. von.}, + title = {The Sherpas of Nepal}, + address = {Berkeley and Los Angeles}, + year = {1964}, + key = {Fürer-Haimendorf (1964)}, + lgcode = {Sherpa [sher1255]} +} +@article{gaalon1939, + author = {Gaalon, R. de.}, + title = {Coutume touareg}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A.}, + volume = {10}, + pages = {217-237}, + year = {1939}, + key = {Gaalon (1939)}, + lgcode = {Udalan Tuareg [timb1263]} +} +@article{gabb1876, + author = {Gabb, W. M.}, + title = {On the Tribes and Languages of Costa Rica}, + journal = {Proceedings of the American Philosophic Society}, + volume = {14}, + pages = {483-602}, + year = {1876}, + key = {Gabb (1876)}, + lgcode = {Bribri [brib1243]} +} +@article{gaborydubourdeau1926, + author = {Gabory-Dubourdeau, P. M.}, + title = {Notice sur les coutumes des Tomas}, + journal = {Bull Com. Et. Hist. Scient. Afr. Occ. Franc.}, + volume = {9}, + pages = {288-475}, + year = {1926}, + key = {Gabory-Dubourdeau (1926)}, + lgcode = {Toma [toma1245]} +} +@book{gadd1965, + author = {Gadd, C. J.}, + title = {Hammurabi and the End of His Dynasty}, + address = {Cambridge}, + series = {Cambridge Ancient History}, + year = {1965}, + key = {Gadd (1965)}, + lgcode = {Babylonians [akka1240]}, + note = {rev. edit., fascicle 35} +} +@book{gaden1909, + author = {Gaden, Henri}, + title = {Essai de la grammaire de la langue baguirmienne}, + publisher = {Ernest Leroux}, + address = {Paris}, + year = {1909}, + url = {https://archive.org/details/rosettaproject_bmi_morsyn-1}, + key = {Gaden (1909)}, + lgcode = {Bagirmi [bagi1246]} +} +@incollection{gadzhieva1958, + author = {Gadzhieva, S. S.}, + title = {Kayakentskie Kumyki}, + series = {Trudy Instituta Etnografii, n. s., 46: Kavkaszkii. Etnograficheskii Sbornik, ed. M. O. Kosven, 2}, + pages = {5-90}, + year = {1958}, + key = {Gadzhieva (1958)}, + lgcode = {Kumyk [kumy1244]} +} +@book{gailey1965, + author = {Gailey, H. A.}, + title = {A History of the Gambia}, + address = {New York}, + year = {1965}, + key = {Gailey (1965)}, + lgcode = {Wolof [nucl1347]} +} +@book{gallardo1910, + author = {Gallardo, C. R.}, + title = {Los Onas}, + publisher = {Cabaut y Cía}, + address = {Buenos Aires}, + series = {Tierra del Fuego}, + year = {1910}, + glottolog_ref = {fabreall2009ann:Chon_selknam41}, + key = {Gallardo (1910)}, + lgcode = {Ona [onaa1245]} +} +@book{gambier1894, + author = {Gambier, J. W.}, + title = {The Guanches}, + series = {Ann. Rep. Smiths.}, + year = {1894}, + key = {Gambier (1894)}, + lgcode = {Guanche [guan1277]} +} +@book{gamble1957, + author = {Gamble, D. P.}, + title = {The Wolof of Senegambia}, + address = {London}, + year = {1957}, + key = {Gamble (1957)}, + lgcode = {Wolof [nucl1347]} +} +@book{gamitto1854, + author = {Gamitto, A. C. P.}, + title = {O Muata Cazembe}, + address = {Lisboa}, + year = {1854}, + key = {Gamitto (1854)}, + lgcode = {Luapula [luun1238]} +} +@book{gannandthompson1931, + author = {Gann, T. W. F., and J. E. Thompson.}, + title = {The History of the Maya}, + address = {New York}, + year = {1931}, + key = {Gann and Thompson (1931)}, + lgcode = {Yucatec Maya [yuca1254]} +} +@book{gapanovich1927, + author = {Gapanovich, I. I.}, + title = {Amgunskie tungusy i negidal'tsy}, + address = {Kharbin}, + year = {1927}, + key = {Gapanovich (1927)}, + lgcode = {Negidal [negi1245]} +} +@book{garcia1760, + author = {Garcia, B.}, + title = {Manual para administrar los santos sacramentos}, + publisher = {Rivera}, + address = {Mexico}, + year = {1760}, + key = {Garcia (1760)}, + lgcode = {Coahuilteco [coah1252]} +} +@article{gardner1897, + author = {Gardner, J. S.}, + title = {The Natives of Rotuma}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {27}, + pages = {396-435, 457-524}, + year = {1897}, + key = {Gardner (1897)}, + lgcode = {Rotumans [rotu1241]} +} +@phdthesis{gardner1965, + author = {Gardner, P. M.}, + title = {Ecology and social structure in refugee populations: The Paliyans of South India}, + school = {Department of Anthropology, University of Pennsylvania, Philadelphia}, + pages = {174}, + year = {1965}, + glottolog_ref = {hh:e:Gardner:Paliyans:1965}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Gardner (1965)}, + lgcode = {Paliyans [pali1274]} +} +@incollection{gardner1972, + author = {Gardner, P. M.}, + editor = {M. Bicchieri}, + title = {The Paliyans}, + booktitle = {Hunters and Gatherers Today: A Socioeconomic Study of Eleven Such Cultures in the Twentieth Century}, + publisher = {Holt, Rinehart & Winston}, + address = {New York}, + pages = {404-447}, + year = {1972}, + glottolog_ref = {hh:e:Gardner:Paliyans:1972}, + key = {Gardner (1972)}, + lgcode = {Paliyans [pali1274]} +} +@incollection{gardner1978, + author = {Gardner, W.}, + editor = {I. McBryde}, + title = {Productions and Resources of the Northern and Western Districts of New South Wales (1842-54)}, + booktitle = {Records of Past Times: Ethnohistorical Essays on the Culture and Ecology of the New England Tribes}, + publisher = {Australian Institute of Aboriginal Studies}, + address = {Canberra}, + pages = {49-246}, + year = {1978}, + key = {Gardner (1978)}, + lgcode = {Badjalang [midd1357]} +} +@incollection{gardner1988, + author = {Gardner, P. M.}, + editor = {T. Ingold, D. Riches, and J. Woodburn}, + title = {Pressures for Tamil Propriety in Paliyan Social Organization}, + booktitle = {History, Evolution and Social Change}, + publisher = {Berg}, + address = {Oxford}, + series = {Hunters and Gatherers}, + volume = {1}, + pages = {91-106}, + year = {1988}, + key = {Gardner (1988)}, + lgcode = {Paliyans [pali1274]} +} +@article{garfield1939, + author = {Garfield, Viola E.}, + title = {Tsimshian Clan and Society}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {7}, + pages = {167-340}, + year = {1939}, + glottolog_ref = {anla:TS928G1939}, + key = {Garfield (1939)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@article{garfield1947, + author = {Garfield, Viola E.}, + title = {Historical Aspects of Tlingit Clans in Angoo, Alaska}, + journal = {American Anthropologist}, + volume = {49}, + pages = {438-452}, + year = {1947}, + key = {Garfield (1947)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@article{garfieldetal1951, + author = {Garfield, Viola E. and Paul S. Wingert and Marius Barbeau}, + title = {The Tsimshian: Their Arts ad Music}, + journal = {Publ. Amer. Ethn. Soc.}, + volume = {18}, + pages = {1-290}, + year = {1951}, + key = {Garfield et al. (1951)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@incollection{gargettandhayden1991, + author = {Gargett, R., and B. Hayden}, + editor = {E. Kroll and D. Price}, + title = {Site Structure, Kinship and Sharing in Aboriginal Australia: Implications for Archaeology}, + booktitle = {The Interpretation of Archaeological Spatial Patterning}, + publisher = {Plenum Press}, + address = {New York}, + pages = {11-32}, + year = {1991}, + key = {Gargett and Hayden (1991)}, + lgcode = {Pintubi [pint1250]} +} +@book{garine1964, + author = {Garine, I. de.}, + title = {Les Massa du Cameroun}, + publisher = {Paris: Presses Universitaires de France}, + address = {Paris}, + year = {1964}, + glottolog_ref = {eballiso2009:17802}, + key = {Garine (1964)}, + lgcode = {Masa [masa1322]} +} +@article{garrod1946a, + author = {Garrod, O.}, + title = {The Nomadic Tribes of Persia Today}, + journal = {Journ. Roy. Cent. Asian Soc.}, + volume = {33}, + pages = {32-46}, + year = {1946}, + key = {Garrod (1946a)}, + lgcode = {Qashqui [qash1240]} +} +@article{garrod1946b, + author = {Garrod, O.}, + title = {The Qashqai Tribes of Fars}, + journal = {Journ. Roy. Cent. Asian Soc.}, + volume = {33}, + pages = {293-306}, + year = {1946}, + key = {Garrod (1946b)}, + lgcode = {Qashqui [qash1240]} +} +@article{garth1944, + author = {Garth, T. R.}, + title = {Kinship Terminology, Marriage Practices and Behavior Toward Kin Among the Atsugewi}, + journal = {American Anthropologist}, + volume = {46}, + pages = {348-361}, + year = {1944}, + key = {Garth (1944)}, + lgcode = {Atsugewi [atsu1245]} +} +@article{garth1953, + author = {Garth, T. R.}, + title = {Atsugewi Ethnography}, + journal = {Anth. Records}, + volume = {14}, + pages = {129-212}, + year = {1953}, + key = {Garth (1953)}, + lgcode = {Atsugewi [atsu1245]} +} +@article{garvan1931, + author = {Garvan, J. M.}, + title = {The Manobo of Mindanao}, + journal = {Mem. Nat. Acad. Sci.}, + publisher = {Washinton, D.C.: National Academy of Science}, + series = {National Academy of Science Memoirs}, + volume = {23}, + pages = {1-231}, + year = {1931}, + glottolog_ref = {hh:he:Garvan:Manobos}, + key = {Garvan (1931)}, + lgcode = {Manobo [agus1235]} +} +@book{gason1874, + author = {Gason, S.}, + title = {The Dieri Tribe}, + year = {1874}, + key = {Gason (1874)}, + lgcode = {Diyari [dier1241]}, + note = {Reprinted in J. Woods, ed., The Native Tribes of South Australia, Adelaide, 1879.} +} +@incollection{gason1879, + author = {Gason, S.}, + editor = {J. D. Woods}, + title = {The Dieyerie Tribe}, + booktitle = {The Native Tribes of South Australia}, + publisher = {E. S. Wigg and Son}, + address = {Adelaide}, + pages = {257-286}, + year = {1879}, + key = {Gason (1879)}, + lgcode = {Diyari [dier1241]} +} +@book{gatschet1890, + author = {Gatschet, A. S.}, + title = {The Klamath indians of Southwestern Oregon}, + publisher = {Washington: Gov. Print. Office}, + series = {Contributions to North American Ethnology}, + volume = {2, 2}, + pages = {711}, + year = {1890}, + glottolog_ref = {mpieva:Gatschet1890TheKlama}, + key = {Gatschet (1890)}, + lgcode = {Klamath [klam1254]} +} +@article{gatschet1891, + author = {Gatschet, A. A.}, + title = {The Karankawa Indians}, + journal = {Papers of the Peabody Museum of Archaeology and Ethnology, Harvard University}, + volume = {1}, + pages = {ii, 5-103}, + year = {1891}, + key = {Gatschet (1891)}, + lgcode = {Karankawa [kara1289]} +} +@book{gaud1911, + author = {Gaud, F.}, + title = {Les Mandja}, + address = {Bruxelles}, + year = {1911}, + key = {Gaud (1911)}, + lgcode = {Mandja [manz1243]} +} +@book{gaudry1929, + author = {Gaudry, M.}, + title = {La femme cahouia de l'Aures}, + address = {Paris}, + year = {1929}, + key = {Gaudry (1929)}, + lgcode = {Shawiya [tach1249]} +} +@article{gaughwinandsullivan1984, + author = {Gaughwin, D., and H. Sullivan}, + title = {Aboriginal Boundaries and Movements in Western Port, Victoria}, + journal = {Aboriginal History}, + volume = {8}, + pages = {80-98}, + year = {1984}, + key = {Gaughwin and Sullivan (1984)}, + lgcode = {Bunurong [woiw1237]} +} +@article{gayton1930, + author = {Gayton, Ann H.}, + title = {Yokuts-Mono Chiefs and Shamans}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {24}, + pages = {361-420}, + year = {1930}, + key = {Gayton (1930)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@incollection{gayton1936, + author = {Gayton, Ann H.}, + editor = {R. H. Lowie}, + title = {Estudillo Among the Yokuts}, + booktitle = {Essays in Anthropology presented to A. L. Kroeber}, + address = {Berkeley}, + pages = {67-85}, + year = {1936}, + key = {Gayton (1936)}, + lgcode = {Southern Valley Yokuts [vall1251], Wukchumni [tule1245]} +} +@article{gayton1945, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Social Organization}, + journal = {American Anthropologist}, + volume = {47}, + pages = {409-426}, + year = {1945}, + key = {Gayton (1945)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]} +} +@article{gayton1946, + author = {Gayton, Ann H.}, + title = {Culture-Environment Integration: External References in Yokuts Life}, + journal = {Southwestern Journal of Anthropology}, + volume = {2}, + pages = {252-268}, + year = {1946}, + url = {http://www.jstor.org/stable/3628717}, + key = {Gayton (1946)}, + lgcode = {Kings River Yokuts [sout2955], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Wukchumni [tule1245]} +} +@book{gayton1948a, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Ethnography. I. Tulare Lake, Southern Valley, and Central Foothill Yokuts}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Anthropological Records}, + volume = {10}, + number = {1}, + pages = {1-302}, + year = {1948}, + key = {Gayton (1948a)}, + lgcode = {Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothill Yokuts [nort2937], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts [vall1251], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245]}, + note = {The years 1885 to 1860 cover the youth span of my older informants, the years 1860 to 1830 the mid-span of their parents' lives, and 1830 to 1800 the mid-span of their grandparents' lives. The bulk of cultural detail recalled was seen, experienced, or heard about in the years 1840 to 1890 approximately; fieldwork 1925-28} +} +@misc{gayton1948b, + author = {Gayton, Ann H.}, + title = {Yokuts and Western Mono Ethnography. II. Northern Foothill Yokuts and Western Mono}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {Anthropological Records}, + volume = {10}, + number = {2}, + pages = {1-302}, + year = {1948}, + key = {Gayton (1948b)}, + lgcode = {Kings River Western Mono [mono1275], Kings River Yokuts [sout2955], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Southern Valley Yokuts (Lake) [vall1251], Southern Valley Yokuts (Yauelmani) [vall1251], Western Mono [mono1275], Wukchumni [tule1245], Yakut [yaku1245]} +} +@article{gearing1962, + author = {Gearing, F.}, + title = {Priests and Warriors}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {93}, + pages = {1-124}, + year = {1962}, + key = {Gearing (1962)}, + lgcode = {Cherokee [cher1273]} +} +@article{geddes1946, + author = {Geddes, W. R. IV-10.}, + title = {The color sense of Fijian natives}, + journal = {British Journal of Psychology}, + volume = {37}, + pages = {30-36}, + year = {1946}, + key = {Geddes (1946)}, + lgcode = {Lau [laua1243]} +} +@misc{geertz1959a, + author = {Geertz, C.}, + title = {Balinese Religion in Transition}, + year = {1959}, + howpublished = {Manuscript}, + key = {Geertz (1959a)}, + lgcode = {Balinese [bali1278]} +} +@article{geertz1959b, + author = {Geertz, C.}, + title = {Form and Variation in Balinese Village Structure}, + journal = {American Anthropologist}, + volume = {61}, + pages = {991-1012}, + year = {1959}, + key = {Geertz (1959b)}, + lgcode = {Balinese [bali1278]} +} +@book{geertz1960, + author = {Geertz, C.}, + title = {The Religion of Java}, + address = {Chicago}, + year = {1960}, + key = {Geertz (1960)}, + lgcode = {Javanese [java1254]} +} +@book{geertz1961, + author = {Geertz, H.}, + title = {The Javanese Family}, + address = {New York}, + year = {1961}, + key = {Geertz (1961)}, + lgcode = {Javanese [java1254]} +} +@book{geertz1963, + author = {Geertz, C.}, + title = {Peddlers and Princes}, + address = {Chicago}, + year = {1963}, + key = {Geertz (1963)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@book{geertz1965, + author = {Geertz, C.}, + title = {The Social History of an Indonesian Town}, + address = {Cambridge}, + year = {1965}, + key = {Geertz (1965)}, + lgcode = {Javanese [java1254]} +} +@incollection{geertz1967, + author = {Geertz, C.}, + editor = {Koentjaraningrat}, + title = {Tihingan}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {210-293}, + year = {1967}, + key = {Geertz (1967)}, + lgcode = {Balinese [bali1278]} +} +@misc{geertzandgeertz1959, + author = {Geertz, C., and H. Geertz.}, + title = {The Balinese Kinship System}, + year = {1959}, + howpublished = {Manuscript}, + key = {Geertz and Geertz (1959)}, + lgcode = {Balinese [bali1278]} +} +@article{geoje1910, + author = {Geoje, C. H. de.}, + title = {Beitrage zur Volkerkunde von Surinam}, + journal = {Int. Arch. Ethnog.}, + volume = {19}, + pages = {1-28}, + year = {1910}, + key = {Geoje (1910)}, + lgcode = {Lokono [araw1276]} +} +@book{germann1933, + author = {Germann, P.}, + title = {Die Volkerstamme im Norden von Liberia}, + publisher = {Leipzig: R. Voigtlanders Verlag}, + address = {Leipzig}, + year = {1933}, + glottolog_ref = {eballiso2009:16606}, + key = {Germann (1933)}, + lgcode = {Gbande [band1352]} +} +@article{geyskes1954, + author = {Geyskes, D. C.}, + title = {De landbouw bij de Bosnegers van de Marowijne}, + journal = {West-Indische Gids}, + volume = {35}, + pages = {135-153}, + year = {1954}, + key = {Geyskes (1954)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{ghawi1924, + author = {Ghawi, J. B.}, + title = {Notes on the Law and Custom of the Jur Tribe}, + journal = {Sudan Notes Rec.}, + volume = {7}, + number = {ii}, + pages = {71-81}, + year = {1924}, + key = {Ghawi (1924)}, + lgcode = {Jur [luwo1239]} +} +@book{ghisletti1954, + author = {Ghisletti, L. V.}, + title = {Los Mwiskas}, + address = {Bogota}, + year = {1954}, + key = {Ghisletti (1954)}, + lgcode = {Muisca [chib1270]} +} +@article{gibbs1963, + author = {Gibbs, J. L.}, + title = {Marital Instability Among the Kpelle}, + journal = {American Anthropologist}, + volume = {65}, + pages = {552-573}, + year = {1963}, + key = {Gibbs (1963)}, + lgcode = {Kpelle [libe1247]} +} +@incollection{gibbs1965, + author = {Gibbs, J. L.}, + editor = {J. L. Gibbs}, + title = {The Kpelle of Liberia}, + booktitle = {Peoples of Africa}, + publisher = {New York: Holt, Rinehart & Winston}, + address = {New York}, + pages = {197-240}, + year = {1965}, + glottolog_ref = {hh:e:Gibbs:Kpelle}, + key = {Gibbs (1965)}, + lgcode = {Kpelle [libe1247]} +} +@article{giddings1956, + author = {Giddings, J. L.}, + title = {Forest Eskimos: An Ethnographic Sketch of Kobuk River People in the 1880's}, + journal = {University Museum Bulletin (Philadelphia)}, + volume = {20}, + number = {2}, + pages = {1-55}, + year = {1956}, + key = {Giddings (1956)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@misc{giddingsperscomm1963, + author = {Giddings, J. L.}, + year = {1963}, + howpublished = {pers. conmm.}, + key = {Giddings pers. comm. (1963)}, + lgcode = {Kobuk Inuit [kobu1239]} +} +@article{gifford1916, + author = {Gifford, E. W.}, + title = {Miwok Moieties}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {12}, + number = {4}, + pages = {139-194}, + year = {1916}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp012-006.pdf}, + key = {Gifford (1916)}, + lgcode = {Central Sierra Miwok [cent2140]} +} +@article{gifford1917, + author = {Gifford, E. W.}, + title = {Tubatulabal and Kawaiisu Kinship Terms}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Berkeley: Univ. of California Press}, + address = {Berkeley}, + series = {University of California publications in American archaeology and ethnology}, + volume = {12}, + pages = {219-248}, + year = {1917}, + glottolog_ref = {mpieva:Gifford1917Tubatula}, + key = {Gifford (1917)}, + lgcode = {Kawaiisu [kawa1283], Southern Paiute (Kaibab) [sout2969], Tübalulabal [tuba1278], Uintah Ute [utee1244]} +} +@book{gifford1918, + author = {Gifford, E. W.}, + title = {Clans and Moieties in Southern California}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {14}, + year = {1918}, + key = {Gifford (1918)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cupeño [cupe1243], Kumeyaay (Desert Diegueno) [kumi1248], Kumeyaay (Mountain Diegueno) [kumi1248], Kumeyaay (Western Diegueno) [kumi1248], Luiseño [luis1253], Serrano [serr1255]} +} +@article{gifford1922, + author = {Gifford, E. W.}, + title = {California Kinship Terminologies}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Univ.of California Press}, + address = {Berkeley, Calif.}, + volume = {18}, + pages = {1-285}, + year = {1922}, + glottolog_ref = {mpieva:Gifford1922Californ}, + key = {Gifford (1922)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cupeño [cupe1243], Huchnom [yuki1243], Karuk [karo1304], Kumeyaay [kumi1248], Lake Miwok [lake1258], Lassik [wail1244], Maidu [nort2952], Northern Pomo [nort2966], Serrano [serr1255], Southern Pomo [sout2984], Wappo [wapp1239], Western Mono [mono1275], Wintu [nucl1651], Wiyot [wiyo1248], Yuki [yuki1243]} +} +@article{gifford1923, + author = {Gifford, Edward W.}, + title = {Pomo Lands on Clear Lake}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {20}, + pages = {77-92}, + year = {1923}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp020-006.pdf}, + key = {Gifford (1923)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@article{gifford1926a, + author = {Gifford, E. W.}, + title = {Clear Lake Pomo Society}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Univ.of California Press}, + address = {Berkeley}, + volume = {18}, + number = {2}, + pages = {287-390}, + year = {1926}, + key = {Gifford (1926a)}, + lgcode = {Clear Lake Pomo [east2545], Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@book{gifford1926b, + author = {Gifford, E. W.}, + title = {California Anthropometry}, + publisher = {University of California Press}, + address = {Berkeley}, + series = {University of California Publications in American Archaeology and Ethnology}, + volume = {22}, + year = {1926}, + key = {Gifford (1926b)}, + lgcode = {Achumawi [achu1247], Atsugewi [atsu1245], Cahuilla (Desert) [cahu1264], Central Sierra Miwok [cent2140], Cupeño [cupe1243], Eastern Mono [mono1275], Eastern Pomo [east2545], Hupa [hupa1239], Klamath [klam1254], Luiseño [luis1253], Maidu [nort2952], Modoc [klam1254], Nomlaki [noml1242], North Fork Mono [mono1275], Northern Foothills Yokuts [nort2937], Northern Pomo [nort2966], Patwin [patw1250], Salinan [sali1253], Serrano [serr1255], Southern Valley Yokuts [vall1251], Wadatkuht [sout2967], Washo [wash1253], Wiyot [wiyo1248], Yana [yana1271], Yuki [yuki1243], Yurok [yuro1248]} +} +@article{gifford1926c, + author = {Gifford, E. W.}, + title = {Miwok Lineages and the Political Unit in Aboriginal California}, + journal = {American Anthropologist}, + volume = {28}, + pages = {389-401}, + year = {1926}, + key = {Gifford (1926c)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1926d, + author = {Gifford, Edward W.}, + title = {Miwok Cults}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {18}, + pages = {391-408}, + year = {1926}, + key = {Gifford, 1926d}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1927, + author = {Gifford, Edward W.}, + title = {Southern Maidu Religious Ceremonies}, + journal = {American Anthropologist}, + volume = {29}, + pages = {214-257}, + year = {1927}, + key = {Gifford (1927)}, + lgcode = {Nisenan (Foothill) [nise1244], Nisenan (Mountain) [nise1244], Nisenan (Southern) [nise1244]} +} +@article{gifford1928, + author = {Gifford, E. W.}, + title = {Notes on Central Pomo and Northern Yana Society}, + journal = {American Anthropologist}, + volume = {30}, + pages = {675-684}, + year = {1928}, + key = {Gifford (1928)}, + lgcode = {Yana [yana1271]} +} +@article{gifford1929, + author = {Gifford, E. W.}, + title = {Tongan Society}, + journal = {Bull. Bishop Mus.}, + volume = {61}, + pages = {1-366}, + year = {1929}, + key = {Gifford (1929)}, + lgcode = {Tongans [tong1325]} +} +@article{gifford1931, + author = {Gifford, E. W.}, + title = {The Kamia of Imperial Valley}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {97}, + pages = {1-88}, + year = {1931}, + key = {Gifford (1931)}, + lgcode = {Kamia [kumi1248]} +} +@article{gifford1932a, + author = {Gifford, E. W.}, + title = {The Southeastern Yavapai}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {29}, + pages = {177-252}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp029-004.pdf}, + key = {Gifford (1932a)}, + lgcode = {Kewyipaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{gifford1932b, + author = {Gifford, E. W.}, + title = {The Northfork Mono}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {31}, + number = {2}, + pages = {15-65}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-003.pdf}, + key = {Gifford (1932b)}, + lgcode = {Kings River Western Mono [mono1275], North Fork Mono [mono1275], Western Mono [mono1275]} +} +@article{gifford1933, + author = {Gifford, E. W.}, + title = {The Cocopa}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {31}, + pages = {257-334}, + year = {1933}, + key = {Gifford (1933)}, + lgcode = {Cocopa [coco1261]} +} +@article{gifford1936, + author = {Gifford, E. W.}, + title = {Northeastern and Western Yavapai}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {34}, + pages = {247-354}, + year = {1936}, + key = {Gifford (1936)}, + lgcode = {Tolkepaya [yava1252], Yavapai [yava1252], Yavapai (Northeast) [yava1252], Yavapai (Southeast) [yava1252]} +} +@article{gifford1939, + author = {Gifford, E. W.}, + title = {The Coast Yuki}, + journal = {Anthropos}, + volume = {34}, + pages = {292-375}, + year = {1939}, + key = {Gifford (1939)}, + lgcode = {Coast Yuki [yuki1243]} +} +@article{gifford1940, + author = {Gifford, E. W.}, + title = {Apache-Pueblo}, + journal = {Anth. Rec.}, + volume = {4}, + pages = {1-207}, + year = {1940}, + key = {Gifford (1940)}, + lgcode = {Chiricahua [mesc1238], Chiricahua (Huachuca) [mesc1238], Chiricahua (Warm Springs) [mesc1238], Jicarilla [jica1244], Lipan Apache [lipa1241], Mescalero [mesc1238], Santa Ana [sant1426], Southern Ute [utee1244], Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615], Zuni [zuni1245]} +} +@article{gifford1944, + author = {Gifford, Edward W.}, + title = {Miwok Lineages}, + journal = {American Anthropologist}, + volume = {46}, + pages = {376-381}, + year = {1944}, + key = {Gifford (1944)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{gifford1955, + author = {Gifford, E. W.}, + title = {Central Miwok Ceremonies}, + journal = {Anth. Rec.}, + volume = {14}, + pages = {261-318}, + year = {1955}, + key = {Gifford (1955)}, + lgcode = {Central Sierra Miwok [cent2140], Northern Miwok [nort2968], Southern Miwok [sout2985]} +} +@article{giffordandkroeber1936, + author = {Gifford, E. W., and S. Klimek.}, + title = {Yana}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {71-100}, + year = {1936}, + key = {Gifford and Kroeber (1936)}, + lgcode = {Yana [yana1271]} +} +@article{giffordandkroeber1937a, + author = {Gifford, E. W., and A. I. Kroeber.}, + title = {Pomo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {117-254}, + year = {1937}, + key = {Gifford and Kroeber (1937a)}, + lgcode = {Eastern Pomo [east2545], Lake Miwok [lake1258], Northern Pomo [nort2966], Patwin [patw1250], Southern Pomo [sout2984]} +} +@article{giffordandkroeber1937b, + author = {Gifford, E. W., and A. L. Kroeber.}, + title = {Culture Element Distributions IV: Pomo}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {37}, + pages = {117-254}, + year = {1937}, + key = {Gifford and Kroeber (1937b)}, + lgcode = {Eastern Pomo [east2545]} +} +@article{giffordandlowie1928, + author = {Gifford, E. W. and Robert H. Lowie}, + title = {Notes on the Akwa'ala Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {23}, + pages = {339-352}, + year = {1928}, + key = {Gifford and Lowie (1928)}, + lgcode = {Akwa’ala [paip1241]} +} +@incollection{gilberg1984, + author = {Gilberg, R.}, + editor = {D. Damas}, + title = {Polar Eskimo}, + booktitle = {Arctic,}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {5}, + pages = {577-594}, + year = {1984}, + glottolog_ref = {hh:e:Gilberg:Polar-Eskimo}, + key = {Gilberg (1984)}, + lgcode = {Inughuit (Northern Greenland) [pola1254]} +} +@incollection{gilbert1937, + author = {Gilbert, W. H.}, + editor = {Eggan}, + title = {Eastern Cherokee Social Organization}, + booktitle = {Social Organization of North American Tribes}, + address = {Chicago}, + pages = {285-338}, + year = {1937}, + key = {Gilbert (1937)}, + lgcode = {Cherokee [cher1273]} +} +@article{gilbert1943, + author = {Gilbert, William H., Jr.}, + title = {The Eastern Cherokees}, + journal = {Bulletin of the Bureau of American Ethnology}, + volume = {133}, + pages = {227-338}, + year = {1943}, + key = {Gilbert (1943)}, + lgcode = {Cherokee [cher1273]} +} +@book{gildelgado1949, + author = {Gil-Delgado, C. C.}, + title = {Notas para un estudio antropologico y etnologico del Bubi de Fernando Poo}, + address = {Madrid}, + year = {1949}, + key = {Gil-Delgado (1949)}, + lgcode = {Bubi [bube1242]} +} +@article{gilg1965, + author = {Gilg, A.}, + title = {The Seri Indians in 1692}, + journal = {Arizona and the West}, + volume = {7}, + number = {1}, + pages = {33-56}, + year = {1965}, + key = {Gilg (1965)}, + lgcode = {Seri [seri1257]}, + note = {translated and edited by C. C. DiPeso and D. S. Matson} +} +@incollection{gillespie1981, + author = {Gillespie, B. C.}, + editor = {Helm, J.}, + title = {Mountain Indians}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washinton D. C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {326-337}, + year = {1981}, + glottolog_ref = {hh:e:Gillespie:Mountain-Indians}, + key = {Gillespie (1981)}, + lgcode = {Mountain Dene [nort2942]} +} +@article{gilliard1925, + author = {Gilliard, L.}, + title = {Etude de la societe indigene}, + journal = {Congo}, + volume = {6}, + pages = {i, 39-76}, + year = {1925}, + key = {Gilliard (1925)}, + lgcode = {Ekonda [ekon1238]} +} +@book{gillin1936, + author = {Gillin, J. P.}, + title = {The Barama river Caribs of British Guiana}, + address = {Cambridge}, + series = {Papers of the Peabody Museum of Archeology and Ethnology, Harvard University}, + volume = {14}, + number = {ii}, + pages = {1-274}, + year = {1936}, + glottolog_ref = {fabreall2009ann:Caribe_kari'na057}, + key = {Gillin (1936)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gillin1948, + author = {Gillin, J. P.}, + title = {Tribes of the Guianas}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + address = {Washington 1946-1950}, + volume = {3}, + pages = {799-860}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Caribe_chikena0}, + key = {Gillin (1948)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gillin1951, + author = {Gillin, J. P.}, + title = {The Culture of Security in San Carlos}, + journal = {Publ. Middle Amer. Res. Inst., Tulane Univ.}, + volume = {16}, + pages = {1-128}, + year = {1951}, + key = {Gillin (1951)}, + lgcode = {Poqomam [poqo1253]} +} +@misc{gillinnd, + author = {Gillin, J. P.}, + howpublished = {Personal communication}, + key = {Gillin (nd)}, + lgcode = {Barama River Carib [mura1272]} +} +@article{gilmore1927, + author = {Gilmore, M. R.}, + title = {Some Notes on Arikara Tribal Organization}, + journal = {Indian Notes}, + volume = {4}, + pages = {332-350}, + year = {1927}, + key = {Gilmore (1927)}, + lgcode = {Arikara [arik1262]} +} +@book{ginsburgandroberts1958, + author = {Ginsburg, N., and C. F. Roberts, Jr.}, + title = {Malaya}, + address = {Seattle}, + year = {1958}, + key = {Ginsburg and Roberts (1958)}, + lgcode = {Malays [mala1479]} +} +@book{girard1904, + author = {Girard, H.}, + title = {Les tribes sauvages du Haut-Tonkin: Mans et Meos}, + address = {Paris}, + year = {1904}, + key = {Girard (1904)}, + lgcode = {Man [kimm1245]} +} +@article{girfanova2000, + author = {Girfanova, A. H.}, + title = {Udegejskie terminy rodstva (Udihe Kinship Terminology)}, + journal = {Algebra rodstva}, + volume = {5}, + pages = {271-77}, + year = {2000}, + key = {Girfanova (2000)}, + lgcode = {Udihe [udih1248]} +} +@article{girling1960, + author = {Girling, F. K.}, + title = {The Acholi of Uganda}, + journal = {Colonial Research Studies}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {30}, + pages = {1-238}, + year = {1960}, + glottolog_ref = {eballiso2009:17156}, + key = {Girling (1960)}, + lgcode = {Acholi [dhop1238]} +} +@book{glacken1955, + author = {Glacken, C. J.}, + title = {The Great Loochoo}, + address = {Berkeley}, + year = {1955}, + key = {Glacken (1955)}, + lgcode = {Okinawans [cent2126]} +} +@article{gladwin1948, + author = {Gladwin, T.}, + title = {Comanche Kin Behavior}, + journal = {American Anthropologist}, + volume = {50}, + pages = {73-94}, + year = {1948}, + key = {Gladwin (1948)}, + lgcode = {Comanche [coma1245]} +} +@article{gladwinandsarason1953, + author = {Gladwin, T., and S. B. Sarason.}, + title = {Truk:Man in Paradise}, + journal = {Viking Fund Publications in Anthropology}, + volume = {20}, + pages = {1-655}, + year = {1953}, + key = {Gladwin and Sarason (1953)}, + lgcode = {Trukese [chuu1238]} +} +@book{glover1927, + author = {Glover, T. R.}, + title = {Conflict of Religions in the Early Roman Empire}, + address = {London}, + year = {1927}, + key = {Glover (1927)}, + lgcode = {Ancient Romans [lati1261]} +} +@incollection{gluckman1940, + author = {Gluckman, M.}, + editor = {Fortes and Evans-Pritchard}, + title = {The Kingdom of the Zulu in South Africa}, + booktitle = {African Political Systems}, + address = {Oxford}, + pages = {25-55}, + year = {1940}, + key = {Gluckman (1940)}, + lgcode = {Zulu [zulu1248]} +} +@book{gluckman1941, + author = {Gluckman, M.}, + title = {Economy of the Central Barotse Plain}, + series = {Rhodes-Livingstone Papers}, + volume = {7}, + year = {1941}, + key = {Gluckman (1941)}, + lgcode = {Lozi [lozi1239]} +} +@incollection{gluckman1950, + author = {Gluckman, M.}, + editor = {Radcliffe-Brown and Forde}, + title = {Kinship and Marriage Among the Lozi of Northern Rhodesia and the Zulu of Natal}, + booktitle = {African Systems of Kinship and Marriage}, + publisher = {London, New York & Toronto: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + pages = {166-206}, + year = {1950}, + glottolog_ref = {eballiso2009:44745}, + key = {Gluckman (1950)}, + lgcode = {Lozi [lozi1239], Zulu [zulu1248]} +} +@incollection{gluckman1951, + author = {Gluckman, M.}, + editor = {E. Colson and M. Gluckman}, + title = {The Lozi of Barotseland}, + booktitle = {Seven Tribes of British Central Africa}, + publisher = {Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {London}, + pages = {1-93}, + year = {1951}, + glottolog_ref = {eballiso2009:27123}, + key = {Gluckman (1951)}, + lgcode = {Lozi [lozi1239]} +} +@book{gluckman1965, + author = {Gluckman, Max}, + title = {The Judicial Process among the Barotse}, + year = {1965}, + key = {Gluckman (1965)}, + lgcode = {Lozi [lozi1239]} +} +@misc{gluckman1972, + author = {Gluckman, M.}, + title = {The Ideas in Barotse Jurisprudence}, + address = {Manchester}, + year = {1972}, + key = {Gluckman (1972)}, + lgcode = {Lozi [lozi1239]}, + note = {1st ed. 1965} +} +@article{gmann1953, + author = {gmann, J. J.}, + title = {Social Organization of the Attawapiskat Cree Indians}, + journal = {Anthropos}, + volume = {47}, + pages = {809-816}, + year = {1953}, + key = {gmann (1953)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@article{goddard1903, + author = {Goddard, P. E.}, + title = {Life and Culture of the Hupa}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {1}, + pages = {1-88}, + year = {1903}, + key = {Goddard (1903)}, + lgcode = {Hupa [hupa1239]} +} +@article{goddard1904, + author = {Goddard, P. E.}, + title = {Hupa Texts}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {1}, + number = {2}, + pages = {89-378}, + year = {1904}, + glottolog_ref = {wals:2151}, + key = {Goddard (1904)}, + lgcode = {Hupa [hupa1239]} +} +@article{goddard1916, + author = {Goddard, P. E.}, + title = {The Beaver Indians}, + journal = {Anthropological Papers}, + publisher = {American Museum of Natural History}, + address = {New York}, + volume = {10}, + number = {4}, + pages = {201-293}, + year = {1916}, + key = {Goddard (1916)}, + lgcode = {Beaver [beav1236]} +} +@article{goddard1923, + author = {Goddard, P. E.}, + title = {Habitat of the Wailaki}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {Berkeley and Los Angeles: University of California Press}, + address = {Berkeley and Los Angeles}, + volume = {20}, + pages = {95-109}, + year = {1923}, + glottolog_ref = {hh:e:Goddard:Wailaki}, + key = {Goddard (1923)}, + lgcode = {Sinkyone [wail1244]} +} +@article{goddard1973, + author = {Goddard, A.D.}, + title = {Changing Family Structures Among the Rural Hausa}, + journal = {Africa}, + volume = {43}, + pages = {207-218}, + year = {1973}, + key = {Goddard (1973)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@incollection{goethals1967, + author = {Goethals, P. R.}, + editor = {Koentjaraningrat}, + title = {Rarak: A Swidden Village of West Sumbawa}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {30-62}, + year = {1967}, + key = {Goethals (1967)}, + lgcode = {Sumbawanese [sumb1241]} +} +@incollection{gogginandsturtevant1964, + author = {Goggin, J. M., and W. C. Sturtevant}, + editor = {W. H. Goodenough}, + title = {The Calusa: A Stratified, Nonagricultural Society (with Notes on Sibling Marriage)}, + booktitle = {Explorations in Cultural Antirippology: Essays in Honor of George Peter Murdock}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {179-219}, + year = {1964}, + key = {Goggin and Sturtevant (1964)}, + lgcode = {Calusa [calu1239]} +} +@book{goichon1927, + author = {Goichon, M.}, + title = {La vie feminine au Mzab}, + address = {Paris}, + year = {1927}, + key = {Goichon (1927)}, + lgcode = {Mzab [tumz1238]} +} +@article{goldenweiser191213, + author = {Goldenweiser, A. A.}, + title = {On Iroquois Work}, + journal = {Summ. Rep. (Canada) Geol. Surv., Dep. Mines}, + volume = {1912; 1913}, + pages = {464-475; 365-372}, + year = {1912-13}, + key = {Goldenweiser (1912-13)}, + lgcode = {Seneca [sene1264]} +} +@book{golder192225, + author = {Golder, F. A.}, + title = {Bering's Voyages. 2v}, + address = {New York}, + year = {1922-25}, + key = {Golder (1922-25)}, + lgcode = {Aleut [east2533]} +} +@article{goldfrank1927, + author = {Goldfrank, E. S.}, + title = {The Social and Ceremonial Organization of Cochiti}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {33}, + pages = {1-129}, + year = {1927}, + key = {Goldfrank (1927)}, + lgcode = {Cochiti [coch1273]} +} +@article{goldfrank1943, + author = {Goldfrank, Esther}, + title = {Historic Change and Social Character: A Study of the Teton Dakota}, + journal = {American Anthropologist}, + volume = {45}, + pages = {67-83}, + year = {1943}, + key = {Goldfrank (1943)}, + lgcode = {Teton [lako1247]} +} +@article{goldfrank1945a, + author = {Goldfrank, E. S.}, + title = {Changing Configurations in the Social Organization of a Blackfoot Tribe}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {7}, + pages = {1-73}, + year = {1945}, + key = {Goldfrank (1945a)}, + lgcode = {Kainai [bloo1239]} +} +@article{goldfrank1945b, + author = {Goldfrank, E. S.}, + title = {Irrigation Agriculture and Navaho Community Leadership}, + journal = {American Anthropologist}, + volume = {47}, + pages = {262-277}, + year = {1945}, + key = {Goldfrank (1945b)}, + lgcode = {Navajo [nava1243]} +} +@incollection{goldman1937, + author = {Goldman, Irving}, + key = {Goldman (1937)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@incollection{goldman1937a, + author = {Goldman, Irving}, + editor = {Margaret Mead}, + title = {The Kwakiutl Indians of Vancouver Island}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {180-209}, + year = {1937}, + key = {Goldman (1937a)}, + lgcode = {Kwakwaka'wakw [kwak1269]} +} +@incollection{goldman1937b, + author = {Goldman, Irving}, + editor = {Margaret Mead}, + title = {The Zuni Indians of New Mexico}, + booktitle = {Cooperation and Competition among Primitive Peoples}, + publisher = {McGraw-Hill}, + address = {New York}, + pages = {313-353}, + year = {1937}, + key = {Goldman (1937b)}, + lgcode = {Zuni [zuni1245]} +} +@incollection{goldman1940, + author = {Goldman, Irving}, + editor = {R. Linton}, + title = {The Alkatcho Carrier of British Columbia}, + booktitle = {Acculturation in Seven American Indian Tribes}, + publisher = {D. Appleton-Century}, + address = {New York}, + pages = {333-386}, + year = {1940}, + key = {Goldman (1940)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@article{goldman1941, + author = {Goldman, I.}, + title = {The Alkatcho Carrier}, + journal = {American Anthropologist}, + volume = {43}, + pages = {396-418}, + year = {1941}, + key = {Goldman (1941)}, + lgcode = {Achumawi [achu1247], Alkatcho [sout2958], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@article{goldman1948, + author = {Goldman, I.}, + title = {Tribes of the Uaupés-Caquetá region}, + journal = {Bulletins of the Bureau of American Ethnology 143}, + address = {Washington 1946-1950}, + volume = {3}, + pages = {763-798}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Arawak_baniva03}, + key = {Goldman (1948)}, + lgcode = {Cubeo [cube1242]} +} +@article{goldman1963, + author = {Goldman, I.}, + title = {The Cubeo Indians}, + journal = {Illinois Studies in Anthropology}, + volume = {2}, + pages = {1-305}, + year = {1963}, + key = {Goldman (1963)}, + lgcode = {Cubeo [cube1242]}, + note = {field research 1939-40} +} +@article{goldschmidt1948, + author = {Goldschmidt, Walter R.}, + title = {Social Organization in Native California and the Origin of Clans}, + journal = {American Anthropologist}, + volume = {50}, + pages = {444-456}, + year = {1948}, + key = {Goldschmidt (1948)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldschmidt1951, + author = {Goldschmidt, Walter R.}, + title = {Nomlaki Ethnography}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {42}, + pages = {303-443}, + year = {1951}, + key = {Goldschmidt (1951)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldschmidtetal1940, + author = {Goldschmidt, Walter R., and Harold E. Driver}, + title = {The Hupa White Deerskin Dance}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {35}, + pages = {103-42}, + year = {1940}, + key = {Goldschmidt et al. (1940)}, + lgcode = {Hupa [hupa1239]} +} +@misc{goldschmidtperscomm1966, + author = {Goldschmidt, Walter R.}, + year = {1966}, + howpublished = {pers. comm.}, + key = {Goldschmidt pers. comm. (1966)}, + lgcode = {Nomlaki [noml1242]} +} +@article{goldstein1934, + author = {Goldstein, M. S.}, + title = {Anthropometry of the Comanches}, + journal = {American Journal of Physical Anthropology}, + volume = {19}, + pages = {289-319}, + year = {1934}, + key = {Goldstein (1934)}, + lgcode = {Comanche [coma1245]} +} +@book{gomes1911, + author = {Gomes, E. H.}, + title = {Seventeen Years Among the Sea Dyaks of Borneo}, + address = {London}, + year = {1911}, + key = {Gomes (1911)}, + lgcode = {Iban [iban1264]} +} +@article{gomes1946, + author = {Gomes, Barbosa, O. C.}, + title = {Breve noticia dos caracteres etnicos dos indigenas da tribo BiAfada}, + journal = {Bol. Cultural Guine Port.}, + volume = {1}, + pages = {205-274}, + year = {1946}, + glottolog_ref = {hh:ew:Gomes:Biafada}, + key = {Gomes (1946)}, + lgcode = {Biafada [biaf1240]} +} +@inproceedings{goni1988, + author = {Goni, R.A.}, + title = {Arqueologia de momentos tardios en el Parque Nacional Perito Moreno (Santa Cruz, Argentina)}, + booktitle = {Precirculados de las Ponencias Cientificas presentada a los Simposios del IX Congreso nacional de Arquelogia Argentina}, + publisher = {Universidad de Buenos Aires}, + address = {Buenos Aires}, + pages = {140-151}, + year = {1988}, + key = {Goni (1988)}, + lgcode = {Tehuelche [tehu1242]} +} +@phdthesis{goodale1959, + author = {Goodale, J. C.}, + title = {The Tiwi Women of Melville Island}, + school = {University of Pennsylvania}, + year = {1959}, + key = {Goodale (1959)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{goodale1960, + author = {Goodale, J. C.}, + title = {Sketches of Tiwi Children}, + journal = {Expedition}, + volume = {2}, + number = {4}, + pages = {4-13}, + year = {1960}, + key = {Goodale (1960)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{goodale1962, + author = {Goodale, J. C.}, + title = {Marriage Contacts among the Tiwi}, + journal = {Ethnology}, + volume = {1}, + pages = {452-466}, + year = {1962}, + key = {Goodale (1962)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{goodale1971, + author = {Goodale, J. C.}, + title = {Tiwi Wives. A Study of the Women of Melville Island, North Australia}, + publisher = {University of Washington Press}, + address = {Seattle}, + year = {1971}, + key = {Goodale (1971)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{goodenough1949, + author = {Goodenough, W. H.}, + title = {Property, Kin, and Community on Truk}, + address = {New Haven}, + series = {Yale University Publications in Anthropology}, + volume = {46}, + pages = {1-192}, + year = {1949}, + key = {Goodenough (1949)}, + lgcode = {Trukese [chuu1238]} +} +@misc{goodenough1951a, + author = {Goodenough, W. H.}, + title = {Notes on the Bwaidoga People}, + year = {1951}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1951a)}, + lgcode = {Bwaidoga [bwai1242]} +} +@misc{goodenough1951b, + author = {Goodenough, W. H.}, + title = {Progress Report on Ethonographic Phase of Onotoa Project}, + year = {1951}, + howpublished = {Washington (mimeographed)}, + key = {Goodenough (1951b)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{goodenough1952, + author = {Goodenough, W. H.}, + title = {Ethnological Reconnaisance in New Guinea}, + journal = {University (of Pennsylvania) Museum Bull.}, + volume = {17}, + pages = {5-37}, + year = {1952}, + key = {Goodenough (1952)}, + lgcode = {Molima [moli1248]} +} +@article{goodenough1953, + author = {Goodenough, W. H.}, + title = {Ethnographic Notes on the Mae People}, + journal = {Southw. Journ. Anth.}, + volume = {9}, + pages = {29-44}, + year = {1953}, + key = {Goodenough (1953)}, + lgcode = {Enga [enga1252]} +} +@misc{goodenough1954a, + author = {Goodenough, W. H.}, + title = {Notes on the Ethnography of the Bakovi Tribe}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1954a)}, + lgcode = {Bakovi [bola1250]} +} +@misc{goodenough1954b, + author = {Goodenough, W. H.}, + title = {Notes on the Ethnography of the Koobe}, + year = {1954}, + howpublished = {Unpublished Manuscript}, + key = {Goodenough (1954b)}, + lgcode = {Kombe [mudu1242]} +} +@article{goodenough1955, + author = {Goodenough, W. H.}, + title = {A Problem in Malayo-Polynesian Social Organization}, + journal = {American Anthropologist}, + volume = {57}, + pages = {71-83}, + year = {1955}, + key = {Goodenough (1955)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{goodenough1962, + author = {Goodenough, W. H.}, + title = {Kindred and Hamlet in Lakalai, New Brittain}, + journal = {Ethnology}, + volume = {1}, + pages = {5-12}, + year = {1962}, + key = {Goodenough (1962)}, + lgcode = {Lakalai [naka1262]} +} +@misc{goodenough1969, + author = {Goodenough, W. H.}, + title = {Changing Social Organization on Romonum, Truk 1947-1965}, + year = {1969}, + howpublished = {Manuscript}, + key = {Goodenough (1969)}, + lgcode = {Trukese [chuu1238]} +} +@book{goodenough1974, + author = {Goodenough, W.H.}, + title = {Changing Social Organization on Romonum, Truk, 1947-1965}, + year = {1974}, + key = {Goodenough (1974)}, + lgcode = {Trukese [chuu1238]} +} +@article{goodmanetal1985, + author = {Goodman, M. J. and A. Estioko-Griffin and P. B. Griffin and J. S. Grove}, + title = {The Compatibility of Hunting and Mothering among Agta Hunter Gatherers of the Philippines}, + journal = {Sex Roles}, + volume = {12}, + number = {11-12}, + pages = {1199-1209}, + year = {1985}, + key = {Goodman et al. (1985)}, + lgcode = {Agta (Cagayan) [cent2084]} +} +@article{goodwin1935, + author = {Goodwin, Grenville}, + title = {The Social Divisions and Economic Life of the Western Apache}, + journal = {American Anthropologist}, + volume = {37}, + pages = {55-64}, + year = {1935}, + key = {Goodwin (1935)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{goodwin1937, + author = {Goodwin, Grenville}, + title = {The Characteristics and Function of Clan in a Southern Athapascan Culture}, + journal = {American Anthropologist}, + volume = {39}, + pages = {394-407}, + year = {1937}, + key = {Goodwin (1937)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{goodwin1942, + author = {Goodwin, Grenville}, + title = {The Social Organization of the Western Apache}, + address = {Chicago}, + year = {1942}, + key = {Goodwin (1942)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{goodwin1971, + author = {Goodwin, Grenville}, + editor = {Keith H. Basso}, + title = {Western Apache Raiding and Warfare}, + publisher = {University of Arizona Press}, + address = {Tucson, Ariz.}, + year = {1971}, + key = {Goodwin (1971)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{goody1956, + author = {Goody, J. R.}, + title = {The Social Organisation of the LoWiili}, + journal = {Colonial Research Studies}, + publisher = {London: H.M. Stationary Office}, + address = {London}, + series = {Colonial research studies}, + volume = {19}, + pages = {1-119}, + year = {1956}, + glottolog_ref = {eballiso2009:25853}, + key = {Goody (1956)}, + lgcode = {Birifor [sout2790], Lowiili [sout2790]} +} +@article{goody1958, + author = {Goody, J. R.}, + title = {The Fission of Domestic Groups Among the Lo Dagaba}, + journal = {Cambridge Papers in Social Anthropology}, + volume = {1}, + pages = {53-91}, + year = {1958}, + key = {Goody (1958)}, + lgcode = {Lowiili [sout2790]} +} +@book{gorer1938, + author = {Gorer, G.}, + title = {Himalayan Village}, + address = {London}, + year = {1938}, + key = {Gorer (1938)}, + lgcode = {Lepcha [lepc1244]} +} +@article{gottschling1905, + author = {Gottschling, E.}, + title = {The Bavenda: a sketch of their history and customs}, + journal = {Journal of the Anthropological Institute}, + volume = {35}, + pages = {365-86}, + year = {1905}, + glottolog_ref = {eballiso2009:2975}, + key = {Gottschling (1905)}, + lgcode = {Venda [vend1245]} +} +@incollection{gough1961, + author = {Gough, Kathleen}, + editor = {D. M. Schneider and K. Gough}, + title = {Nayar: Central Kerala}, + booktitle = {Matrilineal kinship}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1961}, + key = {Gough (1961)}, + lgcode = {Kerala [mala1464]} +} +@article{goughaberle1955, + author = {Gough (Aberle), E. K.}, + title = {The Social Structure of a Tanjore Village}, + journal = {Mem. Amer. Anth. Assoc.}, + volume = {83}, + pages = {36-52}, + year = {1955}, + key = {Gough (Aberle) (1955)}, + lgcode = {Tamil [tami1289]} +} +@misc{goughaberlend, + author = {Gough (Aberle), E. K.}, + howpublished = {Personal communication}, + key = {Gough (Aberle) (nd)}, + lgcode = {Tamil [tami1289]} +} +@article{gould1968, + author = {Gould, R. A.}, + title = {Living Archaeology: The Ngatatjara of Western Australia}, + journal = {Southwestern Journal of Anthropology}, + volume = {24}, + pages = {101-122}, + year = {1968}, + key = {Gould (1968)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@book{gould1969, + author = {Gould, R. A.}, + title = {Yiwara: foragers of the Australian desert}, + publisher = {Charles Scribner's Sons}, + address = {New York}, + year = {1969}, + glottolog_ref = {hh:lde:Gould:Yiwara}, + key = {Gould (1969)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@article{gould1971, + author = {Gould, R. A.}, + title = {The Archaeologist as Ethnographer: A Case Study from the Western DeSert of Australia}, + journal = {World Archaeology}, + volume = {3}, + pages = {143-177}, + year = {1971}, + key = {Gould (1971)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@book{gould1977, + author = {Gould, R. A.}, + title = {Puntutjarpa Rockshelter and the Australian Desert Culture}, + address = {New York}, + series = {Anthropological Papers, American Museum of Natural History}, + volume = {54}, + year = {1977}, + key = {Gould (1977)}, + lgcode = {Ngatatjara [ngaa1240]} +} +@incollection{gouldandplew1996, + author = {Gould, R. T., and M. G. Plew}, + editor = {M. G. Plew}, + title = {Late Archaic Fishing along the Middle Snake River, Southwestern Idaho}, + booktitle = {Prehistoric Hunter-Gatherer Fishing Strategies}, + publisher = {Department of Anthropology, Boise State University}, + address = {Boise, Idaho}, + pages = {64-83}, + year = {1996}, + key = {Gould and Plew (1996)}, + lgcode = {Agaiduka [nort2955]} +} +@misc{gouldperscomm1992, + author = {Gould, R. A.}, + howpublished = {pers. comm.}, + key = {Gould pers. comm. (1992)}, + lgcode = {Agaiduka [nort2955]} +} +@book{gouldsburyandsheane1911, + author = {Gouldsbury, C., and A. Sheane.}, + title = {The Great Plateau of Northern Rhodesia}, + address = {London}, + year = {1911}, + key = {Gouldsbury and Sheane (1911)}, + lgcode = {Bemba [town1238]} +} +@book{gourou1936, + author = {Gourou, P.}, + title = {Les paysans du delta tonkinois}, + address = {Paris}, + year = {1936}, + key = {Gourou (1936)}, + lgcode = {Annamese [viet1252]} +} +@book{gourou1954, + author = {Gourou, P.}, + title = {Land Utilization in French Indochina. 3v}, + address = {Washington}, + year = {1954}, + key = {Gourou (1954)}, + lgcode = {Annamese [viet1252]} +} +@book{gourou1955, + author = {Gourou, P.}, + title = {Peasants of Tonkin Delta, a Study of Human Geography}, + address = {New Haven}, + year = {1955}, + key = {Gourou (1955)}, + lgcode = {Annamese [viet1252]} +} +@article{grabert1974, + author = {Grabert, G. F.}, + title = {Okanagan Archaeology: 1966-67}, + journal = {Syesis}, + volume = {7}, + number = {2}, + pages = {1-83}, + year = {1974}, + key = {Grabert (1974)}, + lgcode = {Syilx [sout2963]} +} +@book{graburn1964, + author = {Graburn, N. H. H.}, + title = {Taqagmiut Eskimo Kinship Terminology}, + address = {Ottawa}, + year = {1964}, + key = {Graburn (1964)}, + lgcode = {Taqagmiut [queb1248]} +} +@book{graburn1969, + author = {Graburn, N. H. H.}, + title = {Eskimos without Igloos: Social and Economic Development in Sugluk}, + publisher = {Little, Brown}, + address = {Boston}, + year = {1969}, + key = {Graburn (1969)}, + lgcode = {Labrador Inuit [labr1244]} +} +@book{gracheva1983, + author = {Gracheva, G. N.}, + title = {Traditsionnoe mirovozzrenie ohotnikov Tajmyra (na materialah nganasan 19-nachala 20 v.)}, + address = {Leningrad}, + year = {1983}, + key = {Gracheva (1983)}, + lgcode = {Nganasan [ngan1291]}, + title_english = {Traditional Worldview of the Tajmyr Hunters: The Nganasan in the Nineteenth and Early Twentieth Centuries} +} +@incollection{gracheva1988, + author = {Gracheva, G. N.}, + editor = {I. S. Kon and Ch. M. Taksami}, + title = {Sotsializatsija detej i podrostkov v traditsionnom obshchestve nganasan (Child and Adolescent Socialization among the Nganasan)}, + booktitle = {Traditsionnoe vospitanie detej u narodov Sibiri (Traditonal Socialization Patterns among the Siberian Peoples)}, + address = {Leningrad}, + pages = {160-184}, + year = {1988}, + key = {Gracheva (1988)}, + lgcode = {Nganasan [ngan1291]} +} +@incollection{gracheva1994, + author = {Gracheva, G. N.}, + editor = {V. A. Tishkov}, + title = {Nganasany (The Nganasan)}, + booktitle = {Narody Rossii (Peoples of Russia)}, + address = {Moscow}, + pages = {242-244}, + year = {1994}, + key = {Gracheva (1994)}, + lgcode = {Nganasan [ngan1291]} +} +@phdthesis{gragson1989, + author = {Gragson, T.}, + title = {Allocation of time to subsistence and settlement in a Ciri Khonome Pume village of the Llanos of Apure, Venezuela}, + school = {Department of Anthropology, Pennsylvania State University, College Station}, + year = {1989}, + glottolog_ref = {fabreall2009ann:Yaruro5}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Gragson (1989)}, + lgcode = {Pumé [pume1238]} +} +@book{grandidierandgrandidier190828, + author = {Grandidier, A. and G. Grandidier.}, + title = {Ethnographie de Madagascar}, + publisher = {Paris}, + volume = {5 vols}, + year = {1908-28}, + glottolog_ref = {eballiso2009:2125}, + key = {Grandidier and Grandidier (1908-28)}, + lgcode = {Merina [meri1243]} +} +@article{granqvist193135, + author = {Granqvist, H.}, + title = {Marriage Conditions in a Palestinian Village}, + journal = {Soc. Scient. Fenn., Comm. Hum. Litt.}, + volume = {3}, + pages = {8}, + year = {1931-35}, + key = {Granqvist (1931-35)}, + lgcode = {Jordanians [sout3123]} +} +@incollection{grant1890, + author = {Grant, P.}, + editor = {L. F. R. Masson}, + title = {The Saulteaux Indians About 1804}, + booktitle = {Les Bouregeois de la Compagnie du Nord-Ouest}, + address = {Quebec}, + volume = {2}, + pages = {303-366}, + year = {1890}, + key = {Grant (1890)}, + lgcode = {Katikitegon [uppe1274], Nipigon [cent2136]} +} +@article{grant1924, + author = {Grant, J.C. B.}, + title = {Anthropometry of the Lake Winnipeg Indians}, + journal = {American Journal of Physical Anthropology}, + volume = {7}, + pages = {299-315}, + year = {1924}, + key = {Grant (1924)}, + lgcode = {Northern Saulteaux [alba1270], Pekangekum [lacs1238], Round Lake Ojibwa [seve1241]} +} +@book{grant1925, + author = {Grant, Blanche C.}, + title = {Taos Indians}, + address = {Taos}, + year = {1925}, + key = {Grant (1925)}, + lgcode = {Taos [taos1236]} +} +@book{grant1930, + author = {Grant, J. C. B.}, + title = {Anthropometry of the Chipewyan and Cree Indians of the neighborhood of Lake Athabaska}, + address = {Ottawa}, + series = {National Museum of Canada Bulletin No. 64, Anthropological Series}, + number = {14}, + year = {1930}, + key = {Grant (1930)} +} +@book{grant1936, + author = {Grant, J.C. B.}, + title = {Anthropometry of the Beaver, Sekani, and Carrier Indians}, + address = {Ottawa}, + series = {National Museum of Canada Bulletin No. 81, Anthropological Series}, + number = {18}, + year = {1936}, + key = {Grant (1936)}, + lgcode = {Beaver [beav1236], Dakelh [carr1249], Dene [chip1261], Sekani [seka1250]} +} +@book{grant1960, + author = {Grant, M.}, + title = {The World of Rome}, + address = {London}, + year = {1960}, + key = {Grant (1960)}, + lgcode = {Ancient Romans [lati1261]} +} +@book{grant1964, + author = {Grant, B.}, + title = {Indonesia}, + address = {Melbourne}, + year = {1964}, + key = {Grant (1964)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@article{granvilleandroth1898, + author = {Granville, R. K., and F. N. Roth.}, + title = {Notes on the Jekris, Sobos ad Ijos of the Warri District}, + journal = {Journ. Roy Anth. Inst.}, + volume = {28}, + pages = {104-126}, + year = {1898}, + key = {Granville and Roth (1898)}, + lgcode = {Ijaw [kala1381]} +} +@book{grattan1948, + author = {Grattan, F. J. H.}, + title = {An Introduction to Samoan Custom}, + address = {Apia}, + year = {1948}, + key = {Grattan (1948)}, + lgcode = {American Samoans [samo1305], Upolu Samoans [samo1305]} +} +@article{gray1953, + author = {Gray, R. F.}, + title = {Notes on Irangi Houses}, + journal = {Tanganyika Notes Rec.}, + volume = {35}, + pages = {45-52}, + year = {1953}, + key = {Gray (1953)}, + lgcode = {Rangi [lang1320]} +} +@book{gray1963, + author = {Gray, R. F.}, + title = {The Sonjo of Tanganyika}, + address = {London}, + year = {1963}, + key = {Gray (1963)}, + lgcode = {Sonjo [temi1247]} +} +@book{gray1966, + author = {Gray, J. M.}, + title = {A History of the Gambia}, + publisher = {London: Frank Cass & Co.}, + address = {New York}, + year = {1966}, + glottolog_ref = {eballiso2009:51009}, + key = {Gray (1966)}, + lgcode = {Wolof [nucl1347]} +} +@book{gray1987, + author = {Gray, D.J.}, + title = {The Takelma and Their Athapascan Neighbors}, + publisher = {University of Oregon}, + address = {Eugene}, + series = {Anthropological Papers}, + number = {37}, + year = {1987}, + key = {Gray (1987)}, + lgcode = {Takelma [take1257], Tututni [tutu1242]} +} +@misc{graynd, + author = {Gray, R. F.}, + title = {Outline of an Anthropological Field Study of the Wambugwe}, + howpublished = {Manuscript}, + key = {Gray (nd)}, + lgcode = {Mbugwe [mbug1242]} +} +@misc{greavesperscomm1993, + author = {Greaves}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Greaves pers. comm. (1993)}, + lgcode = {Pumé [pume1238]} +} +@book{green1947, + author = {Green, M. M.}, + title = {Ibo Village Affairs}, + address = {London}, + year = {1947}, + key = {Green (1947)}, + lgcode = {Igbo [nucl1417]}, + note = {2nd ed. 1964} +} +@article{greenberg1946, + author = {Greenberg, J. H.}, + title = {The Influence of Islam on a Sudanese Religion}, + journal = {Monographs of the American Ethnological Society}, + volume = {10}, + pages = {1-73}, + year = {1946}, + key = {Greenberg (1946)}, + lgcode = {Maguzawa [kano1249], Zazzagawa Hausa [araw1280]} +} +@article{greenberg1947, + author = {Greenberg, J. H.}, + title = {Islam and Clan Organization among the Hausa}, + journal = {Southwestern Journal of Anthropology}, + volume = {3}, + pages = {193-211}, + year = {1947}, + glottolog_ref = {eballiso2009:15210}, + key = {Greenberg (1947)}, + lgcode = {Maguzawa [kano1249], Zazzagawa Hausa [araw1280]} +} +@misc{greenwood1971, + author = {Greenwood, P. C.}, + year = {1971}, + howpublished = {Personal Communication}, + key = {Greenwood (1971)}, + lgcode = {French Basques [labo1236]} +} +@article{grevisse193738, + author = {Grevisse, F.}, + title = {Les Bayeke}, + journal = {Bull. Jurisd. Indig. Droit Cout. Congol.}, + volume = {5; 6}, + pages = {1-16, 29-40, 65-74, 97-113, 165-175; 200-216, 238-341}, + year = {1937-38}, + key = {Grevisse (1937-38)}, + lgcode = {Garanganze [sang1331]} +} +@incollection{griauleanddieterlen1954, + author = {Griaule, Marcel, and Germaine Dieterlen}, + editor = {C. Daryll Forde}, + title = {The Dogon}, + booktitle = {African worlds: studies in the cosmological ideas and social values of African peoples}, + publisher = {Oxford University Press}, + address = {London}, + year = {1954}, + key = {Griaule and Dieterlen (1954)}, + lgcode = {Dogon [bank1259]} +} +@book{grierson1885, + author = {Grierson, G. A.}, + title = {Bihar Peasant Life}, + address = {Calcutta}, + year = {1885}, + key = {Grierson (1885)}, + lgcode = {Bihari [mait1250]} +} +@book{griffen1959, + author = {Griffen, B.}, + title = {Notes on Seri Indian Culture, Sonora, Mexico}, + publisher = {University of Florida Press}, + address = {Gainesville}, + series = {Latin American Monograph Series}, + number = {10}, + year = {1959}, + key = {Griffen (1959)}, + lgcode = {Seri [seri1257]} +} +@article{griffith1954, + author = {Griffith, W. J.}, + title = {The Hasinai Indians of East Texas as seen by Europeans, 1687-1772}, + journal = {Mid. Amer. Res. Inst., Tulane Univ. Philol. Doc. St.}, + volume = {2}, + pages = {45-165}, + year = {1954}, + key = {Griffith (1954)}, + lgcode = {Hasinai [cadd1256]} +} +@book{griffiths1946, + author = {Griffiths, W. G.}, + title = {The Kol Tribe of Central India}, + address = {Calcutta}, + year = {1946}, + key = {Griffiths (1946)}, + lgcode = {Kol [mund1320]} +} +@book{grigolia1939, + author = {Grigolia, A.}, + title = {Custom and Justice in the Caucasus}, + address = {Philadelphia}, + year = {1939}, + key = {Grigolia (1939)}, + lgcode = {Khevsur [xevs1238], Svan [svan1243]} +} +@misc{grigson1938, + author = {Grigson, W. V.}, + title = {The Maria Gonds of Bastar}, + address = {London}, + year = {1938}, + key = {Grigson (1938)}, + lgcode = {Madia [mari1414]}, + note = {Rev. Edit. 1949} +} +@article{grimble1921, + author = {Grimble, A.}, + title = {From Birth to Death in the Gilbert Islands}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {51}, + pages = {25-54}, + year = {1921}, + key = {Grimble (1921)}, + lgcode = {Makin [bana1287]} +} +@article{grimesandgrimes1962, + author = {Grimes, J. E., and B. F. Grimes}, + title = {Semantic distinctions in Huichol (Uto-Aztecan) kinship}, + journal = {American Anthropologist}, + volume = {64}, + pages = {104-14}, + year = {1962}, + glottolog_ref = {sil16:10902}, + key = {Grimes and Grimes (1962)}, + lgcode = {Huichol [huic1243]} +} +@incollection{grimesandhinton1969, + author = {Grimes, J. E. and T. B. Hinton}, + editor = {R. Wauchope}, + title = {The Huichol and Cora}, + booktitle = {Handbook of Middle American Indians}, + address = {Austin}, + volume = {7}, + number = {ii}, + pages = {792-813}, + year = {1969}, + key = {Grimes and Hinton (1969)}, + lgcode = {Huichol [huic1243]} +} +@article{grinnell1918, + author = {Grinnell, George B.}, + title = {Early Cheyenne villages}, + journal = {American Anthropologist}, + volume = {20}, + pages = {359-380}, + year = {1918}, + key = {Grinnell (1918)}, + lgcode = {Cheyenne [chey1247]} +} +@book{grinnell1923, + author = {Grinnell, G. B.}, + title = {The Cheyenne Indians. 2v}, + address = {New Haven}, + year = {1923}, + key = {Grinnell (1923)}, + lgcode = {Cheyenne [chey1247]} +} +@book{grishin1995, + author = {Grishin, Ja. Ja.}, + title = {Pol'sko-litovskie tatary (Nasledniki Zolotoj Ordy) (The Polish-Lithuanian Tatar. Heirs to the Golden Horde)}, + address = {Kazan'}, + year = {1995}, + key = {Grishin (1995)}, + lgcode = {Lithuanian Tatar [west2405]} +} +@article{grivot1942, + author = {Grivot, R.}, + title = {Le cercle de Lahous}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {4}, + pages = {1-154}, + year = {1942}, + key = {Grivot (1942)}, + lgcode = {Avikam [avik1243]} +} +@book{grnnowetal1983, + author = {Grønnow, B. and M. Melgaard and J. B. Nielsen}, + title = {Aasiyissuit - The Great Summer Camp: Archaeological, Ethnographical and Zoo-Archaeological Studies of a Caribou-Hunting Site in West Greenland}, + publisher = {Commission for Scientific Research in Greenland}, + address = {Odense}, + series = {Meddelelser om Gronland, Man and Society}, + volume = {5}, + year = {1983}, + key = {Grønnow et al. (1983)}, + lgcode = {Kalaallit (West Greenland) [kala1399]} +} +@book{grodekov1889, + author = {Grodekov, N. I.}, + title = {Kirghizy i Karakirgizy sur Dar'inskoi Oblasti. [Vol. I, Juridical Life. ]}, + address = {Tashkent}, + year = {1889}, + key = {Grodekov (1889)}, + lgcode = {Kazakh [kaza1248]}, + note = {The Typolithography of S. I. Lakhtin} +} +@book{groslier1956, + author = {Groslier, B. P.}, + title = {Angkor: Hommes et pierres}, + address = {Paris}, + year = {1956}, + key = {Groslier (1956)}, + lgcode = {Ancient Khmer [oldk1249], Khmer [cent1989]} +} +@book{groslier1958, + author = {Groslier, B. P.}, + title = {Angkor et le Cambodge au XVIe siècle d'apres les sources portugaises at espagnoles}, + year = {1958}, + key = {Groslier (1958)}, + lgcode = {Ancient Khmer [oldk1249]} +} +@book{grottanelli1940, + author = {Grottanelli, V. L.}, + title = {I. Mao}, + address = {Rome}, + series = {Mission Etnografica nel Uallega Occidentale}, + volume = {1}, + pages = {1-397}, + year = {1940}, + key = {Grottanelli (1940)}, + lgcode = {Anfillo [anfi1235], Mao [hozo1236]} +} +@article{grottanelli1948, + author = {Grottanelli, V. L.}, + title = {I Pre-Niloti}, + journal = {Annali Lateranensi}, + volume = {12}, + pages = {282-326}, + year = {1948}, + key = {Grottanelli (1948)}, + lgcode = {Koma [komo1258]} +} +@book{grottanelli1955, + author = {Grottanelli, V. L.}, + title = {Pescatori dell'Oceano Indiano}, + publisher = {Roma: Cremonese}, + address = {Roma}, + year = {1955}, + glottolog_ref = {hh:w:Grottanelli:Bagiuni}, + key = {Grottanelli (1955)}, + lgcode = {Bajuni [baju1245]} +} +@misc{grottanelli1972, + author = {Grottanelli, V. L.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Grottanelli (1972)}, + lgcode = {Mao [hozo1236]} +} +@book{grottanelliandmassari1943, + author = {Grottanelli, V. I., and C. Massari.}, + title = {I. Baria, i Cunama e i Beni Amer}, + address = {Rome}, + series = {Missione di Studio al Largo Tana}, + volume = {2}, + pages = {1-416}, + year = {1943}, + key = {Grottanelli and Massari (1943)}, + lgcode = {Kunama [kuna1268], Nara [nara1262]} +} +@article{grove1919, + author = {Grove, E. T. N.}, + title = {Customs of the Acholi}, + journal = {Sudan Notes and Records}, + volume = {2}, + pages = {157-182}, + year = {1919}, + glottolog_ref = {eballiso2009:26574}, + key = {Grove (1919)}, + lgcode = {Acholi [dhop1238]} +} +@article{groves1934, + author = {Groves, W. C.}, + title = {The Natives of Sio Island}, + journal = {Oceania}, + volume = {5}, + pages = {43-63}, + year = {1934}, + key = {Groves (1934)}, + lgcode = {Sio [sioo1240]} +} +@article{groves1963, + author = {Groves, M.}, + title = {Western Motu Descent Groups}, + journal = {Ethnology}, + volume = {2}, + pages = {15-30}, + year = {1963}, + key = {Groves (1963)}, + lgcode = {Motu [motu1246]} +} +@misc{groves1964, + author = {Groves, M.}, + year = {1964}, + howpublished = {Personal communication}, + key = {Groves (1964)}, + lgcode = {Motu [motu1246]} +} +@book{grubb1911, + author = {Grubb, W. B.}, + title = {An Unknown People in an Unknown Land}, + address = {London}, + year = {1911}, + key = {Grubb (1911)}, + lgcode = {Lengua [leng1262]} +} +@incollection{guboglo1998, + author = {Guboglo, M. N.}, + editor = {V. A. Tishkov}, + title = {Gagauzy}, + booktitle = {Narody i Religii mira. Entsiklopedija (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {129}, + year = {1998}, + key = {Guboglo (1998)}, + lgcode = {Gagauz [gaga1249]} +} +@book{gubser1965, + author = {Gubser, N. J.}, + title = {The Nunamiut Eskimos}, + address = {New Haven}, + year = {1965}, + key = {Gubser (1965)}, + lgcode = {Nunamiut [nort2944]} +} +@book{gudgeon1885, + author = {Gudgeon, T. W.}, + title = {The History and doings of the Maoris}, + address = {Auckland}, + year = {1885}, + key = {Gudgeon (1885)}, + lgcode = {Māori [maor1246]} +} +@article{guebhard1911, + author = {Guebhard, P.}, + title = {Notes contributives a l'etude de la religion, des moeurs et des coutumes des Bobo}, + journal = {Rev. Ethnog. Sociol.}, + volume = {2}, + pages = {125-145}, + year = {1911}, + key = {Guebhard (1911)}, + lgcode = {Bobo [nort2819]} +} +@book{guenther1986, + author = {Guenther, M.}, + title = {The Nharo Bushmen of Botswana: tradition and change}, + publisher = {Helmut Buske Verlag}, + address = {Hamburg}, + series = {Quellen zur Khoisan-Forschung}, + volume = {3}, + year = {1986}, + glottolog_ref = {guldemann:1736}, + key = {Guenther (1986)}, + lgcode = {Naron [naro1249]} +} +@book{guha1931, + author = {Guha, B. S.}, + title = {The racial Affinities of the people of India}, + publisher = {Government of India Press}, + address = {Simla}, + series = {Census of India, Vol. I, Part III}, + year = {1931}, + key = {Guha (1931)}, + lgcode = {Khasi [khas1269], Telugu [telu1262]} +} +@article{guiart1956a, + author = {Guiart, J.}, + title = {Le district du Nord Ambrym}, + journal = {Journ. Soc. Oceanistes}, + volume = {23}, + pages = {201-336}, + year = {1956}, + key = {Guiart (1956a)}, + lgcode = {Ranon [nort2839]} +} +@book{guiart1956b, + author = {Guiart, J.}, + title = {L'organisation sociale et countumiere de la population autochtone de Nouvelle-Calédonie}, + address = {Noumea}, + year = {1956}, + key = {Guiart (1956b)}, + lgcode = {Ajie [ajie1238]} +} +@article{guiart1963, + author = {Guiart, J.}, + title = {Structure de la chefferie en Mélanésie du Sud}, + journal = {Travaux et Mémoires de l'Institut d'Ethnologie}, + volume = {66}, + pages = {1-688}, + year = {1963}, + key = {Guiart (1963)}, + lgcode = {Ajie [ajie1238]} +} +@article{guiral1886, + author = {Guiral, L.}, + title = {Les Batekes}, + journal = {Rev. Ethnog.}, + volume = {5}, + pages = {134-166}, + year = {1886}, + key = {Guiral (1886)}, + lgcode = {Teke [teke1278]} +} +@article{guiterasholmes1947, + author = {Guiteras Holmes, C.}, + title = {Clanes y sistema de parentesco de Cancuc}, + journal = {Acta Americana}, + volume = {5}, + pages = {1-17}, + year = {1947}, + key = {Guiteras Holmes (1947)}, + lgcode = {Tzeltal [tzel1254]} +} +@article{guiterasholmes1948, + author = {Guiteras Holmes, C.}, + title = {Sistema de parentesco huasteco}, + journal = {Acta Americana}, + volume = {6}, + pages = {152-172}, + year = {1948}, + key = {Guiteras Holmes (1948)}, + lgcode = {Huastec [huas1242]} +} +@article{gulick1953, + author = {Gulick, J.}, + title = {The Lebanese Village}, + journal = {American Anthropologist}, + volume = {55}, + pages = {367-372}, + year = {1953}, + key = {Gulick (1953)}, + lgcode = {Lebanese [nort3139]} +} +@article{gulick1955, + author = {Gulick, J.}, + title = {Social Structure and Culture Change in a Lebanese Village}, + journal = {Viking Fund Publications in Anthropology}, + volume = {21}, + pages = {1-118}, + year = {1955}, + key = {Gulick (1955)}, + lgcode = {Lebanese [nort3139]} +} +@incollection{gulick1956, + author = {Gulick, J.}, + editor = {R. Patai}, + title = {Village Organization}, + booktitle = {The Republic of Lebanon}, + address = {New Haven}, + volume = {1}, + pages = {136-299}, + year = {1956}, + key = {Gulick (1956)}, + lgcode = {Lebanese [nort3139]} +} +@article{gulick1958, + author = {Gulick, J. M.}, + title = {Indigenous Political Systems of Western Malaya}, + journal = {London School of Economics Monographs on Social Anthropology}, + volume = {17}, + pages = {1-151}, + year = {1958}, + key = {Gulick (1958)}, + lgcode = {Negri Sembilan [nege1240]} +} +@book{gulliver1951, + author = {Gulliver, P. H.}, + title = {A preliminary survey of the Turkana}, + publisher = {Univ. of Cape Town (UCT)}, + series = {Comm. from the School of African Studies, new series}, + volume = {26}, + pages = {1-281}, + year = {1951}, + glottolog_ref = {eballiso2009:43438}, + key = {Gulliver (1951)}, + lgcode = {Turkana [turk1308]} +} +@article{gulliver1953, + author = {Gulliver, P. H.}, + title = {The Age-Set Organization of the Jiye Tribe}, + journal = {Journ. Roy. Anth. Indy.}, + volume = {83}, + pages = {147-168}, + year = {1953}, + key = {Gulliver (1953)}, + lgcode = {Jie [jiee1239]} +} +@book{gulliver1955, + author = {Gulliver, P. H.}, + title = {The Family Herds}, + address = {London}, + year = {1955}, + key = {Gulliver (1955)}, + lgcode = {Jie [jiee1239], Turkana [turk1308]} +} +@incollection{gulliver1965, + author = {Gulliver, P. H.}, + editor = {J. L. Gibbs}, + title = {The Jie of Uganda}, + booktitle = {Peoples of Africa}, + address = {New York}, + pages = {157-196}, + year = {1965}, + key = {Gulliver (1965)}, + lgcode = {Jie [jiee1239]} +} +@book{gulliverandgulliver1953, + author = {Gulliver, P., and P. H. Gulliver.}, + title = {The Central Nilo Hamites}, + publisher = {London: Oxford University Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {7}, + pages = {104}, + year = {1953}, + glottolog_ref = {hh:he:GulliverGulliver:Central-Nilo-Hamites}, + key = {Gulliver and Gulliver (1953)}, + lgcode = {Jie [jiee1239], Karamojong [nucl1430], Labwor [labw1238], Toposa [topo1242]} +} +@book{gunn1953, + author = {Gunn, H. D.}, + title = {Peoples of the Plateau Area of Northern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {7}, + year = {1953}, + glottolog_ref = {eballiso2009:41321}, + key = {Gunn (1953)}, + lgcode = {Adara [kada1284], Anaguta [igut1238], Birom [bero1242], Chawai [atsa1241]} +} +@book{gunn1956, + author = {Gunn, H. D.}, + title = {Pagan Peoples of the Central Area of Northern Nigeria}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, Western Africa}, + volume = {12}, + year = {1956}, + glottolog_ref = {eballiso2009:41320}, + key = {Gunn (1956)}, + lgcode = {Kagoro [kago1246], Katab [kata1265], Kurama [kura1249]} +} +@book{gunnandconant1960, + author = {Gunn, H. D., and F. P. Conant}, + title = {Peoples of the Middle Niger Region}, + address = {London}, + year = {1960}, + key = {Gunn and Conant (1960)}, + lgcode = {Basa [basa1282], Basakomo [basa1282], Gbagyi [gbar1246], Kamuku [cind1241], Koro [ashe1269], Reshe [resh1242]} +} +@inproceedings{gunther1962, + author = {Gunther, E.}, + title = {Makah Marriage Patterns and Population Stability}, + booktitle = {Akten des 34th Internationalen Amerikanisten Kongress}, + publisher = {Verlag Ferdinand Berger}, + address = {Vienna}, + pages = {538-545}, + year = {1962}, + key = {Gunther (1962)}, + lgcode = {Makah [maka1318]} +} +@article{gunthere1927, + author = {Gunthere, E.}, + title = {Klallam Ethnography}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {1}, + pages = {171-314}, + year = {1927}, + key = {Gunthere (1927)}, + lgcode = {Klallam [clal1241]} +} +@article{gurden1904, + author = {Gurden, P. R. T.}, + title = {Note on the Khasis, Syntengs, and allied tribes inhabiting Khasi and Janital Hills district in Assam}, + journal = {Journal of the Asiatic Society of Bengal}, + volume = {73, Part 3}, + number = {4}, + pages = {57-75}, + year = {1904}, + key = {Gurden (1904)}, + lgcode = {Khasi [khas1269]} +} +@book{gurdon1907, + author = {Gurdon, P. R. T.}, + title = {The Khasis}, + publisher = {London: David Nutt}, + address = {London}, + pages = {xxvii+227+frontispiece+18 plates}, + year = {1907}, + glottolog_ref = {stampe:280}, + key = {Gurdon (1907)}, + lgcode = {Khasi [khas1269]} +} +@book{gusinde1931, + author = {Gusinde, M.}, + title = {The Selk'nam: On the Life and Thought of a Hunting People on the Great Land of Tierra del Fuego, translated by F. Schutze. Die Feuerland-Indianer, Vol. 1.}, + publisher = {Human Relations Area Files}, + address = {New Haven, Conn.}, + year = {1931}, + key = {Gusinde (1931)}, + lgcode = {Ona [onaa1245]} +} +@book{gusinde1931a, + author = {Gusinde, M.}, + title = {Die Feuerland Indianer, I. Die Selk'nam}, + publisher = {Mödling bei Wien}, + year = {1931}, + glottolog_ref = {fabreall2009ann:Chon_selknam42}, + key = {Gusinde (1931a)}, + lgcode = {Ona [onaa1245]} +} +@book{gusinde1937a, + author = {Gusinde, M.}, + title = {The Yahgan: The Life and Thought of the Water Nomads of Cape Horn, translated by F. Schutze. Die Feuerland-Indianer, Vol. 2.}, + publisher = {Human Relations Area Files}, + address = {New Haven, Conn.}, + year = {1937}, + key = {Gusinde (1937a)}, + lgcode = {Yahgan [yama1264]} +} +@book{gusinde1937b, + author = {Gusinde, M.}, + title = {Die Feuerland Indianer, 2: Yamana}, + publisher = {Mödling bei Wien}, + year = {1937}, + key = {Gusinde (1937b)}, + lgcode = {Yahgan [yama1264]} +} +@incollection{gussow1954, + author = {Gussow, Z.}, + editor = {D. Horr}, + title = {Cheyenne and Arapaho: Aboriginal Occupations}, + booktitle = {American Indian Ethnohistory: Plains Indians}, + publisher = {Garland}, + address = {New York}, + pages = {27-96}, + year = {1954}, + key = {Gussow (1954)}, + lgcode = {Cheyenne [chey1247]} +} +@book{gussowetal1974, + author = {Gussow, Z. and L. R. Hafen and A. A. Ekireli}, + title = {Cheyenne and Arapaho: Commission Findings, Indian Claims Commission}, + publisher = {Garland}, + address = {New York}, + series = {American Indian Ethnohistory: Plains Indians Series}, + year = {1974}, + key = {Gussow et al. (1974)}, + lgcode = {Arapaho [arap1274]} +} +@article{gutersohn1920, + author = {Gutersohn, T.}, + title = {Het economisch leven van den Mongo-neger}, + journal = {Congo}, + volume = {1}, + number = {i}, + pages = {92-105}, + year = {1920}, + key = {Gutersohn (1920)}, + lgcode = {Mongo [long1393], Nkundo [nkun1238]} +} +@book{gutierrezdepineda1948, + author = {Gutierrez de Pineda, V.}, + title = {Organizacion social en la Guajira}, + address = {Bogota}, + series = {Revista del Instituto Etnologico Nacional}, + volume = {3}, + number = {ii}, + pages = {1-255}, + year = {1948}, + key = {Gutierrez de Pineda (1948)}, + lgcode = {Wayuu [wayu1243]} +} +@article{gutmann1913, + author = {Gutmann, B.}, + title = {Feldbausitten und Wachstumsbrauche der Wadeschagga}, + journal = {Zeitschrift für Ethnologie}, + volume = {45}, + pages = {475-511}, + year = {1913}, + glottolog_ref = {eballiso2009:23721}, + key = {Gutmann (1913)}, + lgcode = {Chagga [moch1256]} +} +@book{gutmann1926, + author = {Gutmann, B.}, + title = {Das Recht der Dschagga}, + publisher = {München: Verlagshandlung Oskar Beck}, + address = {München}, + series = {Arbeiten zur Entwicklungspsychologie}, + volume = {7}, + pages = {1-1733}, + year = {1926}, + glottolog_ref = {eballiso2009:11574}, + key = {Gutmann (1926)}, + lgcode = {Chagga [moch1256]} +} +@incollection{guzenkovaandivanov1998, + author = {Guzenkova, T. S., and V. P. Ivanov}, + editor = {V. A. Tishkov}, + title = {Chuvashi (The Chuvash)}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {631-633}, + year = {1998}, + key = {Guzenkova and Ivanov (1998)}, + lgcode = {Chuvash [chuv1255]} +} +@article{haas1939, + author = {Haas, M. r.}, + title = {Natchewz and Chitimacha Clans and Kinship Terminology}, + journal = {American Anthropologist}, + volume = {41}, + pages = {597-610}, + year = {1939}, + key = {Haas (1939)}, + lgcode = {Chitimacha [chit1248]} +} +@book{haddon1908, + editor = {Haddon, A. C.}, + title = {Reports of the Cambridge Anthropological Expedition to Torres Straits, v. 6}, + address = {Cambridge}, + year = {1908}, + key = {Haddon (1908)}, + lgcode = {Miriam [meri1244]} +} +@book{hadfield1920, + author = {Hadfield, E.}, + title = {Among the Natives of the Loyalty Group}, + address = {London}, + year = {1920}, + key = {Hadfield (1920)}, + lgcode = {Lifu [dehu1237]} +} +@article{haeberlinandgunther1930, + author = {Haeberlin, H. K., and E. Gunther.}, + title = {The Indians of Puget Sound}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {4}, + pages = {1-83}, + year = {1930}, + key = {Haeberlin and Gunther (1930)}, + lgcode = {Puyallup [sout2965]} +} +@misc{hafuz1994, + author = {Hafuz, M. E.}, + title = {Karaimy. Istoriko-etnograficheskieo cherki (The Karaim: Historical- Ethnographic Essays)}, + publisher = {In- t etnol. i antrop. RaN}, + address = {Moscow}, + year = {1994}, + key = {Hafuz (1994)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@book{hagen1908, + author = {Hagen, B.}, + title = {Die Orang Kubu auf Sumatra}, + publisher = {Joseph Baer}, + address = {Frankfurt}, + series = {Veröffentlichungen aus dem Städtischen Völker-Museum}, + number = {2}, + pages = {1-269}, + year = {1908}, + key = {Hagen (1908)}, + lgcode = {Anak Dalam [kubu1239]} +} +@article{hagen1912, + author = {Hagen, G. von.}, + title = {Einige Notizen uber die Musgu}, + journal = {Baessler-Arch.}, + volume = {2}, + pages = {117-122}, + year = {1912}, + glottolog_ref = {hh:e:vonHagen:Musgu}, + key = {Hagen (1912)}, + lgcode = {Musgu [musg1254]} +} +@book{hagen1943, + author = {Hagen, V. W. von.}, + title = {The Jicaque Indians of Honduras}, + series = {Indian Notes Monogr., Misc. Ser}, + volume = {53}, + year = {1943}, + key = {Hagen (1943)}, + lgcode = {Tolupan [toll1241]} +} +@book{haglund1935, + author = {Haglund, S.}, + title = {Life among the Lapps}, + address = {London}, + year = {1935}, + key = {Haglund (1935)}, + lgcode = {Sami [nort2671]} +} +@book{haile1954, + author = {Haile, Berard}, + title = {Property Concepts of the Navajo Indians}, + series = {Catholic University of America, Anthropological Series}, + volume = {17}, + pages = {1-64}, + year = {1954}, + key = {Haile (1954)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{hailey1950, + author = {Hailey, W. M. H.}, + title = {Native administration in the British African territories}, + publisher = {London: H.M. Stationary Office; Colonial Office/Commonwealth Relations Office}, + address = {London}, + volume = {6 parts}, + year = {1950}, + glottolog_ref = {eballiso2009:4355}, + key = {Hailey (1950)}, + lgcode = {Kikuyu [kiku1240]} +} +@book{haines1955, + author = {Haines, F.}, + title = {The Nez Perces}, + address = {Norman}, + year = {1955}, + key = {Haines (1955)}, + lgcode = {Nez Perce [nezp1238]} +} +@book{hajda1955, + editor = {Hajda, J.}, + title = {Czechoslovakia}, + address = {New Haven}, + year = {1955}, + key = {Hajda (1955)}, + lgcode = {Czechs [czec1258]} +} +@article{hajdu1963, + author = {Hajdu, P.}, + title = {Samoyed Peoples and Languages}, + journal = {Indiana University Publications, Uralic and Altaic Series}, + volume = {14}, + pages = {1-114}, + year = {1963}, + key = {Hajdu (1963)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{haleandtindale1933, + author = {Hale, H.M., and N. B. Tindale}, + title = {Aborigines of the Princess Charlotte Bay, North Queensland}, + journal = {Records of the South Australia Museum}, + volume = {5}, + pages = {63-107}, + year = {1933}, + key = {Hale and Tindale (1933)}, + lgcode = {Walmbaria [flin1247]} +} +@book{halkin1911, + author = {Halkin, J.}, + title = {Les Ababua}, + address = {Bruxelles}, + series = {Collec. Monog. Ethnog.}, + volume = {7}, + pages = {1-616}, + year = {1911}, + key = {Halkin (1911)}, + lgcode = {Baboa [bwaa1238]} +} +@book{hall1938, + author = {Hall, H. U.}, + title = {The Sherbro of Sierra Leone}, + address = {Philadelphia}, + year = {1938}, + key = {Hall (1938)}, + lgcode = {Sherbro [sher1258]} +} +@article{halleran1951, + author = {Halleran, T.}, + title = {Krobo Marriage Customs}, + journal = {Anthropos}, + volume = {46}, + pages = {996-997}, + year = {1951}, + key = {Halleran (1951)}, + lgcode = {Adangme [adan1247]} +} +@article{hallouin1947, + author = {Hallouin, J.}, + title = {Geographie humaine de la subdivision de Daloa}, + journal = {Bull. Inst. Franc. Afr. Noire}, + volume = {9}, + pages = {18-55}, + year = {1947}, + key = {Hallouin (1947)}, + lgcode = {Bete [dalo1238]} +} +@article{hallowell1926, + author = {Hallowell, A. I.}, + title = {Recent Changes in the Kinship Terminology of the St. Francis Abenaki}, + journal = {Proc. Intern. Congr. Americanists}, + volume = {22}, + number = {ii}, + pages = {97-145}, + year = {1926}, + key = {Hallowell (1926)}, + lgcode = {Abenaki [peno1243]} +} +@article{hallowell1929, + author = {Hallowell, A. I.}, + title = {The Physical Characteristics of the Indians of Labrador}, + journal = {Journal de la Societe des Americanistes de Paris (n.s.)}, + volume = {21}, + pages = {337-371}, + year = {1929}, + key = {Hallowell (1929)}, + lgcode = {Iglulik Inuit [west2618], Naskapi [nask1242]} +} +@article{hallowell1938, + author = {Hallowell, A. I.}, + title = {The Incidence, Character, and Decline of Polygyny among the Lake Winnipeg Cree and Saulteaux}, + journal = {American Anthropologist}, + volume = {40}, + pages = {235-256}, + year = {1938}, + key = {Hallowell (1938)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1938a, + author = {Hallowell, A. I.}, + title = {Fear and Anxiety as Cultural and Individual Variables in a Primitive Society}, + journal = {Journal of Social Psychology}, + volume = {9}, + pages = {25-47}, + year = {1938}, + key = {Hallowell (1938a)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1938b, + author = {Hallowell, A. I.}, + title = {Notes on the Material Culture of the Island Lake Saulteaux}, + journal = {Journal de la Soci‚t‚ des Am‚ricanistes, n. s.}, + volume = {30}, + pages = {128-140}, + year = {1938}, + key = {Hallowell (1938b)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1939, + author = {Hallowell, A. I.}, + title = {Sin, Sex and Sickness in Saulteaux Belief}, + journal = {British Journal of Medical Psychology}, + volume = {18}, + pages = {191-197}, + year = {1939}, + key = {Hallowell (1939)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1940, + author = {Hallowell, A. I.}, + title = {Aggression in Saulteaux Society}, + journal = {Psychiatry}, + volume = {3}, + pages = {395-407}, + year = {1940}, + key = {Hallowell (1940)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1941, + author = {Hallowell, A. I.}, + title = {The Social Function of Anxiety in a Primitive Society}, + journal = {American Sociological Review}, + volume = {6}, + pages = {869-881}, + year = {1941}, + key = {Hallowell (1941)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@article{hallowell1942, + author = {Hallowell, A. I.}, + title = {The Role of Conjuring in Saulteaux Society}, + journal = {Publications, Philadelphia Anthropological Society}, + volume = {2}, + pages = {1-96}, + year = {1942}, + key = {Hallowell (1942)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@book{hallowell1955, + author = {Hallowell, A. I.}, + title = {Culture and Experience}, + publisher = {University of Pennsylvania Press}, + address = {Philadelphia}, + year = {1955}, + key = {Hallowell (1955)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@incollection{hallowell1963, + author = {Hallowell, A. I.}, + editor = {I. Goldstone}, + title = {Ojibwa World View and Disease}, + booktitle = {Man's Image in Medicine and Anthropology}, + address = {New York}, + pages = {258-315}, + year = {1963}, + key = {Hallowell (1963)}, + lgcode = {Northern Saulteaux [alba1270]} +} +@misc{hallpike1969, + author = {Hallpike, C. R.}, + title = {The Konso of Ethiopia}, + year = {1969}, + howpublished = {Manuscript}, + key = {Hallpike (1969)}, + lgcode = {Konso [kons1243]} +} +@article{halpern1942, + author = {Halpern, A. M.}, + title = {Yuma Kinship Terms}, + journal = {American Anthropologist}, + volume = {44}, + pages = {425-441}, + year = {1942}, + key = {Halpern (1942)}, + lgcode = {Quechan [quec1382]} +} +@misc{halpern1956, + author = {Halpern, Joel M.}, + title = {Social and cultural change in a Serbian village}, + publisher = {Human Relations Area Files}, + address = {New Haven}, + year = {1956}, + key = {Halpern (1956)}, + lgcode = {Serbs [serb1264]} +} +@book{halpern1957, + author = {Halpern, J. M.}, + title = {A Serbian Village}, + address = {New York}, + year = {1957}, + key = {Halpern (1957)}, + lgcode = {Serbs [serb1264]} +} +@incollection{halpinandseguin1990, + author = {Halpin, M. M., and M. Seguin}, + editor = {Wayne Suttles}, + title = {Tsimshian Peoples: Southern Tsimshian, Coast Tsimshian, Nishga, and Gitksan}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {267-284}, + year = {1990}, + glottolog_ref = {hh:e:HalpinSeguin:Tsimshian}, + key = {Halpin and Seguin (1990)}, + lgcode = {Gitxsan [gitx1241], Tsimshian [nucl1649]} +} +@article{halseath1924, + author = {Halseath, Odd S.}, + title = {Report of Economic and Social Survey of the Keres Pueblo of Sia}, + journal = {El Palacio}, + volume = {16}, + pages = {67-75}, + year = {1924}, + key = {Halseath (1924)}, + lgcode = {Sia [ziaa1251]} +} +@article{hambly1934, + author = {Hambly, W. D.}, + title = {The Ovimbundu of Angola}, + journal = {Field Museum Anthropological Series}, + publisher = {Chicago: Field Museum of Natural History}, + address = {Chicago}, + series = {Publications 329. Anthropological Series}, + volume = {21}, + pages = {89-362}, + year = {1934}, + glottolog_ref = {guldemann:1887}, + key = {Hambly (1934)}, + lgcode = {Mbundu [umbu1257]} +} +@article{hambruch1907, + author = {Hambruch, P.}, + title = {Wuvulu und Aua}, + journal = {Mitt. Mus. Voelkerkunde Hamburg}, + volume = {21}, + pages = {1-156}, + year = {1907}, + key = {Hambruch (1907)}, + lgcode = {Aua [wuvu1239]} +} +@book{hambruch191415, + author = {Hambruch, P.}, + editor = {G. Thilenius}, + title = {Nauru}, + address = {Hamburg}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + year = {1914-15}, + key = {Hambruch (1914-15)}, + lgcode = {Nauruans [naur1243]} +} +@misc{hambruch193236, + author = {Hambruch, P.}, + editor = {G. Thilenius}, + title = {Ponape}, + address = {Berlin}, + series = {Ergebnisse der Südsee-Expedition 1908-1910}, + volume = {7: i, 1-376; ii, 1-386; iii, 1-127}, + year = {1932-36}, + key = {Hambruch (1932-36)}, + lgcode = {Ponapeans [pohn1238]} +} +@article{hammond1964, + author = {Hammond, P. B.}, + title = {Mossi Joking}, + journal = {Ethnology}, + volume = {3}, + pages = {259-267}, + year = {1964}, + key = {Hammond (1964)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{hammond1966, + author = {Hammond, P. B.}, + title = {Yatenga}, + address = {New York}, + year = {1966}, + key = {Hammond (1966)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@misc{hammondnd, + author = {Hammond, P. B.}, + school = {University of Pittsburgh}, + howpublished = {Unpublished field notes}, + key = {Hammond (nd)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{handy1922, + author = {Handy, W. C.}, + title = {Tattooing in the Marquesas}, + address = {Honolulu}, + series = {Bulletins of the Bernice P. Biship Museum}, + number = {1}, + year = {1922}, + key = {Handy (1922)}, + lgcode = {Marquesans [nort2845]} +} +@article{handy1923, + author = {Handy, E. S. C.}, + title = {Native Culture in the Marquesas}, + journal = {Bulletins of the Bernice P. Bishop Museum.}, + volume = {9}, + pages = {1-358}, + year = {1923}, + key = {Handy (1923)}, + lgcode = {Marquesans [nort2845]} +} +@article{handy1930, + author = {Handy, E. S. C.}, + title = {History and Culture in the Society Islands}, + journal = {Bull. Bishop Mus.}, + volume = {79}, + pages = {1-110}, + year = {1930}, + key = {Handy (1930)}, + lgcode = {Tahitians [tahi1242]} +} +@book{handyetal1933, + author = {Handy, E. S. C. et al.}, + title = {Ancient Hawaiian Civilization}, + address = {Honolulu}, + year = {1933}, + key = {Handy et al. (1933)}, + lgcode = {Hawaiians [hawa1245]} +} +@book{hanks1963, + author = {Hanks, J. R.}, + title = {Maternity and its Rituals in Bang Chan}, + address = {Ithaca}, + year = {1963}, + key = {Hanks (1963)}, + lgcode = {Thai [thai1261]} +} +@incollection{hanksandhanks1961, + author = {Hanks, L. M. Jr. and J. R. Hanks}, + editor = {B. J. Ward}, + title = {Thailand: Equality Between the Sexes}, + booktitle = {Women in the New Asia}, + pages = {424-451}, + year = {1961}, + key = {Hanks and Hanks (1961)}, + lgcode = {Thai [thai1261]} +} +@article{hanksandrichardson1945, + author = {Hanks, L. M., and J. Richardson.}, + title = {Observations on Northern Blackfoot Kinship}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {9}, + pages = {1-31}, + year = {1945}, + key = {Hanks and Richardson (1945)}, + lgcode = {Blackfoot [pieg1239]} +} +@book{hann1991, + editor = {Hann, J.H. (editor and translator)}, + title = {Missions to the Calusa}, + publisher = {Florida Museum of Natural History and University of Florida Press}, + address = {Gainesville}, + year = {1991}, + key = {Hann (1991)}, + lgcode = {Calusa [calu1239]} +} +@book{hanoteauandletourneaux1893, + author = {Hanoteau, A., and A. Letourneaux.}, + title = {La Kabylie et les coutumes kabyles. 2d edit. 2v}, + address = {Paris}, + year = {1893}, + key = {Hanoteau and Letourneaux (1893)}, + lgcode = {Kabyle [kaby1243]} +} +@book{hansen1914, + author = {Hansen, S.}, + title = {Contributions to the Anthropology of the East Greenlanders}, + series = {Meddelelser om Gronland}, + volume = {39}, + number = {2}, + year = {1914}, + key = {Hansen (1914)}, + lgcode = {Kalaallit (West Greenland) [kala1399], Tasiilaq [tunu1234]} +} +@article{hansen1961, + author = {Hansen, H. H.}, + title = {The Kurdish Woman's Life}, + journal = {Copenhagen Ethnographic Museum Record}, + volume = {7}, + pages = {1-213}, + year = {1961}, + key = {Hansen (1961)}, + lgcode = {Kurd [cent1972]} +} +@article{hansenetal1969, + author = {Hansen, J. D. L. and A. S. Truswell and C. Freeseman and B. MacHutchon}, + title = {The children of hunting and gathering Bushmen}, + journal = {South African Medical Journal}, + volume = {43}, + pages = {1158}, + year = {1969}, + glottolog_ref = {eballiso2009:39742}, + key = {Hansen et al. (1969)}, + lgcode = {!Kung [juho1239]} +} +@book{hanson1955, + author = {Hanson, A. H., et al.}, + title = {Studies in Turkish Local Government}, + address = {Ankara}, + year = {1955}, + key = {Hanson (1955)}, + lgcode = {Turks [nucl1301]} +} +@book{hantzsch1977, + author = {Hantzsch, B.}, + title = {My Life among the Eskimos: Baffin Island Journeys in the Years 1909-1911}, + publisher = {University of Saskatchewan}, + address = {Saskatoon}, + series = {Institute for Northern Studies Mawdsley Memoir Series}, + number = {3}, + year = {1977}, + key = {Hantzsch (1977)}, + lgcode = {Baffin Island Inuit [baff1240]} +} +@book{hanzeli1955, + author = {Hanzeli, V. E.}, + title = {The Hungarians}, + address = {New Haven}, + year = {1955}, + key = {Hanzeli (1955)}, + lgcode = {Magyar [hung1274]} +} +@article{harako1976, + author = {Harako, R.}, + title = {The Mbuti as hunters: a study of ecological anthropology of the Mbuti Pygmies}, + journal = {Kyoto University African Studies}, + publisher = {Kyoto University}, + address = {Kyoto}, + volume = {10}, + pages = {37-99}, + year = {1976}, + glottolog_ref = {eballiso2009:1586}, + key = {Harako (1976)}, + lgcode = {Mbuti [bila1255]} +} +@book{harding1967, + author = {Harding, T. G.}, + title = {Voyagers of the Vitiaz Strait}, + address = {Seattle}, + year = {1967}, + key = {Harding (1967)}, + lgcode = {Sio [sioo1240]} +} +@phdthesis{harner1960, + author = {Harner, M. J.}, + title = {Machetes, Shotguns, and Society: An Inquiry into the Social Impact of Technological Change among the Jivaro Indians}, + school = {University of California at Berkeley}, + year = {1960}, + key = {Harner (1960)}, + lgcode = {Shuar [shua1257]} +} +@article{harner1962, + author = {Harner, M. J.}, + title = {Jivaro Souls}, + journal = {American Anthropologist}, + volume = {64}, + pages = {258-272}, + year = {1962}, + key = {Harner (1962)}, + lgcode = {Shuar [shua1257]} +} +@book{harner1972, + author = {Harner, Michael}, + title = {The Jivaro. People of the Sacred Waterfalls}, + publisher = {Doubleday}, + address = {New York}, + year = {1972}, + key = {Harner (1972)}, + lgcode = {Shuar [shua1257]} +} +@phdthesis{harpending1971, + author = {Harpending, H. C.}, + title = {!Kung Hunter-Gatherer Population Structure}, + school = {Harvard University}, + year = {1971}, + key = {Harpending (1971)}, + lgcode = {!Kung [juho1239]} +} +@book{harper1964, + author = {Harper, F.}, + title = {Caribou Eskimos of the Upper Kazan River, Keewatin}, + publisher = {Allen Press}, + address = {Lawrence, Kansas}, + series = {University of Kansas Museum of Natural History Miscellaneous Publication}, + number = {36}, + year = {1964}, + key = {Harper (1964)}, + lgcode = {Caribou Inuit [cari1277]} +} +@book{harries1939, + author = {Harries, C. L.}, + title = {The laws and customs of the Bapedi}, + publisher = {Hortens}, + address = {Johannesburg}, + year = {1939}, + key = {Harries (1939)}, + lgcode = {Pedi [tswe1238]} +} +@article{harrington1912, + author = {Harrington, J. P.}, + title = {Tewa Relationship Terms}, + journal = {American Anthropologist}, + volume = {14}, + pages = {472-498}, + year = {1912}, + key = {Harrington (1912)}, + lgcode = {Santa Clara [sant1421]} +} +@article{harrington1913, + author = {Harrington, M. R.}, + title = {A Preliminary Sketch of Lenape Culture}, + journal = {American Anthropologist}, + volume = {15}, + pages = {208-235}, + year = {1913}, + key = {Harrington (1913)}, + lgcode = {Delaware [unam1242]} +} +@book{harrington1916, + author = {Harrington, John P.}, + title = {The Ethnography of the Tewa Indians}, + series = {Annual Report of the Bureau of American Ethnology}, + volume = {29}, + pages = {1-636}, + year = {1916}, + key = {Harrington (1916)}, + lgcode = {Nambé Pueblo [namb1296]} +} +@article{harrington1934, + author = {Harrington, J. P.}, + title = {A New Original Version of Boscana's Historical Account of the San Juan Capistrano Indians}, + journal = {Smiths. Misc. Coll.}, + volume = {92}, + pages = {iv, 1-62}, + year = {1934}, + key = {Harrington (1934)}, + lgcode = {Luiseño [luis1253]} +} +@article{harrington1942, + author = {Harrington, J. P.}, + title = {Central California Coast}, + journal = {Anth. Rec.}, + volume = {7}, + pages = {1-46}, + year = {1942}, + key = {Harrington (1942)}, + lgcode = {Chumash [cruz1243], Salinan [sali1253], Tongva [tong1329]} +} +@book{harrington1955, + author = {Harrington, Mark R.}, + title = {Ancient Life among the Southern California Indians}, + publisher = {Southwest Museum}, + series = {Southwest Museum Leaflets}, + pages = {79-88, 117-129, 153-167}, + year = {1955}, + key = {Harrington (1955)}, + lgcode = {Luiseño [luis1253]} +} +@book{harris1929, + author = {Harris, C. L.}, + title = {The Laws and Customs of the Bapedi and Cognate Tribes of the Transvaal}, + address = {Johannesburg}, + year = {1929}, + key = {Harris (1929)}, + lgcode = {Pedi [tswe1238]} +} +@article{harris1930, + author = {Harris, P. G.}, + title = {Notes on Yauri}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {60}, + pages = {283-324}, + year = {1930}, + key = {Harris (1930)}, + lgcode = {Reshe [resh1242]} +} +@article{harris1938, + author = {Harris, P. G.}, + title = {Notes on the Dakarkari Peoples}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {68}, + pages = {113-152}, + year = {1938}, + key = {Harris (1938)}, + lgcode = {Dakakari [clel1238]} +} +@incollection{harris1940, + author = {Harris, J.}, + editor = {R. Linton}, + title = {The White Knife Shoshoni of Nevada}, + booktitle = {Acculturation in Seven American Indian Tribes}, + publisher = {D. Appleton-Century}, + address = {New York}, + pages = {39-166}, + year = {1940}, + key = {Harris (1940)}, + lgcode = {White Knife Shoshoni [west2622]} +} +@book{harris1957, + editor = {Harris, G. L.}, + title = {Egypt}, + address = {New Haven}, + year = {1957}, + key = {Harris (1957)}, + lgcode = {Egyptians [egyp1253]} +} +@book{harris1958, + author = {Harris, G. L.}, + title = {Jordan}, + address = {New Haven}, + year = {1958}, + key = {Harris (1958)}, + lgcode = {Jordanians [sout3123]} +} +@incollection{harris1978, + author = {Harris, D. R.}, + editor = {N. Blurton-Jones and V. Reynolds}, + title = {Adaptation to a Tropical Rain-Forest Environment: Aboriginal Subsistence in Northeastern Queensland}, + booktitle = {Human Behavior and Adaptation}, + publisher = {Taylor and Francis}, + address = {London}, + pages = {113-133}, + year = {1978}, + key = {Harris (1978)}, + lgcode = {Mamu [mamu1253], Mardudjara [mart1256]} +} +@incollection{harris1982, + author = {Harris, D. R.}, + editor = {M. Harris and E. B. Ross}, + title = {Aboriginal Subsistence in a Tropical Rain Forest Environment: Food Procurement, Cannibalism, and Population Regulation in Northeastern Australia}, + booktitle = {Food and Evolution: Toward a Theory of Human Food Habits}, + publisher = {Temple University Press}, + address = {Philadelphia}, + pages = {357-385}, + year = {1982}, + key = {Harris (1982)}, + lgcode = {Mamu [mamu1253]} +} +@book{harrison1913, + editor = {Harrison, F.}, + title = {Roman Farm Management: The Treatises of Cato and Varro}, + address = {New York}, + year = {1913}, + key = {Harrison (1913)}, + lgcode = {Ancient Romans [lati1261]} +} +@article{harrison1949, + author = {Harrison, T.}, + title = {Notes on Some Nomadic Punans}, + journal = {Sarawak Museum Journal}, + volume = {5}, + number = {1}, + pages = {130-146}, + year = {1949}, + key = {Harrison (1949)}, + lgcode = {Punan [west2563]} +} +@article{hart1954, + author = {Hart, D. M.}, + title = {An Ethnographic Survey of the Riffian Tribe of Aith Waryaghil}, + journal = {Tamuda}, + address = {Tetuan}, + volume = {1}, + pages = {55-86}, + year = {1954}, + key = {Hart (1954)}, + lgcode = {Riffians [tari1263]} +} +@article{hart1954a, + author = {Hart, C.}, + title = {The Sons of Turimpi}, + journal = {American Anthropologist}, + volume = {56}, + pages = {242-261}, + year = {1954}, + key = {Hart (1954a)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{hart1965, + author = {Hart, D. V.}, + title = {From Pregnancy Through Birth in a Bisayan Filipino Village. Southeast Asian Birth Customs}, + address = {New Haven}, + pages = {1-113}, + year = {1965}, + key = {Hart (1965)}, + lgcode = {Sugbuanon [cebu1242]} +} +@article{hart1970, + author = {Hart, C. W. M.}, + title = {Some Factors Affecting Residence among the Tiwi}, + journal = {Oceania}, + volume = {40}, + pages = {296-303}, + year = {1970}, + key = {Hart (1970)}, + lgcode = {Tiwi [tiwi1244]} +} +@book{hart1976, + author = {Hart, D. M.}, + title = {The Aith Waryaghar of the Moroccan Rif}, + publisher = {Tucson: University of Arizona Press}, + address = {Tucson}, + series = {Viking Fund Publications in Anthropology}, + volume = {55}, + pages = {556}, + year = {1976}, + glottolog_ref = {hh:e:Hart:Waryaghar}, + key = {Hart (1976)}, + lgcode = {Riffians [tari1263]} +} +@article{hart1978, + author = {Hart, J. A.}, + title = {From Subsistence to Market: A case study of the Mbuti net hunters}, + journal = {Human Ecology}, + volume = {6}, + number = {3}, + pages = {325-353}, + year = {1978}, + key = {Hart (1978)}, + lgcode = {Mbuti [bila1255]} +} +@book{hartandpilling1960, + author = {Hart, C. W. M., and A. R. Pilling}, + title = {The Tiwi of North Australia}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + year = {1960}, + key = {Hart and Pilling (1960)}, + lgcode = {Tiwi [tiwi1244]} +} +@article{hartmann1927, + author = {Hartmann, H.}, + title = {Ethnographische Studie uber die Baja}, + journal = {Zeitschrift für Ethnologie}, + volume = {59}, + pages = {1-61}, + year = {1927}, + key = {Hartmann (1927)}, + lgcode = {Gbaya [nort2775]} +} +@article{hartmann1928, + author = {Hartmann, H.}, + title = {Some Customs of the Luwo}, + journal = {Anthropos}, + volume = {23}, + pages = {263-275}, + year = {1928}, + key = {Hartmann (1928)}, + lgcode = {Luo [luok1236]} +} +@book{hartmann1970, + author = {Hartmann, Günther}, + title = {Die materielle Kultur der Xavante, Zentralbrasilien}, + year = {1970}, + howpublished = {Baessler-Archiv, Neue Folge, Bd. XVIII: 43-70e. I dis}, + key = {Hartmann (1970)}, + lgcode = {Shavante [xava1240]} +} +@misc{hartnd, + author = {Hart, D. V.}, + howpublished = {Personal communications to C. O. Frake}, + key = {Hart (nd)}, + lgcode = {Sugbuanon [cebu1242]} +} +@book{haruzina1898, + author = {Haruzina, V. N.}, + title = {Votjaki}, + address = {Moscow}, + year = {1898}, + key = {Haruzina (1898)}, + lgcode = {Udmurt [sout2681]} +} +@article{harva193940, + author = {Harva, U.}, + title = {Der Bau des VerwandtschAftsnamensystems und die VerwandtschAftsverhaeltnisse bei den Fenno-Ugrier}, + journal = {Finno-Ugrische Forschungen}, + volume = {26}, + pages = {91-120}, + year = {1939-40}, + key = {Harva (1939-40)}, + lgcode = {Ob Ostyak [khan1273]} +} +@book{hasluck1954, + author = {Hasluck, M.}, + title = {The Unwritten Law in Albania}, + address = {Cambridge}, + year = {1954}, + key = {Hasluck (1954)}, + lgcode = {Gheg [gheg1238]} +} +@book{hassig1985, + author = {Hassig, R.}, + title = {Trade, Tribute, and Transportation. the Sixteenth-Century Political Economy of the Valley of Mexico}, + year = {1985}, + key = {Hassig (1985)}, + lgcode = {Aztec [clas1250]} +} +@book{hassig1988, + author = {Hassig, R.}, + title = {Aztec Warfare. Imperial Expansion and Political Control}, + year = {1988}, + key = {Hassig (1988)}, + lgcode = {Aztec [clas1250]} +} +@article{hassrick1944, + author = {Hassrick, R. B.}, + title = {Teton Dakota Kinship Terminology}, + journal = {American Anthropologist}, + volume = {46}, + pages = {338-347}, + year = {1944}, + key = {Hassrick (1944)}, + lgcode = {Teton [lako1247]} +} +@book{hassrick1964, + author = {Hassrick, R. B.}, + title = {The Sioux}, + address = {Norman}, + year = {1964}, + key = {Hassrick (1964)}, + lgcode = {Teton [lako1247]} +} +@book{hauck1958, + author = {Hauck, H. M. et al.}, + title = {Food Habits and Nutrient Intake in a Siamese Rice Village}, + address = {Ithaca}, + year = {1958}, + key = {Hauck (1958)}, + lgcode = {Thai [thai1261]} +} +@misc{haughton1912, + author = {Haughton, T. H.}, + title = {Mumuye Assessment Report}, + year = {1912}, + howpublished = {Manuscript}, + key = {Haughton (1912)}, + lgcode = {Mumuye [nucl1240]} +} +@book{haumant1929, + author = {Haumant, J. C.}, + title = {Les Lobi et leur coutume}, + address = {Paris}, + year = {1929}, + key = {Haumant (1929)}, + lgcode = {Lobi [lobi1245]} +} +@book{hawes1903, + author = {Hawes, C. H.}, + title = {In the Uttermost East}, + address = {London}, + year = {1903}, + key = {Hawes (1903)}, + lgcode = {Nivkh [gily1242]} +} +@article{hawkes1916, + author = {Hawkes, M. W.}, + title = {The Labrador Eskimo}, + journal = {Mem. Canada Dept. Mines, Geol. Surv}, + volume = {91}, + pages = {1-165}, + year = {1916}, + key = {Hawkes (1916)}, + lgcode = {Labrador Inuit [labr1244]} +} +@incollection{hawkesetal1989, + author = {Hawkes, C. and J. F. O'Connell and N. B. Jones}, + editor = {Standen, V. and Foley, R.A.}, + title = {Hardworking Hadza grandmothers}, + booktitle = {Comparative Socioecology: The Behavioral Ecology of Humans and Other Mammals}, + publisher = {Blackwell Scientific Publ.}, + address = {London}, + series = {Special publ. from the British Ecological Soc.}, + volume = {8}, + pages = {341-366}, + year = {1989}, + glottolog_ref = {eballiso2009:22617}, + key = {Hawkes et al. (1989)}, + lgcode = {Hadza [hadz1240]} +} +@article{hawkesworth1932, + author = {Hawkesworth, D.}, + title = {The Nuba Proper of Southern Kordofan}, + journal = {Sudan Notes and Records}, + volume = {15}, + pages = {159-199}, + year = {1932}, + glottolog_ref = {eballiso2009:29349}, + key = {Hawkesworth (1932)}, + lgcode = {Dilling [dill1242]} +} +@article{hawley1950, + author = {Hawley, Florence M.}, + title = {Keresan Patterns of Kinship and Social Organization}, + journal = {American Anthropologist}, + volume = {52}, + pages = {499-512}, + year = {1950}, + key = {Hawley (1950)}, + lgcode = {Cochiti [coch1273]} +} +@article{hawley1964, + author = {Hawley Ellis, Florence}, + title = {A Reconstruction of the Basic Jemez Pattern of Social Organization: With Comparisons to Other Tanoan Social Structures}, + journal = {Univ. New Mexico Publ. Anth.}, + volume = {11}, + pages = {1-69}, + year = {1964}, + key = {Hawley (1964)}, + lgcode = {Jemez [jeme1245]} +} +@article{hawleyetal1943, + author = {Hawley, F. and M. Pijoan and C. A. Elkin}, + title = {An Inquiry into Food Economy and Body Economy in Zia Pueblo}, + journal = {American Anthropologist}, + volume = {45}, + pages = {547-556}, + year = {1943}, + key = {Hawley et al. (1943)}, + lgcode = {Sia [ziaa1251]} +} +@article{hawthorn1944, + author = {Hawthorn, H. B.}, + title = {The Maori: A Study in Acculturation}, + journal = {Memoirs of the American Anthropological Association}, + volume = {64}, + pages = {1-130}, + year = {1944}, + key = {Hawthorn (1944)}, + lgcode = {Māori [maor1246]} +} +@article{hawtrey1901, + author = {Hawtrey, S. H. C.}, + title = {The Lengua Indians of the Paraguayan Chaco}, + journal = {Journal of the Royal Anthropological Institute}, + address = {Londres}, + volume = {31}, + pages = {280-299}, + year = {1901}, + glottolog_ref = {fabreall2009ann:Enlhet-Enenlhet_enxet12}, + key = {Hawtrey (1901)}, + lgcode = {Lengua [leng1262]} +} +@book{haxthausen1854, + author = {Haxthausen, A. von.}, + title = {Transcaucasia. Transl.}, + address = {London}, + year = {1854}, + key = {Haxthausen (1854)}, + lgcode = {Armenians [nucl1235], Georgians [imer1248]} +} +@book{hayden1936, + author = {Hayden, C. (compiler)}, + title = {Walapai Papers: Historical Reports, Documents, and Extracts from Publications Relating to the Walapai Indians of Arizona}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Seventy-Fourth Congress, Second Session, Senate Document}, + number = {273}, + year = {1936}, + key = {Hayden (1936)}, + lgcode = {Hualapai [wala1270]} +} +@book{hayden1997, + author = {Hayden, B.}, + title = {The Pitshouses of Idatley Creek}, + publisher = {Harcourt Brace College Publishers}, + address = {Orlando, Fla.}, + year = {1997}, + key = {Hayden (1997)}, + lgcode = {Lillooet [lill1248]} +} +@incollection{haydenetal1996, + author = {Hayden, B. and G. A. Reinhardt and R. MacDonald and D. Holmberg and D. Crellin}, + editor = {G. Coupland and E. B. Banning}, + title = {Space per Capita and the Optimal Size of Housepits}, + booktitle = {People Who Lived in Big Houses: Archaeological Perspectives on Large Domestic Structures}, + publisher = {Prehistory Press}, + address = {Madison, Wisc.}, + series = {Monographs in World Archaeology}, + number = {27}, + pages = {151-164}, + year = {1996}, + key = {Hayden et al. (1996)}, + lgcode = {Caribou Inuit [cari1277], Copper Inuit [copp1244], Inuvialuit [sigl1242], Nlaka'pamux [thom1243], Tasiilaq [tunu1234], Ungazikmit [cent2128]} +} +@article{haydenperscomm1990, + author = {Hayden, B.}, + title = {Nimrods, Piscators, Pluckers, and Planters: The Emergence of Food Production}, + journal = {Journal of Anthropological Archaeology}, + volume = {9}, + pages = {31-69}, + year = {1990}, + key = {Hayden pers. comm. (1990)}, + lgcode = {Pintubi [pint1250]} +} +@incollection{haydenperscomm1992, + author = {Hayden, B.}, + editor = {A. B. Gebauer and T. C. Price}, + title = {Models of Domestication}, + booktitle = {Transitions to Agriculture in Prehistory}, + publisher = {Prehistory Press}, + address = {Madison, Wisc.}, + pages = {11-19}, + year = {1992}, + key = {Hayden pers. comm. (1992)}, + lgcode = {Pintubi [pint1250]} +} +@book{hayley1923, + author = {Hayley, F. A.}, + title = {A Treatise on the Laws and Customs of the Sinhalese}, + address = {Colombo}, + year = {1923}, + key = {Hayley (1923)}, + lgcode = {Sinhalese [sinh1246]} +} +@book{hayley1947, + author = {Hayley, T. T. S.}, + title = {The Anatomy of Lango Religion and Kin Groups}, + address = {Cambridge}, + year = {1947}, + key = {Hayley (1947)}, + lgcode = {Lango [lang1324]} +} +@book{hazard1956, + author = {Hazard, H. W.}, + title = {Southern Arabia}, + address = {New Haven}, + year = {1956}, + key = {Hazard (1956)}, + lgcode = {Yemeni [sana1295]} +} +@phdthesis{headland1986, + author = {Headland, T. N.}, + title = {Why foragers do not become farmers: a historical study of a changing ecosystem and its effect on a negrito hunter-gatherer group in the Philippines}, + school = {Department of Anthropology, University of Hawaii, Honolulu}, + year = {1986}, + glottolog_ref = {guldemann:1973}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Headland (1986)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@misc{headlandperscomm1992, + author = {Headland}, + year = {1992}, + howpublished = {pers. comm.}, + key = {Headland pers. comm. (1992)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@misc{headlandperscomm1993, + author = {Headland}, + year = {1993}, + howpublished = {pers. comm.}, + key = {Headland pers. comm. (1993)}, + lgcode = {Agta (Casiguran) [casi1235]} +} +@phdthesis{heath1959, + author = {Heath, D. B.}, + title = {Camba: A Study of Land and Society in Eastern Bolivia}, + school = {Yale University}, + year = {1959}, + key = {Heath (1959)}, + lgcode = {Camba [chiq1248]} +} +@book{hebererandlehman1950, + author = {Heberer, G. and W. Lehmann}, + title = {Die Inland-Malaien von Lombok und Sumbawa}, + publisher = {Muster-Schmidt}, + address = {Göttingen}, + year = {1950}, + key = {Heberer and Lehman (1950)}, + lgcode = {Malays [mala1479]} +} +@article{heese1913, + author = {Heese}, + title = {Sitte und Brauch der Sango}, + journal = {Archaeology & Anthropology}, + volume = {40}, + pages = {134-146}, + year = {1913}, + key = {Heese (1913)}, + lgcode = {Sangu [sang1330]} +} +@book{heffner1955, + editor = {Heffner, R. C.}, + title = {The Cheremis}, + address = {New Haven}, + year = {1955}, + key = {Heffner (1955)}, + lgcode = {Mari [east2328]} +} +@phdthesis{heider1965, + author = {Heider, K. G.}, + title = {The Dugum Dani}, + school = {Harvard University.}, + year = {1965}, + key = {Heider (1965)}, + lgcode = {Dani [midg1235]} +} +@misc{heider1967, + author = {Heider, K. G.}, + year = {1967}, + howpublished = {Personal communication}, + key = {Heider (1967)}, + lgcode = {Dani [midg1235]} +} +@article{heimann1932, + author = {Heimann, M.}, + title = {Die Cayapa Indianer}, + journal = {Zeitschrift für Ethnologie}, + volume = {63}, + pages = {281-287}, + year = {1932}, + key = {Heimann (1932)}, + lgcode = {Chachi [chac1249]} +} +@misc{heinegeldernandhoehngerlachstein1958, + editor = {Heine-Geldern, R. and A. Hoehnwart-Gerlachstein}, + title = {Bulletin of the International Committee on Urgent Anthropological and Ethnological Research, No. 1}, + publisher = {International Union of Anthropological and Ethnological Sciences and UNESCO}, + address = {Vienna}, + year = {1958}, + key = {Heine-Geldern and Hoehn-Gerlachstein (1958)}, + lgcode = {Onge [onge1236]} +} +@book{heizerandmills1952, + author = {Heizer, R. F., and J. E. Mills}, + title = {The Four Ages of Tsurai: A Documentary History of the Indian Village on Trinidad Bay}, + publisher = {University of California Press}, + address = {Berkeley}, + year = {1952}, + key = {Heizer and Mills (1952)}, + lgcode = {Yurok [yuro1248]} +} +@book{held1947, + author = {Held, G. J.}, + title = {Papoea's van Waropen}, + address = {Leiden}, + year = {1947}, + key = {Held (1947)}, + lgcode = {Waropen [waro1242]} +} +@book{helm1961, + author = {Helm, J.}, + title = {The Lynx Point People: The Dynamics of a Northern Athapaskan Band}, + publisher = {Department of Northern Affairs and National Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin No. 176. Anthropological Series}, + number = {53}, + pages = {1-193}, + year = {1961}, + key = {Helm (1961)}, + lgcode = {DeneTha [sout2959], Hare [nort2942]} +} +@incollection{helm1968, + author = {Helm, J.}, + editor = {R. B. Lee and I. DeVore}, + title = {The Nature of Dogrib Socioterritorial Groups}, + booktitle = {Man the Hunter}, + publisher = {Aldine}, + address = {Chicago}, + pages = {118-125}, + year = {1968}, + key = {Helm (1968)}, + lgcode = {Tlicho [dogr1252]} +} +@incollection{helm1972, + author = {Helm, J.}, + editor = {M. G. Bicchieri}, + title = {The Dogrib Indians}, + booktitle = {Hunters and Gatherers Today}, + publisher = {Holt, Rinehart and Winston}, + address = {New York}, + pages = {51-89}, + year = {1972}, + key = {Helm (1972)}, + lgcode = {Tlicho [dogr1252]} +} +@misc{helmandleacocknd, + author = {Helm, J. and E. Leacock}, + title = {The Hunting Tribes of Subarctic Canada}, + howpublished = {Manuscript}, + key = {Helm and Leacock (nd)}, + lgcode = {DeneTha [sout2959]} +} +@book{helmandlurie1961, + author = {Helm, J., and N. O. Lurie.}, + title = {The Subsistence Economy of the Dogrib Indians of Lac la Martre}, + address = {Ottawa}, + year = {1961}, + key = {Helm and Lurie (1961)}, + lgcode = {Tlicho [dogr1252]} +} +@article{helms1969, + author = {Helms, M. W.}, + title = {The Cultural Ecology of a Colonial Tribe}, + journal = {Ethnology}, + volume = {8}, + pages = {76-84}, + year = {1969}, + glottolog_ref = {fabreall2009ann:Misumalpa_miskito074}, + key = {Helms (1969)}, + lgcode = {Miskito [misk1235]} +} +@book{helms1970, + author = {Helms, M.}, + title = {Matrilocality and the maintenance of ethnic identity: the Miskito of eastern Nicaragua and Honduras}, + year = {1970}, + key = {Helms (1970)}, + lgcode = {Miskito [misk1235]} +} +@book{helms1971, + author = {Helms, M. W.}, + title = {Asang: Adaptations to culture contact in a Miskito community}, + address = {Gainesville}, + year = {1971}, + key = {Helms (1971)}, + lgcode = {Miskito [misk1235]} +} +@book{helser1926, + author = {Helser, A. D.}, + title = {In Sunny Nigeria}, + address = {New York}, + year = {1926}, + key = {Helser (1926)}, + lgcode = {Bura [bura1292]} +} +@article{henderson1939, + author = {Henderson, K. D. D.}, + title = {A Note on the Migration of the Messiria Tribe into South West Kordofan}, + journal = {Sudan Notes and Records}, + volume = {23}, + pages = {49-77}, + year = {1939}, + glottolog_ref = {eballiso2009:27055}, + key = {Henderson (1939)}, + lgcode = {Messiria Humr [tama1331]} +} +@article{hendley1875, + author = {Hendley, T. H.}, + title = {An Account of the Maiwar Bhils}, + journal = {Journ. As. Soc. Bengal}, + volume = {44}, + pages = {i, 347-392}, + year = {1875}, + key = {Hendley (1875)}, + lgcode = {Bhil [bhil1251]} +} +@book{henriksen1973, + author = {Henriksen, G.}, + title = {Hunters in the Barrens: The Naskapi on the Edge of the White Man's World}, + publisher = {Memorial University of Newfoundland and University of Toronto Press}, + address = {St. Johns}, + series = {Newfoundland Social and Economic Studies}, + year = {1973}, + key = {Henriksen (1973)}, + lgcode = {Naskapi [nask1242]}, + nunber = {12} +} +@book{henry1910, + author = {Henry, J.}, + title = {L'ame d'un peuple Africain: Les Bambara. Leur vie psychique, ethique, sociale, religieuse}, + series = {Bibliotheque Anthropos}, + volume = {1}, + number = {ii}, + pages = {1-240}, + year = {1910}, + key = {Henry (1910)}, + lgcode = {Bambara [bamb1269]} +} +@article{henry1928, + author = {Henry, T.}, + title = {Old Tahiti}, + journal = {Bull. Bishop Mus.}, + volume = {48}, + pages = {1-651}, + year = {1928}, + key = {Henry (1928)}, + lgcode = {Tahitians [tahi1242]} +} +@book{henry1941, + author = {Henry, J.}, + title = {Jungle People}, + address = {New York}, + year = {1941}, + key = {Henry (1941)}, + lgcode = {Aweikoma [xokl1240]} +} +@book{henry1964, + author = {Henry, J.}, + title = {Jungle People: a Kaingang tribe of the highlands of Brazil}, + publisher = {Vintage Books}, + address = {New York}, + pages = {215}, + year = {1964}, + glottolog_ref = {hh:e:Henry:Kaingang}, + key = {Henry (1964)}, + lgcode = {Aweikoma [xokl1240]} +} +@article{herman1950, + author = {Herman, M. W.}, + title = {A Reconstruction of Aboriginal Delaware Culture from Contemporary Sources}, + journal = {Koreber Anth. Soc. Pap.}, + volume = {1}, + pages = {45-77}, + year = {1950}, + key = {Herman (1950)}, + lgcode = {Delaware [unam1242]} +} +@article{herskovits1923, + author = {Herskovits, M. J.}, + title = {Some Property Concepts and Marriage Customs of the Vandau}, + journal = {American Anthropologist}, + volume = {25}, + pages = {376-386}, + year = {1923}, + glottolog_ref = {eballiso2009:9029}, + key = {Herskovits (1923)}, + lgcode = {Ndau [ndau1241]} +} +@article{herskovits1932, + author = {Herskovits, M. J.}, + title = {Some Aspects of Dahomean Ethnology}, + journal = {Africa}, + volume = {5}, + pages = {266-296}, + year = {1932}, + key = {Herskovits (1932)}, + lgcode = {Fon [fonn1241]} +} +@article{herskovits1937a, + author = {Herskovits, M. J.}, + title = {A Note on 'Woman Marriage' in Dahomey}, + journal = {Africa}, + volume = {10}, + pages = {335-341}, + year = {1937}, + key = {Herskovits (1937a)}, + lgcode = {Fon [fonn1241]} +} +@book{herskovits1937b, + author = {Herskovits, M. J.}, + title = {Life in a Haitian Valley}, + address = {New York}, + year = {1937}, + key = {Herskovits (1937b)}, + lgcode = {Haitians [hait1244]} +} +@book{herskovits1938, + author = {Herskovits, M. J.}, + title = {Dahomey. 2v}, + address = {New York}, + year = {1938}, + key = {Herskovits (1938)}, + lgcode = {Fon [fonn1241]} +} +@article{herskovitsandherskovits1933, + author = {Herskovits, M. J., and F. S. Herskovits}, + title = {An Outline of Dahomean Religious Belief}, + journal = {Memoirs, American Anthropological Association}, + volume = {41}, + pages = {1-77}, + year = {1933}, + key = {Herskovits and Herskovits (1933)}, + lgcode = {Fon [fonn1241]} +} +@book{herskovitsandherskovits1934, + author = {Herskovits, M. J., and F. S. Herskovits}, + title = {Rebel Destiny. Among the Bush Negroes of Dutch Guiana}, + address = {New York}, + year = {1934}, + key = {Herskovits and Herskovits (1934)}, + lgcode = {Saramaccan [sara1340]} +} +@book{hertefeltetal1962, + author = {Hertefelt, M. and A. Trouwborst, and J. Scherer}, + title = {Les anciens royaumes de la zone interlacustrine meridionale}, + publisher = {London & Tervuren: Oxford Univ. Press}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {14; Annales du MRAC (Musée Royal de l'Afrique Centrale): monographies ethnographiques, #6}, + year = {1962}, + glottolog_ref = {eballiso2009:23731}, + key = {Hertefelt et al. (1962)}, + lgcode = {Ha [haaa1252]} +} +@book{herzog1957, + author = {Herzog, R.}, + title = {Die Nubier}, + address = {Berlin}, + year = {1957}, + key = {Herzog (1957)}, + lgcode = {Barabra [kenu1236]} +} +@article{hesketh1923, + author = {Hesketh, J.}, + title = {History of the Turtle Mountain Chipewa}, + journal = {Collections of the North Dakota State Historical Society}, + volume = {5}, + pages = {85-154}, + year = {1923}, + key = {Hesketh (1923)}, + lgcode = {Bungi [west1510], Minnesota Ojibwa [redl1238]} +} +@book{heuer1972, + author = {Heuer, Berys}, + title = {Maori Women}, + year = {1972}, + key = {Heuer (1972)}, + lgcode = {Māori [maor1246]} +} +@article{heusch1955, + author = {Heusch, L. de}, + title = {Valeur, monnaie et structuration sociale chez les Nkutshu}, + journal = {Rev. Inst. Sociol., Inst. Solvay}, + volume = {28}, + pages = {i, 73-97}, + year = {1955}, + key = {Heusch (1955)}, + lgcode = {Tetela [tete1250]} +} +@book{hewesandkim1952, + author = {Hewes, G. W., and C. H. Kim}, + title = {Korean Kinship Behavior and Structure}, + address = {Pyongyang}, + series = {Research Monographs on Korea, Ser. F}, + volume = {2}, + pages = {1-20}, + year = {1952}, + key = {Hewes and Kim (1952)}, + lgcode = {Koreans [kore1280]} +} +@book{hewitt1939, + author = {Hewitt, J.N. B.}, + editor = {Swanton, J.R.}, + title = {Notes on the Creek Indians}, + year = {1939}, + key = {Hewitt (1939)}, + lgcode = {Muscogee [cree1270]} +} +@article{heydrich1931, + author = {Heydrich, M.}, + title = {Koreanische LandwirtschAft}, + journal = {Abhandlungen und Berichte, Museum fur Tierkunde and Volkerkunde zu Dresden}, + volume = {19}, + pages = {1-44}, + year = {1931}, + key = {Heydrich (1931)}, + lgcode = {Koreans [kore1280]} +} +@article{heymer1980, + author = {Heymer, A.}, + title = {The Bayaka Pygmies of Central Africa in the Light of Human Ethnological Research Work}, + journal = {Mankind Quarterly}, + volume = {20}, + number = {3-4}, + pages = {173-204}, + year = {1980}, + key = {Heymer (1980)}, + lgcode = {Bayaka [beka1240]} +} +@book{hiatt1965, + author = {Hiatt, L.R.}, + title = {Kinship and Conflict: A Study of an Aboriginal Community in Northern Arnhem Land}, + publisher = {Australian National University}, + address = {Canberra}, + year = {1965}, + key = {Hiatt (1965)}, + lgcode = {Gidjingali [gunn1248]} +} +@article{hiatt1967, + author = {Hiatt, B.}, + title = {The Food Quest and the Economy of the Tasmanian Aborigines}, + journal = {Oceania}, + volume = {38}, + number = {2; 3}, + pages = {99-133; 190-219}, + year = {1967}, + key = {Hiatt (1967)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]} +} +@book{hickerson1962, + author = {Hickerson, H.}, + title = {The Southwestern Chippewa: An Ethnohistorical Study}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {Memoirs of the American Anthropological Association}, + number = {92}, + year = {1962}, + key = {Hickerson (1962)}, + lgcode = {Nipigon [cent2136]} +} +@book{hickerson1967, + author = {Hickerson, H.}, + title = {Land Tenure of the Rainy Lake Chippewa at the Beginning of the 19th Century}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Smithsonian Contributions to Anthroprology}, + volume = {2}, + number = {4}, + year = {1967}, + key = {Hickerson (1967)}, + lgcode = {Rainy River Ojibwe [rain1239]} +} +@book{hickey1964, + author = {Hickey, G. C.}, + title = {Village in Vietnam}, + address = {New Haven}, + year = {1964}, + key = {Hickey (1964)}, + lgcode = {Annamese [viet1252]} +} +@book{hicks1974, + author = {Hicks, D.}, + title = {The Tibagy Kaingang}, + year = {1974}, + key = {Hicks (1974)}, + lgcode = {Aweikoma [xokl1240]} +} +@article{hiernauxetal1975, + author = {Hiernaux, J. and P. Rudan and A. Brambati}, + title = {Climate and the Weight/Height Relationship in SubSahara Atica}, + journal = {Annals of Human Biology}, + volume = {2}, + pages = {3-12}, + year = {1975}, + key = {Hiernaux et al. (1975)}, + lgcode = {Baka [baka1272], Bayaka [beka1240], Mbuti [bila1255]} +} +@article{hildebrandt1875, + author = {Hildebrandt, N. M.}, + title = {Vorlaufige Bemerkungen uber die Somal}, + journal = {Zeitschrift für Ethnologie}, + volume = {7}, + pages = {1-15}, + year = {1875}, + key = {Hildebrandt (1875)}, + lgcode = {Esa [nort3051]} +} +@article{hildebrandt1878, + author = {Hildebrandt, J. M.}, + title = {Ethnograpische Notizen uber Wakamba und ihre Nachbaren}, + journal = {Zeitschrift für Ethnologie}, + volume = {10}, + pages = {347-406}, + year = {1878}, + key = {Hildebrandt (1878)}, + lgcode = {Kamba [kamb1297]} +} +@book{hilger1939, + author = {Hilger, M. Inez}, + title = {A social study of one hundred fifty Chippewa Indian families of the White Earth Reservation of Minnesota}, + publisher = {The Catholic University of America Press}, + address = {Washington}, + year = {1939}, + key = {Hilger (1939)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@article{hilger1946, + author = {Hilger, Sister M. Inez.}, + title = {Notes on Cheyenne child life}, + journal = {American Anthropologist}, + volume = {48}, + pages = {60-69}, + year = {1946}, + key = {Hilger (1946)}, + lgcode = {Cheyenne [chey1247]} +} +@book{hilger1951, + author = {Hilger, M. I.}, + title = {Chippewa child life and its cultural background}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Smithsonian Institution, Bureau of American Ethnology, Bulletin}, + number = {146}, + year = {1951}, + key = {Hilger (1951)}, + lgcode = {Minnesota Ojibwa [redl1238]} +} +@book{hilger1952, + author = {Hilger, M. I.}, + title = {Arapaho Child Life and Its Cultural Background}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {148}, + pages = {1-253}, + year = {1952}, + key = {Hilger (1952)}, + lgcode = {Arapaho [arap1274]} +} +@article{hilger1957, + author = {Hilger, M. I.}, + title = {Araucanian Child Life and Its Cultural Background}, + journal = {Smithsonian Miscellaneous Collection}, + address = {Washington: Smithsonian Institution}, + volume = {133}, + pages = {1-495}, + year = {1957}, + glottolog_ref = {fabreall2009ann:Mapuche645}, + key = {Hilger (1957)}, + lgcode = {Mapuche [mapu1245]} +} +@book{hilger1971, + author = {Hilger, M. I.}, + title = {Together with the Ainu}, + address = {Norman}, + year = {1971}, + key = {Hilger (1971)}, + lgcode = {Ainu [ainu1240]} +} +@article{hill1936, + author = {Hill, Willard W}, + title = {Notes on Pima Land Law and Tenure}, + journal = {American Anthropologist}, + volume = {38}, + pages = {586-589}, + year = {1936}, + key = {Hill (1936)}, + lgcode = {Pima [akim1239]} +} +@article{hill1938, + author = {Hill, W. W.}, + title = {The Agricultural and Hunting Methods of the Navaho Indians}, + journal = {Yale Univ. Publ. Anth.}, + volume = {18}, + pages = {1-194}, + year = {1938}, + key = {Hill (1938)}, + lgcode = {Navajo [nava1243], Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@book{hill1956, + author = {Hill, G. W. et al.}, + title = {Los Guarao del delta Amacuro}, + address = {Caracas}, + year = {1956}, + key = {Hill (1956)}, + lgcode = {Warao [wara1303]} +} +@book{hill1972, + author = {Hill, P.}, + title = {Rural Hausa}, + address = {New York}, + year = {1972}, + key = {Hill (1972)}, + lgcode = {Zazzagawa Hausa [araw1280]} +} +@article{hillandhill1970, + author = {Hill, J. H. and K. C. Hill. 1-9.}, + title = {A note on Uto-Aztecan color terminologies}, + journal = {Anthropological Linguistics}, + volume = {12}, + pages = {231-38}, + year = {1970}, + key = {Hill and Hill (1970)}, + lgcode = {Southern Ute [utee1244]} +} +@article{hilletal1984, + author = {Hill, K. and C. Hawkes and A. M. Hurtado and H. Kaplan}, + title = {Seasonal Variance in the Diet of Ache HunterGatherers of Eastern Paraguay}, + journal = {Human Ecology}, + volume = {12}, + number = {2}, + pages = {101-135}, + year = {1984}, + key = {Hill et al. (1984)}, + lgcode = {Aché [ache1246]} +} +@article{hillner1847, + author = {Hillner, W.}, + title = {Die Liven an der Nordkiiste von Kurland}, + journal = {Bulletin de la Classe historico-philologique de l'Academie Imperiale de sciences de Saint Petersbourg}, + volume = {3}, + pages = {201-6}, + year = {1847}, + key = {Hillner (1847)}, + lgcode = {Livs [livv1244]} +} +@article{hilltout1900, + author = {Hill-Tout, C.}, + title = {Notes on the Sk. qo'mic of British J952 Columbia}, + journal = {Rep. Brit. Assoc. Adv. Sci.}, + volume = {70}, + pages = {472-549}, + year = {1900}, + key = {Hill-Tout (1900)}, + lgcode = {Squamish [squa1248]} +} +@article{hilltout1902, + author = {Hill-Tout, C.}, + title = {Ethnological Studies of the Mainland Halkomelem}, + journal = {Rep. Brit. Assoc. Adv. Sci.}, + volume = {72}, + pages = {355-490}, + year = {1902}, + key = {Hill-Tout (1902)}, + lgcode = {Cowichan [cowi1241], Musqueam [musq1240], Stó:lō [chil1281]} +} +@article{hilltout1904, + author = {Hill-Tout, C.}, + title = {Ethnological Report on the Stseelis and Skaulits Tribes of the Halokmelem Division of the Salish of British Columbia}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {34}, + pages = {311-376}, + year = {1904}, + key = {Hill-Tout (1904)}, + lgcode = {Cowichan [cowi1241], Stó:lō [chil1281]} +} +@article{hilltout1905, + author = {Hill-Tout, C.}, + title = {Report on the Ethnology of the Stlatlumh}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {35}, + pages = {126-218}, + year = {1905}, + key = {Hill-Tout (1905)}, + lgcode = {Lillooet [lill1248]} +} +@book{hilltout1907, + author = {Hill-Tout, Charles}, + title = {British North America: I. The Far West, The Home of the Salish and Déné}, + publisher = {Archibald Constable}, + address = {London}, + year = {1907}, + key = {Hill-Tout (1907)}, + lgcode = {Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@incollection{hilton1990, + author = {Hilton, S.}, + editor = {Wayne Suttles}, + title = {Haihais, Bella Bella, and Ooweekeeno}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {312-322}, + year = {1990}, + glottolog_ref = {hh:e:Hilton:Haihais}, + key = {Hilton (1990)}, + lgcode = {Heiltsuk [bell1263]} +} +@book{hiltonsimpson1921, + author = {Hilton-Simpson, W. M.}, + title = {Among the Hill-Folk of Algeria}, + address = {London}, + year = {1921}, + key = {Hilton-Simpson (1921)}, + lgcode = {Shawiya [tach1249]} +} +@book{himmelheberandhimmelheber1958, + author = {Himmelheber, H., and U. Himmelheber.}, + title = {Die Dan}, + address = {Stuttgart}, + year = {1958}, + key = {Himmelheber and Himmelheber (1958)}, + lgcode = {Dan [gwee1242]} +} +@article{hinderling195253, + author = {Hinderling, P.}, + title = {Notizen von den Togo-Restvölkern}, + journal = {Tribus}, + volume = {1952-53}, + pages = {361-378}, + year = {1952-53}, + key = {Hinderling (1952-53)}, + lgcode = {Buem [siwu1238]} +} +@article{hinderling1955, + author = {Hinderling, P.}, + title = {Versuch einer Analyse der sozialen Struktur der Matakam}, + journal = {Africa}, + volume = {25}, + pages = {405-426}, + year = {1955}, + key = {Hinderling (1955)}, + lgcode = {Mafa [mafa1239]} +} +@book{hinz1990, + author = {Hinz, E.}, + title = {Das Aztekenreich: Soziale Gliederung und institutioneller Aufbau}, + year = {1990}, + key = {Hinz (1990)}, + lgcode = {Aztec [clas1250]} +} +@incollection{hitchcock1891, + author = {Hitchcock, R.}, + title = {The Ainos of Yezo, Japan}, + booktitle = {Report of the U.S. National Museum for 1889-1890}, + publisher = {U.S. Government Printing Office}, + address = {Washington}, + pages = {428-502}, + year = {1891}, + key = {Hitchcock (1891)}, + lgcode = {Ainu [ainu1240]} +} +@book{hitchcock1966, + author = {Hitchcock, J. T.}, + title = {The Magars of Banyan Hill}, + address = {New York}, + year = {1966}, + key = {Hitchcock (1966)}, + lgcode = {Magar [west2418]} +} +@article{hitchcockandebert1989, + author = {Hitchcock, R. K., and J. I. Ebert}, + title = {Modeling Kalahari Hunter-Gatherer Subsistence and Settlement Systems: Implications for Development Policy and Land Use Planning}, + journal = {Anthropos}, + volume = {84}, + pages = {47-62}, + year = {1989}, + glottolog_ref = {eballiso2009:40535}, + key = {Hitchcock and Ebert (1989)}, + lgcode = {!Ko [huaa1248], !Kung [juho1239], Kua [kuaa1238], Naron [naro1249]} +} +@misc{hitchcockperscomm1990, + author = {Hitchcock}, + year = {1990}, + howpublished = {pers. comm.}, + key = {Hitchcock pers. comm. (1990)}, + lgcode = {!Ko [huaa1248], G/wi [gwii1239], Kua [kuaa1238]} +} +@book{hoben1970, + author = {Hoben, A.}, + title = {Social Stratification in Traditional Amhara Society}, + year = {1970}, + key = {Hoben (1970)}, + lgcode = {Amhara [amha1245]} +} +@book{hoben1973, + author = {Hoben, A.}, + title = {Land Tenure among the Amhara of Ethiopia}, + year = {1973}, + key = {Hoben (1973)}, + lgcode = {Amhara [amha1245]} +} +@article{hobley1902, + author = {Hobley, C. W.}, + title = {Eastern Uganda}, + journal = {Roy. Anth. Inst. Occ. Pap.}, + volume = {1}, + pages = {1-95}, + year = {1902}, + key = {Hobley (1902)}, + lgcode = {Luo [luok1236]} +} +@book{hobson1954, + author = {Hobson, Richard}, + title = {Navajo Acquisitive Values}, + series = {Papers of the Peabody Museum}, + volume = {42}, + number = {3}, + pages = {1-45}, + year = {1954}, + key = {Hobson (1954)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@article{hocart1922, + author = {Hocart, A. M.}, + title = {The Cult of the Dead in Eddystone of the Solomons}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {55}, + pages = {71-112, 259-305}, + year = {1922}, + key = {Hocart (1922)}, + lgcode = {Simboese [simb1256]} +} +@book{hocart1929, + author = {Hocart, A. M.}, + title = {Lau Islands, Fiji}, + series = {Bull. Bishop Mus.}, + volume = {62}, + pages = {1-240}, + year = {1929}, + key = {Hocart (1929)}, + lgcode = {Lau [laua1243]} +} +@misc{hockett1938, + author = {Hockett, C. F.}, + year = {1938}, + howpublished = {Unpublished field notes}, + key = {Hockett (1938)}, + lgcode = {Kickapoo [kick1244]} +} +@article{hodgeandtaylor1957, + author = {Hodge, W. H. and D. M. Taylor.}, + title = {The Ethnobotany of the Island Caribs of Dominica}, + journal = {Webbia}, + address = {Firenze}, + volume = {12}, + number = {ii}, + pages = {513-644}, + year = {1957}, + key = {Hodge and Taylor (1957)}, + lgcode = {Callinago [isla1278]} +} +@book{hodgson1847, + author = {Hodgson, B. H.}, + title = {On the Kocch, Bodo and Dhimál tribes}, + publisher = {J. Thomas Baptist Mission Press}, + address = {Calcutta}, + pages = {221}, + year = {1847}, + glottolog_ref = {hh:es:Hodgson:Kocch-Bodo-Dhimal}, + key = {Hodgson (1847)}, + lgcode = {Kachari [kach1279]} +} +@article{hodgson1933, + author = {Hodgson, A. G. O.}, + title = {Notes on the Achewa and Ngoni}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {63}, + pages = {123-164}, + year = {1933}, + key = {Hodgson (1933)}, + lgcode = {Chewa [chew1246]} +} +@article{hoebel1935, + author = {Hoebel, E. Adamson}, + title = {The Sun Dance of the Hekandika Shoshone}, + journal = {American Anthropologist}, + volume = {37}, + pages = {570-581}, + year = {1935}, + key = {Hoebel (1935)}, + lgcode = {Hukundika [nort2955]} +} +@article{hoebel1939, + author = {Hoebel, E. A.}, + title = {Comanche and Hukandika Shoshone Relationship Systems}, + journal = {American Anthropologist}, + volume = {41}, + pages = {440-457}, + year = {1939}, + key = {Hoebel (1939)}, + lgcode = {Hukundika [nort2955]} +} +@article{hoebel1940, + author = {Hoebel, E. A.}, + title = {The Political Organization and Law-Ways of the Comanche Indians}, + journal = {Memoirs of the American Anthropological Association}, + volume = {54}, + pages = {1-149}, + year = {1940}, + key = {Hoebel (1940)}, + lgcode = {Comanche [coma1245]} +} +@book{hoebel1960, + author = {Hoebel, E. A.}, + title = {The Cheyennes}, + address = {New York}, + year = {1960}, + key = {Hoebel (1960)}, + lgcode = {Cheyenne [chey1247]} +} +@article{hoernl1918, + author = {Hoernl‚ A. W.}, + title = {Certain Rites of Transition and the Conception of !Nau among the Hottentots}, + journal = {Harvard African Studies}, + volume = {2}, + pages = {65-82}, + year = {1918}, + glottolog_ref = {eballiso2009:48080}, + key = {Hoernl (1918)}, + lgcode = {Nama [nama1265]} +} +@article{hoernl1925, + author = {Hoernl, A. W.}, + title = {The Social Organization of the Nama Hottentots}, + journal = {American Anthropologist}, + volume = {27}, + pages = {1-24}, + year = {1925}, + key = {Hoernl (1925)}, + lgcode = {Nama [nama1265]} +} +@article{hoffman1893, + author = {Hoffman, W. J.}, + title = {The Menomini Indians}, + journal = {Annual Reports of the Bureau of American Ethnology}, + volume = {14}, + pages = {i, 11-328}, + year = {1893}, + key = {Hoffman (1893)}, + lgcode = {Menominee [meno1252]} +} +@book{hofmayr1925, + author = {Hofmayr, Wilhelm}, + title = {Die Schilluk. Geschichte, Religion und Leben eines Nilotenstammes}, + address = {Wien}, + year = {1925}, + key = {Hofmayr (1925)}, + lgcode = {Shilluk [shil1265]} +} +@article{hogbin1931a, + author = {Hogbin, H. I.}, + title = {The sexual life of the natives of Ontong Java}, + journal = {Journal of the Polynesian Society}, + volume = {40}, + pages = {23-34}, + year = {1931}, + key = {Hogbin (1931a)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1931b, + author = {Hogbin, H. I.}, + title = {The Social Organization of Ontong Java}, + journal = {Oceania}, + volume = {1}, + pages = {399-425}, + year = {1931}, + key = {Hogbin (1931b)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1931c, + author = {Hogbin, H. Ian.}, + title = {Education at Ontong Java, Solomon Islands}, + journal = {American Anthropologist}, + volume = {33}, + pages = {601-14}, + year = {1931}, + key = {Hogbin (1931c)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin1935, + author = {Hogbin, Ian.}, + title = {Native culture of Wogeo}, + journal = {Oceania}, + volume = {5}, + pages = {308-37}, + year = {1935}, + key = {Hogbin (1935)}, + lgcode = {Wogeo [woge1237]} +} +@book{hogbin1938, + author = {Hogbin, H. I.}, + title = {Law and Order in Polynesia}, + address = {London}, + year = {1938}, + key = {Hogbin (1938)}, + lgcode = {Ontong Java [onto1237]} +} +@article{hogbin193839, + author = {Hogbin, H. I.}, + title = {Tillage and Collection}, + journal = {Oceania}, + volume = {9}, + pages = {127-151, 286-325}, + year = {1938-39}, + key = {Hogbin (1938-39)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1943, + author = {Hogbin, H. I.}, + title = {A New Guinea Infancy}, + journal = {Oceania}, + volume = {13}, + pages = {285-309}, + year = {1943}, + key = {Hogbin (1943)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1945, + author = {Hogbin, H. I.}, + title = {Marriage in Wogeo}, + journal = {Oceania}, + volume = {15}, + pages = {324-352}, + year = {1945}, + key = {Hogbin (1945)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin194647, + author = {Hogbin, H. I.}, + title = {Sex and Marriage in Busama}, + journal = {Oceania}, + volume = {17-18}, + year = {1946-47}, + key = {Hogbin (1946-47)}, + lgcode = {Busama [buga1250]} +} +@article{hogbin1946a, + author = {Hogbin, H. I.}, + title = {A New Guinea Childhood}, + journal = {Oceania}, + volume = {16}, + pages = {275-296}, + year = {1946}, + key = {Hogbin (1946a)}, + lgcode = {Wogeo [woge1237]} +} +@article{hogbin1946b, + author = {Hogbin, H. I.}, + title = {Local Government for New Guinea}, + journal = {Oceania}, + volume = {17}, + pages = {38-66}, + year = {1946}, + key = {Hogbin (1946b)}, + lgcode = {Busama [buga1250]} +} +@article{hogbin1946c, + author = {Hogbin, H. I.}, + title = {Puberty to Marriage}, + journal = {Oceania}, + volume = {16}, + pages = {185-209}, + year = {1946}, + key = {Hogbin (1946c)}, + lgcode = {Wogeo [woge1237]} +} +@book{hogbin1965, + author = {Hogbin, H. I.}, + title = {A Guadalcanal Society: The Kaoka Speakers}, + address = {New York}, + year = {1965}, + key = {Hogbin (1965)}, + lgcode = {Kaoka [long1395]} +} +@article{hohnel1890, + author = {Hohnel, L. von.}, + title = {Ostaquatorial-Afrika}, + journal = {Petermanns Mitt., Erganzungsh.}, + volume = {21}, + number = {xcix}, + pages = {1-40}, + year = {1890}, + key = {Hohnel (1890)}, + lgcode = {Galab [daas1238]} +} +@book{holas1957, + author = {Holas, B.}, + title = {Les Senoufo (y compris les Minianka)}, + publisher = {Paris: Presses Universitaires de France pour l'International African Inst. (IAI)}, + address = {Paris}, + series = {Monographies ethnologiques africaines; Ethnographic survey of Africa, Western Africa, French series}, + volume = {5}, + year = {1957}, + glottolog_ref = {eballiso2009:20508}, + key = {Holas (1957)}, + lgcode = {Minianka [mama1271], Senufo [ceba1235]} +} +@book{holas1962, + author = {Holas, B.}, + title = {Les Toura}, + address = {Paris}, + year = {1962}, + key = {Holas (1962)}, + lgcode = {Tura [tour1242]} +} +@article{holder1947, + author = {Holder, Preston.}, + title = {The Motilones}, + journal = {Washington Academy of Sciences Journal}, + volume = {37}, + pages = {417-27}, + year = {1947}, + key = {Holder (1947)}, + lgcode = {Barí (Motilon) [yukp1241]} +} +@article{holding1942, + author = {Holding, E. M.}, + title = {Some Preliminary Notes on Meru Age Grades}, + journal = {Man}, + volume = {42}, + pages = {58-65}, + year = {1942}, + glottolog_ref = {eballiso2009:4509}, + key = {Holding (1942)}, + lgcode = {Meru [meru1245]} +} +@article{holemans1959, + author = {Holemans, K.}, + title = {Etudes sur l'alimentation en milieu coutumier du Kwango}, + journal = {Annales de la Soci‚t‚ Belge de M‚decine Tropicale}, + volume = {39}, + pages = {361-374}, + year = {1959}, + key = {Holemans (1959)}, + lgcode = {Suku [suku1259]} +} +@book{holleman1952, + author = {Holleman, J. F.}, + title = {Shona Customary Law}, + publisher = {Cape Town: Oxford Univ. Press; Rhodes-Livingstone Inst.}, + address = {Cape Town}, + year = {1952}, + glottolog_ref = {eballiso2009:26214}, + key = {Holleman (1952)}, + lgcode = {Shona [shon1251]} +} +@book{hollis1905, + author = {Hollis, A. C.}, + title = {The Masai: Their Language and Folklore}, + publisher = {Oxford: Clarendon Press}, + address = {Oxford}, + year = {1905}, + glottolog_ref = {guldemann:2133}, + key = {Hollis (1905)}, + lgcode = {Maasi [masa1300]} +} +@book{hollis1909, + author = {Hollis, A. C.}, + title = {The Nandi}, + address = {London}, + year = {1909}, + key = {Hollis (1909)}, + lgcode = {Nandi [nand1266]} +} +@article{holloman1969, + author = {Holloman, R.}, + title = {Acculturation and the Cuna}, + journal = {Field Museum of Natural History Bulletin}, + volume = {40}, + number = {7}, + pages = {4-9}, + year = {1969}, + key = {Holloman (1969)}, + lgcode = {Guna [bord1248]} +} +@article{holm1911, + author = {Holm, G.}, + title = {Ethnological Sketch of the Angmagsalik Eskimo}, + journal = {Medd. om Gronland}, + volume = {39}, + pages = {1-147}, + year = {1911}, + key = {Holm (1911)}, + lgcode = {Tasiilaq [tunu1234]} +} +@article{holm1914, + author = {Holm, G.}, + title = {Ethnological Sketch of the Angmagsalik Eskimo}, + journal = {Meddelelser om Gronland}, + volume = {39}, + pages = {1-147}, + year = {1914}, + key = {Holm (1914)}, + lgcode = {Tasiilaq [tunu1234]} +} +@book{holmberg1950, + author = {Holmberg, A. R.}, + title = {Nomads of the Long Bow: The Siriono of Eastern Bolivia}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Smithsonian Institution Institute of Social Anthropology Publication}, + number = {10}, + pages = {1-104}, + year = {1950}, + key = {Holmberg (1950)}, + lgcode = {Sirionó [siri1273]} +} +@book{holmberg1985, + author = {Holmberg, H. J.}, + editor = {M. W. Falk}, + title = {Holmberg's Ethnographic Sketches}, + publisher = {University of Alaska Press}, + address = {Fairbanks}, + year = {1985}, + key = {Holmberg (1985)}, + lgcode = {Koniag [koni1262]}, + note = {translated by F. Jaensch} +} +@article{holmer1951, + author = {Holmer, N. M.}, + title = {Cuna Chrestomathy}, + journal = {Etnologiska Studier}, + publisher = {Göteborg: Etnogrfiska Muséet}, + address = {Göteborg}, + series = {Etnologiska Studier}, + volume = {18}, + pages = {1-191}, + year = {1951}, + glottolog_ref = {fabreall2009ann:Chibcha_kuna074}, + key = {Holmer (1951)}, + lgcode = {Guna [bord1248]} +} +@book{holmes1924, + author = {Holmes, J. H.}, + title = {In Primitive New Guinea}, + address = {New York}, + year = {1924}, + key = {Holmes (1924)}, + lgcode = {Purari [pura1257]} +} +@article{holt1946, + author = {Holt, C.}, + title = {Shasta Ethnography}, + journal = {Anth. Rec.}, + volume = {3}, + pages = {299-350}, + year = {1946}, + key = {Holt (1946)}, + lgcode = {Shasta [shas1239], Shasta (East) [shas1239], Shasta (West) [shas1239]} +} +@article{holtker1930, + author = {Holtker, G.}, + title = {Die Familie bei den Azteken in Altemexiko}, + journal = {Anthropos}, + volume = {25}, + pages = {465-526}, + year = {1930}, + key = {Holtker (1930)}, + lgcode = {Aztec [clas1250]} +} +@book{holub1895, + author = {Holub, E.}, + title = {Seven Years in South Africa, v. 2}, + address = {London}, + year = {1895}, + key = {Holub (1895)}, + lgcode = {Lozi [lozi1239]} +} +@misc{holybiblend, + title = {Holy Bible. Old Testament}, + key = {Holy_Bible (nd)}, + lgcode = {Hebrews [anci1244]} +} +@article{honigmann1946, + author = {Honigmann, J. J.}, + title = {Ethnography and Acculturation of the Fort Nelson Slave}, + journal = {Yale University Publications in Anthropology}, + volume = {33}, + pages = {1-169}, + year = {1946}, + key = {Honigmann (1946)}, + lgcode = {DeneTha [sout2959]} +} +@book{honigmann1949, + author = {Honigmann, J. J.}, + title = {Culture and Ethos of Kaska Society}, + publisher = {Yale University Press}, + address = {New Haven, Conn.}, + series = {Yale University Publications in Anthropology}, + number = {40}, + pages = {1-368}, + year = {1949}, + key = {Honigmann (1949)}, + lgcode = {Attawapiskat Cree [swam1239], Kaska [kask1239]} +} +@misc{honigmann1953, + author = {Honigmann, J. J.}, + title = {Information for Pakistan}, + year = {1953}, + howpublished = {Unpublished Manuscript}, + key = {Honigmann (1953)}, + lgcode = {Yusufzai [yusu1238]} +} +@book{honigmann1954, + author = {Honigmann, J. J.}, + title = {The Kaska Indians: An Ethnographic Reconstruction}, + journal = {Yale University Publications in Anthropology}, + volume = {51}, + pages = {1-163}, + year = {1954}, + key = {Honigmann (1954)}, + lgcode = {Kaska [kask1239]} +} +@article{honigmann1956a, + author = {Honigmann, J. J.}, + title = {Notes on Sarsi Kin Behavior}, + journal = {Anthropologica}, + address = {Ottawa}, + volume = {2}, + pages = {17-38}, + year = {1956}, + key = {Honigmann (1956a)}, + lgcode = {Sarcee [sars1236]} +} +@article{honigmann1956b, + author = {Honigmann, J. J.}, + title = {The Attawapiskat Swampy Cree: An Ethnographic Reconstruction}, + journal = {Anthropological Papers of the University of Alaska}, + volume = {5}, + pages = {23-82}, + year = {1956}, + key = {Honigmann (1956b)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@incollection{honigmann1957, + author = {Honigmann, J. J.}, + editor = {S. Maron}, + title = {Women in West Pakistan}, + booktitle = {Pakistan: Society and Culture}, + address = {New Haven}, + pages = {154-176}, + year = {1957}, + key = {Honigmann (1957)}, + lgcode = {Punjabi [west2386]} +} +@inbook{honigmann1958, + author = {Honigmann, J. J.}, + title = {Third Village: Punjab Province, Chak 41MB}, + booktitle = {Three Pakistan Villages}, + address = {Chapel Hill}, + pages = {68-95}, + year = {1958}, + key = {Honigmann (1958)}, + lgcode = {Punjabi [west2386]} +} +@incollection{honigmann1981, + author = {Honigmann, J. J.}, + editor = {Helm, J.}, + title = {West Main Cree}, + booktitle = {Subarctic}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {6}, + pages = {217-230}, + year = {1981}, + glottolog_ref = {hh:e:Honigmann:West-Main-Cree}, + key = {Honigmann (1981)}, + lgcode = {Attawapiskat Cree [swam1239]} +} +@book{hooper1853, + author = {Hooper, W. H.}, + title = {Ten Months among the Tents of the Tuski: With Incidents of an Arctic Boat Expedition in Search of Sir John Franklin, as Far as the Mackenzie River, and Cape Bathurst}, + publisher = {John Murray}, + address = {London}, + year = {1853}, + key = {Hooper (1853)}, + lgcode = {Délįne [nort2942]} +} +@article{hooper1920, + author = {Hooper, L.}, + title = {The Cahuilla Indians}, + journal = {University of California Publications in American Archaeology and Ethnology}, + volume = {16}, + pages = {316-380}, + year = {1920}, + key = {Hooper (1920)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264], Cupeño [cupe1243]} +} +@book{hopen1958, + author = {Hopen, C. E.}, + title = {The Pastoral Fulbe Family in Gwandu}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + year = {1958}, + glottolog_ref = {eballiso2009:43426}, + key = {Hopen (1958)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@book{horton1948, + author = {Horton, D.}, + title = {The Mundurucu}, + year = {1948}, + key = {Horton (1948)}, + lgcode = {Munduruku [mund1330]} +} +@book{hourst1899, + author = {Hourst, L.}, + title = {The Exploration of the Niger}, + address = {New York}, + year = {1899}, + key = {Hourst (1899)}, + lgcode = {Aulliminden [ioul1238]} +} +@book{howard1938, + author = {Howard, J. H.}, + title = {The Ojibwa woman}, + publisher = {Columbia University Press}, + address = {New York}, + year = {1938}, + key = {Howard (1938)} +} +@article{howard1961, + author = {Howard, J. H.}, + title = {The Identity and Demography of the Plains-Ojibwa}, + journal = {Plains Anthropologist}, + volume = {67}, + pages = {xiii, 171-178}, + year = {1961}, + key = {Howard (1961)}, + lgcode = {Bungi [west1510]} +} +@article{howard1965a, + author = {Howard, J. H.}, + title = {The Plains-Ojbiwa or Bungi}, + journal = {Anth. Pap. South Dakota Mus.}, + volume = {1}, + pages = {1-165}, + year = {1965}, + key = {Howard (1965a)}, + lgcode = {Bungi [west1510]} +} +@article{howard1965b, + author = {Howard, J. H.}, + title = {The Ponca Tribe}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {195}, + pages = {1-191}, + year = {1965}, + key = {Howard (1965b)}, + lgcode = {Ponca [ponc1241]} +} +@article{howardandhoward1964, + author = {Howard, A., and I. Howard.}, + title = {Pre-Marital Sex and Social Control Among the Rotumans}, + journal = {American Anthropologist}, + volume = {66}, + pages = {266-283}, + year = {1964}, + key = {Howard and Howard (1964)}, + lgcode = {Rotumans [rotu1241]} +} +@article{howell190810, + author = {Howell, W.}, + title = {The Sea Dyak}, + journal = {Sarawak Gazette}, + volume = {38-50}, + year = {1908-10}, + key = {Howell (1908-10)}, + lgcode = {Iban [iban1264]} +} +@article{howell1941, + author = {Howell, P. P.}, + title = {The Shilluk Settlement}, + journal = {Sudan Notes and Records}, + volume = {24}, + pages = {47-66}, + year = {1941}, + glottolog_ref = {eballiso2009:54993}, + key = {Howell (1941)}, + lgcode = {Shilluk [shil1265]} +} +@article{howell1951, + author = {Howell, P. P.}, + title = {Notes on the Ngork Dinka}, + journal = {Sudan Notes and Records}, + volume = {32}, + pages = {240-293}, + year = {1951}, + key = {Howell (1951)}, + lgcode = {Dinka [sout2832]} +} +@book{howell1979, + author = {Howell, N.}, + title = {Demography of the Dobe Area !Kung}, + publisher = {Academic Press}, + address = {New York}, + year = {1979}, + key = {Howell (1979)}, + lgcode = {!Kung [juho1239]} +} +@misc{howellnd, + author = {Howell, N.}, + title = {Estimating Absolute Age in a Remote and Nonliterate Population}, + address = {Princeton}, + howpublished = {Manuscript}, + key = {Howell (nd)}, + lgcode = {!Kung [juho1239]} +} +@book{howells1937, + author = {Howells, W. W.}, + title = {Anthropometry of the Natives of Arnhem Land and the Australian Race Problem}, + publisher = {Peabody Museum}, + address = {Cambridge, Mass.}, + series = {Papers of the Peabody Museum of AmericAn Archaeology and Ethnology}, + volume = {16}, + number = {1}, + year = {1937}, + key = {Howells (1937)}, + lgcode = {Larikia [lara1258], Nunggubuyu [nung1290], Tiwi [tiwi1244], Yolngu, Dhuwal [dhuw1249]} +} +@article{howitt1891, + author = {Howitt, A. W.}, + title = {The Dieri and Other Kindred Tribes of Central Australia}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {20}, + pages = {30-104}, + year = {1891}, + glottolog_ref = {hh:e:Howitt:Dieri}, + key = {Howitt (1891)}, + lgcode = {Diyari [dier1241]} +} +@book{howitt1904, + author = {Howitt, A. W.}, + title = {The Native Tribes of Sout-East Australia}, + publisher = {MacMillan}, + address = {London}, + year = {1904}, + key = {Howitt (1904)}, + lgcode = {Diyari [dier1241], Kurnai [gana1278], Ngiyambaa [wang1291]} +} +@incollection{hrdlicka1909, + author = {Hrdlička, A.}, + editor = {S. Williams}, + title = {On the Stature of the Indians of the Southwest and of Northern Mexico}, + booktitle = {Putnam Anniversary Volume: Anthropological Essays Presented to Fredric Ward Putnam in Honor of His Seventieth Birthday, April 16, 1909}, + publisher = {AMS Press}, + address = {New York}, + pages = {405-426}, + year = {1909}, + key = {Hrdlička (1909)}, + lgcode = {Hualapai [wala1270], Lipan Apache [lipa1241], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Ute [utee1244]} +} +@incollection{hrdlicka1930, + author = {Hrdlička, A.}, + title = {Older Anthropometric Data on the Western Eskimo: Stature and Other Measurements}, + booktitle = {46th Annual Report of the Bureau of American Ethnology, 1928-1929}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + pages = {228-253}, + year = {1930}, + key = {Hrdlička (1930)}, + lgcode = {Aivilingmiut Inuit [cari1277], Kuskowagmut [kusk1241], Nunivak [kusk1241], Sivokamiut Inuit [cent2128]} +} +@article{hrdlicka1935, + author = {Hrdlicka, Ales.}, + title = {The pueblos, with comparative data on the bulk of the tribes of the southwest northern Mexico}, + journal = {American Journal of Physical Anthropology}, + volume = {30}, + pages = {235-460}, + year = {1935}, + key = {Hrdlicka (1935)}, + lgcode = {Hopi [hopi1249]} +} +@book{hristoljubova1981, + editor = {Hristoljubova, L. S.}, + title = {Sel'skie poselenija Udmurtii v XIX-XX vv (Rural Settlements of the Udmurt in the Nineteenth and Twentieth Centuries)}, + address = {Izhevsk}, + year = {1981}, + key = {Hristoljubova (1981)}, + lgcode = {Udmurt [sout2681]} +} +@article{hudson1938, + author = {Hudson, A. E.}, + title = {Kazak Social Structure}, + journal = {Yale University Publications in Anthropology}, + volume = {20}, + pages = {1-109}, + year = {1938}, + key = {Hudson (1938)}, + lgcode = {Kazakh [kaza1248]} +} +@phdthesis{hudson1990, + author = {Hudson, J. L.}, + title = {Advancing Methods in Zooarchaeology: An Ethnoarchaeological Study among the Aka}, + school = {Department of Anthropology, University of California, Santa Barbara}, + year = {1990}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Hudson (1990)}, + lgcode = {Aka [bamb1264]} +} +@incollection{hudsonandbeacon1941, + author = {Hudson, A. E., and E. Bacon}, + editor = {L. Spier}, + title = {Social Control and the Individual in Eastern Hazara Culture}, + booktitle = {Language, Culture, and Personality}, + address = {Menasha}, + pages = {239-258}, + year = {1941}, + key = {Hudson and Beacon (1941)}, + lgcode = {Hazara [haza1239]} +} +@article{hueting1921, + author = {Hueting, A.}, + title = {De Tobeloreezen in hun denken en doen}, + journal = {Bijdragen tot de Taal-, Land-, en Volkenkunde}, + volume = {77; 78}, + pages = {217-358; 137-342}, + year = {1921}, + key = {Hueting (1921)}, + lgcode = {Tobelorese [tobe1252]} +} +@article{hughes1958, + author = {Hughes, C. C.}, + title = {An Eskimo Deviant from the "Eskimo" Type of Social Organization}, + journal = {American Anthropologist}, + volume = {60}, + pages = {1140-1147}, + year = {1958}, + key = {Hughes (1958)}, + lgcode = {Sivokakmeit [cent2128]} +} +@book{hughes1960, + author = {Hughes, C. C.}, + title = {The Eskimo Village in the Modern World}, + publisher = {Cornell University Press}, + address = {Ithaca, New York}, + year = {1960}, + key = {Hughes (1960)}, + lgcode = {Sivokakmeit [cent2128], Sivokamiut Inuit [cent2128]} +} +@book{hughesandvanvelsen1955, + author = {Hughes, A. J. B., and J. van Velsen}, + title = {The Ndebele}, + address = {London}, + year = {1955}, + key = {Hughes and van Velsen (1955)}, + lgcode = {Ndebele [nort2795]} +} +@book{hulstaert1938, + author = {Hulstaert, G.}, + title = {Le mariage des Nkundo'}, + address = {Brussels}, + series = {Mémoires de l'Institut Royal Colonial Belge}, + volume = {8}, + pages = {1-520}, + year = {1938}, + key = {Hulstaert (1938)}, + lgcode = {Nkundo [nkun1238]} +} +@article{hulstaert1971, + author = {Hulstaert, G.}, + title = {Sur quelques croyances magiques des Mongo}, + journal = {Cahiers des Religion Africaines}, + volume = {5}, + number = {9}, + pages = {145-167}, + year = {1971}, + key = {Hulstaert (1971)}, + lgcode = {Nkundo [nkun1238]} +} +@article{hultkrantz1957, + author = {Hultkrantz, A.}, + title = {The Indians of Yellowstone Park}, + journal = {Annals of Wyoming}, + volume = {29}, + pages = {125-149}, + year = {1957}, + key = {Hultkrantz (1957)}, + lgcode = {Tukudika [nort2955]} +} +@article{hultkrantz1958, + author = {Hultkrantz, A.}, + title = {Tribal Divisions Within the Eastern Shoshoni of Wyoming}, + journal = {Proc. Intern. Congr. Americ.}, + volume = {32}, + pages = {148-154}, + year = {1958}, + key = {Hultkrantz (1958)}, + lgcode = {Wind River Eastern Shoshone [nort2955]} +} +@book{humphreys1926, + author = {Humphreys, C. B.}, + title = {The Southern New Hebrides}, + address = {Cambridge}, + year = {1926}, + key = {Humphreys (1926)}, + lgcode = {Eromangans [siee1239], Tannese [sout2869]} +} +@book{hunt1940, + author = {Hunt, George T.}, + title = {The Wars of the Iroquois: A Study in Intertribal Trade Relations}, + publisher = {University of Wisconsin}, + address = {Madison}, + year = {1940}, + key = {Hunt (1940)}, + lgcode = {Seneca [sene1264]} +} +@book{hunter1936, + author = {Hunter, M.}, + title = {Reaction to Conquest}, + address = {London}, + year = {1936}, + key = {Hunter (1936)}, + lgcode = {Pondo [mpon1252]} +} +@book{huntetal1949, + author = {Hunt, E. E. Jr. and D. M. Schneider and N. R. Kidder and W. D. Stevens}, + title = {The Micronesians of Yap and Their Depopulation}, + address = {Washington}, + year = {1949}, + key = {Hunt et al. (1949)}, + lgcode = {Yapese [yape1248]} +} +@article{huntingford1929, + author = {Huntingford, G. W. B.}, + title = {Modern Hunters: Some Accounts of the KameliloKapchepkendi Dorobo (Okiek) of Kenya Colony}, + journal = {Journal of the Royal Anthropological Institute of Great Britain and Ireland}, + volume = {59}, + pages = {333-378}, + year = {1929}, + key = {Huntingford (1929)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1942, + author = {Huntingford, G. W. B.}, + title = {The Social Organization of the Dorobo}, + journal = {African Studies}, + volume = {1}, + pages = {183-200}, + year = {1942}, + key = {Huntingford (1942)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1950, + author = {Huntingford, G. W. B.}, + title = {Nandi Work and Culture}, + journal = {Colonial Research Studies}, + publisher = {London}, + volume = {4}, + pages = {1-126}, + year = {1950}, + glottolog_ref = {eballiso2009:5312}, + key = {Huntingford (1950)}, + lgcode = {Nandi [nand1266]} +} +@article{huntingford1951, + author = {Huntingford, G. W. B.}, + title = {The Social Institutions of the Dorobo}, + journal = {Anthropos}, + volume = {46}, + pages = {1-48}, + year = {1951}, + key = {Huntingford (1951)}, + lgcode = {Dorobo [okie1245]} +} +@book{huntingford1953a, + author = {Huntingford, G. W. B.}, + title = {The Northern Nilo-Hamites}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {8}, + year = {1953}, + glottolog_ref = {eballiso2009:42668}, + key = {Huntingford (1953a)}, + lgcode = {Bari [ligo1238], Kakwa [kakw1240], Kuku [kuku1285], Mondari [mand1425], Pojulu [poju1239]} +} +@book{huntingford1953b, + author = {Huntingford, G. W. B.}, + title = {The Southern Nilo-Hamites}, + publisher = {London: Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, East Central Africa}, + volume = {8}, + year = {1953}, + glottolog_ref = {eballiso2009:42668}, + key = {Huntingford (1953b)}, + lgcode = {Dorobo [okie1245], Goroa [goro1270], Hill Suk [west2492], Iraqw [iraq1241], Keyu [keiy1238], Kipsigis [kips1239], Maasi [masa1300], Nandi [nand1266], Plains Suk [east2420], Sandawe [sand1273], Tatoga [dato1239]} +} +@book{huntingford1953c, + author = {Huntingford, G. W. B.}, + title = {The Nandi of Kenya}, + address = {London}, + year = {1953}, + key = {Huntingford (1953c)}, + lgcode = {Nandi [nand1266]} +} +@article{huntingford1954, + author = {Huntingford, G. W. B.}, + title = {The Political Organization of the Dorobo}, + journal = {Anthropos}, + volume = {46}, + pages = {123-148}, + year = {1954}, + key = {Huntingford (1954)}, + lgcode = {Dorobo [okie1245]} +} +@article{huntingford1955a, + author = {Huntingford, G. W. B.}, + title = {The Economic Life of the Dorobo}, + journal = {Anthropos}, + volume = {50}, + pages = {602-634}, + year = {1955}, + glottolog_ref = {eballiso2009:42664}, + key = {Huntingford (1955a)}, + lgcode = {Dorobo [okie1245]} +} +@book{huntingford1955b, + author = {Huntingford, G. W. B.}, + title = {The Galla of Ethiopia: the kingdoms of Kafa and Janjero}, + publisher = {Oxford Univ. Press; International African Inst. (IAI)}, + address = {London}, + series = {Ethnographic survey of Africa, North-Eastern Africa}, + volume = {2}, + year = {1955}, + glottolog_ref = {eballiso2009:42663}, + key = {Huntingford (1955b)}, + lgcode = {Arusi [bora1271], Gibe [west2721], Kafa [kafa1242], Macha [west2721], Yem [toba1264]} +} +@article{hurault1959, + author = {Hurault, J.}, + title = {Etude demographique comparee des Indiens Oayana et des noirs refugies Boni de Haut-Mnaroni}, + journal = {Population}, + volume = {14}, + pages = {509-534}, + year = {1959}, + key = {Hurault (1959)}, + lgcode = {Saramaccan [sara1340]} +} +@article{hurel1911, + author = {Hurel, E.}, + title = {Religion et vie domestique des Bakerewe}, + journal = {Anthropos}, + volume = {6}, + pages = {62-94, 276-301}, + year = {1911}, + glottolog_ref = {eballiso2009:14829}, + key = {Hurel (1911)}, + lgcode = {Kerewe [kere1283]} +} +@article{hurtadoandhill1986, + author = {Hurtado, A. M., and K. R. Hill}, + title = {The Cuiva: Hunter-Gatherers of Western Venezuela}, + journal = {Anthroquest}, + volume = {36}, + number = {1}, + pages = {14-22}, + year = {1986}, + key = {Hurtado and Hill (1986)}, + lgcode = {Guahibo [guah1255]} +} +@article{hurtadoandhill1990, + author = {Hurtado, A. M., and K. R. Hill}, + title = {Seasonality in a foraging society: variation in diet, work effort, fertility and sexual division of labor among the Hiwi of Venezuela}, + journal = {Journal of Anthropological Research}, + address = {Albuquerque}, + volume = {46}, + pages = {293-346}, + year = {1990}, + glottolog_ref = {fabreall2009ann:Guahib0_cuiba18}, + key = {Hurtado and Hill (1990)}, + lgcode = {Guahibo [guah1255]} +} +@book{hutereau1909, + author = {Hutereau, A.}, + title = {Notes sur la vie familiale et juridique de quelques populations du Congo Belge}, + publisher = {Tervuren}, + series = {Annales du Musée du Congo, ethnographie et anthropologie, série 4: documents ethnographiques congolais}, + volume = {1}, + pages = {ii,61-84}, + year = {1909}, + glottolog_ref = {eballiso2009:38907}, + key = {Hutereau (1909)}, + lgcode = {Baboa [bwaa1238], Mangbetu [nucl1420]} +} +@article{hutereau1910a, + author = {Hutereau, A.}, + title = {Documents ethnographiques congolaises: Les MAfoto}, + journal = {Bull. Soc. Roy. Belge Geog.}, + volume = {34}, + pages = {138-152, 173-197}, + year = {1910}, + glottolog_ref = {hh:e:Hutereau:Mafoto}, + key = {Hutereau (1910a)}, + lgcode = {Poto [luse1252]} +} +@article{hutereau1910b, + author = {Hutereau, A.}, + title = {Les Manyanga}, + journal = {Bull Soc. Roy. Belge Geog.}, + volume = {24}, + pages = {15-39}, + year = {1910}, + glottolog_ref = {hh:e:Hutereau:Manyanga}, + key = {Hutereau (1910b)}, + lgcode = {Sundi [koon1244]} +} +@article{hutter1899, + author = {Hutter, H.}, + title = {Politische und soziale Verhaltnisse bei den Graslandstammen Nordkameruns}, + journal = {Globus}, + volume = {76}, + pages = {284-289, 303-309}, + year = {1899}, + key = {Hutter (1899)}, + lgcode = {Bali Nyonga [mung1266]} +} +@article{hutter1907, + author = {Hutter, F.}, + title = {Bamum}, + journal = {Globus}, + volume = {96}, + pages = {1-6, 26-32, 44-47}, + year = {1907}, + key = {Hutter (1907)}, + lgcode = {Bamum [bamu1253]} +} +@book{hutton1921a, + author = {Hutton, J. H.}, + title = {The Angami Nagas}, + address = {London}, + year = {1921}, + key = {Hutton (1921a)}, + lgcode = {Angami [anga1288]} +} +@book{hutton1921b, + author = {Hutton, J. H.}, + title = {The Sema Nagas}, + publisher = {London: MacMillan}, + address = {London}, + pages = {586}, + year = {1921}, + glottolog_ref = {hh:ew:Hutton:Sema}, + key = {Hutton (1921b)}, + lgcode = {Sema [sumi1235]} +} +@book{huxley1964, + author = {Huxley, M. and C. Capa.}, + title = {Farewell to Eden}, + address = {New York}, + year = {1964}, + key = {Huxley (1964)}, + lgcode = {Amahuaca [amah1246]} +} +@book{hyde1974, + author = {Hyde, G.F.}, + title = {The Pawnee Indians}, + year = {1974}, + key = {Hyde (1974)}, + lgcode = {Pawnee [pawn1254]} +} +@book{ichikawa1978, + author = {Ichikawa, M.}, + title = {The residential groups of the Mbuti pygmies}, + publisher = {National Museum of Ethnology}, + address = {Osaka}, + series = {Senri Ethnological Studies}, + volume = {1}, + number = {1}, + pages = {131-188}, + year = {1978}, + glottolog_ref = {hh:e:Ichikawa:Mbuti:Residential}, + key = {Ichikawa (1978)}, + lgcode = {Mbuti [bila1255]} +} +@book{ihle1929, + author = {Ihle, A.}, + title = {Das alte Königreich Kongo}, + publisher = {Verlag der Werkgemeinschaft}, + address = {Leipzig}, + series = {Studien zur Völkerkunde}, + volume = {1}, + year = {1929}, + glottolog_ref = {eballiso2009:18273}, + key = {Ihle (1929)}, + lgcode = {Bakongo [sans1272]} +} +@book{iliff1954, + author = {Iliff, F. G.}, + title = {People of the Blue Water}, + address = {New York}, + year = {1954}, + key = {Iliff (1954)}, + lgcode = {Havasupai [hava1249]} +} +@misc{informantfrommoloporivernd, + author = {Informant from Molopo River}, + howpublished = {pers. comm.}, + key = {Informant from Molopo River (n.d.)}, + lgcode = {/'Auni-Khomani [nuuu1241]} +} +@book{ingrams1930, + author = {Ingrams, W. H.}, + title = {Zanzibar}, + address = {London}, + year = {1930}, + key = {Ingrams (1930)}, + lgcode = {Hadimu [pemb1239]} +} +@book{insor1963, + author = {Insor, D.}, + title = {Thailand, a Political, Social, and Economic Analysis}, + address = {New York}, + year = {1963}, + key = {Insor (1963)}, + lgcode = {Thai [thai1261]} +} +@book{iochelson1908, + author = {Iochel'son, V. I.}, + title = {Drevnie i sovremennye podzemnye zhilishcha plemen Severo-Vostochnoj Azii i Severo-Zapadnoj Ameriki (Ancient and Modem Subterranean Dwellings of the North-East Asian and North-Western American Tribes)}, + address = {St. Petersburg}, + year = {1908}, + key = {Iochel'son (1908)}, + lgcode = {Oroch [oroc1248]} +} +@book{irimoto1981, + author = {Irimoto, T.}, + title = {Chipewyan Ecology: Group Structure and Caribou Hunting System}, + publisher = {National Museum of Ethnology}, + address = {Osaka}, + series = {Senri Ethnological Studies}, + number = {8}, + year = {1981}, + key = {Irimoto (1981)}, + lgcode = {Dene [chip1261]} +} +@book{irle1906, + author = {Irle, J.}, + title = {Die Herero}, + address = {Gutersloh}, + year = {1906}, + key = {Irle (1906)}, + lgcode = {Herero [here1253]} +} +@phdthesis{irvine1973, + author = {Irvine, J. T.}, + title = {Caste and Communication in a Wolof Village}, + school = {University of Pennsylvania}, + year = {1973}, + key = {Irvine (1973)}, + lgcode = {Wolof [nucl1347]} +} +@incollection{ishakovetal1998, + author = {Ishakov, D. M. and Ju. G. Muhametshin and S. V. Suslova and R. K. Urazmanova and N. A. Halikov}, + editor = {V. A. Tishkov}, + title = {Tatary}, + booktitle = {Narody i religii mira (Peoples and Religions of the World)}, + address = {Moscow}, + pages = {515-20}, + year = {1998}, + key = {Ishakov et al. (1998)}, + lgcode = {Kazan tatar [midd1325], Lithuanian Tatar [west2405]} +} +@book{islavin1847, + author = {Islavin, V.}, + title = {Samoiedy v domaschnem i obshchestvennom bytu}, + address = {St. Petersburg}, + year = {1847}, + key = {Islavin (1847)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@book{ivanova1999, + editor = {Ivanova, M. G.}, + title = {Finno-ugry Povolzh'ja i Priural'jav srednie veka (Finno-Ugric Peoples of the Volga and Ural Region in the Middle Ages)}, + address = {Izhevsk}, + year = {1999}, + key = {Ivanova (1999)}, + lgcode = {Udmurt [sout2681]} +} +@incollection{ivanovetal1964, + author = {Ivanov, S. V. and M. G. Levin and A. V. Smolyak}, + editor = {M. G. Levin and L. P. Potapuv}, + title = {The Nevkhi}, + booktitle = {The People of Siberia}, + address = {Chicago}, + pages = {767-785}, + year = {1964}, + key = {Ivanov et al. (1964)}, + lgcode = {Nivkh [gily1242]} +} +@book{ivashchenko1989, + author = {Ivashchenko, L. Ya. (ed. )}, + title = {Istorija i kul'tura udegeitsev (History and Culture of the Udihe)}, + address = {Leningrad}, + year = {1989}, + key = {Ivashchenko (1989)}, + lgcode = {Udihe [udih1248]} +} +@book{ivashchenko1994, + editor = {Ivashchenko, L. Ya.}, + title = {Istorija i kul'tura ul'chei v 17-20 vv. (The History and Culture of the Ulch in the Seventeenth-Twentieth Centuries)}, + address = {Sankt-Peterburg}, + year = {1994}, + key = {Ivashchenko (1994)}, + lgcode = {Ulch [ulch1241]} +} +@book{ivens1927, + author = {Ivens, W. G.}, + title = {Melanesians of the South-East Solomon Islands}, + address = {London}, + year = {1927}, + key = {Ivens (1927)}, + lgcode = {Ulawans [saaa1240]} +} +@book{ivens1930, + author = {Ivens, W. G.}, + title = {The Island Builders of the Pacific}, + address = {London}, + year = {1930}, + key = {Ivens (1930)}, + lgcode = {Kwaio [kwai1243]} +} +@phdthesis{ives1985, + author = {Ives, J.W.}, + title = {Northern Athapaskan Social and Economic Variability}, + school = {University of Michigan, Ann Arbor}, + year = {1985}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Ives (1985)}, + lgcode = {Beaver [beav1236], DeneTha [sout2959]} +} +@book{izardheritierandizard1959, + author = {Izard-Heritier, F., and M. Izard.}, + title = {Les Mossi du Yatnga}, + address = {Bordeaux}, + year = {1959}, + key = {Izard-Heritier and Izard (1959)}, + lgcode = {Mossi (Yatenga) [moss1236]} +} +@book{izikowitz1951, + author = {Izikowitz, K. G.}, + title = {Lamet}, + address = {Göteborg}, + series = {Etnologiska Studier}, + volume = {17}, + pages = {1-375}, + year = {1951}, + key = {Izikowitz (1951)}, + lgcode = {Lamet [lame1256]}, + note = {Only after several months of living among the Lamet, did I begin to get some idea of the contours of their social life. Unfortunately, by that time I had only a short while left at my disposal.} +} +@book{jackson1895a, + author = {Jackson, F. G.}, + title = {The Great Frozen Land}, + address = {London}, + year = {1895}, + key = {Jackson (1895a)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{jackson1895b, + author = {Jackson, F. G.}, + title = {Notes on the Samoyeds of the Great Tundra}, + journal = {Journal of the Royal Anthropological Institute}, + volume = {24}, + pages = {388-410}, + year = {1895}, + key = {Jackson (1895b)}, + lgcode = {Yurak-Samoyeds [nene1249]} +} +@article{jackson1923, + author = {Jackson, H. C.}, + title = {Nuer of the Upper Nile Province}, + journal = {Sudan Notes and Records}, + volume = {6}, + pages = {59-107, 123-89}, + year = {1923}, + glottolog_ref = {eballiso2009:35580}, + key = {Jackson (1923)}, + lgcode = {Nuer [nuer1246]} +} +@article{jackson192627, + author = {Jackson, H. M. G.}, + title = {Notes on Matabele Customary Law}, + journal = {S. Rhod. Nat. Aff. Dep. Ann.}, + volume = {4; 5}, + pages = {30-34; 7-14}, + year = {1926-27}, + key = {Jackson (1926-27)}, + lgcode = {Ndebele [nort2795]} +} +@article{jacobs1932, + author = {Jacobs, Melville}, + title = {Northern Sahaptin Kinship Terms}, + journal = {American Anthropologist}, + volume = {34}, + pages = {688-693}, + year = {1932}, + key = {Jacobs (1932)}, + lgcode = {Klikitat [nucl1237]} +} +@article{jacobs1940, + author = {Jacobs, Melville}, + title = {Coos Narrative and Ethnologic Texts}, + journal = {Univ. Wash. Publ. Anth.}, + volume = {8}, + pages = {1-260}, + year = {1940}, + key = {Jacobs (1940)}, + lgcode = {Coos [coos1249]} +} +@book{jacquemond1959, + author = {Jacquemond, M. S.}, + title = {Les pêcheurs du boucle du Niger}, + address = {Paris}, + year = {1959}, + key = {Jacquemond (1959)}, + lgcode = {Songhai [koyr1242]} +} +@book{jagafova1998, + author = {Jagafova, E.}, + title = {Samarskie chuvashi (istoriko-etnograficheskie ocherki). Konets XVII-nachalo XX vv. (The Chuvasho f Samara[ Historical-Ethnographic Essays]. From the Late Seventeenth to the Early Twentieth Century)}, + address = {Samara}, + year = {1998}, + key = {JagAfova (1998)}, + lgcode = {Chuvash [chuv1255]} +} +@article{jahn1914, + author = {Jahn, A.}, + title = {Paraujanos und Goajiros und die Pfahlbauten am See von Maracaibo}, + journal = {Zeitschrift für Ethnologie}, + address = {Braunschweig}, + volume = {46}, + pages = {267-283}, + year = {1914}, + glottolog_ref = {fabreall2009ann:Arawak_wayu068}, + key = {Jahn (1914)}, + lgcode = {Paraujano [para1316]} +} +@book{james1903, + author = {James, G. W.}, + title = {The Indians of the Painted Desert Region}, + address = {Boston}, + year = {1903}, + key = {James (1903)}, + lgcode = {Havasupai [hava1249]} +} +@book{james1960, + author = {James, Harry C.}, + title = {The Cahuilla Indians}, + publisher = {Westernlore Press}, + address = {Los Angeles}, + year = {1960}, + key = {James (1960)}, + lgcode = {Cahuilla (Desert) [cahu1264], Cahuilla (Mountain) [cahu1264], Cahuilla (Pass) [cahu1264]} +} +@incollection{jamison1978, + author = {Jamison, P. L.}, + editor = {P. L. Jamison, S. L. Zegura, and F. A. Milan}, + title = {Anthropometric Variation}, + booktitle = {Eskimos of Northwestern Alaska: A Biological Perspective}, + publisher = {Dowden, Hutchison and Ross}, + address = {Stroudsburg, Penn.}, + pages = {40-78}, + year = {1978}, + key = {Jamison (1978)}, + lgcode = {Nunamiut [nort2944]} +} +@book{janes1983, + author = {Janes, R.R.}, + title = {Archaeological Ethnography among Mackenzie Basin Deng, Canada}, + publisher = {University of Calgary}, + address = {Calgary}, + series = {Arctic Institute of North America Technical Paper}, + number = {28}, + year = {1983}, + key = {Janes (1983)}, + lgcode = {DeneTha [sout2959]} +} +@phdthesis{janetski1983, + author = {Janetski, J. C.}, + title = {The Western Ute of Utah Valley: An Ethnohistoric Model of Lakeside Adaptation}, + school = {Department of Anthropology, University of Utah, Salt Lake City}, + year = {1983}, + howpublished = {University Microfilms, Ann Arbor, Mich.}, + key = {Janetski (1983)}, + lgcode = {Timponogas [utee1244]} +} +@book{janguzin1987, + author = {Janguzin, R. Z.}, + title = {Sotsial'najas trukturab ashkirskogoo bshchestvav XVIII-XIX vv. (Social Structure of the Bashkir Society in the Eighteenth and Nineteenth Centuries)}, + address = {Ufa}, + year = {1987}, + key = {Janguzin (1987)}, + lgcode = {Bashkir [bash1264]} +} +@phdthesis{janlekha1955, + author = {Janlekha, K. O.}, + title = {A Study of the Economy of a Rice Growing Village in Central Thailand}, + school = {Cornell University}, + year = {1955}, + key = {Janlekha (1955)}, + lgcode = {Thai [thai1261]} +} +@book{jaspan1953, + author = {Jaspan, M. A.}, + title = {The Ila-Tonga Peoples of Northwestern Rhodesia}, + address = {London}, + year = {1953}, + key = {Jaspan (1953)}, + lgcode = {Plateau Tonga [tong1318]} +} +@book{jaspertandjaspert1930, + author = {Jaspert, F., and W. Jaspert.}, + title = {Die Völkerstämme Mittel-Angolas}, + publisher = {Baer}, + address = {Frankfurt am Main}, + series = {Veröffentlichungen aus dem Städtischen Völkermuseum Frankfurt am Main}, + volume = {5}, + pages = {155}, + year = {1930}, + glottolog_ref = {hh:hew:JaspertJaspert:Mittel-Angolas}, + key = {Jaspert and Jaspert (1930)}, + lgcode = {Chokwe [chok1245]} +} +@book{jay1963, + author = {Jay, R. R.}, + title = {Religion and Politics in Central Java}, + address = {New Haven}, + year = {1963}, + key = {Jay (1963)}, + lgcode = {Javanese [java1254]} +} +@book{jay1969, + author = {Jay, R. R.}, + title = {Javanese Villagers}, + address = {Cambridge, Mass.}, + year = {1969}, + key = {Jay (1969)}, + lgcode = {Javanese [java1254]} +} +@article{jazykov1840, + author = {Jazykov, D. I.}, + title = {O finskih zhiteljah S. Peterburgskoj Gubemii (About the Finnish Residents of the St. Petersburg Gubemia)}, + journal = {Russkij istoricheskij sborik}, + volume = {1}, + pages = {300-325}, + year = {1840}, + key = {Jazykov (1840)}, + lgcode = {Votes [voti1245]}, + note = {translation of Sjogren 1833} +} +@book{jean1909, + author = {Jean, C.}, + title = {Les Touareg du sud-est}, + address = {Paris}, + year = {1909}, + key = {Jean (1909)}, + lgcode = {Asben [taya1257]} +} +@article{jeffreys1951, + author = {Jeffreys, M. D. W.}, + title = {Some Notes on the Fon of Bikom}, + journal = {Afr. Aff.}, + volume = {50}, + pages = {241-249}, + year = {1951}, + glottolog_ref = {eballiso2009:21264}, + key = {Jeffreys (1951)}, + lgcode = {Kom [komc1235]} +} +@book{jenks1905, + author = {Jenks, A. E.}, + title = {The Bontoc Igorot}, + publisher = {Bureau of Printing}, + address = {Manila}, + series = {Ethnol. Surv. Publ.}, + volume = {1}, + pages = {308}, + year = {1905}, + glottolog_ref = {hh:e:Jenks:Bontoc-Igorot}, + key = {Jenks (1905)}, + lgcode = {Bontok [cent2292]} +} +@article{jenness1917, + author = {Jenness, D.}, + title = {The Copper Eskimos}, + journal = {Geographical Review}, + volume = {4}, + pages = {81-91}, + year = {1917}, + key = {Jenness (1917)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1922, + author = {Jenness, D.}, + title = {The Life of the Copper Eskimo}, + publisher = {Voliza}, + address = {Ottawa}, + series = {Report of the Canadian Arctic Expedition 1913-1918}, + volume = {12}, + pages = {5-277}, + year = {192}, + key = {Jenness (1922)}, + lgcode = {Copper Inuit [copp1244], Inupiat [nort2944]} +} +@book{jenness1928, + author = {Jenness, D.}, + title = {People of the Twilight}, + address = {New York}, + year = {1928}, + key = {Jenness (1928)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1932, + author = {Jenness, D.}, + title = {The Indians of Canada}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {65}, + year = {1932}, + key = {Jenness (1932)}, + lgcode = {Copper Inuit [copp1244]} +} +@book{jenness1935, + author = {Jenness, D.}, + title = {The Ojibwa Indians of Parry Island: Their Social and Religious Life}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {78}, + pages = {1-115}, + year = {1935}, + key = {Jenness (1935)}, + lgcode = {Eastern Ojibwa [east2542]} +} +@book{jenness1937, + author = {Jenness, D.}, + title = {The Sekani Indians of British Columbia}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {84}, + pages = {1-82}, + year = {1937}, + key = {Jenness (1937)}, + lgcode = {Dakelh [carr1249], Sekani [seka1250]} +} +@book{jenness1938, + author = {Jenness, D.}, + title = {The Sarcee Indians of Alberta}, + publisher = {Canada Department of Mines and Resources}, + address = {Ottawa}, + series = {National Museums of Canada Bulletin}, + number = {90}, + pages = {1-98}, + year = {1938}, + key = {Jenness (1938)}, + lgcode = {Sarcee [sars1236]} +} +@incollection{jenness1943, + author = {Jenness, D.}, + title = {The Carrier Indians of the Bulkley River: Their Social and Religious Life}, + booktitle = {Smithsonian Institution Anthropological Papers, No. 19-26}, + publisher = {U.S. Government Printing Office}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin}, + number = {133}, + pages = {469-586}, + year = {1943}, + key = {Jenness (1943)}, + lgcode = {Alkatcho [sout2958], Dakelh [carr1249], Dakelh (Alkatcho Carrier) [carr1249], Dakelh (Lower Carrier) [carr1249]} +} +@book{jenness1955, + author = {Jenness, Diamond}, + title = {The Faith of a Coast Salish Indian}, + series = {Anthropology in British Columbia}, + volume = {3}, + pages = {1-92}, + year = {1955}, + key = {Jenness (1955)}, + lgcode = {Musqueam [musq1240]} +} +@book{jensen1936, + author = {Jensen, A. E.}, + title = {Im Lande des Gada}, + publisher = {Stuttgart: Strecker & Schröder}, + address = {Stuttgart}, + year = {1936}, + glottolog_ref = {eballiso2009:11941}, + key = {Jensen (1936)}, + lgcode = {Darasa [gede1246], Konso [kons1243], Sidama [sida1246]} +} +@book{jensen1959, + editor = {Jensen, A. E.}, + title = {Altvölker Süd-Aethiopiens}, + address = {Stuttgart}, + year = {1959}, + key = {Jensen (1959)}, + lgcode = {Arbore [arbo1245], Bako [aari1239], Banna [hame1242], Basketo [bask1236], Bodi [meen1242], Dime [dime1235], Hamar [hame1242], Male [male1284], Shangama [aari1239], Tsamai [tsam1247], Ubamer [aari1239]} +} +@book{jochelson190508, + author = {Jochelson, W.}, + title = {The Koryak}, + series = {Mem. Amer. Mus. Nat. Hist.}, + volume = {10}, + year = {1905-08}, + key = {Jochelson (1905-08)}, + lgcode = {Koryak [kory1246]} +} +@book{jochelson191926, + author = {Jochelson, W.}, + title = {The Yukaghir and Yukaghirized Tungus}, + series = {Memoirs of the American Museum of Natural History}, + volume = {13}, + pages = {1-469}, + year = {1919-26}, + url = {http://hdl.handle.net/2246/26}, + key = {Jochelson (1919-26)}, + lgcode = {Yukaghir [nort2745]} +} +@book{jochelson1925, + author = {Jochelson, W.}, + title = {Archeaological Investigations in the Aleutian Islands}, + address = {Washington}, + series = {Carnegie Institution of Washington Publication}, + number = {367}, + year = {1925}, + glottolog_ref = {anla:AL909J1925b}, + key = {Jochelson (1925)}, + lgcode = {Aleut [east2533], Tlingit [tlin1245]} +} +@article{jochelson1933, + author = {Jochelson, W.}, + title = {The Yakut}, + journal = {Anth. Pap. Amer. Mus. Nat. Hist.}, + volume = {33}, + pages = {35-225}, + year = {1933}, + key = {Jochelson (1933)}, + lgcode = {Yakut [yaku1245]} +} +@incollection{joffe1940, + author = {Joffe, N.}, + editor = {R. Linton}, + title = {The Fox of Iowa}, + booktitle = {Acculturation in Seven American Indian Tribes}, + address = {New York}, + pages = {259-332}, + year = {1940}, + key = {Joffe (1940)}, + lgcode = {Fox [mesk1242]} +} +@book{johnson1922, + author = {Johnson, W. P.}, + title = {Nyasa: The Great Water}, + address = {London}, + year = {1922}, + key = {Johnson (1922)}, + lgcode = {Nyasa [mwer1247]} +} +@book{johnson1930, + author = {Johnson, E.}, + title = {Pioneers of Freedom}, + address = {Boston}, + year = {1930}, + key = {Johnson (1930)}, + lgcode = {Icelanders [icel1247]} +} +@article{johnson1938, + author = {Johnson, F.}, + title = {The Caribbean Lowland Tribes}, + journal = {Bull. Bur. Amer. Ethn.}, + volume = {143}, + pages = {iv, 231-251}, + year = {1938}, + key = {Johnson (1938)}, + lgcode = {Ngäbe [ngab1239]} +} +@article{johnson1943, + author = {Johnson, F.}, + title = {Notes on Micmac Shamanism}, + journal = {Primitive Man}, + volume = {16}, + pages = {53-80}, + year = {1943}, + key = {Johnson (1943)}, + lgcode = {Mi'kmaq [mikm1235]} +} +@article{johnson1948, + author = {Johnson, F.}, + title = {The Caribbean Lowland Tribes: The Talamancan Division}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iv, 231-251}, + year = {1948}, + key = {Johnson (1948)}, + lgcode = {Bribri [brib1243]} +} +@article{johnson1950, + author = {Johnson, J. B.}, + title = {The Opata}, + journal = {Univ. New Mex. Publ. Anth.}, + volume = {6}, + pages = {1-50}, + year = {1950}, + key = {Johnson (1950)}, + lgcode = {Opata [opat1246]} +} +@book{johnson1967, + author = {Johnson, H. A.}, + title = {The Fulani Empire of Sokoto}, + address = {London}, + year = {1967}, + key = {Johnson (1967)}, + lgcode = {Wodaabe Fulani [boro1274]} +} +@incollection{johnson1978, + author = {Johnson, P. J.}, + editor = {Robert F. Heizer}, + title = {Patwin}, + booktitle = {California}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {8}, + pages = {350-360}, + year = {1978}, + glottolog_ref = {hh:e:Johnson:Patwin}, + key = {Johnson (1978)}, + lgcode = {Patwin [patw1250]} +} +@book{johnston19551956, + author = {Johnston, B. J.}, + title = {The Gabrielino Indians of Southern California}, + series = {M 29 and 30}, + year = {1955-1956}, + key = {Johnston (1955-1956)}, + lgcode = {Tongva [tong1329]} +} +@book{johnston1964, + author = {Johnston, Bernice Eastman}, + title = {California's Gabrielino Indians}, + series = {Frederick Webb Hodge Anniversary Publication Fund}, + volume = {8}, + pages = {1-198}, + year = {1964}, + key = {Johnston (1964)}, + lgcode = {Tongva [tong1329]} +} +@article{johnstone1902, + author = {Johnstone, H. B.}, + title = {Notes on the Customs of the Tribes occupying Mombasa Sub-District}, + journal = {Journ. Roy. Anth. Inst.}, + volume = {32}, + pages = {263-272}, + year = {1902}, + key = {Johnstone (1902)}, + lgcode = {Giriama [giry1241]} +} +@article{jones1913, + author = {Jones, W.}, + title = {Kickapoo Ethnological Notes}, + journal = {American Anthropologist}, + volume = {15}, + pages = {332-335}, + year = {1913}, + key = {Jones (1913)}, + lgcode = {Kickapoo [kick1244]} +} +@book{jones1914, + author = {Jones, Livingston F.}, + title = {A Study of the Thlingets of Alaska}, + address = {New York}, + year = {1914}, + key = {Jones (1914)}, + lgcode = {North Tlingit [tlin1245], South Tlingit [tlin1245]} +} +@incollection{jones1971, + author = {Jones, R.}, + editor = {D. J. Mulvaney and J. Golson}, + title = {The Demography of Hunters and Farmers in Tasmania}, + booktitle = {Aboriginal Man and Environment in Australia}, + publisher = {Australian National University Press}, + address = {Canberra}, + pages = {271-287}, + year = {1971}, + key = {Jones (1971)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]} +} +@misc{jones1972, + author = {Jones, R.}, + title = {A Hunting Landscape}, + year = {1972}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Jones (1972)}, + lgcode = {Tasmanians (northwestern) [port1278], Tasmanians (southeastern) [sout1439]}, + note = {Prepared for the Australian Association of Social Anthropologists Annual Conference, Symposium on Space and Territory, Monash University} +} +@incollection{jones1983, + author = {Jones, K. T.}, + editor = {G. M. LeMoine and A. S. MacEachern}, + title = {Forager Archaeology: The Ache of Eastern Paraguay}, + booktitle = {Carnivores, Human Scavengers, and Predators: A Question of Bone Technology}, + publisher = {University of Calgary}, + address = {Calgary}, + pages = {171-191}, + year = {1983}, + key = {Jones (1983)}, + lgcode = {Aché [ache1246]} +} +@phdthesis{jorgensen1964, + author = {Jorgensen, Joseph G.}, + title = {The Ethnohistory and Acculturation of the Northern Ute}, + school = {Indiana University}, + address = {Bloomington}, + year = {1964}, + key = {Jorgensen (1964)}, + lgcode = {Uintah Ute [utee1244], Uncompahgre Ute [utee1244]} +} +@book{josephandmurray1951, + author = {Joseph, A., and V. F. Murray}, + title = {Chamorros and Carolinians of Saipan: personality tests with an analysis of the Bender Gestalt test by Lauretta Bender}, + publisher = {Harvard University Press}, + address = {Cambridge}, + year = {1951}, + key = {Joseph and Murray (1951)}, + lgcode = {Carolinians [caro1242], Chamorro [cham1312]} +} +@book{josephetal1949, + author = {Joseph. A., R. B. Spicer, and J. Chesky.}, + title = {The Desert People}, + address = {Chicago}, + year = {1949}, + key = {Joseph et al. (1949)}, + lgcode = {Tohono O'odham [toho1246]} +} +@book{joset1936, + author = {Joset, P. E.}, + title = {Les Babira de la plaine}, + address = {Anvers}, + year = {1936}, + key = {Joset (1936)}, + lgcode = {Plains Bira [bera1259]} +} +@article{josselindejong1912, + author = {Josselin de Jong, J. P. B. de.}, + title = {Social Organization of the Southern Piegans}, + journal = {Int. Arch. Ethnog.}, + volume = {20}, + pages = {191-197}, + year = {1912}, + key = {Josselin de Jong (1912)}, + lgcode = {Piegan [pieg1239]} +} +@book{josselindejong1952, + author = {Josselin de Jong, P. E. de}, + title = {Minangkabau and Negri Sembilan}, + address = {The Hague}, + year = {1952}, + key = {Josselin de Jong (1952)}, + lgcode = {Minangkabau [mina1268]} +} +@article{joubert1939, + author = {Joubert}, + title = {Les coutumes et le droit chez les Kel Tadele}, + journal = {Bull Inst. Franc. Afr. Noire}, + volume = {1}, + pages = {245-281}, + year = {1939}, + key = {Joubert (1939)}, + lgcode = {Asben [taya1257]} +} +@book{junod1927, + author = {Junod, Henri A.}, + title = {The Life of a South African Tribe. 2v}, + address = {London}, + year = {1927}, + url = {https://archive.org/details/lifeofsouthafric02junouoft}, + key = {Junod (1927)}, + lgcode = {Tsonga [tson1249]}, + note = {2nd ed.} +} +@incollection{junod1936, + author = {Junod, H. P.}, + editor = {A. M. Duggan-Cronin}, + title = {The Vachopi of Portuguese East Africa}, + booktitle = {The Bantu Tribes of South Africa}, + address = {Cambridge}, + volume = {4}, + number = {ii}, + pages = {39-59}, + year = {1936}, + key = {Junod (1936)}, + lgcode = {Chopi [copi1238]} +} +@book{jurchenkov1995, + author = {Jurchenkov, V.}, + title = {Vzgljad so storony. Mordovskij narod i kraj v sochinenijah zapadnoevropejskih avtorov VI-XVIII stoletij (Look from the Outside: The Mordva People and Land in the Works of West European Authors of the Sixth to Eighteenth Centuries)}, + address = {Saransk}, + year = {1995}, + key = {Jurchenkov (1995)}, + lgcode = {Erzya Mordvins [erzy1239]} +} +@article{justinard1908, + author = {Justinard.}, + title = {Les Ait Ba Amran}, + journal = {Villes et Tribus du Maroc}, + volume = {8}, + pages = {1-144}, + year = {1908}, + key = {Justinard (1908)}, + lgcode = {Tekna [hass1238]} +} +@article{kaberry1935, + author = {Kaberry, P. M.}, + title = {The Forest River and Lyne River Tribes of NorthWest Australia: A Report on Field Work}, + journal = {Oceania}, + volume = {5}, + pages = {408-435}, + year = {1935}, + key = {Kaberry (1935)}, + lgcode = {Yiiji [wuna1249]} +} +@book{kaberry1939, + author = {Kaberry, P. M.}, + title = {Aboriginal Woman: Sacred and Profane}, + publisher = {George Routledge and Sons}, + address = {London}, + year = {1939}, + key = {Kaberry (1939)}, + lgcode = {Djaru [jaru1254], Kija [kitj1240], Yiiji [wuna1249]} +} +@article{kaberry1941, + author = {Kaberry, P. M.}, + title = {The Abelam Tribe}, + journal = {Oceania}, + volume = {11}, + pages = {233-257}, + year = {1941}, + key = {Kaberry (1941)}, + lgcode = {Abelam [ambu1247]} +} +@book{kaberry1952, + author = {Kaberry, P. M.}, + title = {Women of the Grassfields}, + address = {London}, + year = {1952}, + key = {Kaberry (1952)}, + lgcode = {Bali Nyonga [mung1266], Fungom [mmen1238], Fut [bafu1246], Kom [komc1235], Ndob [band1349], Nsaw [lamn1239], Nsungli [limb1268], Tigon [tigo1236], Widikum [meta1238]} +} +@book{kagwa1934, + author = {Kagwa, A.}, + title = {The Customs of the Baganda}, + publisher = {New York}, + address = {New York}, + series = {Columbia Univ. contributions to anthropology}, + volume = {22}, + year = {1934}, + glottolog_ref = {eballiso2009:5239}, + key = {Kagwa (1934)}, + lgcode = {Ganda [gand1255]} +} +@incollection{kahin1963, + author = {Kahin, G. McT.}, + editor = {G. McT. Kahin}, + title = {Indonesia}, + booktitle = {Major Governments of Asia}, + address = {Ithaca}, + pages = {535-688}, + year = {1963}, + key = {Kahin (1963)}, + lgcode = {Balinese [bali1278], Javanese [java1254]} +} +@book{kaindl1894, + author = {Kaindl, R. F.}, + title = {Die Huzulen}, + address = {Wien}, + year = {1894}, + key = {Kaindl (1894)}, + lgcode = {Hutsuls [sout2604]} +} +@article{kamaraanddrummond1930, + author = {Kamara, K., and D. B. Drummond.}, + title = {Marriage Customs Amongst the Kurankos}, + journal = {Sierra Leone Stud.}, + volume = {16}, + pages = {57-66}, + year = {1930}, + key = {Kamara and Drummond (1930)}, + lgcode = {Koranko [kura1250]} +} +@book{kane1859, + author = {Kane, P.}, + title = {Wanderings of an Artist among the Indians of North America}, + publisher = {Longman, Brown, Green, Longmans and Roberts}, + address = {London}, + year = {1859}, + key = {Kane (1859)}, + lgcode = {Gitxsan [gitx1241], Haida [nort2938], Kwakwaka'wakw [kwak1269], South Tlingit [tlin1245], Tsimshian [nucl1649]} +} +@article{kane1939, + author = {Kane, A. S.}, + title = {Coutume civile et penale toucouleur}, + journal = {Publ. Com. Et. Hist. Scient. Afr. Occ. Franc., ser. A}, + volume = {8}, + pages = {55-115}, + year = {1939}, + key = {Kane (1939)}, + lgcode = {Tukulor [pula1263]} +} +@phdthesis{kane1970, + author = {Kane, E.}, + title = {An Analysis of the Cultural Factors Inimical to the Development of the Nationalistic-Revivalistic Industrial Process of Rural Irish Gaeltachts}, + school = {University of Pittsburgh}, + year = {1970}, + key = {Kane (1970)}, + lgcode = {Irish [iris1253]} +} +@misc{kane1972, + author = {Kane, E.}, + year = {1972}, + howpublished = {Personal communication}, + key = {Kane (1972)}, + lgcode = {Irish [iris1253]} +} +@book{kaneandsegawa1956, + author = {Kane, T., and K. Segawa}, + title = {An Illustrated Ethnography of Formosa, V. 1: The Yumi}, + address = {Tokyo}, + year = {1956}, + key = {Kane and Segawa (1956)}, + lgcode = {Tao [yami1254]} +} +@book{kang1931, + author = {Kang, Y.}, + title = {The Grass Roof}, + address = {New York}, + year = {1931}, + key = {Kang (1931)}, + lgcode = {Koreans [kore1280]} +} +@book{kanga1959, + author = {Kanga, V. J-C.}, + title = {Le droit coutumier bamileke au contact des droits europeens}, + address = {Yaounde}, + year = {1959}, + key = {Kanga (1959)} +} +@article{kannenberg1900, + author = {Kannenberg.}, + title = {Reise durch die hamitischen Sprachgebiete um Kondo}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + publisher = {Berlin: Ernst Siegfried Mittler und Sohn}, + address = {Berlin}, + volume = {13}, + pages = {144-172}, + year = {1900}, + glottolog_ref = {hh:hv:Kannenberg:Kondoa}, + key = {Kannenberg (1900)}, + lgcode = {Rangi [lang1320]} +} +@book{kantemir1973, + author = {Kantemir, D. K.}, + title = {Opisanie Moldavii (Description of Moldova)}, + address = {Kishinev}, + year = {1973}, + key = {Kantemir (1973)}, + lgcode = {Moldovans [mold1248]} +} +@article{kapstein1922, + author = {Kapstein, Gregorious}, + title = {Familie leven en seden bij de inboorlingen van den Evenaar}, + journal = {Congo}, + publisher = {Goemaere, Imprimeur du Roi}, + address = {Brussels}, + volume = {3, Part 1}, + pages = {531-549}, + year = {1922}, + key = {Kapstein (1922)}, + lgcode = {Bakongo [sans1272]} +} +@inbook{kardiner1939, + author = {Kardiner, A.}, + title = {The Analysis of Tanala Culture}, + booktitle = {The Individual and His Society}, + address = {New York}, + pages = {291-351}, + year = {1939}, + key = {Kardiner (1939)}, + lgcode = {Tanala [tana1285]} +} +@book{karlov1982, + author = {Karlov, V. V.}, + title = {Evenki v 18-nachale 20 v. (Evenki in the Eighteenth-Beginning of the Twentieth Centuries)}, + address = {Moscow}, + year = {1982}, + key = {Karlov (1982)}, + lgcode = {Evenk [even1259]} +} +@book{karlov1990, + author = {Karlov, V. V.}, + title = {Vvedenie v etnografiju narodov SSSR (Introduction to the Ethnography of the Peoples of the USSR)}, + address = {Moscow}, + volume = {1}, + year = {1990}, + key = {Karlov (1990)}, + lgcode = {Bashkir [bash1264], Chuvash [chuv1255], Erzya Mordvins [erzy1239], Estonians [esto1258], Kazan tatar [midd1325], Latvians [latv1249], Moldovans [mold1248], Udmurt [sout2681]} +} +@article{karst190707, + author = {Karst, J.}, + title = {Grundriss der Geschichite des armenischen Rechtes}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {19; 20}, + pages = {313-422; 14-112}, + year = {1907-07}, + key = {Karst (1907-07)}, + lgcode = {Armenians [nucl1235]} +} +@book{karsten1932, + author = {Karsten, Rafael}, + title = {Indian Tribes of the Argentine and Bolivian Chaco}, + address = {Helsingfors}, + series = {Societas Scientiarum Fennica, Commentationes Humanarum Litterarum}, + volume = {4}, + number = {i}, + pages = {1-236}, + year = {1932}, + key = {Karsten (1932)}, + lgcode = {Choroti [iyow1239], Toba [toba1269], Wichí [wich1264]} +} +@book{karsten1935, + author = {Karsten, Rafael}, + title = {The Headhunters of Western Amazonas. The Life and Culture of the Jibaro Indians of Eastern Ecuador and Peru}, + publisher = {Helsingfors: Societas Scientiarum Fennica}, + address = {Helsingfors}, + series = {Societas Scientiarum Fennica, Commentationes Humanarum Litterarum}, + volume = {7}, + pages = {1-588}, + year = {1935}, + url = {http://onlinelibrary.wiley.com/doi/10.1525/aa.1937.39.1.02a00240/pdf}, + glottolog_ref = {fabreall2009ann:Jivaro17}, + key = {Karsten (1935)}, + lgcode = {Shuar [shua1257]} +} +@book{karsten1955, + author = {Karsten, R.}, + title = {The Religion of the Samek}, + address = {Leiden}, + year = {1955}, + key = {Karsten (1955)}, + lgcode = {Sami [nort2671]} +} +@article{karve194243, + author = {Karve, I.}, + title = {Kinship Terminology and Kinship Usages in Gujarat and Kathiawab}, + journal = {Bull. Deccan Coll. Res. Inst.}, + address = {Poona}, + volume = {4}, + pages = {208-226}, + year = {1942-43}, + key = {Karve (1942-43)}, + lgcode = {Gujarati [guja1252]} +} +@book{karve1953, + author = {Karve, I.}, + title = {Kinship Organisation in India}, + address = {Poona}, + series = {Deccan College Monogr. Ser.}, + volume = {11}, + pages = {1-304}, + year = {1953}, + key = {Karve (1953)}, + lgcode = {Bengali [beng1280], Bihari [mait1250], Indo-Iranian [sans1269], Telugu [telu1262]} +} +@phdthesis{kasdan1961, + author = {Kasdan, L.}, + title = {Isfiya: Fission and Faction in a Druze Community}, + school = {University of Chicago}, + year = {1961}, + key = {Kasdan (1961)}, + lgcode = {Druze [sunn1238]} +} +@misc{kasdan1965, + author = {Kasdan, L.}, + year = {1965}, + howpublished = {Personal communication}, + key = {Kasdan (1965)}, + lgcode = {Druze [sunn1238]} +} +@article{kaufmann1910, + author = {Kaufmann, H.}, + title = {The Auen, a Contribution to the Study of the Bushmen}, + journal = {Mitteilungen aus den Deutschen Schutzgebieten}, + volume = {23}, + pages = {135-160}, + year = {1910}, + key = {Kaufmann (1910)}, + lgcode = {!Kung [juho1239]} +} +@article{kaut1957, + author = {Kaut, Charles R.}, + title = {The Western Apache Clan System}, + series = {Univ. N. Mex. Publ. Anth.}, + number = {9}, + pages = {99}, + year = {1957}, + key = {Kaut (1957)}, + lgcode = {Western Apache [west2615], Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@article{kaut1966, + author = {Kaut, Charles R.}, + title = {Western Apache Clan and Phratry Organization}, + journal = {American Anthropologist}, + volume = {58}, + pages = {140-147}, + year = {1966}, + url = {http://onlinelibrary.wiley.com/doi/10.1525/aa.1956.58.1.02a00090/pdf}, + key = {Kaut (1966)}, + lgcode = {Western Apache (Cibecue) [west2615], Western Apache (North Tonto) [west2615], Western Apache (San Carlos) [west2615], Western Apache (South Tonto) [west2615], Western Apache (White Mountain) [west2615]} +} +@book{kawaguchi1909, + author = {Kawaguchi, E.}, + title = {Three Years in Tibet}, + address = {Benares and London}, + year = {1909}, + key = {Kawaguchi (1909)}, + lgcode = {Central Tibetans [dbus1238]} +} +@book{kazantsev1866, + author = {Kazantsev, N.}, + title = {Opisanie bashkirtsev (A Description of the Bashkir)}, + address = {St. Petersburg}, + year = {1866}, + key = {Kazantsev (1866)}, + lgcode = {Bashkir [bash1264]} +} +@article{keane1883, + author = {Keane, A. H.}, + title = {On the Botocudos}, + journal = {Journal of the (Royal) Anthropological Institute}, + volume = {13}, + pages = {199-213}, + year = {1883}, + key = {Keane (1883)}, + lgcode = {Aimoré [kren1239]} +} +@book{keane1900, + author = {Keane, A. H.}, + title = {The Boer States, Land and People}, + publisher = {London: Methuen and Co}, + address = {London}, + year = {1900}, + glottolog_ref = {guldemann:2421}, + key = {Keane (1900)}, + lgcode = {Boers [afri1274]} +} +@book{keate1788, + author = {Keate, G.}, + title = {An Account of the Pelew Islands}, + address = {London}, + year = {1788}, + key = {Keate (1788)}, + lgcode = {Palauans [pala1344]} +} +@article{kedit1982, + author = {Kedit, P.M.}, + title = {An Ecological Survey of the Penan}, + journal = {Sarawak Museum Journal}, + volume = {30}, + number = {51}, + pages = {226-279}, + year = {1982}, + key = {Kedit (1982)}, + lgcode = {Punan [west2563]} +} +@book{kees1923, + author = {Kees, H.}, + title = {Aegypten}, + address = {Munchen}, + year = {1923}, + key = {Kees (1923)}, + lgcode = {Ancient Egyptians [egyp1246]} +} +@book{keesing1934, + author = {Keesing, F. M.}, + title = {Modern Samoa:Its Government and Changing Life}, + address = {London}, + year = {1934}, + key = {Keesing (1934)}, + lgcode = {Upolu Samoans [samo1305]} +} +@article{keesing1939, + author = {Keesing, F. M.}, + title = {The Menomini Indians of Wisconsin}, + journal = {Mem. Amer. Phil Soc.}, + volume = {10}, + pages = {1-261}, + year = {1939}, + key = {Keesing (1939)}, + lgcode = {Menominee [meno1252]} +} +@article{keesing1949, + author = {Keesing, F. M.}, + title = {Some Notes on Bontok Social Organization}, + journal = {American Anthropologist}, + volume = {51}, + pages = {578-601}, + year = {1949}, + key = {Keesing (1949)}, + lgcode = {Bontok [cent2292]} +} +@article{keesing1966, + author = {Keesing, R. M.}, + title = {Kwaio Kindreds}, + journal = {Southw. Journ. Anth.}, + volume = {22}, + pages = {346-359}, + year = {1966}, + key = {Keesing (1966)}, + lgcode = {Kwaio [kwai1243]} +} +@article{keesing1967, + author = {Keesing, R. M.}, + title = {Statistical Models and Decision Models of Social Structure: A Kwaio Case}, + journal = {Ethnology}, + volume = {6}, + pages = {1-16}, + year = {1967}, + key = {Keesing (1967)}, + lgcode = {Kwaio [kwai1243]} +} +@article{keesing1968, + author = {Keesing, R. M.}, + title = {Step Kin, In-laws, and Ethnoscience}, + journal = {Ethnology}, + volume = {7}, + pages = {59-70}, + year = {1968}, + key = {Keesing (1968)}, + lgcode = {Kwaio [kwai1243]} +} +@book{kefeli1992, + author = {Kefeli, V. I.}, + title = {Karaimy (The Karaim)}, + address = {Pushchino}, + year = {1992}, + key = {Kefeli (1992)}, + lgcode = {Lithuanian Karaim [kara1464]} +} +@article{kehoe1993, + author = {Kehoe, A. B.}, + title = {How the Ancient Peians Lived}, + journal = {Research in Economic Anthropology}, + volume = {14}, + pages = {87-105}, + year = {1993}, + key = {Kehoe (1993)}, + lgcode = {Piegan [pieg1239]} +} +@incollection{keith1960, + author = {Keith, G.}, + editor = {L. R. Mashn}, + title = {Letters to Mr. Roderic McKenzie, 1807-1817}, + booktitle = {Les Bourgeois de la Compagnie du Nord Ouest}, + publisher = {Antiquarian Press}, + address = {New York}, + volume = {2}, + pages = {65-132}, + year = {1960}, + key = {Keith (1960)}, + lgcode = {Beaver [beav1236], Tlicho [dogr1252]} +} +@article{kelly1932, + author = {Kelly, I.T.}, + title = {Ethnography of the Surprise Valley Paiute}, + journal = {University of California Publications in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {31}, + number = {3}, + pages = {67-210}, + year = {1932}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp031-004.pdf}, + key = {Kelly (1932)}, + lgcode = {Kidutokado [nort1551]} +} +@article{kelly1934, + author = {Kelly, Isabel T.}, + title = {Southern Paiute Bands}, + journal = {American Anthropologist}, + volume = {36}, + pages = {548-560}, + year = {1934}, + key = {Kelly (1934)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kelly1938, + author = {Kelly, I. T.}, + title = {Band Organization of the Southern Paiute}, + journal = {American Anthropologist}, + volume = {40}, + pages = {633-634}, + year = {1938}, + key = {Kelly (1938)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]} +} +@article{kelly1939, + author = {Kelly, Isabel T.}, + title = {Southern Paiute Shamanism}, + journal = {Anthropological Records}, + volume = {2}, + pages = {151-167}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucar002-005.pdf}, + key = {Kelly (1939)}, + lgcode = {Chemehuevi [chem1251], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kelly1942, + author = {Kelly, W.H.}, + title = {Cocopa Gentes}, + journal = {American Anthropologist}, + volume = {44}, + pages = {675-691}, + year = {1942}, + key = {Kelly (1942)}, + lgcode = {Cocopa [coco1261]} +} +@book{kelly1964, + author = {Kelly, I. T.}, + title = {Southern Paiute Ethnography}, + publisher = {University of Utah Press}, + address = {Salt Lake City}, + series = {Glen Canyon Series No. 21. University of Utah Anthropological Papers}, + number = {69}, + year = {1964}, + key = {Kelly (1964)}, + lgcode = {Antarianunts [utee1244], Chemehuevi [chem1251], Panguitch [utee1244], San Juan [sout2969], Shivwits [sout2969], Southern Paiute (Kaibab and Las Vegas) [sout2969], Southern Paiute (Kaibab) [sout2969]} +} +@book{kelly1995, + author = {Kelly, R.L.}, + title = {The Foraging Spectrum: Diversity in Hunter-Gatherer Lifeways}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + year = {1995}, + key = {Kelly (1995)}, + lgcode = {Crow [crow1244], Sanpoil [sanp1257], Squamish [squa1248], Twana [twan1247]} +} +@incollection{kellyandfowler1986, + author = {Kelly, I.T., and C. S. Fowler}, + editor = {W. L. d'Azevedo}, + title = {Southern Paiute}, + booktitle = {Great Basin}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {11}, + pages = {368-397}, + year = {1986}, + key = {Kelly and Fowler (1986)}, + lgcode = {Antarianunts [utee1244], Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{kellyandpalerm1952, + author = {Kelly, I., and A. Palerm.}, + title = {The Tajin Totonac}, + journal = {Publ. Inst. Soc. Anth., Smiths, Inst.}, + volume = {13}, + pages = {1-369}, + year = {1952}, + key = {Kelly and Palerm (1952)}, + lgcode = {Totonac [papa1238]} +} +@misc{kellyandpoyer1993, + author = {Kelly, R.L., and L. A. Poyer}, + title = {Ethnoarchaeology among the Mikea of Southwestern Madagascar: Report of Activities, July-August, 1993}, + year = {1993}, + howpublished = {Manuscript on file, Department of Anthropology, Southern Methodist University, Dallas, Texas}, + key = {Kelly and Poyer (1993)}, + lgcode = {Mikea [masi1268]} +} +@book{kennedy1931, + author = {Kennedy, D. G.}, + title = {Field Notes on the Culture of Vaitupu}, + series = {Mem. Polyn. Soc.}, + volume = {9}, + pages = {1-326}, + year = {1931}, + key = {Kennedy (1931)}, + lgcode = {Ellice [tuva1244]}, + note = {Ellice Islanders. Addenda to Table 2} +} +@incollection{kennedy1957, + author = {Kennedy, M. J.}, + editor = {S. Maron}, + title = {Panjabi Urban Society}, + booktitle = {Pakistan: Society and Culture}, + address = {New Haven}, + pages = {81-103}, + year = {1957}, + key = {Kennedy (1957)}, + lgcode = {Punjabi [west2386]} +} +@book{kennedy1977, + author = {Kennedy, J. G.}, + title = {Struggle for Change in a Nubain Community}, + address = {Palo Alto}, + year = {1977}, + key = {Kennedy (1977)}, + lgcode = {Barabra [kenu1236]} +} +@incollection{kennedyandbouchard1990, + author = {Kennedy, D. I. D., and R. T. Bouchard}, + editor = {W. Suttles}, + title = {Northcoast Salish}, + booktitle = {Northwest Coast}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of North American Indians}, + volume = {7}, + pages = {441-452}, + year = {1990}, + key = {Kennedy and Bouchard (1990)}, + lgcode = {Comox [isla1276]} +} +@book{kennett1925, + author = {Kennett, A.}, + title = {Bedouin Justice}, + address = {Cambridge}, + year = {1925}, + key = {Kennett (1925)}, + lgcode = {Saadi [said1239]} +} +@book{kentandvierich1989, + editor = {Kent, S.}, + title = {Farmers as Hunters: The Implications of Sedentism}, + publisher = {Cambridge University Press}, + address = {Cambridge}, + year = {1989}, + key = {Kent and Vierich (1989)}, + lgcode = {Kua [kuaa1238]} +} +@book{kenyatta1939, + author = {Kenyatta, J.}, + title = {Facing Mount Kenya. The traditional life of the Gikuyu}, + address = {London}, + year = {1939}, + key = {Kenyatta (1939)}, + lgcode = {Kikuyu [kiku1240]} +} +@article{keonigswald1908, + author = {Keonigswald, G. von.}, + title = {Die Cayuas}, + journal = {Globus}, + volume = {93}, + pages = {376-381}, + year = {1908}, + key = {Keonigswald (1908)}, + lgcode = {Cayua [mbya1239]} +} +@article{keppen1851, + author = {Keppen, P.}, + title = {Vod' i votskaja pjatina (The Votes and Votes' Region)}, + journal = {Zhural ministerstva narodnogo prosveshchenija}, + volume = {70}, + pages = {41-67, 100-46}, + year = {1851}, + key = {Keppen (1851)}, + lgcode = {Votes [voti1245]} +} +@article{keppen1853, + author = {Keppen, P.}, + title = {Selenija, obitaemye izhorami, v Sankt Peterburgskoj Gubemii (Settlements Inhabited by the Ingrians in the St. Petersburg Gubemia)}, + journal = {Uchjonye zapiski imperatorskoj Akademii nauk po I i III otdelenijam}, + volume = {2}, + number = {3}, + pages = {412-422}, + year = {1853}, + key = {Keppen (1853)}, + lgcode = {Ingrians [ingr1248]} +} +@article{keurandkeur1955, + author = {Keur, J. Y. and D. L. Keur}, + title = {The Deeply Rooted}, + journal = {Monogr. Amer. Ethn. Soc.}, + volume = {25}, + pages = {1-208}, + year = {1955}, + key = {Keur and Keur (1955)}, + lgcode = {Dutch [dutc1256]} +} +@article{kimmenade1936, + author = {Kimmenade, M. van de.}, + title = {Les Sandawe}, + journal = {Anthropos}, + volume = {31}, + pages = {395-416}, + year = {1936}, + key = {Kimmenade (1936)}, + lgcode = {Sandawe [sand1273]} +} +@article{kinietz1940a, + author = {Kinietz, W. V.}, + title = {The Indians of the Western Great Lakes, 1615-1760}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {1-427}, + year = {1940}, + key = {Kinietz (1940a)}, + lgcode = {Huron [wyan1247]} +} +@article{kinietz1940b, + author = {Kinietz, W. V.}, + title = {The Indians of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {161-225}, + year = {1940}, + key = {Kinietz (1940b)}, + lgcode = {Myaamia [miam1252]} +} +@article{kinietz1940c, + author = {Kinietz, W. V.}, + title = {The Indian Tribes of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {226-307}, + year = {1940}, + key = {Kinietz (1940c)}, + lgcode = {Ottawa [otta1242]} +} +@article{kinietz1940d, + author = {Kinietz, W. V.}, + title = {The Indian Tribes of the Western Great Lakes}, + journal = {Occasional Contributions from the Museum of Anthropology, University of Michigan}, + volume = {10}, + pages = {308-316}, + year = {1940}, + key = {Kinietz (1940d)}, + lgcode = {Potawatomi [pota1247]} +} +@book{kinietz1947, + author = {Kinietz, W. V.}, + title = {Chippewa Village: The Story of Kitikitegon}, + publisher = {Cranbrook Institute of Science}, + address = {Bloomfield Hills, Mich.}, + series = {Cranbrook Institute of Science Bulletin}, + number = {25}, + year = {1947}, + key = {Kinietz (1947)}, + lgcode = {Katikitegon [uppe1274], Minnesota Ojibwa [redl1238]} +} +@article{kinkov1927, + author = {Kinkov, A.}, + title = {K istorii sem'i i braka u bashkir, tatar, mordvy, chuvash (History of Family and Marriage among the Bashkir, Tatar, Mordva, Chuvash)}, + journal = {Bashkirskij kraevedcheskij sborik}, + volume = {2}, + pages = {54-61}, + year = {1927}, + key = {Kinkov (1927)}, + lgcode = {Bashkir [bash1264]} +} +@article{kirchhoff1931, + author = {Kirchhoff, Paul.}, + title = {Die VerwandtschAftsorganisation der Urwaldstamme Sudamerikas}, + journal = {Zeitschrift für Ethnologie}, + volume = {63}, + pages = {101-117}, + year = {1931}, + glottolog_ref = {fabreall2009ann:5236}, + key = {Kirchhoff (1931)}, + lgcode = {Lokono [araw1276], Macushi [macu1259]} +} +@incollection{kirchhoff1945, + author = {Kirchhoff, P.}, + editor = {J. H. Steward}, + title = {Food Gathering Tribes of the Vectezuelan Llanos}, + booktitle = {The Circum-Caribbean Tribes}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Handbook of South American Indians, Bureau of American Ethnology Bulletin No. 143}, + volume = {4}, + pages = {445-468}, + year = {1945}, + key = {Kirchhoff (1945)}, + lgcode = {Guahibo [guah1255]} +} +@article{kirchhoff1948a, + author = {Kirchhoff, Paul.}, + title = {The Caribbean lowland tribes: The Mosquito, Sumo, Paya, and Jicaque}, + publisher = {Smithsonian Institution}, + address = {Washington, D.C.}, + series = {Bureau of American Ethnology Bulletin No. 143}, + volume = {4}, + pages = {219-229}, + year = {1948}, + glottolog_ref = {fabreall2009ann:Misumalpa43}, + key = {Kirchhoff (1948a)}, + lgcode = {Miskito [misk1235], Tolupan [toll1241]} +} +@article{kirchhoff1948b, + author = {Kirchhoff, Paul.}, + title = {The Warrau}, + journal = {Bulletins of the Bureau of American Ethnology}, + volume = {143}, + pages = {iii, 869-881}, + year = {1948}, + key = {Kirchhoff (1948b)}, + lgcode = {Warao [wara1303]} +} +@article{kissenberth1912, + author = {Kissenberth, W.}, + title = {Bei den Canella-Indianern in Zentral Maranhas}, + journal = {Baessler-Archiv}, + volume = {2}, + pages = {45-54}, + year = {1912}, + key = {Kissenberth (1912)}, + lgcode = {Canela [cane1242]} +} +@book{kisteandrynkiewich1976, + author = {Kiste, R.C. and Rynkiewich, M.A.}, + title = {Incest and Exogamy: A comparative study of two Marshall Island populations}, + year = {1976}, + key = {Kiste and Rynkiewich (1976)}, + lgcode = {Marshallese - Jaluit Atoll [rali1241]} +} +@incollection{kiuru1993, + author = {Kiuru, E. S.}, + editor = {E. S. Kiuru and N. A. Krinichnaja}, + title = {Motivy svatovstva i dobyvanija zheny v svadebnoj poezii i epicheskih runah izhorov (Motifs of Match-Making and Wife-Getting in Wedding Poetry and Epic Runas of the Ingrians)}, + booktitle = {Fol'kloristika Karelii (Folklore Studies of Karelia)}, + address = {Petrozavodsk}, + pages = {22-38}, + year = {1993}, + key = {Kiuru (1993)}, + lgcode = {Ingrians [ingr1248]} +} +@book{kiuru1993b, + author = {Kiuru, E. S.}, + title = {Tema dobyvanija zheny v epicheskih runah. K semantike poeticheskih obrazov (Wife-Getting Motif in the Epic Runas: Towards the Semantics of Poetic Images)}, + address = {Petrozavodsk}, + year = {1993}, + key = {Kiuru (1993b)}, + lgcode = {Karelians [livv1243]} +} +@book{klementev1983, + author = {Klement'ev, V. I.}, + title = {Karely. Etnograficheskij ocherk (The Karelians: Ethnographic Essay)}, + address = {Petrozavodsk}, + year = {1983}, + key = {Klement'ev (1983)}, + lgcode = {Karelians [livv1243]} +} +@incollection{klementev1998, + author = {Klement'ev, V. I.}, + editor = {V. A. Tishkov}, + title = {Karely}, + booktitle = {Narody i religii mira. E ntsiklopedija (Peoples and Religions ofthe World. Encyclopedia. )}, + address = {Moscow}, + pages = {225-7}, + year = {1998}, + key = {Klement'ev (1998)}, + lgcode = {Karelians [livv1243]} +} +@article{klidschian1911, + author = {Klidschian, A.}, + title = {Das armenische Eherecht und die Grundzuge der armenische Familienorganisation}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {25}, + pages = {252-377}, + year = {1911}, + key = {Klidschian (1911)}, + lgcode = {Armenians [nucl1235]} +} +@article{klima1964, + author = {Klima, G.}, + title = {Jural Relations Between the Sexes Among the Barabaig}, + journal = {Africa}, + volume = {34}, + pages = {9-20}, + year = {1964}, + key = {Klima (1964)}, + lgcode = {Tatoga [dato1239]} +} +@article{klineberg1934, + author = {Klineberg, O.}, + title = {Notes on the Huichol}, + journal = {American Anthropologist}, + volume = {36}, + pages = {446-460}, + year = {1934}, + key = {Klineberg (1934)}, + lgcode = {Huichol [huic1243]} +} +@incollection{kloos1977, + author = {Kloos, P.}, + editor = {E. Basso}, + title = {The Akuriyo way of death}, + booktitle = {Carib-Speaking Indians: Culture, Society, and Language}, + publisher = {University of Arizona Press}, + address = {Tucson}, + pages = {114-122}, + year = {1977}, + glottolog_ref = {fabreall2009ann:Caribe_akuriyo20}, + key = {Kloos (1977)}, + lgcode = {Akurio [akur1238]} +} +@misc{kloos1982, + author = {Kloos, P.}, + year = {1982}, + howpublished = {pers. comm.}, + key = {Kloos (1982)}, + lgcode = {Akurio [akur1238]} +} +@book{klose1899, + author = {Klose, H.}, + title = {Togo unter deutscher Flagge}, + address = {Berlin}, + year = {1899}, + key = {Klose (1899)}, + lgcode = {Basari [ntch1242], Ewe [aguu1242]} +} +@article{klose1903, + author = {Klose, H.}, + title = {Das Bassarivolk}, + journal = {Globus}, + volume = {83}, + pages = {309-314, 341-345}, + year = {1903}, + glottolog_ref = {hh:e:Klose:Bassarivolk}, + key = {Klose (1903)}, + lgcode = {Basari [ntch1242]} +} +@book{kluckhohn1946, + author = {Kluckhohn, Clyde, and Dorothea Vighton}, + title = {The Navajo}, + publisher = {Harvard University Press}, + address = {Cambridge, Mass.}, + year = {1946}, + key = {Kluckhohn (1946)}, + lgcode = {Navajo (Eastern) [nava1243], Navajo (Western) [nava1243]} +} +@article{kluckhohn1947, + author = {Kluckhohn, Clyde}, + title = {Some aspects of Navaho infancy and early childhood}, + journal = {Psychoanalysis and the Social Sciences}, + publisher = {International Universities Press}, + address = {New York}, + volume = {1}, + pages = {37-86}, + year = {1947}, + key = {Kluckhohn (1947)}, + lgcode = {Navajo [nava1243]} +} +@incollection{kluckhohn1962, + author = {Kluckhohn, R.}, + editor = {P. Bohannan and G. Dalton}, + title = {The Konso Economy}, + booktitle = {Markets in Africa}, + address = {Evanston}, + pages = {409-428}, + year = {1962}, + key = {Kluckhohn (1962)}, + lgcode = {Konso [kons1243]} +} +@book{kluckhohnandleighton1946, + author = {Kluckhohn, C., and D. C. Leighton.}, + title = {The Navaho}, + address = {Cambridge}, + year = {1946}, + key = {Kluckhohn and Leighton (1946)}, + lgcode = {Navajo [nava1243]} +} +@book{klunzinger1876, + author = {Klunzinger, C. B.}, + title = {Upper Egypt}, + address = {New York}, + year = {1876}, + key = {Klunzinger (1876)}, + lgcode = {Ababda [abab1239]} +} +@phdthesis{knack1975, + author = {Knack, M. C.}, + title = {Contemporary Southern Paiute Household Structure and Bilateral Kinship Clusters}, + school = {Department of Anthropology, University of Michigan, Ann Arbor}, + year = {1975}, + howpublished = {University Microfilms, Ann Arbor}, + key = {Knack (1975)}, + lgcode = {Southern Paiute (Kaibab and Las Vegas) [sout2969]} +} +@article{knechtandjordan1985, + author = {Knecht, R. A., and R. H. Jordan}, + title = {Nunakakhnak, an Historic Period Koniag Village in Karluk, Kodiak Island, Alaska}, + journal = {Arctic Anthropology}, + volume = {22}, + pages = {17-35}, + year = {1985}, + key = {Knecht and Jordan (1985)}, + lgcode = {Koniag [koni1262]} +} +@article{kniffen1926, + author = {Kniffen, Fred B.}, + title = {Achomawi Geography}, + journal = {University of California Pubilcations in American Archaeology and Ethnology}, + publisher = {University of California Press}, + address = {Berkeley}, + volume = {23}, + number = {5}, + pages = {297-332}, + year = {1926}, + key = {Kniffen (1926)}, + lgcode = {Achumawi [achu1247], Achumawi (East) [achu1247], Achumawi (West) [achu1247]} +} +@incollection{kniffen1935, + author = {Kniffen, Fred B.}, + editor = {A. L. Kroeber}, + title = {Geography}, + booktitle = {Walapai Ethnography}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {American Anthropological Association Memoir}, + number = {42}, + pages = {27-47}, + year = {1935}, + key = {Kniffen (1935)}, + lgcode = {Hualapai [wala1270]} +} +@article{kniffen1939, + author = {Kniffen, Fred B.}, + title = {Pomo Geography}, + journal = {University of California Pubilcations in American Archaeology and Ethnology}, + volume = {36}, + pages = {353-400}, + year = {1939}, + url = {http://digitalassets.lib.berkeley.edu/anthpubs/ucb/text/ucp036-007.pdf}, + key = {Kniffen (1939)}, + lgcode = {Eastern Pomo [east2545], Northern Pomo [nort2966], Southern Pomo [sout2984]} +} +@misc{kniffenetal1935, + author = {Kniffen, F. and G. MacGregor and R. McKennan and S. Mekeel and M. Mook}, + editor = {A. L. Kroeber}, + title = {Walapai Ethnography}, + publisher = {American Anthropological Association}, + address = {Menasha, Wisc.}, + series = {American Anthropological Association Memoir}, + number = {42}, + pages = {1-295}, + year = {1935}, + key = {Kniffen et al. (1935)}, + lgcode = {Hualapai [wala1270]} +} +@book{knudson1965, + author = {Knudson, K. E.}, + title = {Titiana: A Gilbertese Community in the Solomon Islands}, + address = {Eugene}, + year = {1965}, + key = {Knudson (1965)}, + lgcode = {Gilbert Onotoa [nuii1237]} +} +@article{knutsson1963, + author = {Knutsson, K. E.}, + title = {Social Structure of the Mecca Galla}, + journal = {Ethnology}, + volume = {2}, + pages = {506-511}, + year = {1963}, + key = {Knutsson (1963)}, + lgcode = {Macha [west2721]} +} +@book{knutsson1967, + author = {Knutsson, K. E.}, + title = {Authority and change: a study of the kallu institution among the Macha Galla of Ethiopia}, + publisher = {Etnografiska muséet}, + address = {Göteborg}, + pages = {1-239}, + year = {1967}, + glottolog_ref = {eballiso2009:35639}, + key = {Knutsson (1967)}, + lgcode = {Macha [west2721]} +} +@article{kobben1956, + author = {Kobben, A. J.}, + title = {Le planteur noir}, + journal = {Et. Eburneennes}, + volume = {5}, + pages = {7-190}, + year = {1956}, + key = {Kobben (1956)}, + lgcode = {Anyi [anyi1245], Bete [dalo1238]} +} +@misc{kobben1967a, + author = {Kobben, A. J. G.}, + year = {1967}, + howpublished = {Personal communication}, + key = {Kobben (1967a)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{kobben1967b, + author = {Kobben, A. J. G.}, + title = {Unity and Disunity: Cottica Djuka Society as a Kinship System}, + journal = {Bijdragen tot de Taal-, Land- en Volkenkunde}, + volume = {123}, + pages = {10-52}, + year = {1967}, + key = {Kobben (1967b)}, + lgcode = {Ndyuka [ndyu1242]} +} +@article{koch1913, + author = {Koch, C. W. H.}, + title = {Die Stamme des Bezirks Molundu}, + journal = {Baessler-Arch.}, + volume = {3}, + pages = {257-312}, + year = {1913}, + key = {Koch (1913)}, + lgcode = {Dzem [njye1238], Sanga [bomw1238]} +} +@book{kochar1970, + author = {Kochar, Vijay}, + title = {Social Organization among the Santal}, + publisher = {Editions Indiane same i}, + address = {Calcutta}, + year = {1970}, + key = {Kochar (1970)}, + lgcode = {Santal [sant1410]} +} +@book{kochgrunberg1923a, + author = {Koch-Grunberg, T.}, + title = {Vom Roroima zum Orinoco 3}, + address = {Stuttgart}, + year = {1923}, + key = {Koch-Grunberg (1923a)}, + lgcode = {Taulípang [taul1252]} +} +@book{kochgrunberg1923b, + author = {Koch-Grunberg, T.}, + title = {Vom Roroima zum Orinoco}, + address = {Stuttgart}, + volume = {3}, + pages = {250-355}, + year = {1923}, + key = {Koch-Grunberg (1923b)}, + lgcode = {Ye'kuana [maqu1238]} +} +@book{kochkurkina1986, + author = {Kochkurkina, S. I.}, + title = {Korela i Rus' (Karelia and Russia)}, + address = {Leningrad}, + year = {1986}, + key = {Kochkurkina (1986)}, + lgcode = {Karelians [livv1243]} +} +@phdthesis{koenig1935, + author = {Koenig, S.}, + title = {The Ukrainians of Eastern Galicia}, + school = {Yale University}, + year = {1935}, + howpublished = {Unpublished}, + key = {Koenig (1935)}, + lgcode = {Hutsuls [sout2604]} +} +@incollection{koentjaraningrat1960, + author = {Koentjaraningrat, R. M.}, + editor = {G. P. Murdock}, + title = {The Javanese of South Central Java}, + booktitle = {Social Structure in Southeast Asia}, + address = {Chicago}, + pages = {88-115}, + year = {1960}, + key = {Koentjaraningrat (1960)}, + lgcode = {Javanese [java1254]} +} +@book{koentjaraningrat1961, + author = {Koentjaraningrat, R. M.}, + title = {Some Social Anthropological Observations on Gotong Rojong Practices in Two Villages of Central Java}, + address = {Ithaca}, + year = {1961}, + key = {Koentjaraningrat (1961)}, + lgcode = {Javanese [java1254]} +} +@article{koentjaraningrat1966, + author = {Koentjaraningrat.}, + title = {Bride-Price and Adoption in the Kinship Relations of the Bgu}, + journal = {Ethnology}, + volume = {5}, + pages = {233-243}, + year = {1966}, + key = {Koentjaraningrat (1966)}, + lgcode = {Bgu [bong1287]} +} +@incollection{koentjaraningrat1967, + author = {Koentjaraningrat, R. M.}, + editor = {Koentjaraningrat}, + title = {Tjelapar: A Village in South Central Java}, + booktitle = {Villages in Indonesia}, + address = {Ithaca}, + pages = {244-280}, + year = {1967}, + key = {Koentjaraningrat (1967)}, + lgcode = {Javanese [java1254]} +} +@article{kohler1906, + author = {Kohler, J.}, + title = {Das Recht der Armenier}, + journal = {Zeitschrift für Vergleichende Rechtswissenschaft}, + volume = {7; 19}, + pages = {385-436; 103-130}, + year = {1906}, + key = {Kohler (1906)}, + lgcode = {Armenians [nucl1235]} +} +@article{kohler1970, + author = {Kohler, C.}, + title = {A new contribution to Nama Studies}, + journal = {African Studies}, + volume = {29}, + pages = {279-285}, + year = {1970}, + key = {Kohler (1970)}, + lgcode = {Nama [nama1265]} +} +@book{kohllarsen1958, + author = {Kohl-Larsen, L.}, + title = {Wildbeuter in OstAfrika}, + address = {Berlin}, + year = {1958}, + key = {Kohl-Larsen (1958)}, + lgcode = {Hadza [hadz1240]} +} +@book{komissarov1911, + author = {Komissarov, G. I.}, + title = {Chuvashi Kazanskogo Zavolzh'ja (The Chuvash of the Kazan' Trans-Volga Region)}, + address = {Kazan'}, + year = {1911}, + key = {Komissarov (1911)}, + lgcode = {Chuvash [chuv1255]} +} +@article{konkova1995, + author = {Kon'kova, O.}, + title = {Izhora}, + journal = {Zametki o narode, kotoryj zhil rjadom s nami, no ostalsja nam neznakom (The Izhora: Notes on an Ethnic Group Which Lived Near Us but Remained Unknown to Us). Rossijskaja provintsija}, + volume = {6}, + pages = {152-7}, + year = {1995}, + key = {Kon'kova (1995)}, + lgcode = {Ingrians [ingr1248]} +} +@article{konkova1996, + author = {Kon'kova, 0.}, + title = {Vod': <