From b18853866ab7ccb54b317b5f8f6e756dec569d42 Mon Sep 17 00:00:00 2001 From: dlpzx Date: Mon, 1 Jul 2024 19:08:01 +0200 Subject: [PATCH 01/34] Add integration tests for datasets - basic queries and conftest --- tests_new/integration_tests/conftest.py | 8 ++ .../integration_tests/modules/__init__.py | 0 .../modules/s3_datasets/__init__.py | 0 .../modules/s3_datasets/global_conftest.py | 50 ++++++++++ .../modules/s3_datasets/queries.py | 98 +++++++++++++++++++ .../modules/s3_datasets/test_s3_dataset.py | 0 6 files changed, 156 insertions(+) create mode 100644 tests_new/integration_tests/modules/__init__.py create mode 100644 tests_new/integration_tests/modules/s3_datasets/__init__.py create mode 100644 tests_new/integration_tests/modules/s3_datasets/global_conftest.py create mode 100644 tests_new/integration_tests/modules/s3_datasets/queries.py create mode 100644 tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py diff --git a/tests_new/integration_tests/conftest.py b/tests_new/integration_tests/conftest.py index 60df4f843..e4d543398 100644 --- a/tests_new/integration_tests/conftest.py +++ b/tests_new/integration_tests/conftest.py @@ -30,12 +30,20 @@ class Env: accountId: str region: str +@dataclass_json +@dataclass +class Dataset: + name: str + bucket: str + kmsAlias: str + @dataclass_json @dataclass class TestData: users: dict[str, User] envs: dict[str, Env] + datasets: dict[str, Dataset] @pytest.fixture(scope='session', autouse=True) diff --git a/tests_new/integration_tests/modules/__init__.py b/tests_new/integration_tests/modules/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests_new/integration_tests/modules/s3_datasets/__init__.py b/tests_new/integration_tests/modules/s3_datasets/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py new file mode 100644 index 000000000..749a3a98b --- /dev/null +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -0,0 +1,50 @@ +import logging + +import pytest + +from integration_tests.client import GqlError +from integration_tests.core.stack.utils import check_stack_ready + +from integration_tests.modules.s3_datasets import ( + create_dataset, + import_dataset, + delete_dataset, + update_dataset, +) + +log = logging.getLogger(__name__) + + +def create_s3_dataset(client, owner, group, org_uri, env_uri, dataset_name, tags=[], autoApprovalEnabled = False, confidentiality = None): + dataset = create_dataset( + client, name=dataset_name, owner=owner, group=group, organizationUri=org_uri, environmentUri=env_uri, tags=tags, autoApprovalEnabled=autoApprovalEnabled, confidentiality=confidentiality + ) + check_stack_ready(client, env_uri, dataset.stack.stackUri) + return dataset #TODO get_dataset + +def import_s3_dataset(client, owner, group, org_uri, env_uri, dataset_name, bucket, kms_alias, tags=[], autoApprovalEnabled = False, confidentiality = None): + dataset = import_dataset( + client, name=dataset_name, owner=owner, group=group, organizationUri=org_uri, environmentUri=env_uri, tags=tags, bucketName=bucket, KmsKeyAlias=kms_alias, autoApprovalEnabled=autoApprovalEnabled, confidentiality=confidentiality + ) + check_stack_ready(client, env_uri, dataset.stack.stackUri) + return dataset #TODO get_dataset + +def delete_s3_dataset(client, env_uri, dataset): + check_stack_ready(client, env_uri, dataset.stack.stackUri) + try: + return delete_dataset(client, dataset.datasetUri) + except GqlError: + log.exception('unexpected error when deleting dataset') + return False + + +@pytest.fixture(scope='session') +def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): + envdata = testdata.datasets['session_dataset1'] + ds = None + try: + ds = create_s3_dataset(client1, owner='someone', group=group1, org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], dataset_name=envdata.name, tags=[session_id]) + yield ds + finally: + if ds: + delete_s3_dataset(client1, session_env1['environmentUri'], ds) diff --git a/tests_new/integration_tests/modules/s3_datasets/queries.py b/tests_new/integration_tests/modules/s3_datasets/queries.py new file mode 100644 index 000000000..4f0cb5887 --- /dev/null +++ b/tests_new/integration_tests/modules/s3_datasets/queries.py @@ -0,0 +1,98 @@ +# TODO: This file will be replaced by using the SDK directly +from backend.dataall.modules.datasets_base.services.datasets_enums import ConfidentialityClassification +def create_dataset(client, name, owner, group, organizationUri, environmentUri, tags, autoApprovalEnabled = False, confidentiality = None): + query = { + 'operationName': 'CreateDataset', + 'variables': { + 'input': { + 'owner': owner, + 'label': name, + 'description': 'Created for integration testing', + 'tags': tags, + 'environmentUri': environmentUri, + 'SamlAdminGroupName': group, + 'organizationUri': organizationUri, + 'confidentiality': confidentiality or ConfidentialityClassification.Unclassified.value, + 'autoApprovalEnabled': autoApprovalEnabled, + } + }, + 'query': f""" + mutation CreateDataset($input: NewDatasetInput!) {{ + createDataset(input: $input) {{ + datasetUri + label + userRoleForDataset + }} + }} + """, + } + response = client.query(query=query) + return response.data.createDataset + +def import_dataset(client, name, owner, group, organizationUri, environmentUri, tags, bucketName, KmsKeyAlias, autoApprovalEnabled = False, confidentiality = None): + query = { + 'operationName': 'ImportDataset', + 'variables': { + 'input': { + 'owner': owner, + 'label': name, + 'description': 'Created for integration testing', + 'tags': tags, + 'environmentUri': environmentUri, + 'SamlAdminGroupName': group, + 'organizationUri': organizationUri, + 'confidentiality': confidentiality or ConfidentialityClassification.Unclassified.value, + 'autoApprovalEnabled': autoApprovalEnabled, + 'bucketName': bucketName, + 'KmsKeyAlias': KmsKeyAlias, + } + }, + 'query': f""" + mutation ImportDataset($input: ImportDatasetInput) {{ + importDataset(input: $input) {{ + datasetUri + label + userRoleForDataset + }} + }} + """, + } + response = client.query(query=query) + return response.data.importDataset + +def delete_dataset(client, datasetUri, deleteFromAws=True): + query = { + 'operationName': 'deleteDataset', + 'variables': { + 'datasetUri': datasetUri, + 'deleteFromAWS': deleteFromAws + }, + 'query': f""" + mutation deleteDataset($datasetUri: String!, $deleteFromAWS: Boolean) {{ + deleteDataset(datasetUri: $datasetUri, deleteFromAWS: $deleteFromAWS) + }} + """, + } + response = client.query(query=query) + return response.data.deleteDataset + +def update_dataset(client, datasetUri, input: dict): + query = { + 'operationName': 'UpdateDataset', + 'variables': { + 'datasetUri': datasetUri, + 'input': input + }, + 'query': f""" + mutation UpdateDataset($datasetUri: String, $input: ModifyDatasetInput) {{ + updateDataset(datasetUri: $datasetUri, input: $input) {{ + datasetUri + label + tags + userRoleForDataset + }} + }} + """, + } + response = client.query(query=query) + return response.data.updateDataset diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py new file mode 100644 index 000000000..e69de29bb From 45d1407e3c6d108abf48f821ef3fe0499a0276dc Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Mon, 1 Jul 2024 18:19:57 -0400 Subject: [PATCH 02/34] add list + get queries, add persistent datasets, begin create/update/delete tests --- tests_new/integration_tests/conftest.py | 7 +- .../modules/datasets_base/__init__.py | 0 .../modules/datasets_base/queries.py | 62 ++++++ .../modules/s3_datasets/global_conftest.py | 207 +++++++++++++++++- .../modules/s3_datasets/queries.py | 169 +++++++++++--- .../modules/s3_datasets/test_s3_dataset.py | 120 ++++++++++ 6 files changed, 523 insertions(+), 42 deletions(-) create mode 100644 tests_new/integration_tests/modules/datasets_base/__init__.py create mode 100644 tests_new/integration_tests/modules/datasets_base/queries.py diff --git a/tests_new/integration_tests/conftest.py b/tests_new/integration_tests/conftest.py index e4d543398..a89e58290 100644 --- a/tests_new/integration_tests/conftest.py +++ b/tests_new/integration_tests/conftest.py @@ -14,6 +14,7 @@ pytest_plugins = [ 'integration_tests.core.organizations.global_conftest', 'integration_tests.core.environment.global_conftest', + 'integration_tests.modules.s3_datasets.global_conftest', ] @@ -30,12 +31,14 @@ class Env: accountId: str region: str + @dataclass_json @dataclass class Dataset: name: str - bucket: str - kmsAlias: str + bucket: str = '' + kmsAlias: str = '' + glueDatabaseName: str = '' @dataclass_json diff --git a/tests_new/integration_tests/modules/datasets_base/__init__.py b/tests_new/integration_tests/modules/datasets_base/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests_new/integration_tests/modules/datasets_base/queries.py b/tests_new/integration_tests/modules/datasets_base/queries.py new file mode 100644 index 000000000..71506706d --- /dev/null +++ b/tests_new/integration_tests/modules/datasets_base/queries.py @@ -0,0 +1,62 @@ +# TODO: This file will be replaced by using the SDK directly +from backend.dataall.modules.datasets_base.services.datasets_enums import ConfidentialityClassification + +DATASET_BASE_TYPE = """ +datasetUri +label +name +description +tags +owner +created +updated +admins +AwsAccountId +region +environment { + environmentUri + label + AwsAccountId + region +} +organization { + organizationUri + label +} +owners +stewards +userRoleForDataset +userRoleInEnvironment +topics +confidentiality +language +autoApprovalEnabled +stack { + stack + status + stackUri +} +""" + + +def list_datasets(client, term=''): + query = { + 'operationName': 'ListDatasets', + 'variables': {'filter': {'term': term}}, + 'query': f""" + query ListDatasets($filter: DatasetFilter) {{ + listDatasets(filter: $filter) {{ + count + page + pages + hasNext + hasPrevious + nodes {{ + {DATASET_BASE_TYPE} + }} + }} + }} + """, + } + response = client.query(query=query) + return response.data.listDatasets diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index 749a3a98b..a5376b2c2 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -5,29 +5,66 @@ from integration_tests.client import GqlError from integration_tests.core.stack.utils import check_stack_ready -from integration_tests.modules.s3_datasets import ( +from integration_tests.modules.s3_datasets.queries import ( create_dataset, import_dataset, delete_dataset, - update_dataset, + get_dataset, ) +from tests_new.integration_tests.modules.datasets_base.queries import list_datasets log = logging.getLogger(__name__) -def create_s3_dataset(client, owner, group, org_uri, env_uri, dataset_name, tags=[], autoApprovalEnabled = False, confidentiality = None): +def create_s3_dataset( + client, owner, group, org_uri, env_uri, dataset_name, tags=[], autoApprovalEnabled=False, confidentiality=None +): dataset = create_dataset( - client, name=dataset_name, owner=owner, group=group, organizationUri=org_uri, environmentUri=env_uri, tags=tags, autoApprovalEnabled=autoApprovalEnabled, confidentiality=confidentiality + client, + name=dataset_name, + owner=owner, + group=group, + organizationUri=org_uri, + environmentUri=env_uri, + tags=tags, + autoApprovalEnabled=autoApprovalEnabled, + confidentiality=confidentiality, ) check_stack_ready(client, env_uri, dataset.stack.stackUri) - return dataset #TODO get_dataset + return get_dataset(client, dataset.datasetUri) -def import_s3_dataset(client, owner, group, org_uri, env_uri, dataset_name, bucket, kms_alias, tags=[], autoApprovalEnabled = False, confidentiality = None): + +def import_s3_dataset( + client, + owner, + group, + org_uri, + env_uri, + dataset_name, + bucket, + kms_alias='', + glue_db_name='', + tags=[], + autoApprovalEnabled=False, + confidentiality=None, +): dataset = import_dataset( - client, name=dataset_name, owner=owner, group=group, organizationUri=org_uri, environmentUri=env_uri, tags=tags, bucketName=bucket, KmsKeyAlias=kms_alias, autoApprovalEnabled=autoApprovalEnabled, confidentiality=confidentiality + client, + name=dataset_name, + owner=owner, + group=group, + organizationUri=org_uri, + environmentUri=env_uri, + tags=tags, + bucketName=bucket, + KmsKeyAlias=kms_alias, + glueDatabaseName=glue_db_name, + autoApprovalEnabled=autoApprovalEnabled, + confidentiality=confidentiality, ) check_stack_ready(client, env_uri, dataset.stack.stackUri) - return dataset #TODO get_dataset + return get_dataset(client, dataset.datasetUri) + def delete_s3_dataset(client, env_uri, dataset): check_stack_ready(client, env_uri, dataset.stack.stackUri) @@ -38,13 +75,163 @@ def delete_s3_dataset(client, env_uri, dataset): return False +""" +Session envs persist accross the duration of the whole integ test suite and are meant to make the test suite run faster (env creation takes ~2 mins). +For this reason they must stay immutable as changes to them will affect the rest of the tests. +""" + + @pytest.fixture(scope='session') def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): - envdata = testdata.datasets['session_dataset1'] + envdata = testdata.datasets['session_s3_dataset1'] + ds = None + try: + ds = create_s3_dataset( + client1, + owner='someone', + group=group1, + org_uri=org1['organizationUri'], + env_uri=session_env1['environmentUri'], + dataset_name=envdata.name, + tags=[session_id], + ) + yield ds + finally: + if ds: + delete_s3_dataset(client1, session_env1['environmentUri'], ds) + + +@pytest.fixture(scope='session') +def session_imported_sse_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): + envdata = testdata.datasets['session_imported_sse_s3_dataset1'] + ds = None + try: + # TODO: Create S3 Bucket before import + Clean Up in Finally + ds = import_s3_dataset( + client1, + owner='someone', + group=group1, + org_uri=org1['organizationUri'], + env_uri=session_env1['environmentUri'], + dataset_name=envdata.name, + tags=[session_id], + bucket=envdata.bucket, + ) + yield ds + finally: + if ds: + delete_s3_dataset(client1, session_env1['environmentUri'], ds) + + +@pytest.fixture(scope='session') +def session_imported_kms_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): + envdata = testdata.datasets['session_imported_kms_s3_dataset1'] + ds = None + try: + # TODO: Create S3 Bucket, KMS, + Glue DB before import + Clean Up in Finally + ds = import_s3_dataset( + client1, + owner='someone', + group=group1, + org_uri=org1['organizationUri'], + env_uri=session_env1['environmentUri'], + dataset_name=envdata.name, + tags=[session_id], + bucket=envdata.bucket, + kms_alias=envdata.kmsAlias, + glue_db_name=envdata.glueDatabaseName, + ) + yield ds + finally: + if ds: + delete_s3_dataset(client1, session_env1['environmentUri'], ds) + + +""" +Temp envs will be created and deleted per test, use with caution as they might increase the runtime of the test suite. +They are suitable to test env mutations. +""" + + +@pytest.fixture(scope='function') +def temp_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): + envdata = testdata.datasets['temp_s3_dataset1'] ds = None try: - ds = create_s3_dataset(client1, owner='someone', group=group1, org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], dataset_name=envdata.name, tags=[session_id]) + ds = create_s3_dataset( + client1, + owner='someone', + group=group1, + org_uri=org1['organizationUri'], + env_uri=session_env1['environmentUri'], + dataset_name=envdata.name, + tags=[session_id], + ) yield ds finally: if ds: delete_s3_dataset(client1, session_env1['environmentUri'], ds) + + +""" +Persistent environments must always be present (if not i.e first run they will be created but won't be removed). +They are suitable for testing backwards compatibility. +""" + + +def get_or_create_persistent_s3_dataset(dataset_name, client, group, env, testdata): + s3_datasets = list_datasets(client, term=dataset_name).nodes + if s3_datasets: + return s3_datasets[0] + else: + s3_dataset_data = testdata.datasets[dataset_name] + + if s3_dataset_data.bucket: + s3_dataset = import_s3_dataset( + client, + owner='someone', + group=group, + org_uri=env['organization']['organizationUri'], + env_uri=env['environmentUri'], + dataset_name=dataset_name, + tags=[dataset_name], + bucket=s3_dataset_data.bucket, + kms_alias=s3_dataset_data.kmsAlias, + glue_db_name=s3_dataset_data.glueDatabaseName, + ) + + else: + s3_dataset = create_s3_dataset( + client, + owner='someone', + group=group, + org_uri=env['organization']['organizationUri'], + env_uri=env['environmentUri'], + dataset_name=dataset_name, + tags=[dataset_name], + ) + + if s3_dataset.stack.status in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']: + return s3_dataset + else: + delete_s3_dataset(client, env['environmentUri'], s3_dataset.datasetUri) + raise RuntimeError(f'failed to create {dataset_name=} {s3_dataset=}') + + +@pytest.fixture(scope='session') +def persistent_s3_dataset1(client1, group1, persistent_env1, testdata): + return get_or_create_persistent_s3_dataset('persistent_s3_dataset1', client1, group1, persistent_env1, testdata) + + +@pytest.fixture(scope='session') +def persistent_imported_sse_s3_dataset1(client1, group1, persistent_env1, testdata): + return get_or_create_persistent_s3_dataset( + 'persistent_imported_sse_s3_dataset1', client1, group1, persistent_env1, testdata + ) + + +@pytest.fixture(scope='session') +def persistent_imported_kms_s3_dataset1(client1, group1, persistent_env1, testdata): + return get_or_create_persistent_s3_dataset( + 'persistent_imported_kms_s3_dataset1', client1, group1, persistent_env1, testdata + ) diff --git a/tests_new/integration_tests/modules/s3_datasets/queries.py b/tests_new/integration_tests/modules/s3_datasets/queries.py index 4f0cb5887..aba5a9277 100644 --- a/tests_new/integration_tests/modules/s3_datasets/queries.py +++ b/tests_new/integration_tests/modules/s3_datasets/queries.py @@ -1,6 +1,94 @@ # TODO: This file will be replaced by using the SDK directly from backend.dataall.modules.datasets_base.services.datasets_enums import ConfidentialityClassification -def create_dataset(client, name, owner, group, organizationUri, environmentUri, tags, autoApprovalEnabled = False, confidentiality = None): + +S3_DATASET_TYPE = """ +datasetUri +label +name +description +tags +owner +created +updated +admins +AwsAccountId +region +S3BucketName +GlueDatabaseName +GlueCrawlerName +GlueCrawlerSchedule +GlueProfilingJobName +GlueProfilingTriggerSchedule +IAMDatasetAdminRoleArn +KmsAlias +SamlAdminGroupName +businessOwnerEmail +businessOwnerDelegationEmails +importedS3Bucket +importedGlueDatabase +importedKmsKey +importedAdminRole +imported +environment { + environmentUri + label + AwsAccountId + region +} +organization { + organizationUri + label +} +owners +stewards +userRoleForDataset +userRoleInEnvironment +statistics { + tables + locations + upvotes +} +terms { + count + nodes { + __typename + ... on Term { + nodeUri + path + label + } + } +} +topics +confidentiality +language +stack { + stack + status + stackUri + targetUri + accountid + region + stackid + link + outputs + resources +} +autoApprovalEnabled +""" + + +def create_dataset( + client, + name, + owner, + group, + organizationUri, + environmentUri, + tags, + autoApprovalEnabled=False, + confidentiality=None, +): query = { 'operationName': 'CreateDataset', 'variables': { @@ -9,6 +97,7 @@ def create_dataset(client, name, owner, group, organizationUri, environmentUri, 'label': name, 'description': 'Created for integration testing', 'tags': tags, + 'topics': ['Sites'], 'environmentUri': environmentUri, 'SamlAdminGroupName': group, 'organizationUri': organizationUri, @@ -17,19 +106,31 @@ def create_dataset(client, name, owner, group, organizationUri, environmentUri, } }, 'query': f""" - mutation CreateDataset($input: NewDatasetInput!) {{ - createDataset(input: $input) {{ - datasetUri - label - userRoleForDataset + mutation CreateDataset($input: NewDatasetInput!) {{ + createDataset(input: $input) {{ + {S3_DATASET_TYPE} + }} }} - }} """, } response = client.query(query=query) return response.data.createDataset -def import_dataset(client, name, owner, group, organizationUri, environmentUri, tags, bucketName, KmsKeyAlias, autoApprovalEnabled = False, confidentiality = None): + +def import_dataset( + client, + name, + owner, + group, + organizationUri, + environmentUri, + tags, + bucketName, + KmsKeyAlias='', + glueDatabaseName='', + autoApprovalEnabled=False, + confidentiality=None, +): query = { 'operationName': 'ImportDataset', 'variables': { @@ -45,28 +146,25 @@ def import_dataset(client, name, owner, group, organizationUri, environmentUri, 'autoApprovalEnabled': autoApprovalEnabled, 'bucketName': bucketName, 'KmsKeyAlias': KmsKeyAlias, + 'glueDatabaseName': glueDatabaseName, } }, 'query': f""" - mutation ImportDataset($input: ImportDatasetInput) {{ - importDataset(input: $input) {{ - datasetUri - label - userRoleForDataset - }} - }} + mutation ImportDataset($input: ImportDatasetInput) {{ + importDataset(input: $input) {{ + {S3_DATASET_TYPE} + }} + }} """, } response = client.query(query=query) return response.data.importDataset + def delete_dataset(client, datasetUri, deleteFromAws=True): query = { 'operationName': 'deleteDataset', - 'variables': { - 'datasetUri': datasetUri, - 'deleteFromAWS': deleteFromAws - }, + 'variables': {'datasetUri': datasetUri, 'deleteFromAWS': deleteFromAws}, 'query': f""" mutation deleteDataset($datasetUri: String!, $deleteFromAWS: Boolean) {{ deleteDataset(datasetUri: $datasetUri, deleteFromAWS: $deleteFromAWS) @@ -76,23 +174,34 @@ def delete_dataset(client, datasetUri, deleteFromAws=True): response = client.query(query=query) return response.data.deleteDataset + def update_dataset(client, datasetUri, input: dict): query = { 'operationName': 'UpdateDataset', - 'variables': { - 'datasetUri': datasetUri, - 'input': input - }, + 'variables': {'datasetUri': datasetUri, 'input': input}, 'query': f""" - mutation UpdateDataset($datasetUri: String, $input: ModifyDatasetInput) {{ - updateDataset(datasetUri: $datasetUri, input: $input) {{ - datasetUri - label - tags - userRoleForDataset + mutation UpdateDataset($datasetUri: String, $input: ModifyDatasetInput) {{ + updateDataset(datasetUri: $datasetUri, input: $input) {{ + {S3_DATASET_TYPE} + }} }} - }} """, } response = client.query(query=query) return response.data.updateDataset + + +def get_dataset(client, datasetUri): + query = { + 'operationName': 'GetDataset', + 'variables': {'datasetUri': datasetUri}, + 'query': f""" + query GetDataset($datasetUri: String!) {{ + getDataset(datasetUri: $datasetUri) {{ + {S3_DATASET_TYPE} + }} + }} + """, + } + response = client.query(query=query) + return response.data.getDataset diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index e69de29bb..dd01ae12d 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -0,0 +1,120 @@ +import logging +from datetime import datetime +import time +from assertpy import assert_that + +from integration_tests.modules.s3_datasets.queries import get_dataset, update_dataset +from integration_tests.modules.datasets_base.queries import list_datasets +from integration_tests.core.stack.queries import update_stack +from integration_tests.core.stack.utils import check_stack_in_progress, check_stack_ready +from integration_tests.errors import GqlError + +log = logging.getLogger(__name__) + + +def test_create_s3_dataset(client1, session_s3_dataset1): + assert_that(session_s3_dataset1.stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') + + +def test_import_sse_s3_dataset(session_imported_sse_s3_dataset1): + assert_that(session_imported_sse_s3_dataset1.stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') + + +def test_import_kms_s3_dataset(session_imported_kms_s3_dataset1): + assert_that(session_imported_kms_s3_dataset1.stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') + + +def test_modify_dataset(client1, session_s3_dataset1): + test_description = f'a test description {datetime.utcnow().isoformat()}' + dataset_uri = session_s3_dataset1.datasetUri + updated_dataset = update_dataset(client1, dataset_uri, {'description': test_description}) + assert_that(updated_dataset).contains_entry(datasetUri=dataset_uri, description=test_description) + env = get_dataset(client1, dataset_uri) + assert_that(env).contains_entry(datasetUri=dataset_uri, description=test_description) + + +def test_modify_dataset_unauthorized(client1, client2, session_s3_dataset1): + test_description = f'unauthorized {datetime.utcnow().isoformat()}' + dataset_uri = session_s3_dataset1.datasetUri + assert_that(update_dataset).raises(GqlError).when_called_with( + client2, dataset_uri, {'description': test_description} + ).contains('UnauthorizedOperation', dataset_uri) + dataset = get_dataset(client1, dataset_uri) + assert_that(dataset).contains_entry(datasetUri=dataset_uri).does_not_contain_entry(description=test_description) + + +def test_list_datasets_authorized( + client1, session_s3_dataset1, session_imported_sse_s3_dataset1, session_imported_kms_s3_dataset1, session_id +): + assert_that(list_datasets(client1, term=session_id).nodes).is_length(3) + + +def test_list_datasets_unauthorized( + client2, session_s3_dataset1, session_imported_sse_s3_dataset1, session_imported_kms_s3_dataset1, session_id +): + assert_that(list_datasets(client2, term=session_id).nodes).is_length(0) + + +def test_persistent_s3_dataset_update(client1, persistent_s3_dataset1): + # wait for stack to get to a final state before triggering an update + stack_uri = persistent_s3_dataset1.stack.stackUri + env_uri = persistent_s3_dataset1.environment.environmentUri + dataset_uri = persistent_s3_dataset1.datasetUri + target_type = 'dataset' + check_stack_ready( + client=client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type + ) + update_stack(client1, dataset_uri, target_type) + # wait for stack to move to "in_progress" state + + # TODO: Come up with better way to handle wait in progress if applicable + # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) + # check_stack_in_progress(client1, env_uri, stack_uri) + time.sleep(10) + + stack = check_stack_ready( + client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type + ) + assert_that(stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') + + +def test_persistent_import_sse_s3_dataset_update(client1, persistent_imported_sse_s3_dataset1): + # wait for stack to get to a final state before triggering an update + stack_uri = persistent_imported_sse_s3_dataset1.stack.stackUri + env_uri = persistent_imported_sse_s3_dataset1.environment.environmentUri + dataset_uri = persistent_imported_sse_s3_dataset1.datasetUri + target_type = 'dataset' + check_stack_ready(client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type) + update_stack(client1, dataset_uri, target_type) + # wait for stack to move to "in_progress" state + + # TODO: Come up with better way to handle wait in progress if applicable + # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) + # check_stack_in_progress(client1, env_uri, stack_uri) + time.sleep(10) + + stack = check_stack_ready( + client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type + ) + assert_that(stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') + + +def test_persistent_import_kms_s3_dataset_update(client1, persistent_imported_kms_s3_dataset1): + # wait for stack to get to a final state before triggering an update + stack_uri = persistent_imported_kms_s3_dataset1.stack.stackUri + env_uri = persistent_imported_kms_s3_dataset1.environment.environmentUri + dataset_uri = persistent_imported_kms_s3_dataset1.datasetUri + target_type = 'dataset' + check_stack_ready(client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type) + update_stack(client1, dataset_uri, 'dataset') + # wait for stack to move to "in_progress" state + + # TODO: Come up with better way to handle wait in progress if applicable + # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) + # check_stack_in_progress(client1, env_uri, stack_uri) + time.sleep(10) + + stack = check_stack_ready( + client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type + ) + assert_that(stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') From cd270977b169498ce9808c30733d69cfb7b6a8fe Mon Sep 17 00:00:00 2001 From: dlpzx Date: Tue, 2 Jul 2024 12:55:59 +0200 Subject: [PATCH 03/34] Add integration test role in Environment stack + session in conftest + aws clients for dataset --- .../core/environment/cdk/environment_stack.py | 28 +++ deploy/stacks/pipeline.py | 2 + .../core/environment/global_conftest.py | 20 ++- .../modules/datasets_base/queries.py | 1 - .../modules/s3_datasets/aws_clients.py | 169 ++++++++++++++++++ .../modules/s3_datasets/global_conftest.py | 46 ++++- .../modules/s3_datasets/test_s3_dataset.py | 43 +++-- 7 files changed, 288 insertions(+), 21 deletions(-) create mode 100644 tests_new/integration_tests/modules/s3_datasets/aws_clients.py diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index b3b024dfe..5b10f13a1 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -138,6 +138,9 @@ def __init__(self, scope, id, target_uri: str = None, **kwargs): self.environment_admins_group: EnvironmentGroup = self.get_environment_admins_group( self.engine, self._environment ) + # Create test role for integration tests + if os.getenv('INTEGRATION_TESTS', None) == 'True': + self.create_integration_tests_role() # Create or import Pivot role if self.create_pivot_role is True: @@ -559,3 +562,28 @@ def create_topic(self, construct_id, central_account, environment, kms_key): ) ) return topic + + def create_integration_tests_role(self): + self.test_role = iam.Role( + self, + 'IntegrationTestRole', + role_name='dataall-integration-tests-role', + assumed_by=iam.AccountPrincipal(os.getenv('TOOLING_ACCOUNT')), + ) + self.test_role.add_to_policy( + iam.PolicyStatement( + actions=['s3:CreateBucket', 's3:DeleteBucket'], + effect=iam.Effect.ALLOW, + resources=['*'], + ), + iam.PolicyStatement( + actions=['glue:createDatabase', 'glue:deleteDatabase'], + effect=iam.Effect.ALLOW, + resources=['*'], + ), + iam.PolicyStatement( + actions=['kms:CreateKey', 'kms:DeleteKey', 'kms:ListAliases'], + effect=iam.Effect.ALLOW, + resources=['*'], + ), + ) diff --git a/deploy/stacks/pipeline.py b/deploy/stacks/pipeline.py index 0df007dfc..e933b9c96 100644 --- a/deploy/stacks/pipeline.py +++ b/deploy/stacks/pipeline.py @@ -687,6 +687,8 @@ def set_approval_tests_stage( f'export TESTDATA=$(aws ssm get-parameter --name /dataall/{target_env["envname"]}/testdata --profile buildprofile --output text --query "Parameter.Value")', f'export ENVNAME={target_env["envname"]}', f'export AWS_REGION={target_env["region"]}', + 'export INTEGRATION_TESTS=True', + f'export TOOLING_ACCOUNT={self.account}', f'aws codeartifact login --tool pip --repository {self.codeartifact.codeartifact_pip_repo_name} --domain {self.codeartifact.codeartifact_domain_name} --domain-owner {self.codeartifact.domain.attr_owner}', 'python -m venv env', '. env/bin/activate', diff --git a/tests_new/integration_tests/core/environment/global_conftest.py b/tests_new/integration_tests/core/environment/global_conftest.py index 624a9a030..174927f56 100644 --- a/tests_new/integration_tests/core/environment/global_conftest.py +++ b/tests_new/integration_tests/core/environment/global_conftest.py @@ -1,6 +1,6 @@ import logging - import pytest +import boto3 from integration_tests.client import GqlError from integration_tests.core.environment.queries import ( @@ -50,6 +50,24 @@ def session_env1(client1, group1, org1, session_id, testdata): delete_env(client1, env) +@pytest.fixture(scope='session') +def session_env1_aws_client(session_env1, session_id): + try: + base_session = boto3.Session() + role_arn = f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role' + response = base_session.client('sts', region_name=session_env1.region).assume_role( + RoleArn=role_arn, RoleSessionName=role_arn.split('/')[1] + ) + yield boto3.Session( + aws_access_key_id=response['Credentials']['AccessKeyId'], + aws_secret_access_key=response['Credentials']['SecretAccessKey'], + aws_session_token=response['Credentials']['SessionToken'], + ) + except: + log.exception('Failed to assume environment integration test role') + raise + + @pytest.fixture(scope='session') def session_env2(client1, group1, org1, session_id, testdata): envdata = testdata.envs['session_env2'] diff --git a/tests_new/integration_tests/modules/datasets_base/queries.py b/tests_new/integration_tests/modules/datasets_base/queries.py index 71506706d..c3fd8893e 100644 --- a/tests_new/integration_tests/modules/datasets_base/queries.py +++ b/tests_new/integration_tests/modules/datasets_base/queries.py @@ -1,5 +1,4 @@ # TODO: This file will be replaced by using the SDK directly -from backend.dataall.modules.datasets_base.services.datasets_enums import ConfidentialityClassification DATASET_BASE_TYPE = """ datasetUri diff --git a/tests_new/integration_tests/modules/s3_datasets/aws_clients.py b/tests_new/integration_tests/modules/s3_datasets/aws_clients.py new file mode 100644 index 000000000..768b10eec --- /dev/null +++ b/tests_new/integration_tests/modules/s3_datasets/aws_clients.py @@ -0,0 +1,169 @@ +import logging +import json +from botocore.exceptions import ClientError + +log = logging.getLogger(__name__) + + +class S3Client: + def __init__(self, session, region): + self._client = session.client('s3', region_name=region) + self._resource = session.resource('s3', region_name=region) + self._region = region + + def create_bucket(self, bucket_name, kms_key_id=None): + """ + Create an S3 bucket. + :param bucket_name: Name of the S3 bucket to be created + :param kms_key_id: KMS key ID to use for encryption if encryption_type is 'aws:kms' + :return: None + """ + + encryption_type = 'aws:kms' if kms_key_id else 'AES256' + encryption_config = ( + {'SSEAlgorithm': encryption_type, 'KMSMasterKeyID': kms_key_id} + if encryption_type == 'aws:kms' + else {'SSEAlgorithm': encryption_type} + ) + + try: + if self._region == 'us-east-1': + self._client.create_bucket(ACL='private', Bucket=bucket_name) + else: + create_bucket_config = {'LocationConstraint': self._region} + self._client.create_bucket( + ACL='private', Bucket=bucket_name, CreateBucketConfiguration=create_bucket_config + ) + + self._client.put_bucket_encryption( + Bucket=bucket_name, + ServerSideEncryptionConfiguration={ + 'Rules': [ + {'ApplyServerSideEncryptionByDefault': encryption_config, 'BucketKeyEnabled': False}, + ] + }, + ) + except ClientError as e: + log.exception(f'Error creating S3 bucket: {e}') + + def delete_bucket(self, bucket_name): + """ + Delete an S3 bucket. + :param bucket_name: Name of the S3 bucket to be deleted + :return: None + """ + try: + # Delete all objects in the bucket before deleting the bucket + bucket = self._resource.Bucket(bucket_name) + bucket_versioning = self._resource.BucketVersioning(bucket_name) + if bucket_versioning.status == 'Enabled': + bucket.object_versions.delete() + else: + bucket.objects.all().delete() + self._client.delete_bucket(Bucket=bucket_name) + except ClientError as e: + log.exception(f'Error deleting S3 bucket: {e}') + + +class KMSClient: + def __init__(self, session, account_id, region): + self._client = session.client('kms', region_name=region) + self._account_id = account_id + + def create_key_with_alias(self, alias_name): + try: + response = self._client.create_key() + key_id = response['KeyMetadata']['KeyId'] + self._client.create_alias(AliasName=f'alias/{alias_name}', TargetKeyId=key_id) + self._put_key_policy(key_id) + + return key_id + + except ClientError as e: + log.exception(f'Error creating KMS key with alias: {e}') + + def _put_key_policy(self, key_id): + response = self._client.get_key_policy(KeyId=key_id, PolicyName='default') + policy = json.loads(response['Policy']) + # The updated policy replaces the existing policy. Add a new statement to + # the list along with the original policy statements. + principal = f'arn:aws:iam::{self._account_id}:role/dataallPivotRole-cdk' + policy['Statement'].append( + { + 'Sid': 'Allow access for PivotRole', + 'Effect': 'Allow', + 'Principal': {'AWS': principal}, + 'Action': [ + 'kms:Decrypt', + 'kms:Encrypt', + 'kms:GenerateDataKey*', + 'kms:PutKeyPolicy', + 'kms:GetKeyPolicy', + 'kms:ReEncrypt*', + 'kms:TagResource', + 'kms:UntagResource', + ], + 'Resource': '*', + } + ) + try: + self._client.put_key_policy(KeyId=key_id, PolicyName='default', Policy=json.dumps(policy)) + except ClientError as err: + log.exception( + "Couldn't set policy for key %s. Here's why %s", + key_id, + err.response['Error']['Message'], + ) + + def delete_key_by_alias(self, alias_name): + """ + Delete a KMS key by its alias. + :param alias_name: Alias of the KMS key to be deleted + :return: None + """ + try: + key_id = self._get_key_by_alias(alias_name) + if key_id: + # Schedule the key for deletion + self._client.schedule_key_deletion(KeyId=key_id) + except ClientError as e: + log.exception(f'Error deleting KMS key by alias: {e}') + + def _get_key_by_alias(self, alias_name): + try: + response = self._client.list_aliases() + aliases = response.get('Aliases', []) + + for alias in aliases: + if alias['AliasName'] == f'alias/{alias_name}': + key_id = alias['TargetKeyId'] + return key_id + return None + + except ClientError as e: + log.exception(f'Error getting KMS key by alias: {e}') + + +class GlueClient: + def __init__(self, session, region): + self._client = session.client('glue', region_name=region) + + def create_database(self, database_name, bucket): + try: + self._client.create_database(DatabaseInput={'Name': database_name, 'LocationUri': f's3://{bucket}/'}) + except ClientError as e: + log.exception(f'Error creating Glue database: {e}') + + def delete_database(self, database_name): + """ + Delete a Glue database. + :param database_name: Name of the Glue database to be deleted + :return: None + """ + try: + self._client.delete_database(Name=database_name) + except ClientError as e: + if e.response['Error']['Code'] == 'EntityNotFoundException': + log.exception(f"Glue database '{database_name}' does not exist.") + else: + log.exception(f'Error deleting Glue database: {e}') diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index a5376b2c2..493489ca0 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -13,6 +13,8 @@ ) from tests_new.integration_tests.modules.datasets_base.queries import list_datasets +from integration_tests.modules.s3_datasets.aws_clients import S3Client, KMSClient, GlueClient + log = logging.getLogger(__name__) @@ -102,11 +104,17 @@ def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdat @pytest.fixture(scope='session') -def session_imported_sse_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): +def session_imported_sse_s3_dataset1( + client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client +): envdata = testdata.datasets['session_imported_sse_s3_dataset1'] ds = None + bucket = None try: - # TODO: Create S3 Bucket before import + Clean Up in Finally + bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( + bucket_name=f'{envdata.bucket}{session_id}', kms_key_id=None + ) + ds = import_s3_dataset( client1, owner='someone', @@ -115,20 +123,33 @@ def session_imported_sse_s3_dataset1(client1, group1, org1, session_env1, sessio env_uri=session_env1['environmentUri'], dataset_name=envdata.name, tags=[session_id], - bucket=envdata.bucket, + bucket=f'{envdata.bucket}{session_id}', ) yield ds finally: if ds: delete_s3_dataset(client1, session_env1['environmentUri'], ds) + S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket( + f'{envdata.bucket}{session_id}' + ) @pytest.fixture(scope='session') -def session_imported_kms_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): +def session_imported_kms_s3_dataset1( + client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client +): envdata = testdata.datasets['session_imported_kms_s3_dataset1'] ds = None try: - # TODO: Create S3 Bucket, KMS, + Glue DB before import + Clean Up in Finally + kms_key_id = KMSClient( + session=session_env1_aws_client, account_id=session_env1['AwsAccountId'], region=session_env1['region'] + ).create_key_with_alias(f'{envdata.kmsAlias}{session_id}') + S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( + bucket_name=f'{envdata.bucket}{session_id}', kms_key_id=kms_key_id + ) + GlueClient(session=session_env1_aws_client, region=session_env1['region']).create_database( + database_name=f'{envdata.glueDatabaseName}{session_id}', bucket=f'{envdata.bucket}{session_id}' + ) ds = import_s3_dataset( client1, owner='someone', @@ -137,14 +158,23 @@ def session_imported_kms_s3_dataset1(client1, group1, org1, session_env1, sessio env_uri=session_env1['environmentUri'], dataset_name=envdata.name, tags=[session_id], - bucket=envdata.bucket, - kms_alias=envdata.kmsAlias, - glue_db_name=envdata.glueDatabaseName, + bucket=f'{envdata.bucket}{session_id}', + kms_alias=f'{envdata.kmsAlias}{session_id}', + glue_db_name=f'{envdata.glueDatabaseName}{session_id}', ) yield ds finally: if ds: delete_s3_dataset(client1, session_env1['environmentUri'], ds) + S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket( + f'{envdata.bucket}{session_id}' + ) + KMSClient( + session=session_env1_aws_client, account_id=session_env1['AwsAccountId'], region=session_env1['region'] + ).delete_key_by_alias(f'{envdata.kmsAlias}{session_id}') + GlueClient(session=session_env1_aws_client, region=session_env1['region']).delete_database( + f'{envdata.glueDatabaseName}{session_id}' + ) """ diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index dd01ae12d..3201e59e5 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -3,7 +3,8 @@ import time from assertpy import assert_that -from integration_tests.modules.s3_datasets.queries import get_dataset, update_dataset +from integration_tests.modules.s3_datasets.queries import get_dataset, update_dataset, delete_dataset +from integration_tests.modules.s3_datasets.global_conftest import create_s3_dataset from integration_tests.modules.datasets_base.queries import list_datasets from integration_tests.core.stack.queries import update_stack from integration_tests.core.stack.utils import check_stack_in_progress, check_stack_ready @@ -24,6 +25,31 @@ def test_import_kms_s3_dataset(session_imported_kms_s3_dataset1): assert_that(session_imported_kms_s3_dataset1.stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') +def test_get_s3_dataset(client1, session_s3_dataset1): + dataset = get_dataset(client1, session_s3_dataset1.datasetUri) + assert dataset + assert_that(dataset.label).is_equal_to(session_s3_dataset1.label) + + +def test_get_s3_dataset_unauthorized(client2, session_s3_dataset1): + dataset_uri = session_s3_dataset1.datasetUri + assert_that(get_dataset).raises(GqlError).when_called_with(client2, dataset_uri).contains( + 'UnauthorizedOperation', dataset_uri + ) + + +def test_list_datasets( + client1, session_s3_dataset1, session_imported_sse_s3_dataset1, session_imported_kms_s3_dataset1, session_id +): + assert_that(list_datasets(client1, term=session_id).nodes).is_length(3) + + +def test_list_datasets_unauthorized( + client2, session_s3_dataset1, session_imported_sse_s3_dataset1, session_imported_kms_s3_dataset1, session_id +): + assert_that(list_datasets(client2, term=session_id).nodes).is_length(0) + + def test_modify_dataset(client1, session_s3_dataset1): test_description = f'a test description {datetime.utcnow().isoformat()}' dataset_uri = session_s3_dataset1.datasetUri @@ -43,16 +69,11 @@ def test_modify_dataset_unauthorized(client1, client2, session_s3_dataset1): assert_that(dataset).contains_entry(datasetUri=dataset_uri).does_not_contain_entry(description=test_description) -def test_list_datasets_authorized( - client1, session_s3_dataset1, session_imported_sse_s3_dataset1, session_imported_kms_s3_dataset1, session_id -): - assert_that(list_datasets(client1, term=session_id).nodes).is_length(3) - - -def test_list_datasets_unauthorized( - client2, session_s3_dataset1, session_imported_sse_s3_dataset1, session_imported_kms_s3_dataset1, session_id -): - assert_that(list_datasets(client2, term=session_id).nodes).is_length(0) +def test_delete_dataset_unauthorized(client2, session_s3_dataset1): + dataset_uri = session_s3_dataset1.datasetUri + assert_that(delete_dataset).raises(GqlError).when_called_with(client2, dataset_uri).contains( + 'UnauthorizedOperation', dataset_uri + ) def test_persistent_s3_dataset_update(client1, persistent_s3_dataset1): From d04b525887e97994d1f1627d11a7f6693a5cdf9f Mon Sep 17 00:00:00 2001 From: dlpzx Date: Tue, 2 Jul 2024 18:31:31 +0200 Subject: [PATCH 04/34] simplified conftests for datasets --- tests_new/integration_tests/conftest.py | 10 --- .../modules/s3_datasets/global_conftest.py | 79 ++++++++----------- .../modules/s3_datasets/queries.py | 3 +- 3 files changed, 36 insertions(+), 56 deletions(-) diff --git a/tests_new/integration_tests/conftest.py b/tests_new/integration_tests/conftest.py index a89e58290..7f09b9231 100644 --- a/tests_new/integration_tests/conftest.py +++ b/tests_new/integration_tests/conftest.py @@ -32,21 +32,11 @@ class Env: region: str -@dataclass_json -@dataclass -class Dataset: - name: str - bucket: str = '' - kmsAlias: str = '' - glueDatabaseName: str = '' - - @dataclass_json @dataclass class TestData: users: dict[str, User] envs: dict[str, Env] - datasets: dict[str, Dataset] @pytest.fixture(scope='session', autouse=True) diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index 493489ca0..707d4d3da 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -18,12 +18,10 @@ log = logging.getLogger(__name__) -def create_s3_dataset( - client, owner, group, org_uri, env_uri, dataset_name, tags=[], autoApprovalEnabled=False, confidentiality=None -): +def create_s3_dataset(client, owner, group, org_uri, env_uri, tags=[], autoApprovalEnabled=False, confidentiality=None): dataset = create_dataset( client, - name=dataset_name, + name='TestDatasetCreated', owner=owner, group=group, organizationUri=org_uri, @@ -42,7 +40,6 @@ def import_s3_dataset( group, org_uri, env_uri, - dataset_name, bucket, kms_alias='', glue_db_name='', @@ -52,7 +49,7 @@ def import_s3_dataset( ): dataset = import_dataset( client, - name=dataset_name, + name='TestDatasetImported', owner=owner, group=group, organizationUri=org_uri, @@ -85,7 +82,6 @@ def delete_s3_dataset(client, env_uri, dataset): @pytest.fixture(scope='session') def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): - envdata = testdata.datasets['session_s3_dataset1'] ds = None try: ds = create_s3_dataset( @@ -94,7 +90,6 @@ def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdat group=group1, org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], - dataset_name=envdata.name, tags=[session_id], ) yield ds @@ -107,12 +102,12 @@ def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdat def session_imported_sse_s3_dataset1( client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client ): - envdata = testdata.datasets['session_imported_sse_s3_dataset1'] ds = None bucket = None + bucket_name = f'sessionimportedsses3{session_id}' try: bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( - bucket_name=f'{envdata.bucket}{session_id}', kms_key_id=None + bucket_name=bucket_name, kms_key_id=None ) ds = import_s3_dataset( @@ -121,34 +116,32 @@ def session_imported_sse_s3_dataset1( group=group1, org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], - dataset_name=envdata.name, tags=[session_id], - bucket=f'{envdata.bucket}{session_id}', + bucket=bucket_name, ) yield ds finally: if ds: delete_s3_dataset(client1, session_env1['environmentUri'], ds) - S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket( - f'{envdata.bucket}{session_id}' - ) + if bucket: + S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(bucket_name) @pytest.fixture(scope='session') def session_imported_kms_s3_dataset1( client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client ): - envdata = testdata.datasets['session_imported_kms_s3_dataset1'] ds = None + resource_name = f'sessionimportedkms{session_id}' try: kms_key_id = KMSClient( session=session_env1_aws_client, account_id=session_env1['AwsAccountId'], region=session_env1['region'] - ).create_key_with_alias(f'{envdata.kmsAlias}{session_id}') + ).create_key_with_alias(resource_name) S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( - bucket_name=f'{envdata.bucket}{session_id}', kms_key_id=kms_key_id + bucket_name=resource_name, kms_key_id=kms_key_id ) GlueClient(session=session_env1_aws_client, region=session_env1['region']).create_database( - database_name=f'{envdata.glueDatabaseName}{session_id}', bucket=f'{envdata.bucket}{session_id}' + database_name=resource_name, bucket=resource_name ) ds = import_s3_dataset( client1, @@ -156,25 +149,20 @@ def session_imported_kms_s3_dataset1( group=group1, org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], - dataset_name=envdata.name, tags=[session_id], - bucket=f'{envdata.bucket}{session_id}', - kms_alias=f'{envdata.kmsAlias}{session_id}', - glue_db_name=f'{envdata.glueDatabaseName}{session_id}', + bucket=resource_name, + kms_alias=resource_name, + glue_db_name=resource_name, ) yield ds finally: if ds: delete_s3_dataset(client1, session_env1['environmentUri'], ds) - S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket( - f'{envdata.bucket}{session_id}' - ) + S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(resource_name) KMSClient( session=session_env1_aws_client, account_id=session_env1['AwsAccountId'], region=session_env1['region'] - ).delete_key_by_alias(f'{envdata.kmsAlias}{session_id}') - GlueClient(session=session_env1_aws_client, region=session_env1['region']).delete_database( - f'{envdata.glueDatabaseName}{session_id}' - ) + ).delete_key_by_alias(resource_name) + GlueClient(session=session_env1_aws_client, region=session_env1['region']).delete_database(resource_name) """ @@ -185,7 +173,6 @@ def session_imported_kms_s3_dataset1( @pytest.fixture(scope='function') def temp_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): - envdata = testdata.datasets['temp_s3_dataset1'] ds = None try: ds = create_s3_dataset( @@ -194,7 +181,6 @@ def temp_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): group=group1, org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], - dataset_name=envdata.name, tags=[session_id], ) yield ds @@ -209,25 +195,25 @@ def temp_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): """ -def get_or_create_persistent_s3_dataset(dataset_name, client, group, env, testdata): +def get_or_create_persistent_s3_dataset( + dataset_name, client, group, env, bucket=None, kms_alias=None, glue_database=None +): + dataset_name = 'persistent_s3_dataset1' s3_datasets = list_datasets(client, term=dataset_name).nodes if s3_datasets: return s3_datasets[0] else: - s3_dataset_data = testdata.datasets[dataset_name] - - if s3_dataset_data.bucket: + if bucket: s3_dataset = import_s3_dataset( client, owner='someone', group=group, org_uri=env['organization']['organizationUri'], env_uri=env['environmentUri'], - dataset_name=dataset_name, tags=[dataset_name], - bucket=s3_dataset_data.bucket, - kms_alias=s3_dataset_data.kmsAlias, - glue_db_name=s3_dataset_data.glueDatabaseName, + bucket=bucket, + kms_alias=kms_alias, + glue_db_name=glue_database, ) else: @@ -237,7 +223,6 @@ def get_or_create_persistent_s3_dataset(dataset_name, client, group, env, testda group=group, org_uri=env['organization']['organizationUri'], env_uri=env['environmentUri'], - dataset_name=dataset_name, tags=[dataset_name], ) @@ -250,18 +235,24 @@ def get_or_create_persistent_s3_dataset(dataset_name, client, group, env, testda @pytest.fixture(scope='session') def persistent_s3_dataset1(client1, group1, persistent_env1, testdata): - return get_or_create_persistent_s3_dataset('persistent_s3_dataset1', client1, group1, persistent_env1, testdata) + return get_or_create_persistent_s3_dataset('persistent_s3_dataset1', client1, group1, persistent_env1) @pytest.fixture(scope='session') def persistent_imported_sse_s3_dataset1(client1, group1, persistent_env1, testdata): return get_or_create_persistent_s3_dataset( - 'persistent_imported_sse_s3_dataset1', client1, group1, persistent_env1, testdata + 'persistent_imported_sse_s3_dataset1', client1, group1, persistent_env1, 'persistentimportedsses3' ) @pytest.fixture(scope='session') def persistent_imported_kms_s3_dataset1(client1, group1, persistent_env1, testdata): return get_or_create_persistent_s3_dataset( - 'persistent_imported_kms_s3_dataset1', client1, group1, persistent_env1, testdata + 'persistent_imported_kms_s3_dataset1', + client1, + group1, + persistent_env1, + 'persistentimportedkms', + 'persistentimportedkms', + 'persistentimportedkms', ) diff --git a/tests_new/integration_tests/modules/s3_datasets/queries.py b/tests_new/integration_tests/modules/s3_datasets/queries.py index aba5a9277..0bc9f609b 100644 --- a/tests_new/integration_tests/modules/s3_datasets/queries.py +++ b/tests_new/integration_tests/modules/s3_datasets/queries.py @@ -1,5 +1,4 @@ # TODO: This file will be replaced by using the SDK directly -from backend.dataall.modules.datasets_base.services.datasets_enums import ConfidentialityClassification S3_DATASET_TYPE = """ datasetUri @@ -101,7 +100,7 @@ def create_dataset( 'environmentUri': environmentUri, 'SamlAdminGroupName': group, 'organizationUri': organizationUri, - 'confidentiality': confidentiality or ConfidentialityClassification.Unclassified.value, + 'confidentiality': confidentiality or 'Unclassified', 'autoApprovalEnabled': autoApprovalEnabled, } }, From d783af102b06518f5307b0a4c1913906a377cb6a Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 2 Jul 2024 14:55:58 -0400 Subject: [PATCH 05/34] Begin adding tests notebooks --- tests_new/integration_tests/conftest.py | 1 + .../modules/notebooks/__init__.py | 0 .../modules/notebooks/aws_clients.py | 91 +++++++++ .../modules/notebooks/global_conftest.py | 154 +++++++++++++++ .../modules/notebooks/queries.py | 180 ++++++++++++++++++ .../modules/notebooks/test_notebooks.py | 46 +++++ 6 files changed, 472 insertions(+) create mode 100644 tests_new/integration_tests/modules/notebooks/__init__.py create mode 100644 tests_new/integration_tests/modules/notebooks/aws_clients.py create mode 100644 tests_new/integration_tests/modules/notebooks/global_conftest.py create mode 100644 tests_new/integration_tests/modules/notebooks/queries.py create mode 100644 tests_new/integration_tests/modules/notebooks/test_notebooks.py diff --git a/tests_new/integration_tests/conftest.py b/tests_new/integration_tests/conftest.py index 60df4f843..574e87ac8 100644 --- a/tests_new/integration_tests/conftest.py +++ b/tests_new/integration_tests/conftest.py @@ -14,6 +14,7 @@ pytest_plugins = [ 'integration_tests.core.organizations.global_conftest', 'integration_tests.core.environment.global_conftest', + 'integration_tests.modules.notebooks.global_conftest', ] diff --git a/tests_new/integration_tests/modules/notebooks/__init__.py b/tests_new/integration_tests/modules/notebooks/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests_new/integration_tests/modules/notebooks/aws_clients.py b/tests_new/integration_tests/modules/notebooks/aws_clients.py new file mode 100644 index 000000000..de6413a19 --- /dev/null +++ b/tests_new/integration_tests/modules/notebooks/aws_clients.py @@ -0,0 +1,91 @@ +import logging +import json +from typing import Any, Dict, Optional +from botocore.exceptions import ClientError + +log = logging.getLogger(__name__) + + +class VpcClient: + def __init__(self, session, region): + self._client = session.client('ec2', region_name=region) + self._region = region + + def create_vpc(self, vpc_name: str, cidr: str = '10.0.0.0/28') -> str: + log.info('Creating VPC..') + response = self._client.create_vpc( + CidrBlock=cidr, + TagSpecifications=[ + { + 'ResourceType': 'vpc', + 'Tags': [ + {'Key': 'Name', 'Value': vpc_name}, + ], + }, + ], + ) + vpc_id = response['Vpc']['VpcId'] + log.info(f'VPC created with ID: {vpc_id=}') + return vpc_id + + def delete_vpc(self, vpc_id: str) -> Dict[str, Any]: + log.info('Deleting VPC..') + response = self._client.delete_vpc(VpcId=vpc_id) + log.info(f'VPC deleted with ID: {vpc_id=}') + return response + + def get_vpc_id_by_name(self, vpc_name: str) -> Optional[str]: + log.info('Getting VPC ID by name..') + response = self._client.describe_vpcs(Filters=[{'Name': 'tag:Name', 'Values': [vpc_name]}]) + if len(response['Vpcs']) == 0: + log.info(f'VPC with name {vpc_name} not found') + return None + vpc_id = response['Vpcs'][0]['VpcId'] + log.info(f'VPC ID found: {vpc_id=}') + return vpc_id + + def delete_vpc_by_name(self, vpc_name: str): + vpc_id = self.get_vpc_id_by_name(vpc_name) + if vpc_id: + self.delete_vpc(vpc_id) + return True + + def create_subnet(self, vpc_id: str, subnet_name: str, cidr: str) -> str: + log.info('Creating subnet..') + response = self._client.create_subnet( + VpcId=vpc_id, + CidrBlock=cidr, + TagSpecifications=[ + { + 'ResourceType': 'subnet', + 'Tags': [ + {'Key': 'Name', 'Value': subnet_name}, + ], + }, + ], + ) + subnet_id = response['Subnet']['SubnetId'] + log.info(f'Subnet created with ID: {subnet_id=}') + return subnet_id + + def get_subnet_id_by_name(self, subnet_name: str) -> Optional[str]: + log.info('Getting subnet ID by name..') + response = self._client.describe_subnets(Filters=[{'Name': 'tag:Name', 'Values': [subnet_name]}]) + if len(response['Subnets']) == 0: + log.info(f'Subnet with name {subnet_name} not found') + return None + subnet_id = response['Subnets'][0]['SubnetId'] + log.info(f'Subnet ID found: {subnet_id=}') + return subnet_id + + def delete_subnet(self, subnet_id: str) -> Dict[str, Any]: + log.info('Deleting subnet..') + response = self._client.delete_subnet(SubnetId=subnet_id) + log.info(f'Subnet deleted with ID: {subnet_id=}') + return response + + def delete_subnet_by_name(self, subnet_name: str): + subnet_id = self.get_subnet_id_by_name(subnet_name) + if subnet_id: + self.delete_subnet(subnet_id) + return True diff --git a/tests_new/integration_tests/modules/notebooks/global_conftest.py b/tests_new/integration_tests/modules/notebooks/global_conftest.py new file mode 100644 index 000000000..0e7957cf4 --- /dev/null +++ b/tests_new/integration_tests/modules/notebooks/global_conftest.py @@ -0,0 +1,154 @@ +import logging + +import pytest + +from integration_tests.client import GqlError +from integration_tests.modules.notebooks.queries import ( + create_sagemaker_notebook, + get_sagemaker_notebook, + delete_sagemaker_notebook, + list_sagemaker_notebooks, +) +from integration_tests.core.stack.utils import check_stack_ready + +from integration_tests.modules.notebooks.aws_clients import VpcClient + +log = logging.getLogger(__name__) + + +def create_notebook(client, group, org_uri, env_uri, vpc_id, subnet_id, tags=[]): + notebook = create_sagemaker_notebook( + client=client, + name='TestNotebook', + group=group, + organizationUri=org_uri, + environmentUri=env_uri, + VpcId=vpc_id, + SubnetId=subnet_id, + tags=tags, + ) + check_stack_ready(client, env_uri, notebook.stack.stackUri) + return get_sagemaker_notebook(client, notebook.environmentUri) + + +def delete_notebook(client, env_uri, notebook): + check_stack_ready(client, env_uri, notebook.stack.stackUri) + try: + return delete_sagemaker_notebook(client, notebook.environmentUri) + except GqlError: + log.exception('unexpected error when deleting environment') + return False + + +""" +Session envs persist accross the duration of the whole integ test suite and are meant to make the test suite run faster (env creation takes ~2 mins). +For this reason they must stay immutable as changes to them will affect the rest of the tests. +""" + + +@pytest.fixture(scope='session') +def session_notebook1(client1, group1, org1, session_env1, session_id, session_env1_aws_client): + resource_name = 'sessionnotebook1' + notebook = None + try: + vpc_client = VpcClient(session=session_env1_aws_client, region=session_env1['region']) + vpc_id = vpc_client.create_vpc(vpc_name=resource_name, cidr='172.31.0.0/26') + subnet_id = vpc_client.create_subnet(vpc_id=vpc_id, subnet_name=resource_name, cidr='172.31.0.0/28') + + notebook = create_notebook( + client1, + group=group1, + org_uri=org1['organizationUri'], + env_uri=session_env1['environmentUri'], + tags=[session_id], + vpc_id=vpc_id, + subnet_id=subnet_id, + ) + yield notebook + finally: + if notebook: + delete_notebook(client1, session_env1['environmentUri'], notebook) + vpc_client = VpcClient(session=session_env1_aws_client, region=session_env1['region']) + vpc_client.delete_subnet_by_name(resource_name) + vpc_client.delete_vpc_by_name(resource_name) + + +""" +Temp envs will be created and deleted per test, use with caution as they might increase the runtime of the test suite. +They are suitable to test env mutations. +""" + + +@pytest.fixture(scope='function') +def temp_notebook1(client1, group1, org1, session_env1, session_id, session_env1_aws_client): + resource_name = 'tempnotebook1' + notebook = None + try: + vpc_client = VpcClient(session=session_env1_aws_client, region=session_env1['region']) + vpc_id = vpc_client.create_vpc(vpc_name=resource_name, cidr='172.31.0.0/26') + subnet_id = vpc_client.create_subnet(vpc_id=vpc_id, subnet_name=resource_name, cidr='172.31.0.0/28') + + notebook = create_notebook( + client1, + group=group1, + org_uri=org1['organizationUri'], + env_uri=session_env1['environmentUri'], + tags=[session_id], + vpc_id=vpc_id, + subnet_id=subnet_id, + ) + yield notebook + finally: + if notebook: + delete_notebook(client1, session_env1['environmentUri'], notebook) + vpc_client = VpcClient(session=session_env1_aws_client, region=session_env1['region']) + vpc_client.delete_subnet_by_name(resource_name) + vpc_client.delete_vpc_by_name(resource_name) + + +""" +Persistent environments must always be present (if not i.e first run they will be created but won't be removed). +They are suitable for testing backwards compatibility. +""" + + +def get_or_create_persistent_notebook(resource_name, client, group, env, session): + notebooks = list_sagemaker_notebooks(client, term=resource_name).nodes + if notebooks: + return notebooks[0] + else: + vpc_client = VpcClient(session=session, region=env['region']) + + vpc_id = ( + vpc_client.get_vpc_id_by_name(resource_name) + if vpc_client.get_vpc_id_by_name(resource_name) + else vpc_client.create_vpc(vpc_name=resource_name, cidr='172.31.1.0/26') + ) + + subnet_id = ( + vpc_client.get_subnet_id_by_name(resource_name) + if vpc_client.get_subnet_id_by_name(resource_name) + else vpc_client.create_subnet(vpc_id=vpc_id, subnet_name=resource_name, cidr='172.31.1.0/28') + ) + + notebook = create_notebook( + client, + group=group, + org_uri=env['organization']['organizationUri'], + env_uri=env['environmentUri'], + tags=[resource_name], + vpc_id=vpc_id, + subnet_id=subnet_id, + ) + if notebook.stack.status in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']: + return env + else: + delete_notebook(client, env['environmentUri'], notebook.notebookUri) + raise RuntimeError(f'failed to create {resource_name=} {notebook=}') + + +@pytest.fixture(scope='session') +def persistent_notebook1(client1, group1, persistent_env1, session_env1_aws_client): + return get_or_create_persistent_notebook( + 'persistent_notebook1', client1, group1, persistent_env1, session_env1_aws_client + ) diff --git a/tests_new/integration_tests/modules/notebooks/queries.py b/tests_new/integration_tests/modules/notebooks/queries.py new file mode 100644 index 000000000..b4859b1ca --- /dev/null +++ b/tests_new/integration_tests/modules/notebooks/queries.py @@ -0,0 +1,180 @@ +NOTEBOOK_TYPE = """ +notebookUri +name +owner +description +label +created +tags +NotebookInstanceStatus +SamlAdminGroupName +RoleArn +VpcId +SubnetId +VolumeSizeInGB +InstanceType +environment { + label + name + environmentUri + AwsAccountId + region +} +organization { + label + name + organizationUri +} +stack { + stack + status + stackUri + targetUri + accountid + region + stackid + link + outputs + resources +} +""" + + +def create_sagemaker_notebook( + client, + name, + group, + organizationUri, + environmentUri, + tags, + VpcId, + SubnetId, + VolumeSizeInGB=32, + InstanceType='ml.t3.medium', +): + query = { + 'operationName': 'CreateSagemakerNotebook', + 'variables': { + 'input': { + 'label': name, + 'SamlAdminGroupName': group, + 'organizationUri': organizationUri, + 'environmentUri': environmentUri, + 'VpcId': VpcId, + 'SubnetId': SubnetId, + 'description': 'Created for integration testing', + 'tags': tags, + 'VolumeSizeInGB': VolumeSizeInGB, + 'InstanceType': InstanceType, + } + }, + 'query': f""" + mutation CreateSagemakerNotebook($input: NewSagemakerNotebookInput) {{ + createSagemakerNotebook(input: $input) {{ + {NOTEBOOK_TYPE} + }} + }} + """, + } + + response = client.query(query=query) + return response.data.createSagemakerNotebook + + +def get_sagemaker_notebook(client, notebookUri): + query = { + 'operationName': 'getSagemakerNotebook', + 'variables': {'notebookUri': notebookUri}, + 'query': f""" + query getSagemakerNotebook($notebookUri: String!) {{ + getSagemakerNotebook(notebookUri: $notebookUri) {{ + {NOTEBOOK_TYPE} + }} + }} + """, + } + response = client.query(query=query) + return response.data.getSagemakerNotebook + + +def delete_sagemaker_notebook(client, notebookUri, deleteFromAWS=True): + query = { + 'operationName': 'deleteSagemakerNotebook', + 'variables': { + 'notebookUri': notebookUri, + 'deleteFromAWS': deleteFromAWS, + }, + 'query': """ + mutation deleteSagemakerNotebook( + $notebookUri: String! + $deleteFromAWS: Boolean + ) { + deleteSagemakerNotebook( + notebookUri: $notebookUri + deleteFromAWS: $deleteFromAWS + ) + } + """, + } + response = client.query(query=query) + return response + + +def list_sagemaker_notebooks(client, term=''): + query = { + 'operationName': 'ListSagemakerNotebooks', + 'variables': { + 'filter': {'term': term}, + }, + 'query': f""" + query ListSagemakerNotebooks($filter: SagemakerNotebookFilter) {{ + listSagemakerNotebooks(filter: $filter) {{ + count + page + pages + hasNext + hasPrevious + nodes {{ + {NOTEBOOK_TYPE} + }} + }} + }} + """, + } + + response = client.query(query=query) + return response.data.listSagemakerNotebooks + + +def stop_sagemaker_notebook(client, notebookUri): + query = { + 'operationName': 'StopSagemakerNotebook', + 'variables': { + 'notebookUri': notebookUri, + }, + 'query': f""" + mutation StopSagemakerNotebook($notebookUri: String!) {{ + stopSagemakerNotebook(notebookUri: $notebookUri) + }} + """, + } + + response = client.query(query=query) + return response + + +def start_sagemaker_notebook(client, notebookUri): + query = { + 'operationName': 'StartSagemakerNotebook', + 'variables': { + 'notebookUri': notebookUri, + }, + 'query': f""" + mutation StartSagemakerNotebook($notebookUri: String!) {{ + startSagemakerNotebook(notebookUri: $notebookUri) + }} + """, + } + + response = client.query(query=query) + return response diff --git a/tests_new/integration_tests/modules/notebooks/test_notebooks.py b/tests_new/integration_tests/modules/notebooks/test_notebooks.py new file mode 100644 index 000000000..68485963d --- /dev/null +++ b/tests_new/integration_tests/modules/notebooks/test_notebooks.py @@ -0,0 +1,46 @@ +import logging +from datetime import datetime +import time +from assertpy import assert_that + +from integration_tests.core.stack.queries import update_stack +from integration_tests.core.stack.utils import check_stack_in_progress, check_stack_ready +from integration_tests.errors import GqlError +from tests_new.integration_tests.modules.notebooks.queries import list_sagemaker_notebooks + +log = logging.getLogger(__name__) + + +def test_create_notebook(session_env1): + assert_that(session_env1.stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') + + +def test_list_envs_authorized(client1, session_notebook1, session_id): + assert_that(list_sagemaker_notebooks(client1, term=session_id).nodes).is_length(1) + + +def test_list_envs_unauthorized(client2, session_notebook1, session_id): + assert_that(list_sagemaker_notebooks(client2, term=session_id).nodes).is_length(0) + + +def test_persistent_notebook_update(client1, persistent_notebook1): + # wait for stack to get to a final state before triggering an update + stack_uri = persistent_notebook1.stack.stackUri + env_uri = persistent_notebook1.environmentUri + notebook_uri = persistent_notebook1.notebookUri + target_type = 'notebook' + check_stack_ready( + client=client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=notebook_uri, target_type=target_type + ) + update_stack(client1, notebook_uri, target_type) + # wait for stack to move to "in_progress" state + # TODO: Come up with better way to handle wait in progress if applicable + # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) + # check_stack_in_progress(client1, env_uri, stack_uri) + time.sleep(10) + + stack = check_stack_ready( + client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=notebook_uri, target_type=target_type + ) + assert_that(stack.status).is_equal_to('UPDATE_COMPLETE') + From ef3175cdc5320abadc3717d2bf4ef409c1d9c90d Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 2 Jul 2024 17:10:18 -0400 Subject: [PATCH 06/34] add tests start/stop and fix --- .../core/environment/cdk/environment_stack.py | 5 ++ .../notebooks/db/notebook_repository.py | 6 +- .../core/environment/global_conftest.py | 18 +++++ .../core/environment/queries.py | 3 + .../modules/notebooks/global_conftest.py | 21 +++--- .../modules/notebooks/queries.py | 6 +- .../modules/notebooks/test_notebooks.py | 65 ++++++++++++++++--- 7 files changed, 97 insertions(+), 27 deletions(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index 5b10f13a1..6ce5bee8a 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -586,4 +586,9 @@ def create_integration_tests_role(self): effect=iam.Effect.ALLOW, resources=['*'], ), + iam.PolicyStatement( + actions=['ec2:Describe*', 'ec2:*Vpc', 'ec2:*Subnet', 'ec2:*Route*'], + effect=iam.Effect.ALLOW, + resources=['*'], + ), ) diff --git a/backend/dataall/modules/notebooks/db/notebook_repository.py b/backend/dataall/modules/notebooks/db/notebook_repository.py index c7ad805c9..f5219fdde 100644 --- a/backend/dataall/modules/notebooks/db/notebook_repository.py +++ b/backend/dataall/modules/notebooks/db/notebook_repository.py @@ -46,10 +46,12 @@ def _query_user_notebooks(self, username, groups, filter) -> Query: ) ) if filter and filter.get('term'): + term = filter['term'] query = query.filter( or_( - SagemakerNotebook.description.ilike(filter.get('term') + '%%'), - SagemakerNotebook.label.ilike(filter.get('term') + '%%'), + SagemakerNotebook.description.ilike(term + '%%'), + SagemakerNotebook.label.ilike(term + '%%'), + SagemakerNotebook.tags.contains(f'{{{term}}}'), ) ) return query.order_by(SagemakerNotebook.label) diff --git a/tests_new/integration_tests/core/environment/global_conftest.py b/tests_new/integration_tests/core/environment/global_conftest.py index 174927f56..c1f052a6d 100644 --- a/tests_new/integration_tests/core/environment/global_conftest.py +++ b/tests_new/integration_tests/core/environment/global_conftest.py @@ -122,3 +122,21 @@ def get_or_create_persistent_env(env_name, client, group, testdata): @pytest.fixture(scope='session') def persistent_env1(client1, group1, testdata): return get_or_create_persistent_env('persistent_env1', client1, group1, testdata) + + +@pytest.fixture(scope='session') +def persistent_env1_aws_client(persistent_env1): + try: + base_session = boto3.Session() + role_arn = f'arn:aws:iam::{persistent_env1.AwsAccountId}:role/dataall-integration-tests-role' + response = base_session.client('sts', region_name=persistent_env1.region).assume_role( + RoleArn=role_arn, RoleSessionName=role_arn.split('/')[1] + ) + yield boto3.Session( + aws_access_key_id=response['Credentials']['AccessKeyId'], + aws_secret_access_key=response['Credentials']['SecretAccessKey'], + aws_session_token=response['Credentials']['SessionToken'], + ) + except: + log.exception('Failed to assume environment integration test role') + raise diff --git a/tests_new/integration_tests/core/environment/queries.py b/tests_new/integration_tests/core/environment/queries.py index 7b3cfbabd..be081c0fc 100644 --- a/tests_new/integration_tests/core/environment/queries.py +++ b/tests_new/integration_tests/core/environment/queries.py @@ -61,6 +61,9 @@ def create_environment(client, name, group, organizationUri, awsAccountId, regio 'region': region, 'description': 'Created for integration testing', 'tags': tags, + 'parameters': [ + {'key': 'notebooksEnabled', 'value': 'true'}, + ], } }, 'query': f""" diff --git a/tests_new/integration_tests/modules/notebooks/global_conftest.py b/tests_new/integration_tests/modules/notebooks/global_conftest.py index 0e7957cf4..e681bed70 100644 --- a/tests_new/integration_tests/modules/notebooks/global_conftest.py +++ b/tests_new/integration_tests/modules/notebooks/global_conftest.py @@ -9,19 +9,18 @@ delete_sagemaker_notebook, list_sagemaker_notebooks, ) -from integration_tests.core.stack.utils import check_stack_ready +from integration_tests.core.stack.utils import check_stack_ready, check_stack_in_progress from integration_tests.modules.notebooks.aws_clients import VpcClient log = logging.getLogger(__name__) -def create_notebook(client, group, org_uri, env_uri, vpc_id, subnet_id, tags=[]): +def create_notebook(client, group, env_uri, vpc_id, subnet_id, tags=[], name='TestNotebook'): notebook = create_sagemaker_notebook( client=client, - name='TestNotebook', + name=name, group=group, - organizationUri=org_uri, environmentUri=env_uri, VpcId=vpc_id, SubnetId=subnet_id, @@ -34,7 +33,9 @@ def create_notebook(client, group, org_uri, env_uri, vpc_id, subnet_id, tags=[]) def delete_notebook(client, env_uri, notebook): check_stack_ready(client, env_uri, notebook.stack.stackUri) try: - return delete_sagemaker_notebook(client, notebook.environmentUri) + delete_sagemaker_notebook(client, notebook.notebookUri) + check_stack_in_progress(client, env_uri, notebook.stack.stackUri) + return check_stack_ready(client, env_uri, notebook.stack.stackUri) except GqlError: log.exception('unexpected error when deleting environment') return False @@ -58,7 +59,6 @@ def session_notebook1(client1, group1, org1, session_env1, session_id, session_e notebook = create_notebook( client1, group=group1, - org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], tags=[session_id], vpc_id=vpc_id, @@ -91,7 +91,6 @@ def temp_notebook1(client1, group1, org1, session_env1, session_id, session_env1 notebook = create_notebook( client1, group=group1, - org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], tags=[session_id], vpc_id=vpc_id, @@ -134,21 +133,21 @@ def get_or_create_persistent_notebook(resource_name, client, group, env, session notebook = create_notebook( client, group=group, - org_uri=env['organization']['organizationUri'], env_uri=env['environmentUri'], tags=[resource_name], vpc_id=vpc_id, subnet_id=subnet_id, + name=resource_name, ) if notebook.stack.status in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']: return env else: - delete_notebook(client, env['environmentUri'], notebook.notebookUri) + delete_notebook(client, env['environmentUri'], notebook) raise RuntimeError(f'failed to create {resource_name=} {notebook=}') @pytest.fixture(scope='session') -def persistent_notebook1(client1, group1, persistent_env1, session_env1_aws_client): +def persistent_notebook1(client1, group1, persistent_env1, persistent_env1_aws_client): return get_or_create_persistent_notebook( - 'persistent_notebook1', client1, group1, persistent_env1, session_env1_aws_client + 'persistent_notebook1', client1, group1, persistent_env1, persistent_env1_aws_client ) diff --git a/tests_new/integration_tests/modules/notebooks/queries.py b/tests_new/integration_tests/modules/notebooks/queries.py index b4859b1ca..40e639120 100644 --- a/tests_new/integration_tests/modules/notebooks/queries.py +++ b/tests_new/integration_tests/modules/notebooks/queries.py @@ -44,7 +44,6 @@ def create_sagemaker_notebook( client, name, group, - organizationUri, environmentUri, tags, VpcId, @@ -58,7 +57,6 @@ def create_sagemaker_notebook( 'input': { 'label': name, 'SamlAdminGroupName': group, - 'organizationUri': organizationUri, 'environmentUri': environmentUri, 'VpcId': VpcId, 'SubnetId': SubnetId, @@ -160,7 +158,7 @@ def stop_sagemaker_notebook(client, notebookUri): } response = client.query(query=query) - return response + return response.data.stopSagemakerNotebook def start_sagemaker_notebook(client, notebookUri): @@ -177,4 +175,4 @@ def start_sagemaker_notebook(client, notebookUri): } response = client.query(query=query) - return response + return response.data.startSagemakerNotebook diff --git a/tests_new/integration_tests/modules/notebooks/test_notebooks.py b/tests_new/integration_tests/modules/notebooks/test_notebooks.py index 68485963d..07c28d40f 100644 --- a/tests_new/integration_tests/modules/notebooks/test_notebooks.py +++ b/tests_new/integration_tests/modules/notebooks/test_notebooks.py @@ -1,32 +1,78 @@ import logging -from datetime import datetime import time from assertpy import assert_that from integration_tests.core.stack.queries import update_stack from integration_tests.core.stack.utils import check_stack_in_progress, check_stack_ready from integration_tests.errors import GqlError -from tests_new.integration_tests.modules.notebooks.queries import list_sagemaker_notebooks +from tests_new.integration_tests.modules.notebooks.queries import ( + get_sagemaker_notebook, + list_sagemaker_notebooks, + start_sagemaker_notebook, + stop_sagemaker_notebook, +) log = logging.getLogger(__name__) +import re +from integration_tests.utils import poller -def test_create_notebook(session_env1): - assert_that(session_env1.stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') +def is_notebook_ready(notebook): + return re.match(r'Stopping|Pending|Deleting|Updating', notebook.NotebookInstanceStatus, re.IGNORECASE) -def test_list_envs_authorized(client1, session_notebook1, session_id): + +@poller(check_success=lambda notebook: not is_notebook_ready(notebook), timeout=600) +def check_notebook_ready(client, notebook_uri): + return get_sagemaker_notebook(client, notebook_uri) + + +def test_create_notebook(session_notebook1): + assert_that(session_notebook1.stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') + + +def test_list_notebooks_authorized(client1, session_notebook1, session_id): assert_that(list_sagemaker_notebooks(client1, term=session_id).nodes).is_length(1) -def test_list_envs_unauthorized(client2, session_notebook1, session_id): +def test_list_notebooks_unauthorized(client2, session_notebook1, session_id): assert_that(list_sagemaker_notebooks(client2, term=session_id).nodes).is_length(0) +def test_stop_notebook_unauthorized(client1, client2, session_notebook1): + assert_that(stop_sagemaker_notebook).raises(GqlError).when_called_with( + client2, session_notebook1.notebookUri + ).contains('UnauthorizedOperation', session_notebook1.notebookUri) + notebook = get_sagemaker_notebook(client1, session_notebook1.notebookUri) + assert_that(notebook.NotebookInstanceStatus).is_equal_to('InService') + + +def test_stop_notebook_authorized(client1, session_notebook1): + assert_that(stop_sagemaker_notebook(client1, notebookUri=session_notebook1.notebookUri)).is_equal_to('Stopping') + notebook = get_sagemaker_notebook(client1, session_notebook1.notebookUri) + assert_that(notebook.NotebookInstanceStatus).matches(r'Stopping|Stopped') + check_notebook_ready(client1, session_notebook1.notebookUri) + + +def test_start_notebook_unauthorized(client1, client2, session_notebook1): + assert_that(start_sagemaker_notebook).raises(GqlError).when_called_with( + client2, session_notebook1.notebookUri + ).contains('UnauthorizedOperation', session_notebook1.notebookUri) + notebook = get_sagemaker_notebook(client1, session_notebook1.notebookUri) + assert_that(notebook.NotebookInstanceStatus).is_equal_to('Stopped') + + +def test_start_notebook_authorized(client1, session_notebook1): + assert_that(start_sagemaker_notebook(client1, notebookUri=session_notebook1.notebookUri)).is_equal_to('Starting') + notebook = get_sagemaker_notebook(client1, session_notebook1.notebookUri) + assert_that(notebook.NotebookInstanceStatus).matches(r'Pending|InService') + check_notebook_ready(client1, session_notebook1.notebookUri) + + def test_persistent_notebook_update(client1, persistent_notebook1): # wait for stack to get to a final state before triggering an update stack_uri = persistent_notebook1.stack.stackUri - env_uri = persistent_notebook1.environmentUri + env_uri = persistent_notebook1.environment.environmentUri notebook_uri = persistent_notebook1.notebookUri target_type = 'notebook' check_stack_ready( @@ -37,10 +83,9 @@ def test_persistent_notebook_update(client1, persistent_notebook1): # TODO: Come up with better way to handle wait in progress if applicable # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) # check_stack_in_progress(client1, env_uri, stack_uri) - time.sleep(10) + time.sleep(20) stack = check_stack_ready( client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=notebook_uri, target_type=target_type ) - assert_that(stack.status).is_equal_to('UPDATE_COMPLETE') - + assert_that(stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') From 992acc23b842f4fcb3aef2543d1b5914cc2a182c Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 2 Jul 2024 17:19:07 -0400 Subject: [PATCH 07/34] ruff --- .../integration_tests/modules/notebooks/test_notebooks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests_new/integration_tests/modules/notebooks/test_notebooks.py b/tests_new/integration_tests/modules/notebooks/test_notebooks.py index 07c28d40f..cad5ee18e 100644 --- a/tests_new/integration_tests/modules/notebooks/test_notebooks.py +++ b/tests_new/integration_tests/modules/notebooks/test_notebooks.py @@ -2,6 +2,9 @@ import time from assertpy import assert_that +import re +from integration_tests.utils import poller + from integration_tests.core.stack.queries import update_stack from integration_tests.core.stack.utils import check_stack_in_progress, check_stack_ready from integration_tests.errors import GqlError @@ -14,9 +17,6 @@ log = logging.getLogger(__name__) -import re -from integration_tests.utils import poller - def is_notebook_ready(notebook): return re.match(r'Stopping|Pending|Deleting|Updating', notebook.NotebookInstanceStatus, re.IGNORECASE) From 5e5507e3b0411a9583e5283e1a18ea87864db93a Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 2 Jul 2024 19:19:00 -0400 Subject: [PATCH 08/34] create integration role with region in name --- backend/dataall/core/environment/cdk/environment_stack.py | 2 +- tests_new/integration_tests/core/environment/global_conftest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index 5b10f13a1..25316a39d 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -567,7 +567,7 @@ def create_integration_tests_role(self): self.test_role = iam.Role( self, 'IntegrationTestRole', - role_name='dataall-integration-tests-role', + role_name=f'dataall-integration-tests-role-{self._environment.region}', assumed_by=iam.AccountPrincipal(os.getenv('TOOLING_ACCOUNT')), ) self.test_role.add_to_policy( diff --git a/tests_new/integration_tests/core/environment/global_conftest.py b/tests_new/integration_tests/core/environment/global_conftest.py index 174927f56..b198aac7d 100644 --- a/tests_new/integration_tests/core/environment/global_conftest.py +++ b/tests_new/integration_tests/core/environment/global_conftest.py @@ -54,7 +54,7 @@ def session_env1(client1, group1, org1, session_id, testdata): def session_env1_aws_client(session_env1, session_id): try: base_session = boto3.Session() - role_arn = f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role' + role_arn = f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role-{session_env1.region}' response = base_session.client('sts', region_name=session_env1.region).assume_role( RoleArn=role_arn, RoleSessionName=role_arn.split('/')[1] ) From fa69ddeb8daa3c8416fb51f70e6feb01a91de83e Mon Sep 17 00:00:00 2001 From: dlpzx Date: Wed, 3 Jul 2024 17:09:33 +0200 Subject: [PATCH 09/34] New environment type: IntegrationTests + ssm param with tooling account id --- backend/dataall/core/environment/api/enums.py | 2 +- backend/dataall/core/environment/api/input_types.py | 1 + .../dataall/core/environment/cdk/environment_stack.py | 9 +++++++-- deploy/stacks/backend_stack.py | 1 + deploy/stacks/param_store_stack.py | 10 ++++++++++ deploy/stacks/pipeline.py | 2 -- .../integration_tests/core/environment/queries.py | 1 + 7 files changed, 21 insertions(+), 5 deletions(-) diff --git a/backend/dataall/core/environment/api/enums.py b/backend/dataall/core/environment/api/enums.py index 228d1afd9..cfaf4ade6 100644 --- a/backend/dataall/core/environment/api/enums.py +++ b/backend/dataall/core/environment/api/enums.py @@ -12,4 +12,4 @@ class EnvironmentPermission(GraphQLEnumMapper): class EnvironmentType(GraphQLEnumMapper): Data = 'Data' - Compute = 'Compute' + IntegrationTesting = 'IntegrationTesting' diff --git a/backend/dataall/core/environment/api/input_types.py b/backend/dataall/core/environment/api/input_types.py index c27c7ab2c..076416043 100644 --- a/backend/dataall/core/environment/api/input_types.py +++ b/backend/dataall/core/environment/api/input_types.py @@ -30,6 +30,7 @@ gql.Argument('parameters', gql.ArrayType(ModifyEnvironmentParameterInput)), gql.Argument('vpcId', gql.String), gql.Argument('subnetIds', gql.ArrayType(gql.String)), + gql.Argument('type', gql.String), ], ) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index 25316a39d..caf04c6cb 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -22,6 +22,7 @@ from dataall.core.environment.db.environment_models import Environment, EnvironmentGroup from dataall.core.environment.services.environment_service import EnvironmentService from dataall.core.environment.services.managed_iam_policies import PolicyManager +from dataall.core.environment.api.enums import EnvironmentType from dataall.base.cdkproxy.stacks.manager import stack from dataall.core.environment.cdk.pivot_role_stack import PivotRole from dataall.core.environment.cdk.env_role_core_policies.data_policy import S3Policy @@ -139,7 +140,7 @@ def __init__(self, scope, id, target_uri: str = None, **kwargs): self.engine, self._environment ) # Create test role for integration tests - if os.getenv('INTEGRATION_TESTS', None) == 'True': + if self._environment.environmentType == EnvironmentType.IntegrationTesting.value: self.create_integration_tests_role() # Create or import Pivot role @@ -564,11 +565,15 @@ def create_topic(self, construct_id, central_account, environment, kms_key): return topic def create_integration_tests_role(self): + toolingAccount = ParameterStoreManager.get_parameter_value( + region=os.getenv('AWS_REGION', 'eu-west-1'), + parameter_path=f"/dataall/{os.getenv('envname', 'local')}/toolingAccount", + ) self.test_role = iam.Role( self, 'IntegrationTestRole', role_name=f'dataall-integration-tests-role-{self._environment.region}', - assumed_by=iam.AccountPrincipal(os.getenv('TOOLING_ACCOUNT')), + assumed_by=iam.AccountPrincipal(toolingAccount), ) self.test_role.add_to_policy( iam.PolicyStatement( diff --git a/deploy/stacks/backend_stack.py b/deploy/stacks/backend_stack.py index 4e0f3578b..dbfc94c9b 100644 --- a/deploy/stacks/backend_stack.py +++ b/deploy/stacks/backend_stack.py @@ -95,6 +95,7 @@ def __init__( pivot_role_name=self.pivot_role_name, reauth_apis=reauth_config.get('reauth_apis', None) if reauth_config else None, prod_sizing=prod_sizing, + tooling_account_id=tooling_account_id, **kwargs, ) if enable_cw_canaries: diff --git a/deploy/stacks/param_store_stack.py b/deploy/stacks/param_store_stack.py index 9c722abc6..b7008f7da 100644 --- a/deploy/stacks/param_store_stack.py +++ b/deploy/stacks/param_store_stack.py @@ -24,6 +24,7 @@ def __init__( pivot_role_name='dataallPivotRole', reauth_apis=None, prod_sizing=False, + tooling_account_id='', **kwargs, ): super().__init__(scope, id, **kwargs) @@ -118,6 +119,15 @@ def __init__( string_value=str(json.dumps(deploy_config.get_dataall_version())), description='Deployed data all version', ) + + aws_ssm.StringParameter( + self, + f'toolingAccountParam{envname}', + parameter_name=f'/dataall/{envname}/toolingAccount', + string_value=str(tooling_account_id), + description=f'Stores AWS account if for the tooling account that hosts the code for environment {envname}', + ) + if prod_sizing: cr.AwsCustomResource( self, diff --git a/deploy/stacks/pipeline.py b/deploy/stacks/pipeline.py index e933b9c96..0df007dfc 100644 --- a/deploy/stacks/pipeline.py +++ b/deploy/stacks/pipeline.py @@ -687,8 +687,6 @@ def set_approval_tests_stage( f'export TESTDATA=$(aws ssm get-parameter --name /dataall/{target_env["envname"]}/testdata --profile buildprofile --output text --query "Parameter.Value")', f'export ENVNAME={target_env["envname"]}', f'export AWS_REGION={target_env["region"]}', - 'export INTEGRATION_TESTS=True', - f'export TOOLING_ACCOUNT={self.account}', f'aws codeartifact login --tool pip --repository {self.codeartifact.codeartifact_pip_repo_name} --domain {self.codeartifact.codeartifact_domain_name} --domain-owner {self.codeartifact.domain.attr_owner}', 'python -m venv env', '. env/bin/activate', diff --git a/tests_new/integration_tests/core/environment/queries.py b/tests_new/integration_tests/core/environment/queries.py index 7b3cfbabd..e72243b49 100644 --- a/tests_new/integration_tests/core/environment/queries.py +++ b/tests_new/integration_tests/core/environment/queries.py @@ -61,6 +61,7 @@ def create_environment(client, name, group, organizationUri, awsAccountId, regio 'region': region, 'description': 'Created for integration testing', 'tags': tags, + 'type': 'IntegrationTesting', } }, 'query': f""" From 3e1959679ca09aea8feea828ede4f00cd5d0300d Mon Sep 17 00:00:00 2001 From: dlpzx Date: Wed, 3 Jul 2024 18:26:50 +0200 Subject: [PATCH 10/34] Error on cdk add_to_policy --- .../dataall/core/environment/cdk/environment_stack.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index caf04c6cb..f797c035e 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -580,15 +580,19 @@ def create_integration_tests_role(self): actions=['s3:CreateBucket', 's3:DeleteBucket'], effect=iam.Effect.ALLOW, resources=['*'], - ), + ) + ) + self.test_role.add_to_policy( iam.PolicyStatement( actions=['glue:createDatabase', 'glue:deleteDatabase'], effect=iam.Effect.ALLOW, resources=['*'], - ), + ) + ) + self.test_role.add_to_policy( iam.PolicyStatement( actions=['kms:CreateKey', 'kms:DeleteKey', 'kms:ListAliases'], effect=iam.Effect.ALLOW, resources=['*'], - ), + ) ) From 1256b5c675e830d43a3176966c3ddebc16d03e84 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Wed, 3 Jul 2024 12:51:33 -0400 Subject: [PATCH 11/34] fix to notebook tests --- tests_new/integration_tests/client.py | 4 +++- .../modules/notebooks/aws_clients.py | 22 +++++++++++------- .../modules/notebooks/global_conftest.py | 23 +++++++++++++++---- tests_new/integration_tests/requirements.txt | 1 + 4 files changed, 36 insertions(+), 14 deletions(-) diff --git a/tests_new/integration_tests/client.py b/tests_new/integration_tests/client.py index 9006fc264..8484fc3af 100644 --- a/tests_new/integration_tests/client.py +++ b/tests_new/integration_tests/client.py @@ -2,6 +2,7 @@ import boto3 import os from munch import DefaultMunch +from retrying import retry from integration_tests.errors import GqlError @@ -14,10 +15,11 @@ def __init__(self, username, password): self.password = password self.token = self._get_jwt_token() + @retry(stop_max_attempt_number=3, wait_random_min=1000, wait_random_max=3000) def query(self, query: str): graphql_endpoint = os.path.join(os.environ['API_ENDPOINT'], 'graphql', 'api') headers = {'AccessKeyId': 'none', 'SecretKey': 'none', 'authorization': self.token} - r = requests.post(graphql_endpoint, json=query, headers=headers) + r = requests.post(graphql_endpoint, json=query, headers=headers, timeout=200) r.raise_for_status() if errors := r.json().get('errors'): raise GqlError(errors) diff --git a/tests_new/integration_tests/modules/notebooks/aws_clients.py b/tests_new/integration_tests/modules/notebooks/aws_clients.py index de6413a19..c1c429758 100644 --- a/tests_new/integration_tests/modules/notebooks/aws_clients.py +++ b/tests_new/integration_tests/modules/notebooks/aws_clients.py @@ -45,10 +45,13 @@ def get_vpc_id_by_name(self, vpc_name: str) -> Optional[str]: return vpc_id def delete_vpc_by_name(self, vpc_name: str): - vpc_id = self.get_vpc_id_by_name(vpc_name) - if vpc_id: - self.delete_vpc(vpc_id) - return True + try: + vpc_id = self.get_vpc_id_by_name(vpc_name) + if vpc_id: + self.delete_vpc(vpc_id) + return True + except Exception as e: + log.error(f'Error deleting vpc {vpc_name=}. Error Message: {e}') def create_subnet(self, vpc_id: str, subnet_name: str, cidr: str) -> str: log.info('Creating subnet..') @@ -85,7 +88,10 @@ def delete_subnet(self, subnet_id: str) -> Dict[str, Any]: return response def delete_subnet_by_name(self, subnet_name: str): - subnet_id = self.get_subnet_id_by_name(subnet_name) - if subnet_id: - self.delete_subnet(subnet_id) - return True + try: + subnet_id = self.get_subnet_id_by_name(subnet_name) + if subnet_id: + self.delete_subnet(subnet_id) + return True + except Exception as e: + log.error(f'Error deleting subnet {subnet_name=}. Error Message: {e}') diff --git a/tests_new/integration_tests/modules/notebooks/global_conftest.py b/tests_new/integration_tests/modules/notebooks/global_conftest.py index e681bed70..2c3699136 100644 --- a/tests_new/integration_tests/modules/notebooks/global_conftest.py +++ b/tests_new/integration_tests/modules/notebooks/global_conftest.py @@ -26,16 +26,29 @@ def create_notebook(client, group, env_uri, vpc_id, subnet_id, tags=[], name='Te SubnetId=subnet_id, tags=tags, ) - check_stack_ready(client, env_uri, notebook.stack.stackUri) - return get_sagemaker_notebook(client, notebook.environmentUri) + check_stack_ready( + client=client, + env_uri=env_uri, + stack_uri=notebook.stack.stackUri, + target_uri=notebook.notebookUri, + target_type='notebook', + ) + return get_sagemaker_notebook(client, notebook.notebookUri) def delete_notebook(client, env_uri, notebook): - check_stack_ready(client, env_uri, notebook.stack.stackUri) + input_args = { + 'client': client, + 'env_uri': env_uri, + 'stack_uri': notebook.stack.stackUri, + 'target_uri': notebook.notebookUri, + 'target_type': 'notebook', + } + check_stack_ready(**input_args) try: delete_sagemaker_notebook(client, notebook.notebookUri) - check_stack_in_progress(client, env_uri, notebook.stack.stackUri) - return check_stack_ready(client, env_uri, notebook.stack.stackUri) + check_stack_in_progress(**input_args) + return check_stack_ready(**input_args) except GqlError: log.exception('unexpected error when deleting environment') return False diff --git a/tests_new/integration_tests/requirements.txt b/tests_new/integration_tests/requirements.txt index 69d909121..35da0738e 100644 --- a/tests_new/integration_tests/requirements.txt +++ b/tests_new/integration_tests/requirements.txt @@ -8,3 +8,4 @@ pytest-dependency==0.5.1 requests==2.32.2 dataclasses-json==0.6.6 werkzeug==3.0.3 +retrying==1.3.4 From d572ea0508d13f75258add3ea1eb324d68d9d705 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Wed, 3 Jul 2024 15:49:59 -0400 Subject: [PATCH 12/34] Finalize tests notebooks + add waiter for delete notebook stack --- .../integration_tests/core/stack/utils.py | 12 ++++++ .../modules/notebooks/global_conftest.py | 41 ++++++++++++------- 2 files changed, 38 insertions(+), 15 deletions(-) diff --git a/tests_new/integration_tests/core/stack/utils.py b/tests_new/integration_tests/core/stack/utils.py index 3608244ae..f04e9aecc 100644 --- a/tests_new/integration_tests/core/stack/utils.py +++ b/tests_new/integration_tests/core/stack/utils.py @@ -16,3 +16,15 @@ def check_stack_in_progress(client, env_uri, stack_uri, target_uri=None, target_ @poller(check_success=lambda stack: not is_stack_in_progress(stack), timeout=600) def check_stack_ready(client, env_uri, stack_uri, target_uri=None, target_type='environment'): return get_stack(client, env_uri, stack_uri, target_uri or env_uri, target_type) + + +def wait_stack_delete_complete(cf_client, stack_name): + # Wait for the stack to be deleted + waiter = cf_client.get_waiter('stack_delete_complete') + waiter.wait( + StackName=stack_name, + WaiterConfig={ + 'Delay': 20, # Delay between each poll request (in seconds) + 'MaxAttempts': 60, # Maximum number of attempts before giving up + }, + ) diff --git a/tests_new/integration_tests/modules/notebooks/global_conftest.py b/tests_new/integration_tests/modules/notebooks/global_conftest.py index 2c3699136..1919a6fc2 100644 --- a/tests_new/integration_tests/modules/notebooks/global_conftest.py +++ b/tests_new/integration_tests/modules/notebooks/global_conftest.py @@ -9,10 +9,15 @@ delete_sagemaker_notebook, list_sagemaker_notebooks, ) -from integration_tests.core.stack.utils import check_stack_ready, check_stack_in_progress +from integration_tests.core.stack.utils import check_stack_ready, check_stack_in_progress, wait_stack_delete_complete from integration_tests.modules.notebooks.aws_clients import VpcClient +from dataall.base.utils.naming_convention import ( + NamingConventionService, + NamingConventionPattern, +) + log = logging.getLogger(__name__) @@ -37,18 +42,15 @@ def create_notebook(client, group, env_uri, vpc_id, subnet_id, tags=[], name='Te def delete_notebook(client, env_uri, notebook): - input_args = { - 'client': client, - 'env_uri': env_uri, - 'stack_uri': notebook.stack.stackUri, - 'target_uri': notebook.notebookUri, - 'target_type': 'notebook', - } - check_stack_ready(**input_args) + check_stack_ready( + client=client, + env_uri=env_uri, + stack_uri=notebook.stack.stackUri, + target_uri=notebook.notebookUri, + target_type='notebook', + ) try: - delete_sagemaker_notebook(client, notebook.notebookUri) - check_stack_in_progress(**input_args) - return check_stack_ready(**input_args) + return delete_sagemaker_notebook(client, notebook.notebookUri) except GqlError: log.exception('unexpected error when deleting environment') return False @@ -61,14 +63,13 @@ def delete_notebook(client, env_uri, notebook): @pytest.fixture(scope='session') -def session_notebook1(client1, group1, org1, session_env1, session_id, session_env1_aws_client): +def session_notebook1(client1, group1, session_env1, session_id, session_env1_aws_client): resource_name = 'sessionnotebook1' notebook = None try: vpc_client = VpcClient(session=session_env1_aws_client, region=session_env1['region']) vpc_id = vpc_client.create_vpc(vpc_name=resource_name, cidr='172.31.0.0/26') subnet_id = vpc_client.create_subnet(vpc_id=vpc_id, subnet_name=resource_name, cidr='172.31.0.0/28') - notebook = create_notebook( client1, group=group1, @@ -81,6 +82,16 @@ def session_notebook1(client1, group1, org1, session_env1, session_id, session_e finally: if notebook: delete_notebook(client1, session_env1['environmentUri'], notebook) + stack_name = NamingConventionService( + target_label='notebook', + target_uri=notebook.notebookUri, + pattern=NamingConventionPattern.DEFAULT, + resource_prefix=session_env1['resourcePrefix'], + ).build_compliant_name() + wait_stack_delete_complete( + session_env1_aws_client.client('cloudformation', region_name=session_env1['region']), stack_name + ) + vpc_client = VpcClient(session=session_env1_aws_client, region=session_env1['region']) vpc_client.delete_subnet_by_name(resource_name) vpc_client.delete_vpc_by_name(resource_name) @@ -93,7 +104,7 @@ def session_notebook1(client1, group1, org1, session_env1, session_id, session_e @pytest.fixture(scope='function') -def temp_notebook1(client1, group1, org1, session_env1, session_id, session_env1_aws_client): +def temp_notebook1(client1, group1, session_env1, session_id, session_env1_aws_client): resource_name = 'tempnotebook1' notebook = None try: From 043c3ca3e0599e137dfe1401e46320801f7f9b33 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Wed, 3 Jul 2024 20:59:25 -0400 Subject: [PATCH 13/34] Limit retry exceptions --- tests_new/integration_tests/client.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests_new/integration_tests/client.py b/tests_new/integration_tests/client.py index 8484fc3af..319a13e74 100644 --- a/tests_new/integration_tests/client.py +++ b/tests_new/integration_tests/client.py @@ -3,7 +3,6 @@ import os from munch import DefaultMunch from retrying import retry - from integration_tests.errors import GqlError ENVNAME = os.getenv('ENVNAME', 'dev') @@ -15,11 +14,11 @@ def __init__(self, username, password): self.password = password self.token = self._get_jwt_token() - @retry(stop_max_attempt_number=3, wait_random_min=1000, wait_random_max=3000) + @retry(exceptions=requests.exceptions.ConnectionError, stop_max_attempt_number=3, wait_random_min=1000, wait_random_max=3000) def query(self, query: str): graphql_endpoint = os.path.join(os.environ['API_ENDPOINT'], 'graphql', 'api') headers = {'AccessKeyId': 'none', 'SecretKey': 'none', 'authorization': self.token} - r = requests.post(graphql_endpoint, json=query, headers=headers, timeout=200) + r = requests.post(graphql_endpoint, json=query, headers=headers) r.raise_for_status() if errors := r.json().get('errors'): raise GqlError(errors) From 2d4b10553caa6c029888821160ef45709a0e3425 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Wed, 3 Jul 2024 21:01:32 -0400 Subject: [PATCH 14/34] ruff --- backend/dataall/core/environment/cdk/environment_stack.py | 2 +- tests_new/integration_tests/client.py | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index eba828556..1c74d5bdd 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -603,4 +603,4 @@ def create_integration_tests_role(self): effect=iam.Effect.ALLOW, resources=['*'], ), - ) \ No newline at end of file + ) diff --git a/tests_new/integration_tests/client.py b/tests_new/integration_tests/client.py index 319a13e74..755595163 100644 --- a/tests_new/integration_tests/client.py +++ b/tests_new/integration_tests/client.py @@ -14,7 +14,12 @@ def __init__(self, username, password): self.password = password self.token = self._get_jwt_token() - @retry(exceptions=requests.exceptions.ConnectionError, stop_max_attempt_number=3, wait_random_min=1000, wait_random_max=3000) + @retry( + exceptions=requests.exceptions.ConnectionError, + stop_max_attempt_number=3, + wait_random_min=1000, + wait_random_max=3000, + ) def query(self, query: str): graphql_endpoint = os.path.join(os.environ['API_ENDPOINT'], 'graphql', 'api') headers = {'AccessKeyId': 'none', 'SecretKey': 'none', 'authorization': self.token} From 2ee12500e617eb87cbb05628b8ce36aa42ac082a Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Wed, 3 Jul 2024 21:16:27 -0400 Subject: [PATCH 15/34] fix IAM role env tests --- backend/dataall/core/environment/cdk/environment_stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index 1c74d5bdd..7b940b4c8 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -599,7 +599,7 @@ def create_integration_tests_role(self): self.test_role.add_to_policy( iam.PolicyStatement( - actions=['ec2:Describe*', 'ec2:*Vpc', 'ec2:*Subnet', 'ec2:*Route*'], + actions=['ec2:Describe*', 'ec2:*Vpc', 'ec2:*Subnet', 'ec2:*Route*', 'ec2:*Tags'], effect=iam.Effect.ALLOW, resources=['*'], ), From c05de67a38a94e5b1306c654184394d4f4df7a0a Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Wed, 3 Jul 2024 21:23:30 -0400 Subject: [PATCH 16/34] Add filter term include tags datasets --- .../modules/datasets_base/db/dataset_repositories.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/backend/dataall/modules/datasets_base/db/dataset_repositories.py b/backend/dataall/modules/datasets_base/db/dataset_repositories.py index 2ff9e396f..05dab4c93 100644 --- a/backend/dataall/modules/datasets_base/db/dataset_repositories.py +++ b/backend/dataall/modules/datasets_base/db/dataset_repositories.py @@ -62,10 +62,12 @@ def _query_all_user_datasets(session, username, groups, all_subqueries: List[Que query = all_subqueries[0].union(*all_subqueries[1:]) if filter and filter.get('term'): + term = filter['term'] query = query.filter( or_( - DatasetBase.description.ilike(filter.get('term') + '%%'), - DatasetBase.label.ilike(filter.get('term') + '%%'), + DatasetBase.description.ilike(term + '%%'), + DatasetBase.label.ilike(term + '%%'), + DatasetBase.tags.contains(f'{{{term}}}'), ) ) return query.order_by(DatasetBase.label).distinct(DatasetBase.datasetUri, DatasetBase.label) From 8f2a9185b22184a868b1bb3c59fc4380c5f21c77 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Wed, 3 Jul 2024 22:24:46 -0400 Subject: [PATCH 17/34] Add sample data and tests for dataset role access --- .../modules/s3_datasets/queries.py | 174 + .../sample_data/csv_table/books.csv | 11128 ++++++++++++++++ .../sample_data/folder1/pivotRole.yaml | 499 + .../sample_data/parquet_table/sample1.parquet | Bin 0 -> 1308 bytes .../modules/s3_datasets/test_s3_dataset.py | 77 +- 5 files changed, 11876 insertions(+), 2 deletions(-) create mode 100644 tests_new/integration_tests/modules/s3_datasets/sample_data/csv_table/books.csv create mode 100644 tests_new/integration_tests/modules/s3_datasets/sample_data/folder1/pivotRole.yaml create mode 100644 tests_new/integration_tests/modules/s3_datasets/sample_data/parquet_table/sample1.parquet diff --git a/tests_new/integration_tests/modules/s3_datasets/queries.py b/tests_new/integration_tests/modules/s3_datasets/queries.py index 0bc9f609b..f272cc9ef 100644 --- a/tests_new/integration_tests/modules/s3_datasets/queries.py +++ b/tests_new/integration_tests/modules/s3_datasets/queries.py @@ -204,3 +204,177 @@ def get_dataset(client, datasetUri): } response = client.query(query=query) return response.data.getDataset + + +def get_dataset_assume_role_url(client, datasetUri): + query = { + 'operationName': 'GetDatasetAssumeRoleUrl', + 'variables': {'datasetUri': datasetUri}, + 'query': f""" + query GetDatasetAssumeRoleUrl($datasetUri: String!) {{ + getDatasetAssumeRoleUrl(datasetUri: $datasetUri) + }} + """, + } + response = client.query(query=query) + return response.data.getDatasetAssumeRoleUrl + + +def generate_dataset_access_token(client, datasetUri): + query = { + 'operationName': 'GenerateDatasetAccessToken', + 'variables': {'datasetUri': datasetUri}, + 'query': f""" + mutation GenerateDatasetAccessToken($datasetUri: String!) {{ + generateDatasetAccessToken(datasetUri: $datasetUri) + }} + """, + } + response = client.query(query=query) + return response.data.generateDatasetAccessToken + + +def get_dataset_presigned_role_url(client, datasetUri, input): + query = { + 'operationName': 'GetDatasetPresignedUrl', + 'variables': {'datasetUri': datasetUri, 'input': input}, + 'query': f""" + query GetDatasetPresignedUrl( + $datasetUri: String! + $input: DatasetPresignedUrlInput + ) {{ + getDatasetPresignedUrl(datasetUri: $datasetUri, input: $input) + }} + """, + } + response = client.query(query=query) + return response.data.getDatasetPresignedUrl + + +def start_glue_Crawler(client, datasetUri, input): + query = { + 'operationName': 'StartGlueCrawler', + 'variables': {'datasetUri': datasetUri, 'input': input}, + 'query': f""" + mutation StartGlueCrawler($datasetUri: String, $input: CrawlerInput) {{ + startGlueCrawler(datasetUri: $datasetUri, input: $input) {{ + Name + AwsAccountId + region + status + }} + }} + """, + } + response = client.query(query=query) + return response.data.startGlueCrawler + + +def sync_tables(client, datasetUri): + query = { + 'operationName': 'SyncTables', + 'variables': {'datasetUri': datasetUri}, + 'query': f""" + mutation SyncTables($datasetUri: String!) {{ + syncTables(datasetUri: $datasetUri) {{ + count + nodes {{ + tableUri + GlueTableName + GlueDatabaseName + description + name + label + created + S3Prefix + dataset {{ + datasetUri + name + GlueDatabaseName + userRoleForDataset + }} + }} + }} + }} + """, + } + response = client.query(query=query) + return response.data.syncTables + + +def preview_table(client, tableUri): + query = { + 'operationName': 'PreviewTable', + 'variables': {'tableUri': tableUri}, + 'query': f""" + query PreviewTable($tableUri: String!) {{ + previewTable(tableUri: $tableUri) {{ + rows + fields + }} + }} + """, + } + response = client.query(query=query) + return response.data.previewTable + + +def start_dataset_profiling_run(client, input): + query = { + 'operationName': 'startDatasetProfilingRun', + 'variables': {'input': input}, + 'query': f""" + mutation startDatasetProfilingRun($input: StartDatasetProfilingRunInput!) {{ + startDatasetProfilingRun(input: $input) {{ + profilingRunUri + }} + }} + """, + } + response = client.query(query=query) + return response.data.startDatasetProfilingRun + + +def delete_table(client, tableUri): + query = { + 'operationName': 'deleteDatasetTable', + 'variables': {'tableUri': tableUri}, + 'query': f""" + mutation deleteDatasetTable($tableUri: String!) {{ + deleteDatasetTable(tableUri: $tableUri) + }} + """, + } + response = client.query(query=query) + return response.data.deleteDatasetTable + + +def add_folder(client, datasetUri, input): + query = { + 'operationName': 'CreateDatasetStorageLocation', + 'variables': {'datasetUri': datasetUri, 'input': input}, + 'query': f""" + mutation CreateDatasetStorageLocation($datasetUri: String!, $input: NewDatasetStorageLocationInput) {{ + createDatasetStorageLocation(datasetUri: $datasetUri, input: $input) {{ + locationUri + S3Prefix + }} + }} + """, + } + response = client.query(query=query) + return response.data.createDatasetStorageLocation + + +def delete_folder(client, locationUri): + query = { + 'operationName': 'DeleteDatasetStorageLocation', + 'variables': {'locationUri': locationUri}, + 'query': f""" + mutation DeleteDatasetStorageLocation($locationUri: String!) {{ + deleteDatasetStorageLocation(locationUri: $locationUri) + }} + """, + } + response = client.query(query=query) + return response.data.deleteDatasetStorageLocation diff --git a/tests_new/integration_tests/modules/s3_datasets/sample_data/csv_table/books.csv b/tests_new/integration_tests/modules/s3_datasets/sample_data/csv_table/books.csv new file mode 100644 index 000000000..d64842a89 --- /dev/null +++ b/tests_new/integration_tests/modules/s3_datasets/sample_data/csv_table/books.csv @@ -0,0 +1,11128 @@ +bookID,title,authors,average_rating,isbn,isbn13,language_code, num_pages,ratings_count,text_reviews_count,publication_date,publisher +1,Harry Potter and the Half-Blood Prince (Harry Potter #6),J.K. Rowling/Mary GrandPré,4.57,0439785960,9780439785969,eng,652,2095690,27591,9/16/2006,Scholastic Inc. +2,Harry Potter and the Order of the Phoenix (Harry Potter #5),J.K. Rowling/Mary GrandPré,4.49,0439358078,9780439358071,eng,870,2153167,29221,9/1/2004,Scholastic Inc. +4,Harry Potter and the Chamber of Secrets (Harry Potter #2),J.K. Rowling,4.42,0439554896,9780439554893,eng,352,6333,244,11/1/2003,Scholastic +5,Harry Potter and the Prisoner of Azkaban (Harry Potter #3),J.K. Rowling/Mary GrandPré,4.56,043965548X,9780439655484,eng,435,2339585,36325,5/1/2004,Scholastic Inc. +8,Harry Potter Boxed Set Books 1-5 (Harry Potter #1-5),J.K. Rowling/Mary GrandPré,4.78,0439682584,9780439682589,eng,2690,41428,164,9/13/2004,Scholastic +9,Unauthorized Harry Potter Book Seven News: "Half-Blood Prince" Analysis and Speculation,W. Frederick Zimmerman,3.74,0976540606,9780976540601,en-US,152,19,1,4/26/2005,Nimble Books +10,Harry Potter Collection (Harry Potter #1-6),J.K. Rowling,4.73,0439827604,9780439827607,eng,3342,28242,808,9/12/2005,Scholastic +12,The Ultimate Hitchhiker's Guide: Five Complete Novels and One Story (Hitchhiker's Guide to the Galaxy #1-5),Douglas Adams,4.38,0517226952,9780517226957,eng,815,3628,254,11/1/2005,Gramercy Books +13,The Ultimate Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1-5),Douglas Adams,4.38,0345453743,9780345453747,eng,815,249558,4080,4/30/2002,Del Rey Books +14,The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1),Douglas Adams,4.22,1400052920,9781400052929,eng,215,4930,460,8/3/2004,Crown +16,The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1),Douglas Adams/Stephen Fry,4.22,0739322206,9780739322208,eng,6,1266,253,3/23/2005,Random House Audio +18,The Ultimate Hitchhiker's Guide (Hitchhiker's Guide to the Galaxy #1-5),Douglas Adams,4.38,0517149257,9780517149256,eng,815,2877,195,1/17/1996,Wings Books +21,A Short History of Nearly Everything,Bill Bryson,4.21,076790818X,9780767908184,eng,544,248558,9396,9/14/2004,Broadway Books +22,Bill Bryson's African Diary,Bill Bryson,3.44,0767915062,9780767915069,eng,55,7270,499,12/3/2002,Broadway Books +23,Bryson's Dictionary of Troublesome Words: A Writer's Guide to Getting It Right,Bill Bryson,3.87,0767910435,9780767910439,eng,256,2088,131,9/14/2004,Broadway Books +24,In a Sunburned Country,Bill Bryson,4.07,0767903862,9780767903868,eng,335,72451,4245,5/15/2001,Broadway Books +25,I'm a Stranger Here Myself: Notes on Returning to America After Twenty Years Away,Bill Bryson,3.90,076790382X,9780767903820,eng,304,49240,2211,6/28/2000,Broadway Books +26,The Lost Continent: Travels in Small Town America,Bill Bryson,3.83,0060920084,9780060920081,eng,299,45712,2257,8/28/1990,William Morrow Paperbacks +27,Neither Here nor There: Travels in Europe,Bill Bryson,3.86,0380713802,9780380713806,eng,254,48701,2238,3/28/1993,William Morrow Paperbacks +28,Notes from a Small Island,Bill Bryson,3.91,0380727501,9780380727506,eng,324,80609,3301,5/28/1997,William Morrow Paperbacks +29,The Mother Tongue: English and How It Got That Way,Bill Bryson,3.93,0380715430,9780380715435,eng,270,28489,2085,9/28/1991,William Morrow Paperbacks +30,J.R.R. Tolkien 4-Book Boxed Set: The Hobbit and The Lord of the Rings,J.R.R. Tolkien,4.59,0345538374,9780345538376,eng,1728,101233,1550,9/25/2012,Ballantine Books +31,The Lord of the Rings (The Lord of the Rings #1-3),J.R.R. Tolkien,4.50,0618517650,9780618517657,eng,1184,1710,91,10/21/2004,Houghton Mifflin Harcourt +34,The Fellowship of the Ring (The Lord of the Rings #1),J.R.R. Tolkien,4.36,0618346252,9780618346257,eng,398,2128944,13670,9/5/2003,Houghton Mifflin Harcourt +35,The Lord of the Rings (The Lord of the Rings #1-3),J.R.R. Tolkien/Alan Lee,4.50,0618260587,9780618260584,en-US,1216,1618,140,10/1/2002,Houghton Mifflin Harcourt +36,The Lord of the Rings: Weapons and Warfare,Chris Smith/Christopher Lee/Richard Taylor,4.53,0618391002,9780618391004,eng,218,19822,46,11/5/2003,Houghton Mifflin Harcourt +37,The Lord of the Rings: Complete Visual Companion,Jude Fisher,4.50,0618510826,9780618510825,eng,224,359,6,11/15/2004,Houghton Mifflin Harcourt +45,Agile Web Development with Rails: A Pragmatic Guide,Dave Thomas/David Heinemeier Hansson/Leon Breedt/Mike Clark/Thomas Fuchs/Andreas Schwarz,3.84,097669400X,9780976694007,eng,558,1430,59,7/28/2005,Pragmatic Bookshelf +50,Hatchet (Brian's Saga #1),Gary Paulsen,3.72,0689840926,9780689840920,eng,208,270244,12017,4/1/2000,Atheneum Books for Young Readers: Richard Jackson Books +51,Hatchet: A Guide for Using "Hatchet" in the Classroom,Donna Ickes/Edward Sciranko/Keith Vasconcelles,4.00,1557344493,9781557344496,eng,48,36,2,8/28/1994,Teacher Created Resources +53,Guts: The True Stories behind Hatchet and the Brian Books,Gary Paulsen,3.88,0385326505,9780385326506,eng,144,2067,334,1/23/2001,Delacorte Press +54,Molly Hatchet - 5 of the Best,Molly Hatchet,4.33,1575606240,9781575606248,eng,56,6,0,6/10/2003,Cherry Lane Music Company +55,Hatchet Jobs: Writings on Contemporary Fiction,Dale Peck,3.45,1595580271,9781595580276,en-US,228,99,16,11/1/2005,The New Press +57,A Changeling for All Seasons (Changeling Seasons #1),Angela Knight/Sahara Kelly/Judy Mays/Marteeka Karland/Kate Douglas/Shelby Morgen/Lacey Savage/Kate Hill/Willa Okati,3.76,1595962808,9781595962805,eng,304,167,4,11/1/2005,Changeling Press +58,Changeling (Changeling #1),Delia Sherman,3.60,0670059676,9780670059676,eng,256,978,111,8/17/2006,Viking Juvenile +59,The Changeling Sea,Patricia A. McKillip,4.06,0141312629,9780141312620,eng,137,4454,302,4/14/2003,Firebird +61,The Changeling,Zilpha Keatley Snyder,4.17,0595321801,9780595321803,eng,228,1176,96,6/8/2004,iUniverse +63,The Changeling,Kate Horsley,3.55,1590301943,9781590301944,eng,339,301,43,4/12/2005,Shambhala +66,The Changeling (Daughters of England #15),Philippa Carr,3.98,0449146979,9780449146972,eng,369,345,12,8/28/1990,Ivy Books +67,The Known World,Edward P. Jones,3.83,0061159174,9780061159176,eng,388,29686,2626,8/29/2006,Amistad +68,The Known World,Edward P. Jones/Kevin R. Free,3.83,006076273X,9780060762735,en-US,14,55,12,6/15/2004,HarperAudio +69,The Known World,Edward P. Jones,3.83,0060749911,9780060749910,eng,576,22,3,6/15/2004,Harper +71,Traders Guns & Money: Knowns and Unknowns in the Dazzling World of Derivatives,Satyajit Das,3.83,0273704745,9780273704744,eng,334,1456,82,5/15/2006,FT Press +72,Artesia: Adventures in the Known World,Mark Smylie,4.13,1932386106,9781932386103,eng,352,52,4,12/14/2005,Archaia +74,The John McPhee Reader (John McPhee Reader #1),John McPhee/William Howarth,4.42,0374517193,9780374517199,eng,416,562,37,6/1/1982,Farrar Straus and Giroux +75,Uncommon Carriers,John McPhee,3.95,0374280398,9780374280390,en-US,248,1630,203,5/16/2006,Farrar Straus Giroux +76,Heirs of General Practice,John McPhee,4.17,0374519749,9780374519742,eng,128,268,22,4/1/1986,Farrar Straus and Giroux +77,The Control of Nature,John McPhee,4.24,0374522596,9780374522599,en-US,288,3498,305,9/1/1990,Farrar Straus and Giroux +78,Annals of the Former World,John McPhee,4.34,0374518734,9780374518738,eng,720,3115,228,1/6/1999,Farrar Straus and Giroux +79,Coming Into the Country,John McPhee,4.22,0374522871,9780374522872,eng,448,5704,261,4/1/1991,Farrar Straus and Giroux +80,La Place de la Concorde Suisse,John McPhee,3.92,0374519323,9780374519322,fre,160,698,52,4/1/1994,Farrar Straus and Giroux +81,Giving Good Weight,John McPhee,4.23,0374516006,9780374516000,eng,288,542,36,4/1/1994,Farrar Straus and Giroux +83,Rising from the Plains,John McPhee,4.23,0374520658,9780374520656,eng,208,1341,98,11/1/1987,Farrar Straus and Giroux +85,The Heidi Chronicles,Wendy Wasserstein,3.75,0822205106,9780822205104,eng,81,1423,70,3/1/2002,Dramatists Play Service +86,The Heidi Chronicles: Uncommon Women and Others & Isn't It Romantic,Wendy Wasserstein,3.84,0679734996,9780679734994,eng,249,2766,64,7/2/1991,Vintage +89,Active Literacy Across the Curriculum: Strategies for Reading Writing Speaking and Listening,Heidi Hayes Jacobs,3.94,1596670231,9781596670235,eng,138,31,1,3/29/2006,Routledge +90,Simply Beautiful Beaded Jewelry,Heidi Boyd,3.77,1581807740,9781581807745,en-US,128,62,4,3/14/2006,North Light Books +91,Always Enough: God's Miraculous Provision Among the Poorest Children on Earth,Heidi Baker/Rolland Baker,4.46,0800793617,9780800793616,eng,192,860,53,9/1/2003,Chosen Books +92,Mapping the Big Picture: Integrating Curriculum & Assessment K-12,Heidi Hayes Jacobs,3.68,0871202867,9780871202864,en-US,108,77,2,1/28/1997,Association for Supervision & Curriculum Development +93,Heidi (Heidi #1-2),Johanna Spyri/Beverly Cleary/Angelo Rinaldi,3.99,0753454947,9780753454947,eng,352,153317,2257,11/15/2002,Kingfisher +94,Getting Results with Curriculum Mapping,Heidi Hayes Jacobs,3.25,0871209993,9780871209993,eng,192,55,5,11/15/2004,ASCD +96,There's Always Enough: The Miraculous Move of God in Mozambique,Rolland Baker/Heidi Baker,4.46,1852402873,9781852402877,eng,192,34,6,4/28/2003,Sovereign World +98,What to Expect the First Year (What to Expect),Heidi Murkoff/Sharon Mazel/Arlene Eisenberg/Sandee Hathaway/Mark D. Widome,3.89,0761129588,9780761129585,eng,832,11797,659,10/16/2003,Workman Publishing Company +99,The Player's Handbook: The Ultimate Guide on Dating and Relationships,Heidi Fleiss/Libby Keatinge,3.82,0972016414,9780972016414,eng,123,34,8,5/10/2004,One Hour Entertainment +100,Simply Beautiful Beading: 53 Quick and Easy Projects,Heidi Boyd,3.78,1581805632,9781581805635,en-US,128,78,4,8/19/2004,North Light Books +103,God Emperor of Dune (Dune Chronicles #4),Frank Herbert,3.84,0441294677,9780441294671,eng,423,2785,166,6/15/1987,Ace Books +105,Chapterhouse: Dune (Dune Chronicles #6),Frank Herbert,3.91,0441102670,9780441102679,eng,436,38778,568,7/1/1987,Ace Books +106,Dune Messiah (Dune Chronicles #2),Frank Herbert,3.88,0441172695,9780441172696,eng,331,97494,2359,7/15/1987,Ace Books +107,Dreamer of Dune: The Biography of Frank Herbert,Brian Herbert,4.01,0765306476,9780765306470,en-US,592,784,21,7/1/2004,Tor Books +109,Heretics of Dune (Dune Chronicles #5),Frank Herbert,3.86,0399128980,9780399128981,eng,480,272,20,4/16/1984,Putnam +110,The Road to Dune,Frank Herbert/Brian Herbert/Kevin J. Anderson,3.88,0765353709,9780765353702,eng,426,4789,83,8/29/2006,Tor Science Fiction +117,Heretics of Dune (Dune Chronicles #5),Frank Herbert,3.86,0441328008,9780441328000,eng,471,45388,644,8/15/1987,Ace Books +119,The Lord of the Rings: The Art of the Fellowship of the Ring,Gary Russell,4.59,0618212906,9780618212903,eng,192,26153,102,6/12/2002,Houghton Mifflin Harcourt +122,The Power of One (The Power of One #1),Bryce Courtenay,4.35,034541005X,9780345410054,eng,544,69167,4551,9/29/1996,Ballantine Books +123,The Power of One (The Power of One #1),Bryce Courtenay,4.35,0385732546,9780385732543,eng,291,45,13,9/13/2005,Delacorte Books for Young Readers +129,The Power of One: One Person One Rule One Month,John C. Maxwell/Stephen R. Graves/Thomas G. Addington,4.28,0785260056,9780785260059,en-US,256,16,1,11/1/2004,Thomas Nelson +130,Power of an Hour: Business and Life Mastery in One Hour a Week,Dave Lakhani,3.34,0471780936,9780471780939,eng,205,174,16,5/19/2006,Wiley +131,The Power of One: The Solo Play for Playwrights Actors and Directors,Louis E. Catron,3.67,0325001537,9780325001531,eng,240,10,0,2/7/2000,Heinemann Drama +132,How to Buy Sell & Profit on eBay: Kick-Start Your Home-Based Business in Just Thirty Days,Adam Ginsberg,3.48,006076287X,9780060762872,eng,336,76,9,5/3/2005,William Morrow Paperbacks +133,eBay for Dummies,Marsha Collier,3.50,0470045299,9780470045299,eng,386,111,9,10/30/2006,Wiley +135,What to Sell on ebay and Where to Get It: The Definitive Guide to Product Sourcing for eBay and Beyond,Chris Malta/Lisa Suttora,3.62,0072262788,9780072262780,eng,260,24,0,1/24/2006,McGraw-Hill +137,Starting an eBay Business for Dummies,Marsha Collier,3.55,0764569244,9780764569241,eng,384,55,4,9/17/2004,Wiley +138,eBay: Top 100 Simplified Tips & Tricks,Julia Wilkinson,4.27,0471933821,9780471933823,eng,260,9,0,6/6/2006,Wiley +139,ebay Timesaving Techniques for Dummies,Marsha Collier,3.39,0764559915,9780764559914,en-US,391,22,1,5/31/2004,Wiley +140,eBay Business All-in-One Desk Reference for Dummies,Marsha Collier,3.89,0764584383,9780764584381,en-US,864,17,3,4/25/2005,Wiley +141,Ruby Cookbook,Lucas Carlson/Leonard Richardson,3.84,0596523696,9780596523695,eng,873,166,4,7/29/2006,O'Reilly Media +142,Ruby Ann's Down Home Trailer Park Cookbook,Ruby Ann Boxcar,4.12,0806523492,9780806523491,eng,240,50,5,5/3/2005,Citadel +144,Ruby Ann's Down Home Trailer Park BBQin' Cookbook,Ruby Ann Boxcar,4.08,0806525363,9780806525365,eng,206,13,2,5/3/2005,Citadel +147,Rails Cookbook: Recipes for Rapid Web Development with Ruby,Rob Orsini,3.48,0596527314,9780596527310,eng,514,64,1,1/1/2007,O'Reilly Media +151,Anna Karenina,Leo Tolstoy/Richard Pevear/Larissa Volokhonsky,4.05,0143035002,9780143035008,eng,838,16643,1851,5/31/2004,Penguin Classics +152,Anna Karenina,Leo Tolstoy/David Magarshack/Priscilla Meyer,4.05,0451528611,9780451528612,eng,960,109420,5696,11/5/2002,Signet +153,Anna Karenina,Leo Tolstoy/Richard Pevear/Larissa Volokhonsky/John Bayley,4.05,0140449175,9780140449174,eng,837,2904,309,1/30/2003,Penguin Books +154,CliffsNotes on Tolstoy's Anna Karenina,Marianne Sturman/Leo Tolstoy,3.85,0822001837,9780822001836,eng,80,16,3,11/26/1965,Cliffs Notes +155,Anna Karenina,Leo Tolstoy/Amy Mandelker/Constance Garnett,4.05,1593080271,9781593080273,eng,803,9564,726,7/1/2003,Barnes & Noble Classics +156,Anna Karenina,Leo Tolstoy/Louise Maude/Aylmer Maude,4.05,0486437965,9780486437965,eng,752,474,72,11/23/2004,Dover Publications +157,Anna Karenina,Leo Tolstoy/Constance Garnett/Amy Mandelker,4.05,1593081774,9781593081775,eng,803,303,48,8/26/2004,Barnes & Noble +159,Dinner with Anna Karenina,Gloria Goldreich,2.99,0778322270,9780778322276,eng,360,411,65,1/28/2006,Mira Books +160,Tolstoy: Anna Karenina,Anthony Thorlby,4.19,0521313252,9780521313254,eng,128,1204,33,11/26/1987,Cambridge University Press +162,Untouchable,Mulk Raj Anand/E.M. Forster,3.71,0140183957,9780140183955,eng,160,3429,279,7/3/1990,Penguin Books +163,The Untouchable,John Banville,3.95,0679767479,9780679767473,eng,367,2163,216,6/30/1998,Vintage +164,The Untouchables,Eliot Ness/Oscar Fraley,3.89,1568491980,9781568491981,eng,256,613,31,2/1/1996,Buccaneer Books +165,Untouchables: My Family's Triumphant Journey Out of the Caste System in Modern India,Narendra Jadhav,3.82,0743270797,9780743270793,en-US,320,308,40,9/27/2005,Scribner +166,Dalit: The Black Untaouchables of India,V.T. Rajshekar/Y.N. Kly,4.20,0932863051,9780932863058,eng,100,10,0,1/28/1995,Clarity Press +168,Growing Up Untouchable in India: A Dalit Autobiography,Vasant Moon/Gail Omvedt/Eleanor Zelliot,3.65,0742508803,9780742508804,eng,224,16,4,12/20/2000,Rowman & Littlefield Publishers +171,The Evidence-Based Social Work Skills Book,Barry R. Cournoyer,3.40,0205358624,9780205358625,eng,216,10,0,9/22/2003,Pearson +177,A Wrinkle in Time: A Guide for Using "A Wrinkle in Time" in the Classroom,John Carratello/Patty Carratello/Theresa Wright,4.00,1557344035,9781557344038,eng,48,17,0,9/28/1991,Teacher Created Resources +180,Wrinkles in Time,George Smoot/Keay Davidson,4.01,0380720442,9780380720446,eng,360,1035,23,10/1/1994,Harper Perennial +181,A Wrinkle in Time: With Related Readings (A Wrinkle in Time Quintet #1),Madeleine L'Engle,4.00,0821925326,9780821925324,eng,250,36,6,5/1/2002,EMC/Paradigm Publishing +182,Literature Circle Guide: A Wrinkle in Time,Tara MacCarthy,3.60,043927169X,9780439271691,eng,32,15,0,1/1/2002,Teaching Resources +201,Una arruga en el tiempo – A Wrinkle in Time,Madeleine L'Engle,4.00,0606105263,9780606105262,spa,205,6,1,6/1/1984,Turtleback Books +204,The Long Shadow (The Morland Dynasty #6),Cynthia Harrod-Eagles,4.12,0751506435,9780751506433,eng,367,376,17,6/1/1994,Little Brown Book Group +205,A Long Shadow (Inspector Ian Rutledge #8),Charles Todd,4.11,006078671X,9780060786717,eng,352,3086,237,1/3/2006,William Morrow +207,Long Way Round: Chasing Shadows Across the World,Ewan McGregor/Charley Boorman/Robert Uhlig,3.94,0743499344,9780743499347,en-US,320,352,44,11/1/2005,Atria Books +208,A Shadow in Summer (Long Price Quartet #1),Daniel Abraham,3.60,0765313405,9780765313409,eng,331,9852,633,3/7/2006,Tor Books +213,New Hope for the Dead (Hoke Mosely #2),Charles Willeford/James Lee Burke,3.90,1400032490,9781400032495,eng,244,821,78,8/10/2004,Vintage Crime/Black Lizard +214,Sideswipe: A Hoke Moseley Novel,Charles Willeford/Lawrence Block,4.05,1400032482,9781400032488,eng,215,731,72,3/8/2005,Vintage Crime/Black Lizard +216,Miami Blues (Hoke Moseley #1),Charles Willeford/Elmore Leonard,3.94,1400032466,9781400032464,eng,191,2897,178,8/10/2004,Vintage Crime/Black Lizard +230,The Burnt Orange Heresy (Vintage Crime/Black Lizard),Charles Willeford,3.89,0679732527,9780679732525,eng,144,98,11,10/3/1990,Vintage +231,I am Charlotte Simmons,Tom Wolfe,3.42,0312424442,9780312424442,eng,738,20888,1688,8/30/2005,Picador USA +237,Poetry for Young People: Edward Lear,Edward Lear/Laura Huliska-Beith/Edward Mendelson,3.91,0806930772,9780806930770,eng,48,66,19,10/1/2001,Sterling +244,The Puffin Book of Nonsense Verse,Quentin Blake,4.02,0140366601,9780140366600,eng,287,81,6,10/3/1996,Puffin +245,Henry Miller on Writing,Henry Miller/Thomas H. Moore,4.22,0811201120,9780811201124,eng,217,981,52,2/1/1964,New Directions Publishing +247,Quiet Days in Clichy,Henry Miller,3.69,080213016X,9780802130167,eng,154,3381,141,1/13/1994,Grove Press +249,Tropic of Cancer,Henry Miller/Jiří Níl,3.68,0802131786,9780802131782,eng,318,53206,2376,1/6/1994,Grove Press +250,Tropic of Capricorn,Henry Miller,3.78,0802151825,9780802151827,eng,348,14872,459,1/13/1994,Grove Press +251,Nexus (The Rosy Crucifixion #3),Henry Miller,4.10,0802151787,9780802151780,eng,316,3261,58,1/13/1994,Grove Press +252,Sexus (The Rosy Crucifixion #1),Henry Miller,3.98,0802151809,9780802151803,eng,506,7805,251,1/12/1994,Grove Press +253,The Air-Conditioned Nightmare,Henry Miller,3.83,0811201066,9780811201063,eng,292,2699,142,1/17/1970,New Directions +264,The Portrait of a Lady,Henry James/Patricia Crick,3.78,0141439637,9780141439631,eng,797,61640,1951,9/30/2003,Penguin Classics +269,The Portrait of a Lady,Henry James/Gabriel Brownstein/Mary Cregan,3.78,1593080964,9781593080969,eng,635,392,41,1/16/2004,Barnes Noble Classics +277,Writing,Marguerite Duras,3.75,1571290532,9781571290533,eng,91,778,44,5/6/1999,Brookline Books +278,The War,Marguerite Duras/Barbara Bray,3.85,1565842219,9781565842212,eng,192,963,65,8/1/1994,The New Press +280,The Ravishing of Lol Stein,Marguerite Duras/Richard Seever,3.66,0394743040,9780394743042,en-US,181,2057,128,3/12/1986,Pantheon +285,Love Letters,Kahlil Gibran/Suheil Bushrui/Salma H. Al-Kuzbari,3.68,1851681825,9781851681822,eng,178,203,8,7/1/1999,One World (UK) +288,Kahlil Gibran: His Life and World,Jean Gibran/جبران خليل جبران/Kahlil Gibran,4.21,156656249X,9781566562492,eng,464,35,2,4/1/1998,Interlink Publishing Group +289,The Beloved: Reflections on the Path of the Heart,Kahlil Gibran/John Walbridge/Robin Waterfield,4.19,014019553X,9780140195538,eng,102,328,16,1/1/1998,Penguin Books +290,Jesus the Son of Man,Kahlil Gibran/جبران خليل جبران,3.98,0394431243,9780394431246,eng,216,1308,82,2/21/1995,Knopf +291,The Broken Wings,Kahlil Gibran/جبران خليل جبران/Anthony Rizcallah Ferris,3.92,0806501901,9780806501901,eng,132,6432,517,3/3/2003,Citadel +292,Sand and Foam,Kahlil Gibran/جبران خليل جبران,4.08,067943920X,9780679439202,eng,100,3015,217,6/14/2011,Knopf +295,Treasure Island,Robert Louis Stevenson,3.83,0753453800,9780753453803,eng,311,318753,6734,9/15/2001,Kingfisher +296,Treasure Island,Robert Louis Stevenson/Scott McKowen,3.83,1402714572,9781402714573,en-US,213,420,42,10/1/2004,Sterling Children's Books +297,Treasure Island,Robert Louis Stevenson,3.83,1416500294,9781416500292,eng,245,5967,276,6/1/2005,Simon & Schuster +298,Treasure Island,Robert Louis Stevenson/N.C. Wyeth/Timothy Meis,3.83,0689854684,9780689854682,eng,64,104,14,7/1/2003,Atheneum Books for Young Readers +299,Treasure Island,Robert Louis Stevenson/Milo Winter,3.83,0517221144,9780517221143,en-US,272,56,4,9/3/2002,Gramercy Books +302,Treasure Island (Great Illustrated Classics),Deidre S. Laiken/A.J. McAllister/Robert Louis Stevenson,4.05,1577658051,9781577658054,eng,232,91,16,1/31/2006,Abdo Publishing Company +313,100 Years of Lynchings,Ralph Ginzburg,4.61,0933121180,9780933121188,eng,270,88,4,11/22/1996,Black Classic Press +324,Cien años de soledad,Gabriel García Márquez,4.07,0785950109,9780785950103,spa,448,63,7,1/1/1990,French & European +330,On Beyond Zebra!,Dr. Seuss,4.04,0394800842,9780394800844,eng,64,2815,164,9/12/1955,Random House Books for Young Readers +332,The Wedding Clause,Debbie Raleigh,3.60,0821778250,9780821778258,eng,256,95,13,6/7/2005,Zebra +333,The Zebra Wall,Kevin Henkes,3.44,0060733039,9780060733032,eng,147,217,24,2/15/2005,Greenwillow Books +337,El perfume: Historia de un asesino,Patrick Süskind,4.02,8432216062,9788432216060,spa,239,4136,255,6/1/2002,Booket +348,The Door Into Summer,Robert A. Heinlein,4.01,0345413997,9780345413994,eng,304,17232,649,6/17/1997,Del Rey +350,Stranger in a Strange Land,Robert A. Heinlein,3.92,0441788386,9780441788385,eng,528,251872,6241,10/1/1991,Ace +354,To Sail Beyond the Sunset,Robert A. Heinlein,3.87,0441748600,9780441748600,en-US,434,10293,193,6/1/1988,Ace Books +355,Job: A Comedy of Justice,Robert A. Heinlein,3.78,0345316509,9780345316509,en-US,439,15970,438,10/12/1985,Del Rey +356,Time for the Stars (Heinlein's Juveniles #10),Robert A. Heinlein,3.97,0765314932,9780765314932,eng,256,6898,200,8/8/2006,Tor Books +357,The Long Dark Tea-Time of the Soul (Dirk Gently #2),Douglas Adams,4.06,0671742515,9780671742515,en-US,307,67803,1401,2/15/1991,Pocket Books +359,The Salmon of Doubt (Dirk Gently #3),Douglas Adams,3.93,0345455290,9780345455291,eng,298,22091,746,4/26/2005,Del Rey +362,Wish You Were Here: The Official Biography of Douglas Adams,Nick Webb,4.14,0345476514,9780345476517,eng,368,2623,49,12/27/2005,Del Rey +367,Douglas Adams's Starship Titanic,Terry Jones,3.60,0345368436,9780345368430,eng,256,885,84,10/27/1998,Ballantine Books +377,Salmon of Doubt: Hitchhiking the Galaxy One Last Time,Douglas Adams/Christopher Cerf,3.93,1417622857,9781417622856,eng,336,5,0,7/1/2003,Turtleback Books +382,The Phantom Tollbooth: A Children's Play in Two Acts,Susan Nanus/Norton Juster,4.13,0573650969,9780573650963,eng,72,100,13,1/12/2011,Samuel French Inc. +385,On Bullshit,Harry G. Frankfurt,3.57,0691122946,9780691122946,eng,67,9358,995,1/30/2005,Princeton University Press +386,Another Bullshit Night in Suck City,Nick Flynn,3.78,0393329402,9780393329407,eng,347,9318,907,9/12/2005,W. W. Norton & Company +394,Lincoln at Gettysburg: The Words That Remade America,Garry Wills,4.14,0671867423,9780671867423,en-US,317,120,15,6/12/1993,Simon & Schuster +397,The Gettysburg Address,Abraham Lincoln/Michael McCurdy,4.53,0395883970,9780395883976,eng,32,5239,76,2/2/1998,HMH Books for Young Readers +399,Underworld,Don DeLillo,3.92,0684848155,9780684848150,eng,827,1505,175,7/9/1998,Scribner +400,Libra,Don DeLillo,3.99,0140156046,9780140156041,eng,480,11857,564,5/1/1991,Penguin +403,Americana,Don DeLillo,3.43,0140119485,9780140119480,eng,377,393,55,7/6/1989,Penguin Books +404,Running Dog,Don DeLillo,3.43,0679722947,9780679722946,eng,256,1356,72,7/17/1989,Vintage Contemporaries +406,Cosmopolis,Don DeLillo,3.22,0743244257,9780743244251,eng,224,460,41,4/6/2004,Scribner +407,Great Jones Street,Don DeLillo,3.48,0140179178,9780140179170,eng,272,2492,145,1/1/1994,Penguin Books +408,The Names,Don DeLillo,3.64,0679722955,9780679722953,eng,339,3100,212,7/17/1989,Vintage +409,Against the Day,Thomas Pynchon,4.13,159420120X,9781594201202,eng,1085,5296,587,11/21/2006,Penguin Press +410,V.,Thomas Pynchon,3.96,0060930217,9780060930219,eng,547,1415,177,7/5/2005,Harper Perennial Modern Classics +411,The Crying of Lot 49,Thomas Pynchon,3.69,0060931671,9780060931674,eng,152,2161,230,4/1/1999,Harper Perennial +412,Gravity's Rainbow,Thomas Pynchon,4.01,0140283382,9780140283389,eng,784,762,213,1/1/2000,Penguin Books +413,Mason & Dixon,Thomas Pynchon/Christophe Claro/Brice Matthieussent,4.07,0312423209,9780312423209,eng,773,8086,602,1/3/2004,Picador USA +414,Vineland,Thomas Pynchon,3.69,0141180633,9780141180632,en-US,385,702,69,9/1/1997,Penguin Classics +415,Gravity's Rainbow,Thomas Pynchon,4.01,0143039946,9780143039945,eng,776,29764,2164,10/31/2006,Penguin Books +416,Slow Learner: Early Stories,Thomas Pynchon,3.50,0316724432,9780316724432,eng,193,334,34,4/30/1985,Back Bay Books +418,Been Down So Long It Looks Like Up To Me,Richard Fariña/Thomas Pynchon,3.80,0140189300,9780140189308,eng,352,2473,220,8/29/1996,Penguin Classics +420,The Year of Magical Thinking,Joan Didion,3.89,140004314X,9781400043149,en-US,227,2656,336,10/4/2005,Knopf Publishing Group +421,The White Album,Joan Didion,4.17,0374522219,9780374522216,eng,222,11889,738,10/1/1990,Farrar Straus Giroux +422,A Book of Common Prayer,Joan Didion,3.80,0679754865,9780679754862,eng,272,2962,255,4/11/1995,Vintage International +423,Where I Was From,Joan Didion,3.86,0679752862,9780679752868,eng,240,2842,292,9/14/2004,Vintage +424,Slouching Towards Bethlehem,Joan Didion,4.21,0374521727,9780374521721,eng,238,26934,1825,10/1/1990,Farrar Straus Giroux +425,Democracy,Joan Didion,3.81,0679754857,9780679754855,en-US,234,2070,169,4/25/1995,Vintage International +426,We Tell Ourselves Stories in Order to Live: Collected Nonfiction,Joan Didion/John Leonard,4.50,0307264874,9780307264879,eng,1122,1564,108,10/17/2006,Everyman's Library +428,Play It As It Lays,Joan Didion/David Thomson,3.87,0374529949,9780374529949,eng,231,23656,1706,11/15/2005,Farrar Straus and Giroux +431,The New York Trilogy,Paul Auster/Art Spiegelman/Luc Sante,3.89,0143039830,9780143039839,eng,308,43200,1873,3/28/2006,Penguin Classics +432,City of Glass (The New York Trilogy #1),Paul Auster,3.79,0140097317,9780140097313,eng,203,12410,734,4/7/1987,Penguin Books +434,Ghosts (The New York Trilogy #2),Paul Auster,3.64,014009735X,9780140097351,eng,96,3672,195,7/7/1987,Penguin Books +435,The Locked Room (The New York Trilogy #3),Paul Auster,3.89,0940650762,9780940650763,eng,179,2998,164,11/1/1986,Sun and Moon Press +444,Pyramids of Montauk: Explorations in Consciousness,Peter Moon/Preston B. Nichols/Nina Helms,3.89,0963188925,9780963188922,eng,256,74,2,1/1/1995,Sky Books (NY) +446,The Brooklyn Follies,Paul Auster,3.84,0312426232,9780312426231,eng,306,17977,1157,10/17/2006,Picador +447,Moon Palace,Paul Auster,3.94,0140115854,9780140115857,eng,320,16099,503,4/1/1990,Penguin Books +453,The Music of Chance,Paul Auster,3.90,0140154078,9780140154078,en-US,217,361,36,12/1/1991,Penguin Books +454,Travels in the Scriptorium,Paul Auster,3.23,0805081453,9780805081459,eng,145,6688,562,1/23/2007,Henry Holt & Company +456,Leviathan,Paul Auster,3.96,0140178139,9780140178135,eng,275,11744,443,9/1/1993,Penguin Books +463,The Red Notebook: True Stories,Paul Auster,3.77,0811214982,9780811214988,eng,104,2390,120,6/17/2002,New Directions +466,Timbuktu / Leviathan / Moon Palace,Paul Auster,4.38,2742741461,9782742741465,fre,1075,21,1,11/7/2002,Actes Sud +475,Collapse: How Societies Choose to Fail or Succeed,Jared Diamond,3.93,0143036556,9780143036555,eng,608,52522,2780,12/27/2005,Penguin Books Ltd. (London) +476,The Coming Economic Collapse: How You Can Thrive When Oil Costs $200 a Barrel,Stephen Leeb/Glen C. Strathy,3.40,0446579785,9780446579780,en-US,211,213,26,2/1/2006,Business Plus +477,Collapse of Complex Societies,Joseph A. Tainter,4.15,052138673X,9780521386739,eng,262,719,86,3/29/1990,Cambridge University Press +478,Bowling Alone: The Collapse and Revival of American Community,Robert D. Putnam,3.80,0743203046,9780743203043,eng,544,4762,512,8/7/2001,Simon Schuster +481,The Collapse of the Common Good: How America's Lawsuit Culture Undermines Our Freedom,Philip K. Howard,3.91,034543871X,9780345438713,eng,272,62,4,1/29/2002,Ballantine Books +484,Reinventing the Enemy's Language: Contemporary Native Women's Writings of North America,Joy Harjo/Gloria Bird/Beth Cuthand/Valerie Martinez/Patricia Blanco,4.39,0393318281,9780393318289,eng,576,278,20,9/17/1998,W. W. Norton Company +493,My Inventions,Nikola Tesla,4.01,1599869942,9781599869940,eng,88,2862,262,5/17/2006,Filiquarian Publishing LLC. +494,Wizard: The Life and Times of Nikola Tesla: Biography of a Genius,Marc J. Seifer/William H. Terbo,3.78,0806519606,9780806519609,eng,542,2829,334,2/1/2001,Citadel +497,Nikola Tesla: A Spark of Genius,Carol Dommermuth-Costa,3.93,0822549204,9780822549208,eng,144,105,5,10/1/1994,Lerner Publications +498,Tesla Papers,Nikola Tesla/David Hatcher Childress,4.13,0932813860,9780932813862,eng,100,102,2,12/1/2000,Adventures Unlimited Press +511,Boys of Summer,Julie Elizabeth Leto/Leslie Kelly/Kimberly Raye,3.77,0373792689,9780373792689,eng,249,478,12,6/27/2006,Harlequin Blaze +515,Programming Ruby: The Pragmatic Programmers' Guide,Dave Thomas/Chad Fowler/Andy Hunt,4.03,0974514055,9780974514055,en-US,828,1577,49,10/11/2004,Pragmatic Bookshelf +523,Golding's Lord of the Flies (Cliffs Notes),Maureen Kelly/CliffsNotes/William Golding,3.95,0764585975,9780764585975,eng,112,73,8,6/13/2000,Cliffs Notes +524,Lord of the Flies,William Golding,3.68,0307281701,9780307281708,eng,6,408,96,10/11/2005,Listening Library (Audio) +531,A War Like No Other: How the Athenians & Spartans Fought the Peloponnesian War,Victor Davis Hanson,4.11,0812969707,9780812969702,eng,397,1693,100,9/12/2006,Random House +534,We Were Not Like Other People,Ephraim Sevela/Antonina W. Bouis,4.14,0060255080,9780060255084,eng,216,1,0,1/1/1989,HarperCollins Publishers +537,The Lovely Bones,Alice Sebold,3.81,0330485385,9780330485388,en-GB,328,6485,966,6/1/2003,Picador +538,The Lovely Bones,Alice Sebold,3.81,159413023X,9781594130236,en-US,532,367,73,4/1/2004,Large Print Press +539,Lovely in Her Bones (Elizabeth MacPherson #2),Sharyn McCrumb,3.80,0345360354,9780345360359,eng,224,1371,43,5/13/1990,Ballantine Books +565,The Zen of CSS Design: Visual Enlightenment for the Web,Dave Shea/Molly E. Holzschlag,3.98,0321303474,0785342303476,en-US,296,793,28,2/17/2005,Peachpit Press +570,HTML XHTML and CSS (Visual Quickstart Guide),Elizabeth Castro,3.80,0321430840,9780321430847,en-US,456,549,42,8/1/2006,Peachpit Press +576,1000 Record Covers,Michael Ochs/Patrick Javault/Ulrike Wasel,3.85,3822840858,9783822840856,mul,575,288,31,5/15/2005,Taschen +597,Killing Yourself to Live: 85% of a True Story,Chuck Klosterman,3.81,0743264460,9780743264464,eng,245,26381,1109,6/13/2006,Scribner +599,Sex Drugs and Cocoa Puffs: A Low Culture Manifesto,Chuck Klosterman,3.73,0743236017,9780743236010,eng,272,62089,3324,7/2/2004,Scribner +619,Vice (V #8),Jane Feather,3.51,0553572490,9780553572490,eng,419,474,19,5/2/1996,Bantam +629,Zen and the Art of Motorcycle Maintenance: An Inquiry Into Values (Phaedrus #1),Robert M. Pirsig,3.77,0060589469,9780060589462,eng,540,166046,6446,4/25/2006,HarperTorch +639,Once Upon a Cool Motorcycle Dude,Kevin O'Malley/Carol Heyer/Scott Goto,4.08,0802789471,9780802789471,eng,32,1773,274,4/1/2005,Walker & Company +642,Guidebook to Zen and the Art of Motorcycle Maintenance,Ronald L. DiSanto/Thomas J. Steele,3.72,0688060692,9780688060695,en-GB,408,286,10,11/19/1990,William Morrow Paperbacks +643,Motorcycle Basics Techbook,John Harold Haynes,3.85,185960515X,9781859605158,eng,222,40,2,7/5/2002,Haynes Manuals N. America Inc. +650,LOGO Lounge: 2 000 International Identities by Leading Designers,Catharine M. Fishel/Bill Gardner,3.93,1592530877,9781592530878,eng,191,27,0,9/1/2004,Rockport Publishers +655,The Death of Ivan Ilych And Other Stories,Leo Tolstoy/Hugh McLean,4.11,0451528808,9780451528803,eng,304,7300,266,4/1/2003,Signet Classics +656,War and Peace,Leo Tolstoy/Henry Gifford/Aylmer Maude/Louise Maude,4.11,0192833987,9780192833983,eng,1392,211671,6245,6/25/1998,Oxford University Press +658,The Kingdom of God Is Within You,Leo Tolstoy/Constance Garnett,4.13,0486451380,9780486451381,eng,352,2403,210,9/8/2006,Dover Publications +662,Atlas Shrugged,Ayn Rand/Leonard Peikoff,3.69,0452011876,9780452011878,eng,1168,322483,14702,8/1/1999,Plume +663,For the New Intellectual: The Philosophy of Ayn Rand,Ayn Rand,3.68,0451163087,9780451163080,eng,224,2750,108,12/1/1963,Signet Book +664,The Fountainhead,Ayn Rand,3.87,0452286751,9780452286757,en-US,752,1886,229,4/26/2005,Dutton +665,The Virtue of Selfishness: A New Concept of Egoism,Ayn Rand/Nathaniel Branden,3.51,0451163931,9780451163936,eng,176,11462,467,11/1/1964,Signet +667,Anthem,Ayn Rand,3.63,0452281253,9780452281257,eng,105,110952,7277,12/1/1999,NAL +668,We the Living,Ayn Rand/Leonard Peikoff,3.91,0451187849,9780451187840,eng,464,23199,1086,1/1/1996,Signet +669,Capitalism: The Unknown Ideal,Ayn Rand/Nathaniel Branden/Alan Greenspan/Robert Hessen,3.88,0451147952,9780451147950,eng,340,3501,153,7/15/1986,Signet +670,Letters of Ayn Rand,Ayn Rand/Michael S. Berliner/Leonard Peikoff,3.96,0452274044,9780452274044,eng,681,18,2,2/1/1997,NAL +672,Sailing for Dummies,J.J. Isler/Peter Isler,3.95,0471791431,9780471791430,eng,416,150,7,6/1/2006,For Dummies +675,Sailing from Byzantium: How a Lost Empire Shaped the World,Colin Wells,3.88,0553803816,9780553803815,eng,368,646,83,7/25/2006,Delacorte Press +676,Sailing Alone Around the Room: New and Selected Poems,Billy Collins,4.23,0375755195,9780375755194,eng,192,12180,630,9/17/2002,Random House Trade Paperbacks +678,The Greatest Sailing Stories Ever Told: Twenty-Seven Unforgettable Stories,Christopher Caswell,3.62,1592283195,9781592283194,eng,286,51,5,4/1/2004,Lyons Press +681,Natural Cures "They" Don't Want You to Know about,Kevin Trudeau,3.09,0975599518,9780975599518,en-US,571,1601,284,1/1/2004,Alliance Publishing +685,The Natural,Bernard Malamud/Kevin Baker,3.63,0374502005,9780374502003,eng,231,8854,672,7/7/2003,Farrar Straus Giroux +698,Digging to America,Anne Tyler,3.55,0307263940,9780307263940,eng,277,17155,1841,5/2/2006,Alfred A. Knopf +700,Rereading America: Cultural Contexts for Critical Thinking and Writing,Gary Colombo/Bonnie Lisle,3.77,0312405545,9780312405540,eng,826,44,3,1/21/2004,Bedford Books +702,Modern Latin America,Thomas E. Skidmore/Peter H. Smith,3.59,019517013X,9780195170139,en-US,528,234,11,10/7/2004,Oxford University Press USA +703,The Plot Against America,Philip Roth,3.77,1400079497,9781400079490,eng,391,33321,2925,9/27/2005,Vintage International +707,Naked Pictures of Famous People,Jon Stewart,3.59,0688171621,9780688171629,en-GB,164,8703,417,9/22/1999,Dey Street Books +759,Collected Stories,Gabriel García Márquez/Gregory Rabassa/J.S. Bernstein,4.19,0060932686,9780060932688,eng,352,6375,179,5/13/2008,Harper Perennial Modern Classics +762,Crónica de una muerte anunciada,Gabriel García Márquez,3.97,1400034957,9781400034956,spa,118,7888,411,10/14/2003,Vintage Espanol +763,Cien años de soledad,Gabriel García Márquez,4.07,0307350428,9780307350428,spa,496,130,5,2/7/2006,Plaza y Janes +764,Del amor y otros demonios,Gabriel García Márquez,3.98,0307350444,9780307350442,spa,176,4508,278,2/7/2006,Plaza y Janes +765,Living to Tell the Tale,Gabriel García Márquez/Edith Grossman,3.99,140003454X,9781400034543,eng,533,397,47,10/12/2004,Vintage +766,Memoria de mis putas tristes,Gabriel García Márquez,3.60,1400095808,9781400095803,spa,112,5856,377,10/19/2004,Vintage Espanol +771,The Elegant Universe: Superstrings Hidden Dimensions and the Quest for the Ultimate Theory,Brian Greene,4.07,0375708111,9780375708114,eng,425,32569,1058,9/2/2004,Vintage Books USA +775,Pure and Simple: The Extraordinary Teachings of a Thai Buddhist Laywoman,Upasika Kee Nanayon/Thanissaro Bhikkhu,4.29,086171492X,9780861714926,eng,288,37,6,5/15/2005,Wisdom Publications +787,The Mini Rough Guide to London,Rob Humphreys/Beth Chaplin/Rebecca Morrill,3.75,184353584X,9781843535843,eng,363,1,0,4/1/2006,Rough Guides +793,Best of London (Lonely Planet Best Of),Lonely Planet/Sarah Johnstone/Steve Fallon,3.83,1740594770,9781740594776,eng,128,11,0,9/1/2004,Lonely Planet +797,Lonely Planet Londres,Lonely Planet/Sarah Johnstone/Tom Masters,4.03,8408064762,9788408064763,spa,480,0,0,5/1/2006,Geoplaneta +799,Out to Eat London 2002 (Lonely Planet Out to Eat),Lonely Planet/Mark Honan,0.00,1740592050,9781740592055,eng,295,0,0,9/1/2001,Lonely Planet +815,Three Nights in August: Strategy Heartbreak and Joy Inside the Mind of a Manager,H.G. Bissinger,3.88,0618710531,9780618710539,eng,287,6870,237,4/4/2006,Mariner Books +816,Cryptonomicon,Neal Stephenson,4.25,0060512806,9780060512804,eng,1139,83184,4249,11/1/2002,Avon +821,Le Réseau Kinakuta (Cryptonomicon #2),Neal Stephenson,4.10,2228894168,9782228894166,fre,418,5,0,3/31/2001,Payot +822,The Confusion (The Baroque Cycle #2),Neal Stephenson,4.26,0060733357,9780060733353,en-US,815,19320,565,6/14/2005,William Morrow Paperbacks +823,Quicksilver (The Baroque Cycle #1),Neal Stephenson,3.93,0060593083,9780060593087,eng,927,30872,1735,9/21/2004,HarperCollins Perennial +824,The Cobweb,Neal Stephenson/J. Frederick George,3.61,0553383442,9780553383447,eng,448,2465,137,5/31/2005,Spectra Books +826,The Big U,Neal Stephenson,3.25,0380816032,9780380816033,en-US,308,4657,223,2/6/2001,William Morrow Paperbacks +827,The Diamond Age: Or A Young Lady's Illustrated Primer,Neal Stephenson/Pedro Jorge Romero,4.19,0553380966,9780553380965,eng,499,71042,2767,5/2/2000,Spectra +828,Interface,Neal Stephenson/George F. Jewsbury/Stephen Bury,3.68,0553383434,9780553383430,eng,640,4731,270,5/31/2005,Spectra +829,Odalisque (The Baroque Cycle Vol. 1 Book 3),Neal Stephenson,4.20,0060833181,9780060833183,en-US,464,1567,65,3/28/2006,HarperTorch +830,Snow Crash,Neal Stephenson/Guy Abadia,4.03,0553380958,9780553380958,eng,438,188100,6612,8/2/2000,Bantam Books +834,Harrington on Hold 'em: Expert Strategy for No-Limit Tournaments Volume II: The Endgame,Dan Harrington/Bill Robertie,4.16,1880685353,9781880685358,eng,450,1474,30,6/1/2005,Two Plus Two Publishing LLC +835,Harrington on Hold 'em: Expert Strategy for No-Limit Tournaments Volume I: Strategic Play,Dan Harrington/Bill Robertie,4.24,1880685337,9781880685334,eng,381,1929,72,12/1/2004,Two Plus Two Publishing LLC +840,The Design of Everyday Things,Donald A. Norman,4.17,0465067107,9780465067107,eng,240,18602,1379,9/19/2002,Basic Books +841,Emotional Design: Why We Love (or Hate) Everyday Things,Donald A. Norman,3.95,0465051367,9780465051366,eng,272,3702,149,5/11/2005,Basic Books +842,The Psychology of Everyday Things,Donald A. Norman,4.17,0465067093,9780465067091,eng,257,265,31,6/13/1988,Basic Books +848,No Price Too High: A Pentecostal Preacher Becomes Catholic - The Inspirational Story of Alex Jones as Told to Diane Hanson,Alex C. Jones/Diane M. Hanson/Stephen K. Ray,4.27,0898709199,9780898709193,en-GB,259,51,7,4/30/2006,Ignatius Press +864,The Alchemist,Paulo Coelho/Alan R. Clarke/James Noel Smith,3.86,0060887966,9780060887964,eng,192,920,76,5/2/2006,HarperOne +865,The Alchemist,Paulo Coelho/Alan R. Clarke/Özdemir İnce,3.86,0061122416,9780061122415,eng,197,1631221,55843,5/1/1993,HarperCollins +866,Fullmetal Alchemist Vol. 9 (Fullmetal Alchemist #9),Hiromu Arakawa/Akira Watanabe,4.57,142150460X,9781421504605,eng,192,9013,153,9/19/2006,VIZ Media LLC +868,Fullmetal Alchemist Vol. 3 (Fullmetal Alchemist #3),Hiromu Arakawa/Akira Watanabe,4.56,1591169259,9781591169253,eng,192,16666,299,9/13/2005,VIZ Media LLC +869,Fullmetal Alchemist Vol. 8 (Fullmetal Alchemist #8),Hiromu Arakawa/Akira Watanabe,4.57,1421504596,9781421504599,eng,192,11451,161,7/18/2006,VIZ Media LLC +870,Fullmetal Alchemist Vol. 1 (Fullmetal Alchemist #1),Hiromu Arakawa/Akira Watanabe,4.50,1591169208,9781591169208,eng,192,111091,1427,5/3/2005,VIZ Media LLC +871,Fullmetal Alchemist Vol. 4 (Fullmetal Alchemist #4),Hiromu Arakawa/Akira Watanabe,4.55,1591169291,9781591169291,eng,200,10752,294,11/8/2005,VIZ Media LLC +872,The Illustrated Alchemist: A Fable about Following Your Dream,Paulo Coelho/Alan R. Clarke/Mœbius,3.86,006019250X,9780060192501,en-US,198,251,32,11/1/1998,HarperCollins Publishers +873,Fullmetal Alchemist Vol. 2 (Fullmetal Alchemist #2),Hiromu Arakawa/Akira Watanabe,4.52,1591169232,9781591169239,eng,192,14923,419,7/5/2005,VIZ Media LLC +880,Pompeii,Robert Harris,3.82,0812974611,9780812974614,eng,274,26922,1726,11/8/2005,Random House Trade Paperbacks +888,The Last Days of Pompeii,Edward Bulwer-Lytton/John Gregory Betancourt,3.60,158715739X,9781587157394,eng,360,1156,68,12/3/2002,Borgo Press +890,Of Mice and Men,John Steinbeck,3.87,0142000671,9780142000670,eng,103,1755253,25554,1/8/2002,Penguin Books +900,The Game: Penetrating the Secret Society of Pickup Artists,Neil Strauss,3.74,0060554738,9780060554736,en-US,464,20529,1592,9/6/2005,It Books +902,The Westing Game,Ellen Raskin,4.02,014240120X,9780142401200,eng,182,142121,8782,4/12/2004,Puffin +903,The Egypt Game,Zilpha Keatley Snyder,3.83,0808553038,9780808553038,eng,215,30231,1130,7/7/2009,Turtleback Books +929,Memoirs of a Geisha,Arthur Golden,4.11,1400096898,9781400096893,eng,503,280309,3703,11/22/2005,Vintage Books USA +930,Memoirs of a Geisha,Arthur Golden,4.11,0739326228,9780739326220,eng,434,1301083,19296,11/15/2005,Random House Large Print Publishing +931,Memoirs of a Geisha,Arthur Golden,4.11,0099498189,9780099498186,en-US,497,2122,256,12/1/2005,Vintage +932,Memoirs of a Geisha: A Portrait of the Film,David James/Peggy Mulloy/Rob Marshall/Arthur Golden,4.08,1557046832,9781557046833,eng,144,145,8,10/20/2005,Newmarket Press +933,Memoirs of a Geisha,Arthur Golden,4.11,0099771519,9780099771517,eng,497,4189,462,6/4/1998,Vintage +935,Geisha of Gion,Mineko Iwasaki/Rande Brown,3.93,074343059X,9780743430593,eng,334,1556,158,5/6/2003,Pocket Books +941,Love As A Foreign Language #5,J. Torres/Eric Kim,3.44,1932664394,9781932664393,eng,58,9,2,2/1/2006,Oni Press +944,Jungle Love,Margaret Johnson/Philip Prowse,3.41,0521750849,9780521750844,eng,95,59,7,8/1/2002,Cambridge University Press +955,The 5 Love Languages / The 5 Love Languages Journal,Gary Chapman,4.70,0802415318,9780802415318,eng,0,22,4,1/1/2005,Moody Publishers +960,Angels & Demons (Robert Langdon #1),Dan Brown,3.89,1416524797,9781416524793,eng,736,2418736,21303,4/1/2006,Pocket Books +965,Ángeles y demonios (Robert Langdon #1),Dan Brown,3.89,849561877X,9788495618771,spa,508,196,20,12/1/2005,Umbriel +966,Angeles & Demonios,Dan Brown/Raúl Amundaray,3.89,0972859896,9780972859899,spa,18,65,7,12/1/2005,FonoLibro +968,The Da Vinci Code (Robert Langdon #2),Dan Brown,3.84,0307277674,9780307277671,eng,489,1679706,35877,3/28/2006,Anchor +969,The Da Vinci Code,Dan Brown,3.84,076792603X,9780767926034,eng,467,1120,105,3/28/2006,Broadway Books +972,Da Vinci Code (Robert Langdon #2),Dan Brown/Daniel Roche,3.84,2266144340,9782266144346,fre,744,377,16,5/3/2005,Pocket +975,Deception Point,Dan Brown,3.71,1416524800,9781416524809,eng,736,4919,410,4/1/2006,Pocket Books +977,Deception Point,Dan Brown,3.71,0552151769,9780552151764,eng,585,3353,183,5/1/2004,Corgi Books +980,Deception Point,Dan Brown,3.71,0593055071,9780593055076,eng,448,61,4,8/1/2005,Bantam Press +987,A Killing Rain (Louis Kincaid #6),P.J. Parrish,4.04,078601606X,9780786016068,eng,383,456,41,2/1/2005,Pinnacle +998,The Millionaire Next Door: The Surprising Secrets of America's Wealthy,Thomas J. Stanley/William D. Danko,4.03,0671015206,9780671015206,eng,258,61760,2600,10/1/1998,Gallery Books +1005,Think and Grow Rich: The Landmark Bestseller Now Revised and Updated for the 21st Century,Napoleon Hill,4.18,1585424331,9781585424337,eng,320,88897,2334,9/1/2005,Tarcherperigee +1007,Think and Grow Rich,Napoleon Hill,4.18,1932429239,9781932429237,eng,368,48,9,8/7/2004,High Roads Media +1014,Pragmatic Version Control: Using Subversion (The Pragmatic Starter Kit Series),Mike Mason,3.58,0977616657,9780977616657,eng,256,173,14,6/7/2006,Pragmatic Bookshelf +1022,Read My Lips: Sexual Subversion and the End of Gender,Riki Anne Wilchins,3.95,1563410907,9781563410901,en-US,288,253,17,6/1/2005,Firebrand Books +1032,Trump: The Art of the Deal,Donald J. Trump/Tony Schwartz,3.66,0345479173,9780345479174,en-US,384,12748,948,12/28/2004,Ballantine Books +1052,The Richest Man in Babylon,George S. Clason,4.26,0451205367,9780451205360,eng,194,76451,3400,2/1/2008,Berkley Books +1053,The Richest Man in Babylon,George S. Clason,4.26,1419349996,9781419349997,eng,4,86,15,6/17/2005,Recorded Books Inc. +1059,Shibumi,Trevanian/Gisela Stege,4.21,1400098033,9781400098033,eng,480,9498,637,5/10/2005,Broadway Books +1067,1776,David McCullough,4.07,0743226720,9780743226721,eng,386,166916,6243,7/4/2006,Simon Schuster +1068,1776,Peter Stone/Sherman Edwards,4.22,0140481397,9780140481396,eng,192,1299,30,11/18/1976,Penguin Books +1073,The Crescent Obscured: The United States and the Muslim World 1776-1815,Robert J. Allison,3.62,0226014908,9780226014906,eng,284,31,5,7/15/2000,University of Chicago Press +1078,The Good Earth (House of Earth #1),Pearl S. Buck,3.98,1416500189,9781416500186,eng,418,200744,7656,3/4/2009,Howard Publishing Co +1090,Purpose Driven Life - For Commuters: What on Earth Am I Here For?,Rick Warren,3.93,0310258979,9780310258971,eng,5,26,2,3/15/2005,Zondervan +1097,Fast Food Nation: The Dark Side of the All-American Meal,Eric Schlosser,3.74,0060838582,9780060838584,eng,399,190039,4922,7/5/2005,Harper Perennial +1099,Fast Food Nation: What The All-American Meal is Doing to the World,Eric Schlosser,3.74,0141006870,9780141006871,eng,384,811,77,4/4/2002,Penguin Books +1103,Snow Flower and the Secret Fan,Lisa See,4.07,0812968069,9780812968064,eng,269,297533,14935,2/21/2006,Random House +1110,The Broker,John Grisham,3.78,0385340540,9780385340540,eng,422,72361,2334,9/26/2006,Delta +1111,The Power Broker: Robert Moses and the Fall of New York,Robert A. Caro,4.51,0394720245,9780394720241,eng,1344,11208,1237,7/12/1975,Vintage +1117,The Power Broker: A Novel (Christian Gillette #3),Stephen W. Frey,3.75,0345480600,9780345480606,eng,320,28,1,7/25/2006,Ballantine Books +1120,Body For Life: 12 Weeks to Mental and Physical Strength,Bill Phillips/Michael D'Orso,3.74,0060193395,9780060193393,en-US,201,3877,275,6/10/1999,HarperCollins Publishers Inc. +1121,Body for Life for Women: A Woman's Plan for Physical and Mental Transformation,Pamela Peeke/Cindy Crawford,3.65,1579546013,9781579546014,en-US,288,401,63,4/1/2005,Rodale Books +1123,Eating for Life: Your Guide to Great Health Fat Loss and Increased Energy!,Bill Phillips,3.95,0972018417,9780972018418,eng,405,814,51,11/26/2003,High Point Media +1130,The Warren Buffett Way,Robert G. Hagstrom/Bill Miller/Kenneth L. Fisher,4.13,0471743674,9780471743675,en-US,245,228,16,10/1/2005,John Wiley & Sons +1138,The Warren Buffett CEO: Secrets from the Berkshire Hathaway Managers,Robert P. Miles/Tom Osborne,4.07,0471430455,9780471430452,eng,432,39,1,4/18/2003,Wiley +1164,Monkey Business: True Story of the Scopes Trial,Marvin N. Olasky/John R. Perry,3.15,0805431578,9780805431575,eng,368,26,8,5/15/2005,B Books +1167,Junie B. Jones and a Little Monkey Business (Junie B. Jones #2),Barbara Park/Denise Brunkus,3.99,0679838864,9780679838869,en-US,68,11178,623,2/16/1993,Random House Books for Young Readers +1169,Monkey Business,Sarah Mlynowski,3.67,0373250711,9780373250714,eng,392,3379,67,9/24/2004,Red Dress Ink +1171,Liar's Poker,Michael Lewis,4.15,0140143459,9780140143454,eng,256,22843,936,10/1/1990,Penguin Books +1177,Liar's Poker: A Harry Garnish Mystery,Frank McConnell,3.31,0802732291,9780802732293,eng,214,13,1,6/1/1993,Walker & Company +1188,Risotto: 30 Simply Delicious Vegetarian Recipes from an Italian Kitchen,Ursula Ferrigno/Jason Lowe/Maxine Clark,4.08,1841721476,0694055000612,eng,64,8,2,3/1/2001,Ryland Peters & Small +1191,Giada's Family Dinners,Giada De Laurentiis/Victoria Pearson,3.96,030723827X,9780307238276,eng,256,14103,74,4/4/2006,Clarkson Potter +1192,Everyday Italian: 125 Simple and Delicious Recipes,Giada De Laurentiis,3.95,1400052580,9781400052585,eng,256,40125,217,2/22/2005,Clarkson Potter +1193,Everyday Pasta,Giada De Laurentiis/Victoria Pearson,4.09,0307346587,9780307346582,eng,240,8822,55,4/3/2007,Clarkson Potter +1196,Tyler's Ultimate: Brilliant Simple Food to Make Any Time,Tyler Florence/Petrina Tinslay,4.09,1400052386,9781400052387,eng,256,3697,34,9/26/2006,Clarkson Potter +1197,Tyler Florence's Real Kitchen: An Indespensible Guide for Anybody Who Likes to Cook,Tyler Florence/JoAnn Cianciulli/Bill Bettencourt/Bobby Flay,4.06,0609609971,9780609609972,eng,304,1426,16,3/25/2003,Clarkson Potter Publishers +1198,Eat This Book: Cooking with Global Fresh Flavors,Tyler Florence/Petrina Tinslay,3.92,1400052378,9781400052370,eng,287,275,15,10/1/2004,Clarkson Potter Publishers +1202,Freakonomics: A Rogue Economist Explores the Hidden Side of Everything,Steven D. Levitt/Stephen J. Dubner,3.97,0061234001,9780061234002,eng,320,628745,13034,10/17/2006,William Morrow +1204,Freakonomics: Un economista políticamente incorrecto explora el lado oculto de lo que nos afecta,Steven D. Levitt/Stephen J. Dubner,3.97,8466625127,9788466625128,spa,250,193,23,8/1/2006,Ediciones B +1206,Freakonomics: A Rogue Economist Explores the Hidden Side of Everything,Steven D. Levitt/Stephen J. Dubner,3.97,0061245135,9780061245138,en-US,496,98,5,12/8/2006,Harper +1218,The Last Assassin (John Rain #5),Barry Eisler,4.27,0399153594,9780399153594,eng,338,189,25,6/1/2006,Putnam Publishing Group +1226,Life of Pi,Yann Martel,3.91,0156030209,9780156030205,en-US,401,4318,668,5/3/2004,Mariner Books / Harvest Books +1230,L'Histoire de Pi,Yann Martel/Nicole Martel/Emile Martel,3.91,0828808392,9780828808392,fre,448,177,26,11/24/2005,Gallimard +1234,Shadows and Wind: A View of Modern Vietnam,Robert Templer,3.49,0140285970,9780140285970,eng,400,102,8,9/1/1999,Penguin Books +1241,A Million Little Pieces,James Frey,3.65,0307276902,9780307276902,eng,515,206011,10821,9/22/2005,Anchor Books +1242,A Million Little Pieces of Feces,Python Bonkers,3.56,1411677315,9781411677319,en-US,256,43,6,2/10/2006,Lulu.com +1243,A Million Little Lies,James Pinocchio/Pablo Fenjves,3.41,0061171468,9780061171468,en-US,191,201,24,3/28/2006,William Morrow Paperbacks +1246,The Leadership Challenge,James M. Kouzes/Barry Z. Posner,4.05,0787968331,9780787968335,en-US,458,873,40,8/7/2003,Jossey-Bass +1252,Lincoln on Leadership: Executive Strategies for Tough Times,Donald T. Phillips,4.14,0446394599,9780446394598,eng,193,5354,281,2/1/1993,Business Plus +1255,Leadership in Organizations,Gary Yukl,3.68,0131494848,9780131494848,en-GB,542,55,4,7/7/2005,Prentice Hall +1265,Leadership,Rudolph W. Giuliani,3.72,0316861014,9780316861014,eng,397,1820,147,10/1/2002,Little Brown +1274,Men Are from Mars Women Are from Venus,John Gray,3.55,0060574216,9780060574215,eng,368,132062,3303,4/3/2012,Harper Paperbacks +1276,Mars and Venus Book of Days: 365 Inspriations to Enrich Your Relationships,John Gray,3.62,0060192771,9780060192778,en-US,368,18,1,10/21/1998,Harper +1281,Men Are from Mars Women Are from Venus,John Gray,3.55,006123205X,9780061232053,eng,2,43,3,4/3/2007,HarperAudio +1290,How to Succeed with Women,Ron Louis/David Copeland,3.76,0735200300,9780735200302,en-US,320,82,13,10/29/1998,Prentice Hall Press +1295,The Clan of the Cave Bear (Earth's Children #1),Jean M. Auel,4.05,0553381679,9780553381672,eng,512,184418,4432,6/25/2002,Bantam +1296,The Clan of the Cave Bear (Earth's Children #1),Jean M. Auel,4.05,0517542021,9780517542026,eng,468,495,67,5/4/1980,Crown Publishing Group +1301,Moneyball: The Art of Winning an Unfair Game,Michael Lewis,4.26,0393324818,9780393324815,eng,317,85094,4155,3/17/2004,W. W. Norton Company +1302,Juiced Official Strategy Guide,Doug Walsh,0.00,0744005612,9780744005615,eng,112,0,0,6/1/2005,BradyGames +1303,The 48 Laws of Power,Robert Greene/Joost Elffers,4.18,0140280197,9780140280197,eng,452,60946,3167,9/1/2000,Penguin (Business) +1305,Gates of Fire,Steven Pressfield,4.42,055338368X,9780553383683,eng,392,21934,1629,9/27/2005,Bantam +1307,Fire Sea (The Death Gate Cycle #3),Margaret Weis/Tracy Hickman,4.07,0553295411,9780553295412,eng,414,16312,175,3/1/1992,Spectra Books +1312,The Gate of Fire (Oath Of Empire Book Two),Thomas Harlan,3.58,0812590104,9780812590104,en-US,721,146,4,6/18/2001,Tor Classics +1315,The Afghan Campaign,Steven Pressfield,3.96,038551641X,9780385516419,eng,354,3002,198,7/1/2006,Doubleday Books +1317,Tides of War,Steven Pressfield,3.90,0553381393,9780553381399,eng,448,3422,157,8/28/2001,Bantam +1318,Last of the Amazons,Steven Pressfield,3.76,0553382047,9780553382044,eng,400,2138,125,7/1/2003,Bantam +1319,The War of Art: Break Through the Blocks & Win Your Inner Creative Battles,Steven Pressfield/Robert McKee,4.00,0446691437,9780446691437,eng,168,53653,4702,4/1/2003,Warner Books +1320,Gita on the Green,Stephen J. Rosen/Steven Pressfield,3.78,0826413013,9780826413017,en-US,176,14,2,5/30/2002,Continuum +1322,Blood Stripes: The Grunt's View of the War in Iraq,David J. Danelo/Steven Pressfield,3.91,0811701646,9780811701648,eng,340,85,6,4/24/2006,Stackpole Books +1326,Phaedrus and Letters VII and VIII,Plato/Walter Hamilton,4.10,0140442758,9780140442755,en-US,160,226,20,1/30/1973,Penguin Classics +1327,Phaedrus,Plato/Robin Waterfield,3.92,0192802771,9780192802774,eng,128,29,6,1/16/2003,Oxford University Press USA +1328,Phaedrus,Plato/C.J. Rowe,3.92,0140449744,9780140449747,eng,176,236,22,8/25/2005,Penguin Classics +1334,Lysis/Phaedrus/Symposium: Plato on Homosexuality,Plato/Benjamin Jowett,4.47,0879756322,9780879756321,eng,157,14,0,12/1/1991,Prometheus Books +1337,Enthusiasm and Divine Madness,Josef Pieper/Richard Winston/Clara Winston,4.50,189031823X,9781890318239,eng,125,26,4,2/11/2019,St. Augustines Press +1338,On Love: Lysis/Symposium/Phaedrus/Alcibiades/Selections from Republic & Laws,Plato/C.D.C. Reeve,4.06,0872207889,9780872207882,eng,272,154,4,6/15/2006,Hackett Publishing Company Inc. +1342,Gorgias/Phaedrus (Agora),Plato/James H. Nichols Jr.,4.35,0801435307,9780801435300,eng,233,18,1,9/1/1998,Cornell University Press +1351,Statesman,Plato/C.J. Rowe,3.85,0872204626,9780872204621,eng,128,28,7,3/15/1999,Hackett Publishing Company Inc. +1354,Gorgias,Plato/Walter Hamilton/Chris Emlyn-Jones,3.95,0140449043,9780140449044,en-GB,208,8186,198,1/29/2004,Penguin Classics +1362,The Histories,Herodotus/Aubrey de Sélincourt/John M. Marincola,3.99,0140449086,9780140449082,eng,716,34727,597,1/30/2003,Penguin Books +1363,The Histories,Herodotus/Aubrey de Sélincourt/John M. Marincola,3.99,0140446389,9780140446388,eng,622,227,18,9/1/1954,Penguin Classics +1364,The History (Great Minds),Herodotus/Henry Francis Cary,3.99,0879757779,9780879757779,en-US,613,2,0,11/1/1992,Prometheus Books +1365,The Histories,Herodotus/Carolyn Dewald/Robin Waterfield,3.99,0192824252,9780192824257,eng,772,271,41,11/19/1998,Oxford University Press +1366,The Histories,Herodotus/Aubrey de Sélincourt/Andrew Robert Burn,3.99,0140440348,9780140440348,en-US,653,143,17,8/30/1970,Penguin Classics +1367,The Histories,Herodotus/Jennifer Tolbert Roberts/Walter Blanco,3.99,0393959465,9780393959468,en-US,464,40,5,1/17/1992,W.W. Norton & Company +1368,The Histories,Herodotus/Edward Henry Blakeney/George Rawlinson/Rosalind Thomas,3.99,0375400613,9780375400612,en-US,816,132,10,3/25/1997,Everyman's Library 234 +1369,The History,Herodotus/Peter Grene,3.99,0226327701,9780226327709,en-US,710,36,6,3/14/1987,University of Chicago Press +1371,The Iliad,Homer/Robert Fagles/Bernard Knox,3.86,0140275363,9780140275360,eng,683,288792,3423,4/29/1999,Penguin Classics +1373,Iliad,Homer/Stanley Lombardo/Sheila Murnaghan,3.86,0872203522,9780872203525,en-US,574,1058,137,3/12/1997,Hackett Publishing Company Inc. +1374,The Iliad,Homer/Robert Fitzgerald/Andrew Ford,3.86,0374529051,9780374529055,en-US,588,692,81,4/3/2004,Farrar Straus and Giroux +1375,The Iliad/The Odyssey,Homer/Robert Fagles/Bernard Knox,4.04,0147712556,9780147712554,eng,1556,54939,380,11/1/1999,Penguin Classics +1376,The Iliad,Homer/E.V. Rieu/Peter Jones/D.C.H. Rieu,3.86,0140447946,9780140447941,eng,462,1919,118,1/30/2003,Penguin Classics +1377,The Iliad,Homer/W.H.D. Rouse,3.86,0451527372,9780451527370,en-US,312,158,15,8/1/1999,Signet Classics +1378,The Essential Iliad,Homer/Sheila Murnaghan/Stanley Lombardo,3.86,0872205428,9780872205420,en-US,216,212,18,9/15/2000,Hackett Publishing Company Inc. +1381,The Odyssey,Homer/Robert Fagles/Bernard Knox,3.76,0143039954,9780143039952,eng,541,760871,6557,11/30/2006,Penguin Classics +1382,The Odyssey,Homer/Robert Fitzgerald/D.S. Carne-Ross,3.76,0374525749,9780374525743,eng,515,1713,179,11/5/1998,Farrar Straus and Giroux +1383,The Odyssey,Homer/Richmond Lattimore,3.76,0060931957,9780060931957,eng,374,1131,78,6/1/1999,Harper Perennial +1384,The Odyssey,Homer/E.V. Rieu/Peter Jones/D.C.H. Rieu,3.76,0140449116,9780140449112,eng,324,2543,167,1/30/2003,Penguin Classics +1387,The Odyssey,Homer/W.H.D. Rouse,3.76,0451527364,9780451527363,eng,304,262,24,8/1/1999,Signet Classics +1391,Aeneid: Selections from Books 1 2 4 6 10 12,Virgil/Barbara Weiden Boyd,4.35,086516584X,9780865165847,eng,161,69,6,1/1/2001,Bolchazy-Carducci Publishers +1402,Eclogues. Georgics. Aeneid: Books 1-6,Virgil/Henry Rushton Fairclough/G.P. Goold,4.22,067499583X,9780674995833,mul,607,414,10,10/1/1999,Harvard University Press +1403,City Eclogue,Ed Roberson,4.13,1891190237,9781891190230,eng,136,67,7,1/30/2006,Atelos Press +1405,The Eclogues and The Georgics,Virgil/Cecil Day-Lewis,3.80,0192837680,9780192837684,eng,180,259,15,9/2/1999,Oxford University Press +1408,Paul Kirk's Championship Barbecue Sauces: 175 Make-Your-Own Sauces Marinades Dry Rubs Wet Rubs Mops and Salsas,Paul Kirk,3.94,155832125X,9781558321250,eng,272,55,0,12/3/1997,Harvard Common Press +1417,The Complete Pelican Shakespeare,William Shakespeare/Stephen Orgel/A.R. Braunmuller,4.50,0141000589,9780141000589,eng,1808,578,25,11/7/2002,Viking +1419,The Complete Works,William Shakespeare,4.50,0517092948,9780517092941,eng,1248,62,6,10/13/1991,Gramercy +1420,Hamlet,William Shakespeare/Harold Bloom/Rex Gibson,4.02,0521618746,9780521618748,eng,289,609271,7139,8/1/2005,Cambridge University Press +1423,The Compleat Works of Wllm Shkspr (abridged),Reduced Shakespeare Company/Adam Long/Daniel Singer/Jess Winfield,4.44,1557831572,9781557831576,eng,137,8159,118,2/1/1994,Applause Books +1424,The Pilgrimage: A Contemporary Quest for Ancient Wisdom,Paulo Coelho/Alan R. Clarke,3.64,006251279X,9780062512796,en-US,272,888,92,5/1/1995,HarperOne +1425,The Valkyries,Paulo Coelho/Alan R. Clarke,3.31,0062513346,9780062513342,en-US,212,1204,79,9/28/1996,HarperOne +1426,Warrior of the Light,Paulo Coelho,3.70,0060527986,9780060527983,en-US,142,22662,945,3/30/2004,HarperOne +1427,The Zahir,Paulo Coelho/Margaret Jull Costa,3.57,0060832819,9780060832810,eng,336,58917,2575,7/3/2006,HarperOne +1428,By the River Piedra I Sat Down and Wept,Paulo Coelho/Alan R. Clarke,3.57,0061122092,9780061122095,eng,208,70760,2702,5/23/2006,HarperOne +1429,The Fifth Mountain,Paulo Coelho/Clifford E. Landers,3.62,0060930136,9780060930134,en-US,256,1415,68,4/26/2000,HarperOne +1431,Veronika Decides to Die,Paulo Coelho/Margaret Jull Costa/Kâmuran Şipal,3.70,0061124265,9780061124266,eng,210,132064,5452,6/1/2006,Harper Perennial +1433,Hamlet,William Shakespeare/Stephen Orgel/A.R. Braunmuller,4.02,0140714545,9780140714548,eng,148,1658,125,12/1/2001,Penguin Books +1437,Cliffs Notes on Shakespeare's Hamlet,Carla Lynn Stockton,3.69,0764586033,9780764586033,en-US,129,65,6,5/30/2000,Cliffs Notes +1438,Shakespeare's Hamlet,William Shakespeare/Terri Mategrano,4.02,0764585681,9780764585685,eng,240,102,16,5/29/2000,Cliffs Notes +1439,Hamlet's Mill: An Essay Investigating the Origins of Human Knowledge and Its Transmission Through Myth,Giorgio De Santillana/Hertha Von Dechend,4.29,0879232153,9780879232153,eng,450,489,57,3/24/2015,Nonpareil Books +1440,History of the Peloponnesian War: Bk. 1-2,Thucydides/C.F. Smith,4.32,0674991206,9780674991200,mul,496,208,7,1/1/1919,Harvard University Press +1441,On Justice Power and Human Nature: Selections from The History of the Peloponnesian War,Thucydides/Paul Woodruff,3.72,0872201686,9780872201682,eng,172,610,15,10/1/1993,Hackett Publishing Company Inc. +1444,History of the Peloponnesian War: Bk. 5-6,Thucydides/C.F. Smith,4.35,0674991222,9780674991224,mul,400,38,0,1/1/1921,Harvard University Press +1445,The Peloponnesian War,Thucydides/Steven Lattimore,3.90,0872203948,9780872203945,eng,530,154,21,6/1/1998,Hackett Publishing Company Inc. +1449,The Peloponnesian War: A New Translation Backgrounds Interpretations,Thucydides/Jennifer Tolbert Roberts/Walter Blanco,3.90,0393971678,9780393971675,eng,554,24,4,7/17/1998,W. W. Norton & Company +1459,History of the Peloponnesian War Bk. 7-8,Thucydides/C.F. Smith,4.29,0674991877,9780674991873,eng,480,35,0,1/1/1923,Harvard University Press +1461,Thucydides Book 6 Commentary,Cynthia W. Shelmerdine,4.50,0929524357,9780929524351,eng,34,2,0,1/30/1989,Bryn Mawr Commentaries +1462,Euripides I: Alcestis / The Medea / The Heracleidae / Hippolytus,Euripides/Richmond Lattimore/David Grene/Rex Warner/Ralph Gladstone,4.03,0226307808,9780226307800,eng,221,4483,56,2/15/1955,University of Chicago Press +1463,Euripides V: Electra / The Phoenician Women / The Bacchae,Euripides/David Grene/Richmond Lattimore/Emily Townsend Vermeule/Elizabeth Wyckoff/William Arrowsmith,4.21,0226307840,9780226307848,eng,228,3334,46,1/15/1969,University of Chicago Press +1465,Euripides IV: Rhesus / The Suppliant Women / Orestes / Iphigenia in Aulis,Euripides/David Grene/Richmond Lattimore/William Arrowsmith/Frank William Jones/Charles R. Walker,4.21,0226307832,9780226307831,eng,307,560,8,11/15/1968,University of Chicago Press +1466,Grief Lessons: Four Plays by Euripides,Anne Carson/Euripides,4.40,1590171802,9781590171806,eng,312,679,85,8/1/2006,New York Review of Books +1467,Ten Plays,Euripides/Moses Hadas/John Maclean,4.17,0553213636,9780553213638,en-US,432,1464,21,8/1/1990,Bantam Classics +1468,Euripides III: Hecuba / Andromache / The Trojan Women / Ion (Complete Greek Tragedies #7),Euripides/David Grene/Richmond Lattimore/William Arrowsmith/John Frederick Nims/Ronald Frederick Willetts,4.00,0226307824,9780226307824,eng,255,541,15,1/15/1992,University of Chicago Press +1470,Euripides II: The Cyclops / Heracles / Iphigenia in Tauris / Helen,Euripides/David Grene/Richmond Lattimore/Witter Bynner/William Arrowsmith,4.31,0226307816,9780226307817,eng,264,790,12,4/15/2002,University of Chicago Press +1473,Medea and Other Plays,Euripides/John Davie/Richard Rutherford,4.03,0140449299,9780140449297,eng,206,9197,120,3/27/2003,Penguin Books +1474,Cyclops / Alcestis / Medea,Euripides/David Kovacs,4.23,0674995600,9780674995604,mul,432,61,4,1/1/1994,Loeb Classical Library +1475,Medea,Euripides/Donald J. Mastronarde,3.87,0521643864,9780521643863,grc,431,201,9,9/16/2002,Cambridge University Press +1476,The Bacchae and Other Plays,Euripides/John Davie/Richard Rutherford,4.14,0140447261,9780140447262,eng,360,164,8,1/26/2006,Penguin Classics +1479,Bakkhai,Euripides/Reginald Gibbons/Peter H. Burian,3.88,0195125983,9780195125986,eng,160,154,13,2/22/2001,Oxford University Press USA +1480,Plays 1: Medea/The Phoenician Women/Bacchae,Euripides/David Thompson/J. Michael Walton,3.78,0413752801,9780413752802,eng,192,9,0,11/9/2000,Bloomsbury Methuen Drama +1486,The Trojan Women and Hippolytus,Euripides,3.63,0486424626,9780486424620,eng,64,34,4,7/17/2002,Dover Publications +1488,The Bacchae of Euripides: A Communion Rite,Wole Soyinka,3.86,0393325830,9780393325836,eng,128,116,6,7/17/2004,W. W. Norton Company +1489,Orestes and Other Plays,Euripides/James Morwood/Robin Waterfield,4.10,0192832603,9780192832603,eng,282,158,2,12/20/2001,Oxford University Press +1491,Children of Heracles / Hippolytus / Andromache / Hecuba,Euripides/David Kovacs,4.26,0674995333,9780674995338,mul,528,27,5,2/15/1995,Loeb Classical Library +1494,Alcestis,Euripides/William Arrowsmith,3.83,0195061667,9780195061666,eng,142,1950,95,2/1/1990,Oxford University Press USA +1495,Suppliant Women / Electra / Heracles,Euripides/David Kovacs,4.47,067499566X,9780674995666,mul,464,30,4,9/1/1998,Loeb Classical Library +1499,Medea,Euripides/Georgia Ann Machemer/Michael Collier,3.87,0195145666,9780195145663,eng,116,367,35,8/10/2006,Oxford University Press USA +1504,Euripides: Medea,William Allan,4.04,071563187X,9780715631874,eng,160,23,1,10/31/2002,Bristol Classical Press +1506,CliffsNotes on Euripides' Medea and Electra,Robert J. Milch,4.20,0822004240,9780822004240,eng,69,5,0,9/13/1965,Cliffs Notes +1509,Trojan Women / Iphigenia Among the Taurians / Ion,Euripides/David Kovacs,4.03,0674995740,9780674995741,mul,528,29,2,12/1/1999,Loeb Classical Library +1510,Helen / Phoenician Women / Orestes,Euripides/David Kovacs,4.07,0674996003,9780674996007,mul,605,25,3,6/15/2002,Loeb Classical Library +1511,Euripides: Iphigenia at Aulis (Companions to Greek & Roman Tragedy),Euripides/Pantelis Michelakis,4.03,0715629948,9780715629949,eng,144,12,1,3/9/2006,Bristol Classical Press +1515,The Complete Greek Tragedies Volume 3: Euripides,Euripides/David Grene/Richmond Lattimore,4.43,0226307662,9780226307664,eng,672,46,7,8/1/1992,University of Chicago Press +1516,Aeschylus I: Oresteia (Agamemnon The Libation Bearers The Eumenides),Aeschylus/David Grene/Richmond Lattimore,4.02,0226307786,9780226307787,en-US,171,712,53,5/15/1969,University of Chicago Press +1517,Aeschylus II: The Suppliant Maidens The Persians Seven against Thebes and Prometheus Bound (The Complete Greek Tragedies),Aeschylus/David Grene/Richmond Lattimore/Seth Benardete,4.10,0226307948,9780226307947,eng,188,389,26,2/1/1992,University of Chicago Press +1518,The Oresteia,Aeschylus/Alan Shapiro/Peter H. Burian,4.02,019513592X,9780195135923,eng,304,77,7,10/7/2004,Oxford University Press USA +1519,The Oresteia: Agamemnon The Libation Bearers The Eumenides,Aeschylus/Robert Fagles/William Bedell Stanford,4.02,0140443339,9780140443332,eng,335,28726,591,2/7/1984,Penguin Classics +1521,Oresteia,Aeschylus/Peter Meineck/Helene P. Foley,4.02,0872203905,9780872203907,eng,224,303,21,9/15/1998,Hackett Publishing Company Inc. +1523,Prometheus Bound and Other Plays,Aeschylus/Philip Vellacott,4.10,0140441123,9780140441123,eng,160,4303,62,8/30/1961,Penguin Books +1525,The Oresteia,Aeschylus/Ted Hughes,4.02,0374527059,9780374527051,en-US,208,215,25,9/4/2004,Farrar Straus and Giroux +1526,Aeschylus 1: The Oresteia: Agamemnon/The Libation Bearers/The Eumenides,Aeschylus/David R. Slavitt/Smith Palmer Bovie,4.02,081221627X,9780812216271,eng,178,12,3,11/1/1997,University of Pennsylvania Press +1527,The Complete Greek Tragedies Volume 1: Aeschylus,Aeschylus/Richmond Lattimore/David Grene,4.10,0226307646,9780226307640,eng,358,74,7,8/1/1992,University of Chicago Press +1529,Aeschylus: The Oresteia (A Student Guide: Landmarks of World Literature),Simon Goldhill,4.03,0521539811,9780521539814,eng,95,31,3,1/22/2004,Cambridge University Press +1530,The Oresteia: Agamemnon Choephoroe & Eumenides (Everyman's Library No. 260),Aeschylus/George Thomson/Richard Seaford,4.02,1400041929,9781400041923,eng,127,63,8,1/20/2004,Everyman's Library +1531,Aeschylus 2: The Persians/Seven Against Thebes/The Suppliants/Prometheus Bound,Aeschylus/David R. Slavitt/Smith Palmer Bovie,4.10,0812216717,9780812216714,en-GB,232,12,2,1/1/1998,University of Pennsylvania Press +1532,The Oresteia Trilogy: Agamemnon/The Libation-Bearers/The Furies,Aeschylus/E.D.A. Morshead,4.02,0486292428,9780486292427,eng,151,89,8,9/24/1996,Dover Publications +1533,The Suppliant Maidens/The Persians/Seven against Thebes/Prometheus Bound,Aeschylus/E.D.A. Morshead,4.10,1419150014,9781419150012,eng,208,1,0,6/17/2004,Kessinger Publishing +1536,Sophocles II: Ajax/Women of Trachis/Electra/Philoctetes (Complete Greek Tragedies 4),Sophocles/David Grene/Richmond Lattimore/John Moore/Michael Jameson,4.14,0226307867,9780226307862,eng,254,5032,36,5/15/1969,University of Chicago Press +1537,The Oedipus Plays of Sophocles: Oedipus the King; Oedipus at Colonus; Antigone,Sophocles/Paul Roche,3.97,0452011671,9780452011670,eng,288,553,46,5/1/1996,Plume +1538,The Complete Plays,Sophocles/Paul Roche,4.27,0451527844,9780451527844,eng,420,2883,40,3/1/2001,New American Library +1540,The Oedipus Cycle: Oedipus Rex Oedipus at Colonus Antigone,Sophocles/Robert Fitzgerald/Dudley Fitts,3.97,015602764X,9780156027649,eng,259,45589,726,11/1/2002,Mariner Books +1542,The Three Theban Plays: Antigone Oedipus the King Oedipus at Colonus,Sophocles/Robert Fagles/Bernard Knox,3.97,0140444254,9780140444254,eng,430,2979,288,1/3/2000,Penguin Books +1546,Theban Plays,Sophocles/Peter Meineck/Paul Woodruff,3.97,0872205851,9780872205857,en-US,304,109,7,3/15/2003,Hackett Publishing Company Inc. +1547,The Theban Plays (Everyman's Library #93),Sophocles/David Grene/Charles Segal,3.97,0679431322,9780679431329,en-US,223,52,3,10/18/1994,Alfred A. Knopf +1548,Electra and Other Plays,Sophocles/E.F. Watling,4.14,0140440283,9780140440287,eng,218,135,9,4/30/1953,Penguin +1549,Antigone; Oedipus the Kingn; Electra,Sophocles/Edith Hall/H.D.F. Kitto,3.94,0192835882,9780192835888,eng,178,13358,199,9/17/1998,Oxford University Press +1554,Oedipus Rex (The Theban Plays #1),Sophocles/J.E. Thomas,3.70,1580495931,9781580495936,eng,75,141555,1776,6/22/2006,Prestwick House - (Literary Touchstone Classic) +1555,The Oedipus Plays of Sophocles,Sophocles/Paul Roche,3.97,0451621603,9780451621603,eng,390,8,1,9/1/1958,Signet Books (NY) +1558,Oedipus Rex (Greek and Latin Classics),Sophocles/Roger D. Dawe,3.70,0521617359,9780521617352,grc,214,218,1,8/1/2006,Cambridge University Press +1559,Oedipus the King,Sophocles/Bernard Knox/Cynthia Brantley Johnson,3.70,1416500332,9781416500339,eng,144,740,57,7/1/2005,Simon Schuster +1560,Four Plays: The Clouds/The Birds/Lysistrata/The Frogs,Aristophanes/William Arrowsmith/Richmond Lattimore/Douglass Parker,4.06,0452007178,9780452007178,eng,624,6086,79,11/1/1984,Plume +1561,Three Plays by Aristophanes: Lysistrata/Women at the Thesmophoria/Assemblywomen,Aristophanes/Jeffrey Henderson,3.94,0415907446,9780415907446,eng,256,96,8,8/27/1996,Routledge +1562,The Complete Plays,Aristophanes/Moses Hadas,4.21,0553213431,9780553213430,eng,577,1998,33,3/1/1984,Bantam Classics +1563,Aristophanes 1: The Acharnians/Peace/Celebrating Ladies/Wealth,Aristophanes/David R. Slavitt,3.83,0812234561,9780812234565,eng,336,4,0,1/29/1998,University of Pennsylvania Press +1566,Clouds/Wasps/Birds (Aristophanes 1),Aristophanes/Peter Meineck,3.77,0872203611,9780872203617,eng,480,1,0,9/15/1998,Hackett Publishing Company Inc. +1567,Lysistrata and Other Plays,Aristophanes/Alan H. Sommerstein,3.95,0140448144,9780140448146,en-US,241,3833,120,1/30/2003,Penguin Classics +1568,Acharnians,Aristophanes/Jeffrey Henderson,3.42,1585100870,9781585100873,eng,96,23,1,5/1/2003,Focus Publishing/R. Pullins Company +1571,Clouds,Aristophanes/Kenneth James Dover,3.75,0199120099,9780199120093,eng,254,13,2,12/15/1969,Oxford University Press USA +1572,Clouds/Wasps/Peace,Aristophanes/Jeffrey Henderson,4.07,0674995376,9780674995376,grc,624,69,10,12/15/1998,Loeb Classical Library/Harvard University Press +1576,Three Plays: The Wasps / The Poet and the Women / The Frogs,Aristophanes/David B. Barrett,3.94,0140441522,9780140441529,eng,224,391,27,2/28/1964,Penguin Books +1577,Four Comedies: Lysistrata / The Frogs / The Birds / Ladies' Day,Aristophanes/Dudley Fitts,4.03,0156027658,9780156027656,eng,400,14,2,1/6/2003,Harcourt +1579,Frogs/Assemblywomen/Wealth (Loeb Classical Library 180),Aristophanes/Jeffrey Henderson,4.21,0674995961,9780674995963,grc,608,58,4,5/1/2002,Harvard University Press +1584,Cliffs Notes on Aristophanes' Lysistrata The Birds The Clouds The Frogs,W. John Campbell,2.80,0822007762,0049086007763,eng,80,5,0,12/29/1983,Cliffs Notes +1585,Aristophanes and Athens: An Introduction to the Plays,Douglas M. MacDowell,4.07,0198721595,9780198721598,eng,376,14,3,10/1/1995,Oxford University Press +1586,Lysistrata,Aristophanes/Douglass Parker,3.85,0451616227,9780451616227,eng,98,19,2,2/1/1970,Signet +1590,Peace,Aristophanes/S. Douglas Olson,3.60,0198140819,9780198140818,eng,408,262,13,2/25/1999,Oxford University Press USA +1591,Lysistrata,Aristophanes/Sarah Ruden,3.85,0872206033,9780872206038,eng,132,30604,552,3/1/2003,Hackett Publishing Company Inc. +1592,The Knights / Peace / The Birds / The Assembly Women / Wealth,Aristophanes/Alan H. Sommerstein/David B. Barrett/David Brett,3.69,0140443320,9780140443325,en-US,335,42,1,7/27/1978,Penguin Classics +1595,Genres in Dialogue: Plato and the Construct of Philosophy,Andrea Wilson Nightingale,4.33,0521774330,9780521774338,en-GB,238,5,2,4/13/2000,Cambridge University Press +1618,The Curious Incident of the Dog in the Night-Time,Mark Haddon,3.88,1400032717,9781400032716,eng,226,1054308,35537,5/18/2004,Vintage +1620,The Night Gardener,George Pelecanos,3.64,0316156507,9780316156509,eng,372,4067,357,8/8/2006,Little Brown and Company +1625,Twelfth Night,William Shakespeare,3.98,0743482778,9780743482776,eng,272,138101,2513,7/1/2004,Simon Schuster +1627,Brokeback Mountain,Annie Proulx,3.94,0743271327,9780743271325,eng,55,24985,1751,12/2/2005,Scribner +1633,Getting Things Done: The Art of Stress-Free Productivity,David Allen,3.99,0142000280,9780142000281,en-GB,267,105507,3838,12/31/2002,Penguin Books +1634,Getting Things Done When You Are Not in Charge,Geoffrey M. Bellman,3.46,1576751724,9781576751725,eng,176,75,12,8/27/2001,Berrett-Koehler Publishers +1642,Formas breves,Ricardo Piglia,4.17,843392463X,9788433924636,spa,144,240,30,6/1/2001,Anagrama +1643,El último lector,Ricardo Piglia,4.14,8433968777,9788433968777,spa,209,331,24,7/15/2009,Anagrama +1645,Money to Burn,Ricardo Piglia/Amanda Hopkinson,3.76,1862076650,9781862076655,eng,209,69,12,8/1/2004,Granta UK +1646,Respiración artificial,Ricardo Piglia,3.96,8433924710,9788433924711,spa,218,1279,77,3/1/2008,Anagrama +1654,Plata quemada,Ricardo Piglia,3.76,8433924621,9788433924629,spa,227,1098,65,7/1/2005,Anagrama +1658,American Government: Continuity and Change Alternate Edition,Karen O'Connor/Larry J. Sabato,2.83,0321317106,9780321317100,eng,664,0,0,3/11/2005,Longman Publishing Group +1664,Essentials of American and Texas Government: Continuity and Change,Karen O'Connor/Larry J. Sabato,3.50,0321365208,9780321365200,eng,854,0,0,7/29/2005,Longman Publishing Group +1667,El túnel,Ernesto Sabato,4.05,8432216429,9788432216428,spa,159,453,60,7/1/2003,Seix Barral +1681,The Confessions (Works of Saint Augustine 1),Augustine of Hippo/John E. Rotelle/Maria Boulding,3.92,1565480848,9781565480841,eng,416,142,24,12/1/2002,New City Press +1684,The City of God,Augustine of Hippo/Thomas Merton/Marcus Dods,3.92,0679783199,9780679783190,eng,905,104,16,9/12/2000,Random House +1685,The Enchiridion on Faith Hope and Love (Augustine Series 1),Augustine of Hippo/Bruce Harbert/John E. Rotelle,4.04,1565481240,9781565481244,eng,144,271,21,10/1/1999,New City Press +1686,Augustine of Hippo: A Biography,Peter R.L. Brown,4.27,0520227573,9780520227576,en-US,576,1643,97,11/24/2000,University of California Press +1693,On Christian Doctrine,Augustine of Hippo/D.W. Robertson Jr.,4.03,0024021504,9780024021502,eng,191,2335,67,1/11/1958,Library of Liberal Arts/Bobb-Merrill (Indianapolis IN) +1698,Confessions Books 1-13,Augustine of Hippo/Peter R.L. Brown/Frank Sheed,3.92,0872201864,9780872201866,eng,296,84,8,1/1/1993,Hackett Publ. Co Inc +1702,Saint Augustine,Garry Wills,3.55,0143035983,9780143035985,eng,176,259,30,8/30/2005,Penguin Books +1703,Augustine: A Very Short Introduction,Henry Chadwick,3.71,0192854526,9780192854520,eng,144,236,33,6/7/2001,Oxford University Press USA +1707,On Genesis/A Refutation of the Manichees/The Unfinished Literal Meaning of Genesis (Works of St Augustine 1),Augustine of Hippo/Boniface Ramsey/Edmund Hill,3.94,1565482018,9781565482012,eng,540,29,3,5/1/2004,New City Press +1709,Kitchen Confidential: Adventures in the Culinary Underbelly,Anthony Bourdain,4.07,0060934913,9780060934910,eng,302,2488,266,5/1/2001,Ecco Press +1710,Confesiones de un chef,Anthony Bourdain,4.07,8466308954,9788466308953,spa,478,11,0,2/1/2003,Santillana USA Publishing Company +1713,The Metamorphoses of Ovid,Ovid/Allen Mandelbaum,4.05,0156001268,9780156001267,eng,559,710,64,4/15/1995,Harcourt Brace +1715,Metamorphoses,Ovid/David Raeburn/Denis Feeney,4.05,014044789X,9780140447897,eng,723,48223,764,8/3/2004,Penguin +1718,Metamorphoses,Ovid/Bernard Knox/Charles Martin,4.05,0393058107,9780393058109,eng,624,30,8,11/17/2003,W. W. Norton Company +1720,Ovid's Metamorphoses: Books 1-5,Ovid/William Scovil Anderson,4.27,0806128941,9780806128948,eng,584,229,16,1/15/1998,University of Oklahoma Press +1721,Ovid’s Metamorphoses: Books 6-10,Ovid/William Scovil Anderson,4.32,0806114568,9780806114569,eng,560,32,3,1/15/1978,University of Oklahoma Press +1722,Latin Via Ovid: A First Course,Norma Goldman/Jacob E. Nyenhuis,4.36,0814317324,9780814317327,en-US,524,78,8,9/1/1982,Wayne State University Press +1725,The Art of Love and Other Poems,Ovid/J.H. Mozley/G.P. Goold,4.02,0674992555,9780674992559,eng,400,98,5,1/1/1929,Harvard University Press +1728,The Poems of Exile: Tristia and the Black Sea Letters,Ovid/Peter Green,4.12,0520242602,9780520242609,eng,451,432,14,1/18/2005,University of California Press +1729,Metamorphoses: Volume 2 Books IX-XV,Ovid/Frank Justus Miller,4.52,0674990471,9780674990470,eng,499,61,4,1/1/1985,Harvard University Press +1730,Metamorphoses: Volume I Books I-VIII,Ovid/Frank Justus Miller,4.42,0674990463,9780674990463,eng,496,813,14,1/1/1977,Harvard University Press +1731,Practice! Practice!: A Latin Via Ovid Workbook,Norma Goldman/Michael Rossi,4.08,0814326110,9780814326114,eng,152,12,0,7/1/1995,Wayne State University Press +1744,Tibullus: A Commentary,Michael C.J. Putnam,3.71,0806115602,9780806115603,eng,222,7,1,11/15/1979,University of Oklahoma Press +1750,Dionysiac Poetics and Euripides' Bacchae,Charles Segal,4.62,069101597X,9780691015972,eng,440,12,0,11/16/1997,Princeton University Press +1752,Antigone,Sophocles/Reginald Gibbons/Charles Segal,3.64,0195143108,9780195143102,eng,197,36,5,9/1/2007,Oxford University Press +1761,Antigone,Sophocles/Reginald Gibbons/Charles Segal,3.64,0195143736,9780195143737,eng,208,264,14,6/5/2003,Oxford University Press USA +1771,Object-Oriented Programming in C++,Richard Johnsonbaugh/Martin Kalin,4.07,0130158852,9780130158857,eng,640,14,0,8/13/1999,Prentice Hall +1796,The Iliad,Homer/Robert Fitzgerald,3.86,1857150600,9781857150605,eng,594,30,2,3/19/1992,Everyman +1800,Love Sex & Tragedy: How the Ancient World Shapes Our Lives,Simon Goldhill,3.79,0226301192,9780226301198,eng,345,122,16,11/1/2005,University of Chicago Press +1801,Reading Greek Tragedy,Simon Goldhill,4.12,0521315794,9780521315791,eng,302,32,3,8/5/1986,Cambridge University Press +1804,Who Needs Greek? Contests in the Cultural History of Hellenism,Simon Goldhill,3.40,0521011760,9780521011761,eng,334,10,1,4/4/2002,Cambridge University Press +1805,Foucault's Virginity: Ancient Erotic Fiction & the History of Sexuality (Stanford Memorial Lecture),Simon Goldhill,3.73,0521479347,9780521479349,eng,212,10,0,1/26/1995,Cambridge University Press +1814,2012: The Return of Quetzalcoatl,Daniel Pinchbeck,3.42,1585424838,9781585424832,en-US,408,1416,217,5/4/2006,Tarcher +1815,Breaking Open the Head: A Psychedelic Journey Into the Heart of Contemporary Shamanism,Daniel Pinchbeck/Lee Fukui,4.06,0767907434,9780767907439,en-US,336,2799,166,8/12/2003,Three Rivers Press (CA) +1823,Them: Adventures with Extremists,Jon Ronson,3.95,0743233212,9780743233217,eng,336,11990,831,1/7/2003,Simon Schuster +1824,The Men Who Stare at Goats,Jon Ronson,3.61,0743270606,9780743270601,eng,259,10679,899,4/10/2006,Simon Schuster +1839,Guns Germs and Steel: The Fates of Human Societies,Jared Diamond,4.03,0393061310,9780393061314,eng,518,4356,404,7/11/2005,W.W. Norton +1843,Caught Inside: A Surfer's Year on the California Coast,Daniel Duane,3.87,0865475091,9780865475090,eng,256,633,60,4/10/1997,North Point Press +1845,Into the Wild,Jon Krakauer,3.98,0385486804,9780385486804,eng,207,800349,18198,1/20/1997,Anchor Books +1846,Wild at Heart: Discovering the Secret of a Man's Soul,John Eldredge,3.92,0785268839,9780785268833,eng,256,55106,1503,4/1/2001,Thomas Nelson +1848,Wild Swans: Three Daughters of China,Jung Chang,4.26,0743246985,9780743246989,eng,562,73572,4280,8/12/2003,Simon Schuster +1849,Wild Fire (John Corey #4),Nelson DeMille,4.01,044657967X,9780446579674,eng,519,20909,944,11/6/2006,Warner Books (NY) +1850,Born to Be Wild,Catherine Coulter,3.78,0515142395,9780515142396,eng,354,2456,115,7/25/2006,Jove +1852,The Call of the Wild,Jack London/Avi,3.86,0439227143,9780439227148,eng,172,274649,7203,1/1/2001,Scholastic +1853,Wild About Books,Judy Sierra/Marc Brown,4.17,037582538X,9780375825385,eng,40,4541,378,8/10/2004,Alfred A. Knopf Books for Young Readers +1856,In Web Design for Libraries,Charles P. Rubenstein,2.67,1591583667,9781591583660,eng,196,9,2,12/1/2006,Libraries Unlimited +1869,Nickel and Dimed: On (Not) Getting by in America,Barbara Ehrenreich,3.63,0805063897,9780805063899,eng,240,168362,5762,5/1/2002,Owl Books (Henry Holt) +1877,The History of Sexuality 1: An Introduction,Michel Foucault/Robert Hurley,4.04,0394417755,9780394417752,eng,168,15,3,10/1/1978,Pantheon Books (NY) +1879,The History of Sexuality Volume 1: The Will to Knowledge,Michel Foucault/Robert Hurley,4.04,0140268685,9780140268683,eng,168,313,27,10/29/1998,Penguin +1883,The History of Sexuality Volume 2: The Use of Pleasure,Michel Foucault/Robert Hurley,4.08,0140137343,9780140137347,eng,304,51,2,7/30/1998,Penguin +1887,The Making of Pride and Prejudice,Sue Birtwistle/Sue Conklin/Susie Conklin,4.45,014025157X,9780140251579,eng,128,4244,99,9/7/1995,Penguin Books Ltd +1888,Pride and Prejudice,Jane Austen,4.26,0192802380,9780192802385,eng,333,2399,253,2/11/2004,Oxford University Press +1889,Pride & Prejudice,Jane Austen/Vivien Jones,4.26,0143036238,9780143036234,eng,392,1821,210,9/1/2005,Penguin Books +1891,Pride and Prejudice,Jane Austen/George Saintsbury/Hugh Thomson,4.26,0486440915,9780486440910,eng,476,1146,166,5/5/2005,Dover Publications +1893,Pride and Prejudice,Jane Austen/Carol Howard,4.26,1593083246,9781593083243,eng,392,1628,171,9/20/2004,Barnes Noble Classics +1894,Under the Banner of Heaven: A Story of Violent Faith,Jon Krakauer,4.00,1400032806,9781400032808,eng,399,7481,1022,7/10/2003,Anchor Books +1896,Iceland: Land of the Sagas,David Roberts/Jon Krakauer,3.71,0375752676,9780375752674,eng,160,330,40,10/6/1998,Villard +1898,Into Thin Air: A Personal Account of the Mount Everest Disaster,Jon Krakauer,4.17,0385494785,9780385494786,eng,368,351406,11701,10/19/1999,Anchor Books +1902,In the Land of White Death: An Epic Story of Survival in the Siberian Arctic,Valerian Albanov/Jon Krakauer/David Roberts/Alison Anderson/Валериан Альбанов,4.01,067978361X,9780679783619,eng,288,1910,136,9/4/2001,Modern Library +1911,The World Is Flat: A Brief History of the Twenty-first Century,Thomas L. Friedman,3.68,0374292795,9780374292799,eng,616,87570,2800,4/18/2006,Farrar Straus and Giroux (NY) +1914,La Tierra es plana: Breve historia del mundo globalizado del siglo XXI,Thomas L. Friedman,3.68,8427032226,9788427032224,spa,495,38,0,1/1/2006,Planeta Publishing +1925,The Avalanche Handbook,David McClung/Peter Schaerer,4.07,0898868092,9780898868098,eng,342,43,1,10/12/2006,Mountaineers Books +1931,Avalanche,Arthur J. Roth,3.65,0590422677,9780590422673,eng,144,273,36,1/1/1989,Scholastic +1934,Little Women,Louisa May Alcott,4.07,0451529308,9780451529305,eng,449,1479727,18458,4/6/2004,Signet Classics +1935,Little Women (Little Women #1),Louisa May Alcott/Scott McKowen,4.07,1402714580,9781402714580,eng,536,1395,131,10/1/2004,Sterling +1936,Little Women,Louisa May Alcott/Paula Danziger,4.07,0439101360,9780439101363,eng,562,462,45,1/1/2000,Scholastic Paperbacks +1937,Little Women,Louisa May Alcott/Jessie Willcox Smith/Frank T. Merrill,4.07,0517221160,9780517221167,eng,389,166,9,9/3/2002,Gramercy Books +1946,Little Women Little Men Jo's Boys,Louisa May Alcott/Elaine Showalter,4.33,1931082731,9781931082730,eng,1064,3124,87,2/17/2005,Library of America +1947,Little Women,Louisa May Alcott,4.07,1904633277,9781904633273,eng,327,83,9,2/1/2004,Collector's Library +1955,A Tale of Two Cities,Charles Dickens/Keith Cox/Cynthia Brantley Johnson,3.84,0743487605,9780743487603,eng,496,131,28,5/1/2004,Simon Schuster +1957,A Tale of Two Cities,Charles Dickens/Gillen D'Arcy Wood,3.84,1593081383,9781593081386,eng,409,1343,183,7/25/2004,Barnes & Noble Classics +1958,A Tale of Two Cities: Charles Dickens,SparkNotes,4.00,158663352X,9781586633523,eng,96,10,1,1/10/2002,Spark Publishing +1959,A Tale of Two Cities,Charles Dickens/Gillen D'Arcy Wood,3.84,1593080557,9781593080556,en-US,429,730,88,12/1/2003,Barnes Noble Classics +1960,A Tale of Two Cities,Charles Dickens/Simon Schama,3.84,1857151437,9781857151435,eng,432,39,9,3/18/1993,Everyman's Library +1972,Den of Thieves,James B. Stewart,4.16,067179227X,9780671792275,en-US,592,9718,216,9/1/1992,Simon Schuster +1976,Den of Thieves (Cat Royal #3),Julia Golding,4.21,1405228180,9781405228183,eng,416,1432,61,1/31/2007,Egmont Books Ltd +1982,Charles Dickens: Four Novels: Great Expectations Hard Times A Christmas Carol and A Tale of Two Cities,Charles Dickens,4.30,0517093391,9780517093399,en-US,848,32,2,10/2/1993,Gramercy +1984,Bleak House,Charles Dickens/Mary Gaitskill/Hablot Knight Browne,4.01,0375760059,9780375760051,eng,887,1235,146,7/9/2002,Modern Library +1985,David Copperfield,Charles Dickens/Gish Jen,3.99,0451530047,9780451530042,eng,928,355,17,2/7/2006,Signet +1987,What Jane Austen Ate and Charles Dickens Knew: From Fox Hunting to Whist—the Facts of Daily Life in 19th-Century England,Daniel Pool,3.85,0671882368,9780671882365,en-US,416,4873,501,4/21/1994,Touchstone +1988,Charles Dickens,Jane Smiley,3.82,0670030775,9780670030774,eng,224,552,81,5/13/2002,Viking +1990,Martin Chuzzlewit,Charles Dickens/Patricia Ingham/Hablot Knight Browne,3.83,0140436146,9780140436143,eng,830,13212,394,11/25/1999,Penguin Classics +1991,Why Is Sex Fun? The Evolution of Human Sexuality (Science Masters),Jared Diamond,3.71,0465031269,9780465031269,eng,176,4532,278,9/25/1998,Basic Books +1993,The Third Chimpanzee: The Evolution & Future of the Human Animal,Jared Diamond,4.06,0060183071,9780060183073,eng,407,59,1,1/1/1992,HarperCollins Publishers +1999,J.K.Rowling,Colleen Sexton,3.84,0822533898,9780822533894,eng,112,127,10,9/1/2005,Lerner Publications +2002,Harry Potter Schoolbooks Box Set: Two Classic Books from the Library of Hogwarts School of Witchcraft and Wizardry,J.K. Rowling,4.40,043932162X,9780439321624,eng,240,11515,139,11/1/2001,Arthur A. Levine +2004,J.K. Rowling's Harry Potter Novels: A Reader's Guide,Philip Nel,3.58,0826452329,9780826452320,eng,96,78,9,9/26/2001,Bloomsbury Academic +2005,Harry Potter and the Half-Blood Prince (Harry Potter #6),J.K. Rowling,4.57,0747584664,9780747584667,eng,768,1213,78,6/23/2006,Bloomsbury Publishing +2010,The Santaroga Barrier,Frank Herbert,3.66,0765342510,9780765342515,eng,256,1625,85,9/16/2002,Tor Books +2011,The Dosadi Experiment (ConSentiency Universe #2),Frank Herbert,3.81,0765342537,9780765342539,eng,320,6146,150,9/16/2002,Tor Books +2015,The Eyes of Heisenberg,Frank Herbert,3.43,0765342529,9780765342522,eng,192,1485,76,9/16/2002,Tor Books +2019,The Birds (Methuen Drama),Sean O'Brien,2.67,0413772780,9780413772787,en-GB,96,3,1,7/22/2002,Bloomsbury Methuen Drama +2022,The Frogs,Aristophanes/B.B. Rogers,3.80,1420926713,9781420926712,en-US,88,3,1,1/1/2005,Digireads.com +2025,Lysistrata,Aristophanes/Jeffrey Henderson,3.85,0198144962,9780198144960,eng,320,76,6,6/21/1990,OUP Oxford +2026,Myths of the Underworld Journey: Plato Aristophanes and the "Orphic" Gold Tablets,Radcliffe G. Edmonds III,3.75,0521834341,9780521834346,eng,276,3,0,11/18/2004,Cambridge University Press +2028,Assembly of Women (Literary Classics),Aristophanes/Robert Mayhew,3.77,1573921335,9781573921336,en-GB,124,56,4,4/1/1997,Prometheus Books +2034,Comoediae 1: Acharenses/Equites/Nubes/Vespae/Pax/Aves,Aristophanes/F.W. Hall/W.M. Geldart,5.00,0198145047,9780198145042,grc,364,0,0,2/22/1922,Oxford University Press USA +2043,Aristophanes and His Theatre of the Absurd,Paul Anthony Cartledge,3.86,1853991147,9781853991141,eng,127,7,1,6/1/1991,Bristol Classical Press +2045,Later Novels and Other Writings: The Lady in the Lake / The Little Sister / The Long Goodbye / Playback / Double Indemnity (screenplay) / Selected Essays and Letters,Raymond Chandler/Frank MacShane,4.47,1883011086,9781883011086,eng,1076,1107,48,10/1/1995,Library of America +2046,Stories and Early Novels: Pulp Stories / The Big Sleep / Farewell My Lovely / The High Window,Raymond Chandler/Frank MacShane,4.50,1883011078,9781883011079,eng,1199,1324,66,10/1/1995,Library of America +2048,The Lady in the Lake The Little Sister The Long Goodbye Playback (Everyman's Library),Raymond Chandler/Tom Hiney,4.45,0375415025,9780375415029,eng,1016,241,11,10/15/2002,Everyman's Library +2049,The High Window (Philip Marlowe #3),Raymond Chandler,4.08,0394758269,9780394758268,eng,265,13233,570,8/12/1992,Vintage Crime/Black Lizard +2051,The Simple Art of Murder,Raymond Chandler,4.16,0394757653,9780394757650,eng,384,4952,162,9/12/1988,Vintage Crime/Black Lizard +2052,The Big Sleep (Philip Marlowe #1),Raymond Chandler,4.01,0394758285,9780394758282,eng,231,103400,4076,7/12/1988,Vintage Crime +2054,The Long Goodbye (Philip Marlowe #6),Raymond Chandler,4.22,0394757688,9780394757681,eng,379,26389,1619,8/12/1988,Vintage Crime/Black Lizard +2056,An Evening of Long Goodbyes,Paul Murray,3.60,0812970403,9780812970401,eng,448,983,130,9/13/2005,Random House Trade Paperbacks +2057,The Long Goodbye: Memories of My Father,Patti Davis,3.82,0452286875,9780452286870,eng,205,214,31,10/1/2005,Plume Books +2058,Ghost In the Shell 2: Innocence: After the Long Goodbye,Masaki Yamada/Yuji Oniki/Carl Gustav Horn,3.97,1421501562,9781421501567,eng,196,250,12,10/11/2005,VIZ Media LLC +2059,The Long Goodbye (Philip Marlowe #6),Raymond Chandler,4.22,056352474X,9780563524748,eng,2,10,2,9/20/2004,BBC Worldwide +2067,Breaking the Spell: Religion as a Natural Phenomenon,Daniel C. Dennett,3.89,067003472X,9780670034727,eng,448,10135,330,2/24/2006,Viking Books +2068,Darwin's Dangerous Idea: Evolution and the Meanings of Life,Daniel C. Dennett,4.04,068482471X,9780684824710,eng,588,13563,235,6/12/1996,Simon Schuster +2071,Freedom Evolves,Daniel C. Dennett,3.83,0142003840,9780142003848,eng,368,2324,88,1/27/2004,Penguin +2072,Brainstorms: Philosophical Essays on Mind and Psychology,Daniel C. Dennett,3.95,0262540371,9780262540377,eng,424,573,11,7/13/1981,MIT Press +2074,Kinds of Minds: Towards an Understanding of Consciousness,Daniel C. Dennett,3.82,0465073514,9780465073511,eng,192,1555,63,6/12/1997,Basic Books +2077,Leaps of Faith: Science Miracles & the Search for Supernatural Consolation,Nicholas Humphrey/Daniel C. Dennett,3.61,0387987207,9780387987200,en-US,244,21,3,6/4/1999,Copernicus Books +2078,Elbow Room: The Varieties of Free Will Worth Wanting,Daniel C. Dennett,3.92,0262540428,9780262540421,eng,212,515,37,11/21/1984,MIT Press +2081,The Mind’s I: Fantasies and Reflections on Self and Soul,Douglas R. Hofstadter/Daniel C. Dennett,4.14,0553345842,9780553345841,eng,512,4786,92,4/1/1985,Bantam Books +2093,The Illustrated A Brief History of Time,Stephen Hawking,4.17,0553103741,9780553103748,eng,256,817,63,11/1/1996,Bantam Books +2094,A Briefer History of Time,Stephen Hawking/Leonard Mlodinow,4.22,0553804367,9780553804362,eng,176,24035,828,9/27/2005,Bantam +2095,The Universe in a Nutshell,Stephen Hawking,4.15,055380202X,9780553802023,eng,216,29607,645,11/6/2001,Bantam +2096,God Created the Integers: The Mathematical Breakthroughs That Changed History,Stephen Hawking,4.07,0762419229,9780762419227,eng,1160,1682,51,10/4/2005,Running Press Book Publishers +2099,Stephen Hawking's Universe: The Cosmos Explained,David Filkin/Stephen Hawking,4.29,0465081983,9780465081981,eng,304,1469,22,10/9/1998,Basic Books +2100,The Future of Spacetime,Stephen Hawking/Kip S. Thorne/Igor Novikov/Timothy Ferris/Alan Lightman/Richard Price,3.94,039332446X,9780393324464,eng,224,257,10,6/17/2003,W. W. Norton Company +2102,Stephen Hawking's Universe,John Boslough,4.02,0380707632,9780380707638,eng,160,674,30,6/1/1989,Avon +2103,The Nature of Space and Time,Stephen Hawking/Roger Penrose,4.09,0691050848,9780691050843,eng,152,989,40,10/8/2000,Princeton University Press +2104,The Physics of Star Trek,Lawrence M. Krauss/Stephen Hawking,3.83,0060977108,9780060977108,eng,188,4774,178,8/16/1996,ReganBooks +2107,Falconry & Hawking,Phillip Glasier,4.31,0713484071,9780713484076,eng,352,51,5,2/1/2006,Batsford +2109,The World Treasury of Physics Astronomy & Mathematics from Albert Einstein to Stephen W. Hawking & from Annie Dillard to John Updike,Timothy Ferris,4.13,0316281336,9780316281331,eng,859,371,12,6/30/1993,Back Bay Books +2112,The Art of Nonfiction: A Guide for Writers and Readers,Ayn Rand/Robert Mayhew/Peter Schwartz,3.96,0452282314,9780452282315,en-US,192,429,39,2/1/2001,New American Library +2113,The Journals of Ayn Rand,Ayn Rand/Leonard Peikoff/David Harriman,3.94,0452278872,9780452278875,eng,752,317,14,8/1/1999,NAL +2122,The Fountainhead,Ayn Rand/Leonard Peikoff,3.87,0451191153,9780451191151,eng,704,271754,10063,9/1/1996,Signet Book +2123,The 36-Hour Day: A Family Guide to Caring for Persons with Alzheimer Disease Related Dementing Illnesses and Memory Loss in Later Life,Nancy L. Mace/Peter V. Rabins,4.24,0446618764,9780446618762,eng,624,69,6,11/1/2006,Grand Central Life & Style +2126,The 3-Hour Diet: On the Go,Jorge Cruise,3.10,0060793198,9780060793197,en-US,192,31,2,10/18/2005,William Morrow Paperbacks +2127,The Last Hours of Ancient Sunlight: The Fate of the World and What We Can Do Before It's Too Late,Thom Hartmann/Joseph Chilton Pearce/Neale Donald Walsch,4.23,1400051576,9781400051571,en-US,400,1392,136,4/27/2004,Broadway Books +2136,Specimen Days,Michael Cunningham,3.58,0312425023,9780312425029,eng,336,4462,446,4/18/2006,Picador USA +2137,A Home at the End of the World,Michael Cunningham,3.91,0312424086,9780312424084,eng,342,14769,658,7/1/2004,Picador +2140,Blink: The Power of Thinking Without Thinking,Malcolm Gladwell,3.93,0316172324,9780316172325,en-US,277,4254,355,1/11/2005,Little Brown and Company +2142,Blink,Ted Dekker,4.17,0849945119,9780849945113,eng,400,13334,502,10/11/2004,Thomas Nelson +2144,Blink-182: Tales from Beneath Your Mom,Mark Hoppus/Anne Hoppus/Alex Gaskarth,4.39,0743422074,9780743422079,eng,112,169,22,10/2/2001,MTV Books +2151,The Complete Novels,Jane Austen/Hugh Thomson,4.55,0517147688,9780517147689,eng,1103,300,31,9/3/1995,Gramercy Books +2152,The Jane Austen Book Club,Karen Joy Fowler,3.08,0452286530,9780452286535,eng,288,57720,3535,4/26/2005,G.P. Putnam's Sons +2153,Jane Austen: The Complete Novels,Jane Austen,4.55,0517118297,9780517118290,eng,1103,267,24,6/1/1994,Gramercy Books +2155,Jane Austen's Letters,Jane Austen/Deirdre Le Faye,4.16,0192832972,9780192832979,eng,672,2278,69,4/3/1997,Oxford University Press USA +2156,Persuasion,Jane Austen/James Kinsley/Anna Massey/Richard S. Hartmetz/Maurgaux Motin/Deidre Shauna Lynch,4.14,0192802631,9780192802637,eng,249,441462,11308,3/18/2004,Oxford University Press +2157,Tea with Jane Austen,Kim Wilson/Tom Carpenter,3.79,097212179X,9780972121798,eng,128,1442,108,9/3/2004,Jones Books +2166,The Old Man and the Sea,Ernest Hemingway/Donald Sutherland,3.77,0743564367,9780743564366,eng,3,393,77,5/1/2006,Simon Schuster Audio +2167,Cliffs Notes on Hemingway's The Old Man and the Sea,Jeanne Sallade Criswell/Gary Carey,2.83,0764586602,9780764586606,en-US,80,4,0,12/5/2000,Cliffs Notes +2176,Flaubert's Parrot,Julian Barnes,3.66,0679731369,9780679731368,eng,190,9373,606,11/27/1990,Vintage +2178,Flaubert in Egypt: A Sensibility on Tour,Gustave Flaubert/Francis Steegmuller,3.62,0140435824,9780140435825,eng,230,378,31,3/30/1996,Penguin Books (Penguin Classics) +2179,A Sentimental Education,Gustave Flaubert/Douglas Parmée,3.83,0192836226,9780192836229,eng,464,105,7,5/18/2000,Oxford University Press +2182,Three Tales,Gustave Flaubert/Roger Whitehouse/Geoffrey Wall,3.69,0140448004,9780140448009,eng,110,3190,150,1/27/2005,Penguin Classics +2183,Sentimental Education,Gustave Flaubert/Robert Baldick/Geoffrey Wall,3.83,0140447970,9780140447972,eng,460,13499,388,2/5/2004,Penguin Classics +2186,The Family Idiot 5: Gustave Flaubert 1821-1857,Jean-Paul Sartre/Carol Cosman,3.80,0226735192,9780226735191,en-US,632,5,1,1/26/1994,University of Chicago Press +2187,Middlesex,Jeffrey Eugenides,4.00,0312422156,9780312422158,eng,529,540349,19548,9/16/2003,Picador USA +2199,Team of Rivals: The Political Genius of Abraham Lincoln,Doris Kearns Goodwin,4.28,0743270754,9780743270755,eng,916,133840,6118,9/26/2006,Simon & Schuster +2203,John Adams,David McCullough,4.06,0743223136,9780743223133,eng,751,282649,5325,5/22/2001,Simon & Schuster Paperbacks +2204,The John Adams Reader: Eseential Writings on an American Composer,Thomas May/John Adams,3.50,1574671324,9781574671322,eng,455,20,5,6/1/2006,Amadeus +2205,The Letters of John and Abigail Adams,Abigail Adams/Frank Shuffelton,4.14,0142437115,9780142437117,eng,512,275,28,12/30/2003,Penguin Classics +2209,Passionate Sage: The Character and Legacy of John Adams,Joseph J. Ellis,4.05,0393311333,9780393311334,eng,288,2622,78,2/17/2001,W. W. Norton Company +2211,The Portable John Adams,John Adams/John Patrick Diggins,4.17,0142437786,9780142437780,eng,533,57,0,6/29/2004,Penguin Books +2218,Sex For Dummies,Ruth Westheimer,3.65,076455302X,9780764553028,eng,432,10,0,12/28/2000,For Dummies +2219,Baby Signing For Dummies,Jennifer Watson,3.64,0471773867,9780471773863,eng,257,37,9,10/1/2006,John Wiley & Sons +2222,The Feeling Good Handbook,David D. Burns,4.00,0452281326,9780452281325,eng,729,4797,124,10/28/1999,Penguin +2226,On Death and Dying,Elisabeth Kübler-Ross,4.16,0684842238,9780684842233,eng,288,144,10,7/2/1997,Scribner +2227,Questions and Answers on Death and Dying: A Companion Volume to On Death and Dying,Elisabeth Kübler-Ross,4.07,0684839377,9780684839370,eng,192,197,7,6/9/1997,Scribner +2228,The Last Dance: Encountering Death and Dying,Lynne Ann DeSpelder/Albert Lee Strickland,3.77,0072920963,9780072920963,eng,664,123,13,2/6/2004,McGraw-Hill Humanities/Social Sciences/Languages +2236,Mahatma Gandhi and His Myths: Civil Disobedience Nonviolence and Satyagraha in the Real World (Plus Why It's Gandhi Not Ghandi),Mark Shepard,3.62,0938497197,9780938497196,eng,46,55,7,1/1/2002,Simple Productions +2249,The Seven Habits of Highly Effective People,Stephen R. Covey,4.10,0671708635,9780671708634,eng,368,2505,233,9/15/1990,Free Press +2250,The 7 Habits of Highly Effective People Personal Workbook,Stephen R. Covey,4.24,0743250974,9780743250979,eng,192,1874,114,1/6/2004,Simon Schuster +2253,Daily Reflections For Highly Effective People: Living the 7 Habits of Highly Successful People Every Day,Stephen R. Covey,3.90,0671887173,9780671887179,eng,384,336,26,3/21/1994,Simon Schuster +2255,Way of the Peaceful Warrior: A Book That Changes Lives,Dan Millman,4.14,1932073205,9781932073201,en-US,240,39947,1622,4/13/2006,HJ Kramer +2257,Secret of the Peaceful Warrior,Dan Millman/Robert D. San Souci/T. Taylor Bruce,4.15,0915811235,9780915811236,en-US,32,156,13,12/28/1992,HJ Kramer +2265,It's Not about the Bike: My Journey Back to Life,Lance Armstrong/Sally Jenkins,3.72,0425179613,9780425179611,eng,294,35050,1833,9/1/2001,Berkley Publishing Group +2267,23 Days in July: Inside the Tour de France and Lance Armstrong's Record-Breaking Victory,John Wilcockson/Graham Watson,3.67,0306814552,9780306814556,eng,344,360,26,6/15/2005,Da Capo Press +2279,Truman,David McCullough,4.12,0671869205,9780671869205,eng,1120,71764,1937,6/14/1993,Simon Schuster +2281,The Complete Stories of Truman Capote,Truman Capote/Reynolds Price,4.20,140009691X,9781400096916,eng,320,3993,217,9/13/2005,Vintage +2282,Breakfast at Tiffany's: A Short Novel and Three Stories,Truman Capote,3.89,067960085X,9780679600855,eng,162,5658,699,1/13/1994,Modern Library +2283,Murder at The Washington Tribune (Capital Crimes #21),Margaret Truman,3.58,0345478207,9780345478207,eng,384,585,78,10/31/2006,Ballantine Books +2285,Murder at Ford's Theatre (Capital Crimes #19),Margaret Truman,3.74,0449007383,9780449007389,en-US,376,623,68,9/30/2003,Fawcett +2287,Other Voices Other Rooms,Truman Capote,3.80,0679745645,9780679745648,eng,232,10635,656,2/1/1994,Vintage +2289,In Cold Blood,Truman Capote/Scott Brick,4.07,073933364X,9780739333648,eng,15,563,133,1/3/2006,Random House Audio +2296,Emergence: The Connected Lives of Ants Brains Cities and Software,Steven Johnson,3.96,0684868768,9780684868769,en-US,288,2769,200,9/10/2002,Scribner +2299,Emergence: Labeled Autistic,Temple Grandin/Margaret M. Scariano,4.07,0446671827,9780446671828,en-GB,200,1827,154,9/1/1996,Grand Central Publishing +2304,The Emergence of Life on Earth: A Historical and Scientific Overview,Iris Fry,4.02,0813527406,9780813527406,eng,344,48,5,2/1/2000,Rutgers University Press +2305,The Ghost Stories of Edith Wharton,Edith Wharton/Laszlo Kubinyi,3.89,0684842572,9780684842578,eng,303,2842,182,10/10/1997,Scribner +2306,The House of Mirth / The Reef / The Custom of the Country / The Age of Innocence,Edith Wharton/R.W.B. Lewis,4.30,0940450313,9780940450318,eng,1328,446,29,5/12/1986,Library of America +2307,Collected Stories 1911-1937,Edith Wharton/Maureen Howard,4.25,1883011949,9781883011949,eng,848,55,9,1/29/2001,Library of America +2309,Novellas and Other Writings: Madame de Treymes / Ethan Frome / Summer / Old New York / The Mother’s Recompense / A Backward Glance,Edith Wharton/Cynthia Griffin Wolff,4.22,0940450534,9780940450530,eng,1137,67,9,4/1/1990,Library of America +2314,The House of Mirth,Edith Wharton,3.95,0486420493,9780486420493,eng,272,749,62,8/6/2002,Dover Publications +2315,Below the Root,Zilpha Keatley Snyder/Alton Raible,4.08,0689304579,9780689304576,eng,231,41,9,1/1/1975,Atheneum Books +2319,The Witches of Worm,Zilpha Keatley Snyder,3.69,0440802504,9780440802501,eng,183,40,12,5/1/1991,Dell Yearling +2322,The Deeper Meaning of Liff,Douglas Adams/John Lloyd,3.93,0307236013,9780307236012,eng,192,3986,85,4/19/2005,Three Rivers Press +2326,Dirk Gently's Holistic Detective Agency (Dirk Gently #1),Douglas Adams,3.98,1597770078,9781597770071,eng,6,58,15,9/30/2005,Phoenix Audio +2327,The Letters of J.R.R. Tolkien,J.R.R. Tolkien/Humphrey Carpenter/Christopher Tolkien,4.15,0618056998,9780618056996,eng,502,4689,171,6/6/2000,Mariner Books +2329,The History of the Lord of the Rings (The History of Middle-earth #6-9),J.R.R. Tolkien/Christopher Tolkien,4.38,0618083553,9780618083558,en-US,1680,237,3,9/1/2000,Mariner Books +2330,The Languages of Tolkien's Middle-Earth,Ruth S. Noel/J.R.R. Tolkien,3.98,0395291305,9780395291306,eng,207,4685,74,5/28/1980,Houghton Mifflin Company +2331,The Lord of the Rings- 3 volumes set (The Lord of the Rings #1-3),J.R.R. Tolkien,4.50,0618574999,9780618574995,en-US,1438,232,9,6/1/2005,Mariner Books +2333,Farmer Giles of Ham,J.R.R. Tolkien/Christina Scull/Wayne G. Hammond,3.85,0618009361,9780618009367,eng,127,5526,225,11/15/1999,Houghton Mifflin Harcourt +2336,Tandia,Bryce Courtenay,4.05,0140272925,9780140272925,eng,905,8461,369,8/31/1998,Penguin Books Australia Ltd. +2338,Matthew Flinders' Cat,Bryce Courtenay,3.80,0670910619,9780670910618,eng,611,2737,161,12/31/2002,Viking +2343,Solomon's Song (The Potato Factory #3),Bryce Courtenay,4.01,0140271570,9780140271577,eng,671,3920,132,8/31/2001,Penguin Books Australia Ltd. +2348,An Introduction to Old Norse,E.V. Gordon/A.R. Taylor,4.10,0198111843,9780198111849,eng,412,104,7,7/23/1981,Oxford University Press +2353,Cold Counsel: Women in Old Norse Literature and Myth,Sarah M. Anderson/Karen Swenson,3.68,0815319665,9780815319665,eng,320,19,2,12/21/2002,Routledge +2367,Brave Companions: Portraits in History,David McCullough,3.98,0671792768,9780671792763,eng,240,3460,482,11/1/1992,Simon Schuster +2368,Mornings on Horseback: The Story of an Extraordinary Family a Vanished Way of Life and the Unique Child Who Became Theodore Roosevelt,David McCullough,4.12,0671447548,9780671447540,eng,445,23064,1191,5/12/1982,Simon Schuster +2370,John Adams,David McCullough,4.06,0684813637,9780684813639,en-US,752,1852,285,5/1/2001,Simon & Schuster +2371,The Johnstown Flood,David McCullough,4.11,0844662925,9780844662923,eng,302,14739,1199,1/1/1990,Peter Smith Publisher +2372,The Path Between the Seas: The Creation of the Panama Canal 1870-1914,David McCullough,4.20,0743262131,9780743262132,eng,697,12178,1042,6/1/2004,Simon Schuster +2373,The Bone Collector (Lincoln Rhyme #1),Jeffery Deaver,4.19,0451188454,9780451188458,eng,528,140014,1753,4/1/1998,Signet Book +2375,The Bone Collector's Son,Paul Yee,3.27,0761452427,9780761452423,eng,137,117,19,1/1/2004,Two Lions +2378,El Coleccionista De Huesos (Lincoln Rhyme #1),Jeffery Deaver,4.19,8466305130,9788466305136,spa,640,26,2,6/1/2003,Punto de Lectura +2386,Moby Dick,Herman Melville/William Hootkins,3.50,9626343583,9789626343586,eng,25,67,17,9/1/2005,Naxos Audiobooks +2388,Moby-Dick,Jan Needle/Patrick Benson/Herman Melville,3.71,0763630187,9780763630188,eng,192,161,16,9/12/2006,Candlewick Press +2389,Moby Dick,Herman Melville/William Hootkins,3.50,0143058096,9780143058090,eng,6,8858,885,6/16/2005,Penguin Audio +2390,Moby-Dick,Herman Melville/Carl F. Hovde,3.50,1593080182,9781593080181,eng,707,1260,207,4/1/2003,Barnes Noble Classics +2400,Herman Melville's Moby-Dick: A Routledge Study Guide and Sourcebook,Michael J. Davey/Duncan Wu,3.61,0415247713,9780415247719,eng,208,50,7,9/18/2003,Routledge +2404,Moby Dick: or The White Whale (Oxford Illustrated Classics),Geraldine McCaughrean/Victor G. Ambrus/Herman Melville,3.82,0192781537,9780192781536,eng,104,39,5,4/16/1998,Oxford University Press USA +2407,Melville's Moby Dick: An American Nekyia (Studies in Jungian Psychology by Jungian Analysts),Edward F. Edinger,3.93,0919123708,9780919123700,eng,156,23,4,4/30/2004,Inner City Books +2409,Moby Dick: Or the White Whale (Oxford Illustrated Classics Series),Geraldine McCaughrean/Victor G. Ambrus/Herman Melville,3.82,019274156X,9780192741561,eng,102,6,0,4/3/1997,Oxford University Press USA +2411,Melville and the politics of identity: From *King Lear* to *Moby-Dick*,Julian Markels,3.33,0252063023,9780252063022,eng,164,0,0,7/1/1993,University of Illinois Press +2412,Unpainted to the Last: "Moby Dick" and Twentieth-century American Art,Elizabeth A. Schultz,4.28,0700607420,9780700607426,eng,400,16,1,10/20/1995,University Press of Kansas +2423,Double Tap (Paul Madriani #8),Steve Martini,3.92,0515139734,9780515139730,en-US,401,2790,159,12/27/2005,Jove Books +2430,The List,Steve Martini,3.96,0515121495,9780515121490,eng,451,12534,141,12/1/1997,Jove +2442,Witches Abroad (Discworld #12; Witches #3),Terry Pratchett,4.22,0061020613,9780061020612,eng,374,58408,1272,7/30/2002,HarperTorch +2443,The Innocents Abroad,Mark Twain/Grover Gardner,3.86,0812967054,9780812967050,eng,560,8879,693,2/11/2003,Modern Library +2445,Teaching English Abroad,Susan Griffith,3.57,1854583522,9781854583529,eng,576,38,6,1/1/2007,Vacation Work Publications +2452,Theocritus: Select Poems: Select Poems,Theocritus/Kenneth James Dover,3.00,0862921473,9780862921477,grc,395,1,1,6/1/1991,Bristol Classical Press +2473,The Shield. Catalogue of Women. Other Fragments. (Hesiod II),Hesiod/Glenn W. Most,4.03,0674996232,9780674996236,eng,434,33,1,3/1/2007,Harvard University Press +2486,Death and the King's Horseman,Wole Soyinka/Simon Gikandi,3.76,0393977617,9780393977615,en-US,254,259,30,11/5/2002,W. W. Norton & Company +2494,The Time Machine,H.G. Wells/Patrick Parrinder/Steven McLean/Marina Warner,3.89,0141439971,9780141439976,eng,104,3094,301,3/31/2005,Penguin Books Ltd +2495,The Time Machine,H.G. Wells/Cynthia Brantley Johnson/Benjamin Beard,3.89,0743487737,9780743487733,eng,150,372,36,7/1/2004,Simon Schuster +2499,The Ultimate Time Machine: A Remote Viewer's Perception of Time & Predictions for the New Millennium,Joseph McMoneagle,3.59,157174102X,9781571741028,en-GB,275,68,6,10/1/1998,Hampton Roads Publishing Company +2501,The Time Machine,H.G. Wells/Melvin Burgess,3.89,0439436540,9780439436540,eng,123,284,35,3/1/2004,Scholastic Paperbacks +2504,The Complete Short Stories,H.G. Wells/John R. Hammond,4.14,1842124021,9781842124024,eng,864,875,33,5/1/2001,Orion Publishing +2506,Selected Stories,H.G. Wells/Ursula K. Le Guin,3.93,0812970756,9780812970753,en-US,432,80,11,7/13/2004,Modern Library +2508,Tono-Bungay,H.G. Wells/Edward Mendelson/Patrick Parrinder,3.42,0141441119,9780141441115,eng,414,856,111,6/28/2005,Penguin Classics +2519,The Name of the Rose (Everyman's Library (Cloth)),Umberto Eco,4.12,0307264890,9780307264893,en-US,560,1338,113,9/26/2006,Everyman's Library +2520,In the Name of Jesus: Reflections on Christian Leadership,Henri J.M. Nouwen,4.34,0824512596,9780824512590,en-US,120,8228,410,10/1/1992,Crossroad +2521,Blood Done Sign My Name: A True Story,Timothy B. Tyson,4.15,1400083117,9781400083114,eng,368,2594,403,5/3/2005,Broadway Books +2526,Blindness,José Saramago/Giovanni Pontiero,4.11,0156007754,9780156007757,eng,326,107455,7778,10/4/1999,Mariner Books +2527,The Gospel According to Jesus Christ,José Saramago/Giovanni Pontiero,4.29,0156001411,9780156001410,eng,377,799,107,9/28/1994,Harcourt +2528,All the Names,José Saramago/Margaret Jull Costa,3.89,0156010593,9780156010597,eng,245,11016,734,10/5/2001,Mariner Books +2529,The Tale of the Unknown Island,José Saramago/Peter Sís/Margaret Jull Costa,3.89,0156013037,9780156013031,eng,64,3331,242,10/5/2000,Mariner Books +2530,Baltasar and Blimunda,José Saramago/Giovanni Pontiero,3.92,0156005204,9780156005203,eng,346,6184,284,10/16/1998,Mariner Books +2531,The Cave,José Saramago/Margaret Jull Costa,3.84,0156028794,9780156028790,eng,307,7649,548,10/15/2003,Mariner Books +2535,The Stone Raft,José Saramago/Giovanni Pontiero,3.80,0156004011,9780156004015,en-US,292,308,30,6/14/1996,Mariner Books +2536,The Year of the Death of Ricardo Reis,José Saramago/Giovanni Pontiero,4.02,1860465021,9781860465024,eng,384,3826,191,9/17/1998,Vintage Classics +2538,El hombre duplicado,José Saramago/Pilar del Río,3.89,8466312803,9788466312806,spa,380,1295,106,9/1/2004,Punto de Lectura +2539,Ensayo sobre la lucidez,José Saramago/Pilar del Río,3.80,8466314741,9788466314749,spa,461,1744,124,1/1/2005,Punto de Lectura +2541,La caverna,José Saramago/Pilar del Río,3.84,846630679X,9788466306799,spa,441,842,69,2/1/2003,Punto de Lectura +2542,The History of the Siege of Lisbon,José Saramago/Giovanni Pontiero,3.81,0156006243,9780156006248,eng,314,331,62,9/1/1998,Mariner Books +2543,Las intermitencias de la muerte,José Saramago/Pilar del Río,4.00,9587043642,9789587043648,spa,274,2862,306,12/1/2005,Alfaguara +2545,The Treasured Writings of Kahlil Gibran,Kahlil Gibran,4.42,089009389X,9780890093894,eng,902,1432,45,10/6/2009,Castle Books +2547,The Prophet,Kahlil Gibran/جبران خليل جبران/Jihad El,4.23,000100039X,9780001000391,eng,127,184293,5418,1/1/2010,Rupa & Co +2549,A Tear and a Smile,Kahlil Gibran/جبران خليل جبران/H.M. Nahmad/Robert Hillyer,4.03,0394448049,9780394448046,eng,228,2094,104,6/27/1950,Alfred A.Knopf +2551,On the Road,Jack Kerouac,3.63,0143036386,9780143036388,eng,320,488,39,9/6/2005,Penguin Books +2552,On the Road,Jack Kerouac/Ann Charters,3.63,0141182679,9780141182674,eng,281,5575,502,2/24/2000,Penguin Books +2557,De Kooning: An American Master,Mark Stevens/Annalyn Swan,4.11,0375711163,9780375711169,eng,732,2732,105,4/4/2006,Knopf Publishing Group +2560,Willem de Kooning: Late Paintings,Julie Sylvester/David Sylvester,5.00,382960226X,9783829602266,eng,83,1,0,9/1/2006,Schirmer Mosel +2567,Aké: The Years of Childhood,Wole Soyinka,3.93,0679725407,9780679725404,eng,230,1284,90,10/23/1989,Vintage +2581,Ready for Anything: 52 Productivity Principles for Getting Things Done,David Allen,3.85,0143034545,9780143034544,eng,165,3832,178,12/28/2004,Penguin Books +2584,The Facilitator's Book of Questions: Tools for Looking Together at Student and Teacher Work,David Allen/Tina Blythe/Gene Thompson-Grove,4.00,0807744689,9780807744680,eng,142,54,4,4/29/2004,Teachers College Press +2586,Sun Tzu and the Art of Business: Six Strategic Principles for Managers,Sun Tzu/Mark McNeilly,3.89,0195137892,9780195137897,eng,272,125,13,4/1/2000,Oxford University Press USA +2595,Marketing Warfare,Al Ries/Jack Trout,4.11,0071460829,9780071460828,eng,216,942,59,12/13/2005,McGraw-Hill Education +2612,The Tipping Point: How Little Things Can Make a Big Difference,Malcolm Gladwell,3.97,0316346624,9780316346627,eng,301,633037,11898,1/7/2002,Back Bay Books +2613,Unleashing the Ideavirus: Stop Marketing AT People! Turn Your Ideas into Epidemics by Helping Your Customers Do the Marketing thing for You.,Seth Godin/Malcolm Gladwell,3.98,0786887176,9780786887170,en-US,234,4600,88,10/10/2001,Hachette Books +2615,The Innovator's Dilemma: The Revolutionary Book that Will Change the Way You Do Business,Clayton M. Christensen/L.J. Ganser,3.99,0060521996,9780060521998,eng,286,32079,752,1/7/2003,Harper Paperbacks +2619,Great Expectations,Charles Dickens/David Trotter/Charlotte Mitchell,3.77,0141439564,9780141439563,eng,512,14228,668,12/31/2002,Penguin Books +2626,Great Expectations: Authoritative Text Backgrounds Contexts Criticism,Charles Dickens/Edgar Rosenberg,3.77,0393960692,9780393960693,eng,776,573,38,1/19/1999,W.W. Norton & Company +2646,Luther and Erasmus: Free Will and Salvation (Library of Christian Classics),Erasmus/Martin Luther/Philip S. Watson/E. Gordon Rupp,3.80,0664241581,9780664241582,eng,364,108,13,1/1/1969,Westminster John Knox Press +2654,To Kill a Mockingbird,Harper Lee,4.27,0060935464,9780060935467,eng,323,10524,898,7/5/2005,Harper Perennial Modern Classics +2655,To Kill a Mockingbird,Harper Lee/Sissy Spacek,4.27,0060888695,9780060888695,eng,11,697,180,8/22/2006,Caedmon +2661,To Kill a Mockingbird,Harper Lee,4.27,0061205699,9780061205699,en-US,323,271,34,10/17/2006,Harper +2673,The Wealthy Barber: Everyone's Common-Sense Guide to Becoming Financially Independent,David H. Chilton,4.02,0761501665,9780761501664,eng,199,66,4,9/20/1995,Prima Lifestyles +2677,A Modest Proposal and Other Satirical Works,Jonathan Swift,4.05,0486287599,9780486287591,eng,64,13562,141,2/2/1996,Dover Publications +2678,Gulliver's Travels / A Modest Proposal,Jonathan Swift/Jesse Gale,3.79,1416500391,9781416500391,eng,416,2161,50,8/1/2005,Simon Schuster +2680,Empire 2.0: A Modest Proposal for a United States of the West (Terra Nova),Xavier de C./Xavier de C./Joseph Rowe,4.67,1556434952,9781556434952,eng,144,3,0,5/4/2004,North Atlantic Books +2686,The Bostonians,Henry James/R.D. Gooder,3.59,0192834428,9780192834423,eng,504,85,12,7/23/1998,Oxford University Press +2687,Novels 1896–1899: The Other House / The Spoils of Poynton / What Maisie Knew / The Awkward Age,Henry James/Myra Jehlen,4.28,1931082308,9781931082303,eng,1035,25,4,3/10/2003,Library of America +2688,Novels 1901–1902: The Sacred Fount / The Wings of the Dove,Henry James/Leo Bersani,4.63,193108288X,9781931082884,eng,713,27,3,2/2/2006,Library of America +2692,Complete Stories 1892–1898,Henry James/John Hollander/David Bromwich,4.22,1883011094,9781883011093,eng,958,198,7,1/1/1996,Library of America +2696,The Canterbury Tales,Geoffrey Chaucer/Nevill Coghill,3.49,0140424385,9780140424386,eng,504,168559,2365,1/30/2003,Penguin Classics +2698,The Canterbury Tales,Geoffrey Chaucer/David Wright,3.49,019283360X,9780192833600,eng,465,257,22,7/9/1998,Oxford University Press +2701,The Canterbury Tales (original-spelling edition),Geoffrey Chaucer/Jill Mann,3.49,014042234X,9780140422344,enm,1254,792,59,4/7/2005,Penguin Classics +2702,Chaucer's Canterbury Tales (Selected): An Interlinear Translation,Geoffrey Chaucer/Vincent Foster Hopper,3.80,0812000390,9780812000399,eng,530,73,5,12/31/1977,Barrons Educational Series +2705,Oxford Guides to Chaucer: The Canterbury Tales,Helen Cooper,4.02,0198711557,9780198711551,eng,456,84,4,5/23/1996,Oxford University Press USA +2706,Love Visions,Geoffrey Chaucer/Brian Stone,3.61,0140444084,9780140444087,eng,272,70,6,5/26/1983,Penguin Classics +2710,Chaucer's Canterbury Tales,Geoffrey Chaucer,3.49,0671475029,9780671475024,eng,383,36,5,1/28/1964,Washington Square Press +2711,The Riverside Chaucer,Geoffrey Chaucer/Larry Dean Benson/F.N. Robinson,4.18,0395290317,9780395290316,enm,1327,7760,152,12/12/1987,Houghton Mifflin +2713,The Portable Chaucer,Geoffrey Chaucer/Theodore Morrison,3.86,0140150811,9780140150810,eng,611,70,8,5/26/1977,Penguin Books +2715,Salt: A World History,Mark Kurlansky,3.74,0142001619,9780142001615,eng,484,50335,3012,1/28/2003,Penguin Books +2718,Salt in His Shoes: Michael Jordan in Pursuit of a Dream,Deloris Jordan/Kadir Nelson/Roslyn M. Jordan,4.20,0689834195,9780689834196,eng,32,1178,173,11/1/2003,Simon Schuster Books for Young Readers +2719,The Book of Salt,Monique Truong,3.52,0618446885,9780618446889,eng,261,4411,629,6/15/2004,Mariner Books +2722,Cities of Salt (مدن الملح #1),Abdul Rahman Munif/Peter Theroux,4.13,039475526X,9780394755267,eng,627,856,105,7/17/1989,Vintage +2723,The Years of Rice and Salt,Kim Stanley Robinson,3.73,0553580078,9780553580075,eng,763,9344,995,6/3/2003,Bantam Books +2725,Illuminations: Essays and Reflections,Walter Benjamin/Hannah Arendt/Harry Zohn/Leon Wieseltier,4.29,0805202412,9780805202410,eng,288,9254,194,1/13/1969,Schocken +2727,Saul Steinberg: Illuminations,Saul Steinberg/Joel Smith/Charles Simic,4.51,0300115865,9780300115864,eng,288,39,5,11/1/2006,Yale University Press +2731,Advanced Global Illumination,Philip Dutre,4.50,1568813074,9781568813073,eng,366,17,2,8/30/2006,A K PETERS +2735,Snow Falling On Cedars,David Guterson,3.83,074754655X,9780747546559,eng,404,588,46,10/21/1999,Bloomsbury Publishing PLC +2743,The Lost Boy (Dave Pelzer #2),Dave Pelzer,4.10,1558745157,9781558745155,eng,331,52028,2513,8/1/1997,Health Communications Inc +2745,Real Boys: Rescuing Our Sons from the Myths of Boyhood,William S. Pollack/Mary Pipher,3.83,0805061835,9780805061833,en-US,480,1397,128,5/10/1999,Owl Publishing Company +2749,Microserfs,Douglas Coupland,3.88,0007179812,9780007179817,eng,371,442,38,1/1/2008,Harper Perennial +2756,New Media Language,Jean Aitchison/Diana M. Lewis,3.00,0415283043,9780415283045,eng,209,2,0,5/22/2003,Routledge +2761,The Denial of Death,Ernest Becker/Sam Keen/Daniel Goleman,4.16,0684832402,9780684832401,eng,336,6599,635,5/8/1997,Free Press +2767,A People's History of the United States,Howard Zinn,4.08,0060838655,9780060838652,eng,729,167321,4711,8/2/2005,Harper Perennial +2768,A People's History of the United States,Howard Zinn/Kathy Emery/Ellen Gordon Reeves,4.08,1565848268,9781565848269,eng,619,39,3,7/1/2003,The New Press +2770,A People's History of the United States: The Civil War to the Present,Howard Zinn/Kathy Emery/Ellen Gordon Reeves,4.00,1565847253,9781565847255,eng,496,22,0,8/1/2003,The New Press +2778,Graphic Design: A Concise History (World of Art),Richard Hollis,4.00,0500203474,9780500203477,en-US,232,675,12,5/17/2002,Thames Hudson +2781,Immigrant Acts: On Asian American Cultural Politics,Lisa Lowe,4.00,0822318644,9780822318644,eng,272,206,9,10/21/1996,Duke University Press Books +2785,The Old Way of Seeing: How Architecture Lost Its Magic - And How to Get It Back,Jonathan Hale,3.92,039574010X,9780395740101,eng,256,81,12,9/1/1995,Mariner Books +2794,The Crying of Lot 49,Thomas Pynchon,3.69,006091307X,9780060913076,eng,152,57011,3332,10/17/2006,Harper Perennial +2802,E=mc²: A Biography of the World's Most Famous Equation,David Bodanis,4.09,0425181642,9780425181645,eng,337,6368,321,10/1/2000,Berkley Trade +2804,Passionate Minds,David Bodanis,4.10,0307237206,9780307237200,en-US,373,717,112,10/10/2006,Crown Publishing Group (NY) +2810,Christian Mythmakers: C.S. Lewis Madeleine L'Engle J.R.R. Tolkien George MacDonald G.K. Chesterton Charles Williams Dante Alighieri John Bunyan Walter Wangerin Robert Siegel and Hannah Hurnard,Rolland Hein/Clyde S. Kilby,3.93,094089548X,9780940895485,eng,303,448,18,12/1/2002,Cornerstone Press Chicago +2811,A House Like a Lotus (O'Keefe Family #3),Madeleine L'Engle,3.76,0440936853,9780440936855,eng,307,3976,163,11/1/1985,Dell +2814,The Rock That Is Higher: Story as Truth,Madeleine L'Engle,4.12,0877887268,9780877887263,eng,320,496,48,3/19/2002,Shaw Books +2815,The Glorious Impossible,Madeleine L'Engle/Giotto di Bondone,4.25,0671686909,9780671686901,eng,64,367,38,9/30/1990,Simon & Schuster Children's Publishing +2817,A Full House: An Austin Family Christmas (Austin Family #5.6),Madeleine L'Engle/Mary Chambers,3.98,0877880204,9780877880202,eng,48,235,4,3/7/2000,Shaw +2819,A Circle of Quiet (Crosswicks Journals #1),Madeleine L'Engle,4.21,0062545035,9780062545039,en-CA,246,5236,506,1/1/1984,HarperOne +2820,The Birth of Tragedy and Other Writings,Friedrich Nietzsche/Raymond Geuss/Ronald Speirs,4.04,0521639875,9780521639873,eng,204,388,23,4/22/1999,Cambridge University Press +2821,The Birth of Tragedy/The Genealogy of Morals,Friedrich Nietzsche/Francis Golffing,4.01,0385092105,9780385092104,en-US,320,843,42,5/7/1990,Anchor +2822,The Birth of Tragedy,Friedrich Nietzsche,3.98,1419154079,9781419154072,eng,84,32,0,6/17/2004,Kessinger Publishing +2823,The Birth of Tragedy,Friedrich Nietzsche/Michael Tanner/Shaun Whiteside,3.98,0140433392,9780140433395,en-US,160,10147,301,11/27/2003,Penguin Classics +2826,Birth Of A Tragedy: Kashmir 1947,Alastair Lamb,4.00,0907129072,9780907129073,eng,179,9,2,3/14/2008,Roxford Books +2834,The Tragedy of Pudd'nhead Wilson/Those Extraordinary Twins,Mark Twain/David Lionel Smith/Sherley Anne Williams,3.79,0195114159,9780195114157,eng,512,3664,58,3/6/1997,Oxford University Press USA +2835,The Tragedy of Pudd'nhead Wilson,Mark Twain/Michael Prichard,3.79,140015068X,9781400150687,eng,0,3,0,1/1/2003,Tantor Media +2836,Bridge to Terabithia,Katherine Paterson/Donna Diamond,4.00,0060734019,9780060734015,en-US,191,1811,152,7/1/2008,HarperTeen +2843,Literature Circle Guide: Bridge to Terabithia: Everything You Need For Successful Literature Circles That Get Kids Thinking Talking Writing—and Loving Literature,Tara MacCarthy,5.00,0439271711,9780439271714,eng,32,4,1,1/1/2002,Teaching Resources +2847,Bread and Roses Too,Katherine Paterson,3.76,0618654798,9780618654796,eng,275,2018,294,9/4/2006,Clarion Books +2851,The Invisible Child,Katherine Paterson,4.27,0525464824,9780525464822,eng,266,99,27,12/31/2001,Dutton Juvenile +2855,A Short History of Decay,Emil M. Cioran/Richard Howard,4.25,1559704640,9781559704649,eng,186,1771,99,9/15/1998,Arcade Publishing +2860,Scholar of Decay (Ravenloft #14),Tanya Huff,3.46,078690206X,9780786902064,eng,313,38,1,5/1/2000,TSR +2864,Girl with a Pearl Earring,Tracy Chevalier,3.88,0452284937,9780452284937,eng,233,1162,127,9/30/2003,Plume Books +2868,The Golden Tulip,Rosalind Laker,3.94,0385415605,9780385415606,eng,585,29,4,9/1/1991,Doubleday +2871,Burning Bright,Tracy Chevalier,3.36,052594978X,9780525949787,eng,320,10919,1113,3/20/2007,Dutton +2872,Falling Angels,Tracy Chevalier,3.58,0452283205,9780452283206,eng,336,20321,1214,9/24/2002,Penguin Books +2873,The Virgin Blue,Tracy Chevalier,3.66,0452284449,9780452284449,eng,304,26029,1588,6/24/2003,Penguin Books +2875,Wenn Engel fallen,Tracy Chevalier,3.58,3471772537,9783471772539,ger,384,6,1,2/1/2002,List +2877,Tom Hunter: Living in Hell and Other Stories,Tom Hunter/Tracy Chevalier/Colin Wiggins,3.64,1857093313,9781857093315,en-GB,80,42,0,3/8/2006,National Gallery London +2879,Bleach Volume 15,Tite Kubo,4.42,1421506130,9781421506135,eng,208,19945,76,10/3/2006,VIZ Media LLC +2880,Bleach Volume 01,Tite Kubo,4.22,1591164419,9781591164418,eng,200,140403,1063,5/19/2004,VIZ Media LLC +2881,Bleach Volume 14,Tite Kubo,4.38,1421506122,9781421506128,eng,208,10356,79,8/1/2006,VIZ Media LLC +2882,Bleach Volume 11,Tite Kubo,4.36,1421502712,9781421502717,eng,208,8773,84,2/7/2006,VIZ Media LLC +2883,Bleach Volume 12,Tite Kubo,4.36,1421504030,9781421504032,eng,208,8948,86,4/4/2006,VIZ Media LLC +2885,DEATH NOTE デスノート 1,Tsugumi Ohba/Takeshi Obata/大場 つぐみ/小畑 健,4.43,4088736214,9784088736211,jpn,195,227,38,4/2/2004,集英社 +2886,Death Note Vol. 4: 恋心 (Death Note #4),Tsugumi Ohba/Takeshi Obata,4.39,4088736710,9784088736716,jpn,204,452,13,11/11/2004,Shueisha +2887,Death Note Vol. 3: 激走 (Death Note #3),Tsugumi Ohba/Takeshi Obata,4.43,4088736524,9784088736525,jpn,194,400,11,9/3/2004,Shueisha +2893,Love Artist (Harlequin Romance #2860),Valerie Parv,3.25,0373028601,9780373028603,eng,187,3,1,7/24/1987,Harlequin Romance +2895,Perfume: The Story of a Murderer,Patrick Süskind/John E. Woods,4.02,0307277763,9780307277763,eng,255,1124,191,2/13/2001,Vintage International +2896,Das Parfum. Die Geschichte eines Mörders,Patrick Süskind,4.02,3257228007,9783257228007,ger,321,9674,343,6/1/1994,Diogenes +2898,Three Stories and a Reflection,Patrick Süskind,3.57,0747534934,9780747534938,eng,128,24,3,11/13/1997,Bloomsbury Publishing PLC +2899,The Pigeon,Patrick Süskind,3.68,0140105832,9780140105834,eng,77,6254,423,6/29/1989,Penguin +2900,The Story of Mr Sommer,Patrick Süskind/Jean-Jacques Sempé,3.84,0747566755,9780747566755,eng,128,2061,104,11/3/2003,Not Avail +2906,Bleach―ブリーチ― 1 [Burīchi 1] (Bleach #1),Tite Kubo,4.22,4088732138,9784088732138,jpn,189,41,3,1/5/2002,Shueisha +2907,Bleach Tome 1: The Death and the Strawberry,Tite Kubo,4.22,2723442276,9782723442275,fre,192,54,4,7/2/2003,Glénat +2912,Escape from Fire Mountain (World of Adventure #3),Gary Paulsen/Steve Chorney,3.67,0440410258,9780440410256,eng,80,114,17,1/1/1995,Yearling +2917,How Angel Peterson Got His Name,Gary Paulsen,3.93,0440229359,9780440229353,eng,111,1177,218,8/10/2004,Yearling +2920,Tucket's Travels: Francis Tucket's Adventures In The West 1847-1849 (The Tucket Adventures #1-5),Gary Paulsen,4.44,0440419670,9780440419679,en-US,560,557,46,9/9/2003,Yearling +2921,Chicago Blues: The City and the Music,Mike Rowe/Ronald Radano,3.92,0306801450,9780306801457,eng,226,25,2,8/22/1981,Da Capo Press +2923,Winterdance: The Fine Madness of Running the Iditarod,Gary Paulsen,4.26,0156001454,9780156001458,eng,272,5437,830,2/17/1995,Mariner Books +2928,Brian's Winter,Gary Paulsen,4.01,0385321988,9780385321983,en-US,133,76,12,1/1/1996,Delacorte Books for Young Readers +2932,Robinson Crusoe (Robinson Crusoe #1),Daniel Defoe/Virginia Woolf,3.67,0375757325,9780375757327,eng,320,209122,4131,6/12/2001,Modern Library +2933,Robinson Crusoe,Daniel Defoe/John J. Richetti,3.67,0141439823,9780141439822,eng,286,1507,142,3/27/2003,Penguin Classics +2934,Robinson Crusoe,Daniel Defoe/Michael Shinagel,3.67,0393964523,9780393964523,en-US,436,585,63,12/19/1994,W.W. Norton & Company +2937,Robinson Crusoe,Daniel Defoe/Avi,3.67,0689844085,9780689844089,eng,482,204,32,7/1/2001,Aladdin +2940,Robinson Crusoe,Daniel Defoe,3.67,1587263882,9781587263880,eng,288,311,18,7/14/2006,Ann Arbor Media +2942,A General History of the Pyrates,Daniel Defoe/Manuel Schonhorn/Charles Johnson,3.72,0486404889,9780486404882,eng,733,577,36,1/26/1999,Dover Publications +2949,Huck Finn & Tom Sawyer among the Indians & Other Unfinished Stories (Mark Twain Library),Mark Twain/Paul Baender/Dahlia Armon/Walter Blair,3.85,0520238958,9780520238954,eng,389,5,0,3/15/2003,University of California Press +2952,Huck Finn and Tom Sawyer Among the Indians,Mark Twain/Lee Nelson,3.57,1555176801,9781555176808,eng,277,242,29,4/22/2003,Council Press +2953,Huck Finn/Pudd'nhead Wilson/No 44 Mysterious Stranger other Writings,Mark Twain/Guy Cardwell/Louis J. Budd,4.06,1883011884,9781883011888,en-US,808,33,3,8/1/2000,Library of America +2956,The Adventures of Huckleberry Finn (Adventures of Tom and Huck #2),Mark Twain/Guy Cardwell/John Seelye/Walter Trier,3.82,0142437174,9780142437179,eng,327,1049912,11391,12/31/2002,Penguin Classics +2958,Adventures of Huckleberry Finn,Mark Twain/E.W. Kemble,3.82,0486443221,9780486443225,eng,368,144,17,5/6/2005,Dover Publications +2960,Adventures of Huckleberry Finn,Mark Twain/George Saunders,3.82,0375757376,9780375757372,eng,244,687,37,8/14/2001,The Modern Library +2962,The Annotated Huckleberry Finn,Mark Twain/Michael Patrick Hearn/E.W. Kemble,3.82,0393020398,9780393020397,eng,656,185,18,10/17/2001,W. W. Norton Company +2965,The Wit and Wisdom of Mark Twain,Mark Twain,4.20,0486406644,9780486406640,eng,64,970,53,12/23/1998,Dover Publications +2967,Mark Twain's Helpful Hints for Good Living: A Handbook for the Damned Human Race,Mark Twain/Lin Salamo/Victor Fischer/Michael B. Frank,3.86,0520242459,9780520242456,eng,221,513,71,10/18/2004,University of California Press +2968,The Complete Short Stories of Mark Twain,Mark Twain/Charles Neider,4.28,0553211951,9780553211955,eng,848,5710,142,3/1/1984,Bantam Classics +2971,The Autobiography of Mark Twain,Mark Twain/Charles Neider,4.05,0060955422,9780060955427,eng,508,2871,209,11/28/2000,Harper Perennial +2973,Collected Tales Sketches Speeches & Essays 1891–1910,Mark Twain/Louis J. Budd,4.39,0940450739,9780940450738,eng,1050,207,10,10/15/1992,Library of America +2978,Lost Horizon,James Hilton,3.92,0060594527,9780060594527,eng,241,11892,955,6/15/2004,Harper Perennial +2988,Louisa May Alcott's Christmas Treasury,Louisa May Alcott/C. Michael Dudash/Stephen W. Hines,3.96,1589199502,9781589199507,eng,282,715,44,6/1/2002,David C Cook +2997,My Secret Garden: Women's Sexual Fantasies,Nancy Friday,3.68,0671019872,9780671019877,eng,361,1817,123,10/28/2003,Pocket Books +2998,The Secret Garden,Frances Hodgson Burnett,4.13,0517189607,9780517189603,eng,331,764134,11796,9/1/1998,Children's Classics +3003,The Secret Garden,Frances Hodgson Burnett/Sandra M. Gilbert,4.13,0451528832,9780451528834,eng,281,1739,116,7/1/2003,Signet +3004,The Secret Garden,Martha Hailey DuBose/Frances Hodgson Burnett/Lucy Corvino/Arthur Pober,4.33,1402713193,9781402713194,eng,160,1653,76,3/1/2005,Sterling +3006,The Secret Garden,Frances Hodgson Burnett/Alison Lurie,4.13,0142437050,9780142437056,en-GB,288,517,13,1/30/2003,Penguin Classics +3008,A Little Princess,Frances Hodgson Burnett/Nancy Bond,4.20,0142437018,9780142437018,eng,242,238192,4392,2/26/2002,Penguin Books +3011,Waiting for the Party: The Life of Frances Hodgson Burnett 1849-1924,Ann Thwaite,3.80,0879237902,9780879237905,eng,274,23,7,9/1/1994,David R. Godine Publisher +3014,The Secret Garden Cookbook: Recipes Inspired by Frances Hodgson Burnett's The Secret Garden,Amy Cotler/Frances Hodgson Burnett/Prudence See,4.30,0060277408,9780060277406,eng,128,150,23,3/19/1999,Festival +3023,Basic Economics: A Citizen's Guide to the Economy,Thomas Sowell,4.32,0465081452,9780465081455,eng,448,5899,475,12/24/2003,Basic Books +3025,Basic Economics: A Common Sense Guide to the Economy,Thomas Sowell,4.32,0465002609,9780465002603,eng,627,328,43,4/3/2007,Basic Books (AZ) +3040,Black Rednecks and White Liberals,Thomas Sowell,4.38,1594030863,9781594030864,eng,372,2579,301,6/1/2005,Encounter Books +3041,Applied Economics: Thinking Beyond Stage One,Thomas Sowell,4.14,0465081436,9780465081431,eng,256,1546,122,11/13/2003,Basic Books +3042,Knowledge And Decisions,Thomas Sowell,4.39,0465037380,9780465037384,eng,422,766,47,10/4/1996,Basic Books +3047,A Conflict of Visions: Ideological Origins of Political Struggles,Thomas Sowell,4.31,0465081428,9780465081424,eng,304,1797,166,1/3/2002,Basic Books +3051,Sir Gawain and the Green Knight,Selina Shirley Hastings/Juan Wijngaard,3.91,0744520053,9780744520057,eng,29,65,9,6/27/1991,Walker Books Ltd +3053,Alcoholics Anonymous,Alcoholics Anonymous,4.45,0916856593,9780916856595,eng,250,22,0,8/1/1993,Alcoholics Anonymous World Services Inc +3055,Alcoholics Anonymous,Alcoholics Anonymous,4.45,1893007162,9781893007161,en-US,576,495,30,2/10/2002,AA World Services +3056,The Twelve Steps & Twelve Traditions of Overeaters Anonymous,Overeaters Anonymous,4.36,0960989862,9780960989867,en-US,221,213,10,1/1/1993,Overeaters Anonymous Incorporated +3061,The Natural Way to Draw,Kimon Nicolaides/Mamie Harmon,3.90,0395530075,9780395530078,en-US,240,39369,80,2/1/1990,Mariner Books +3065,Natural Health Natural Medicine,Andrew Weil,4.11,0618479031,9780618479030,en-US,448,580,41,12/9/2004,Mariner Books +3066,The Fixer,Bernard Malamud/Jonathan Safran Foer,3.96,0374529388,9780374529383,eng,335,8624,409,5/5/2004,Farrar Straus and Giroux +3067,The Complete Stories,Bernard Malamud/Robert Giroux,4.22,0374525757,9780374525750,en-US,656,712,51,10/12/1998,Farrar Straus and Giroux +3068,The Assistant,Bernard Malamud/Jonathan Rosen,3.89,0374504849,9780374504847,en-US,246,8073,319,7/7/2003,Farrar Straus and Giroux +3070,Conversations with Bernard Malamud (Literary Conversations),Lawrence M. Lasher,4.00,0878054901,9780878054909,eng,184,4,0,3/1/1991,University Press of Mississippi +3072,The Tenants,Bernard Malamud/Aleksandar Hemon,3.65,0374521026,9780374521028,eng,248,662,50,9/18/2003,Farrar Straus and Giroux +3075,Enchanted April: Acting Edition,Matthew Barber/Elizabeth von Arnim,3.61,0822219751,9780822219750,eng,73,67,6,4/7/2004,Dramatists Play Service +3084,April May und June,Elizabeth von Arnim,3.88,345833422X,9783458334224,ger,88,0,0,4/1/1995,Insel Frankfurt +3087,A Room with a View,E.M. Forster,3.91,1420925431,9781420925432,eng,119,128596,3422,1/1/2005,Digireads.com +3088,A Room with a View / Howards End,E.M. Forster/Benjamin DeMott,4.10,0451521412,9780451521415,eng,449,2450,113,2/4/1986,Signet +3100,E.M. Forster: Critical Guidebook,Lionel Trilling/E.M. Forster,3.51,0811202100,9780811202107,eng,208,6,0,1/17/1971,New Directions +3101,The Longest Journey,E.M. Forster/Gilbert Adair/Elizabeth Heine,3.48,0141441488,9780141441481,eng,396,1665,125,7/27/2006,Penguin Classics +3102,Howards End,E.M. Forster,3.96,0486424545,9780486424545,eng,246,54765,1437,10/29/2002,Dover Publications +3103,Maurice,E.M. Forster,4.03,0393310329,9780393310320,eng,256,21997,1005,12/17/2005,W. W. Norton Company +3104,E. M. Forster: A Life,P.N. Furbank,4.14,0156286513,9780156286510,eng,648,141,11,5/2/1994,Mariner Books +3105,Howards End,E.M. Forster,3.96,0141183357,9780141183350,eng,352,368,26,9/28/2000,Penguin Books +3107,The Sixteen Pleasures,Robert Hellenga,3.59,0385314698,9780385314695,eng,384,2699,336,5/1/1995,Delta +3113,Revolutionary Characters: What Made the Founders Different,Gordon S. Wood,3.97,1594200939,9781594200939,eng,336,3259,187,5/18/2006,Penguin Press HC The +3117,The Rescue (Kidnapped #3),Gordon Korman,4.11,0439847796,9780439847797,eng,140,1864,117,9/1/2006,Scholastic Books +3119,Hunting the Hunter (On the Run #6),Gordon Korman,4.21,0439651417,9780439651417,eng,151,1928,85,2/1/2006,Scholastic +3120,Public Enemies (On The Run #5),Gordon Korman,4.19,0439651409,9780439651400,eng,150,2050,76,12/1/2005,Scholastic +3130,Runaway Bride,Deborah Gordon,4.25,0380777584,9780380777587,eng,390,8,0,9/28/1994,Avon +3142,The Bridge over the Drina,Ivo Andrić/William H. McNeill,4.33,1860460585,9781860460586,eng,314,254,35,4/5/1995,The Harvill Press +3144,Drina Dances in Paris,Jean Estoril,4.16,0750000333,9780750000338,eng,194,14,4,4/1/1991,Simon and Schuster +3145,Drina Ballerina,Jean Estoril,4.16,0750005947,9780750005944,eng,188,8,1,1/17/1991,Hodder +3147,Le Pont sur la Drina,Ivo Andrić/Pascale Delpech,4.33,225393321X,9782253933212,fre,384,69,10,7/5/1999,Livre de Poche +3152,Drina Dances in Italy,Jean Estoril,4.08,0750012633,9780750012638,eng,191,21,0,8/31/1992,Hodder +3155,Drina Goes on Tour,Jean Estoril/Mabel Esther Allan,4.26,0750002468,9780750002462,eng,188,112,7,10/20/1991,Simon and Schuster +3156,Drina Dances in Madeira,Jean Estoril/Mabel Esther Allan,4.09,0750002425,9780750002424,eng,164,139,6,2/6/1991,Simon and Schuster +3167,Phaedrus/Apology/Crito/Symposium,Plato/Benjamin Jowett,3.00,1420926845,9781420926842,en-US,144,19,0,1/1/2006,Digireads.com +3207,The Dialogues of Plato Volume 1: Euthyphro Apology Crito Meno Gorgias Menexenus,Plato/Reginald E. Allen,4.17,0300044887,9780300044881,eng,352,114,11,9/10/1989,Yale University Press +3231,Gorgias/Timaeus,Plato/Benjamin Jowett,3.74,0486427595,9780486427591,eng,256,34,5,7/15/2003,Dover Publications +3232,Minor Works: On Colours/On Things Heard/Physiognomics/On Plants/On Marvellous Things Heard/Mechanical Problems/On Indivisible Lines/The...Gorgias,Aristotle/W.S. Hett,4.57,0674993381,9780674993389,grc,528,14,0,6/28/1963,Loeb Classical Library 307 +3248,Aristophanes I: Clouds/Wasps/Birds,Aristophanes/Peter Meineck/Ian C. Storey,3.77,0872203603,9780872203600,eng,480,100,9,9/1/1998,Hackett Publishing Company Inc. (USA) +3254,The Trojan Women,Euripides/Gilbert Murray,3.89,1420927329,9781420927320,eng,80,4577,126,1/1/2006,Digireads.com +3258,Greek Tragedies Volume 2,David Grene/Richmond Lattimore/Aeschylus/Sophocles/Euripides,4.29,0226307751,9780226307756,eng,304,327,12,2/15/1960,University Of Chicago Press +3273,Moloka'i (Moloka'i #1),Alan Brennert,4.17,0312304358,9780312304355,eng,405,91395,8192,10/4/2004,St. Martin's Griffin +3280,Teaching with the Brain in Mind,Eric Jensen,4.11,1416600302,9781416600305,eng,186,592,49,6/15/2005,Association for Supervision & Curriculum Development +3283,Introducing Mind and Brain (Introducing...),Angus Gellatly/Oscar Zárate/Richard Appignanesi,3.54,1840466383,9781840466386,en-GB,176,26,1,5/10/2001,Totem Books +3290,Eva Luna,Isabel Allende/Margaret Sayers Peden,3.97,0553383825,9780553383829,eng,320,430,23,8/30/2005,Dial Press +3291,The Stories of Eva Luna,Isabel Allende,3.97,0743217187,9780743217187,eng,352,12839,375,11/13/2001,Scribner +3293,Diez Cuentos de Eva Luna Con Guia de Comprension y Repaso de Gramatica,Isabel Allende/Richard D. Woods/Kenneth M. Taggart,3.97,007001356X,9780070013568,eng,256,10,1,12/1/1994,McGraw-Hill Humanities/Social Sciences/Languages +3298,El bosque de los pigmeos,Isabel Allende,3.77,0060816198,9780060816193,spa,304,1099,46,9/6/2005,HarperCollins Espanol +3300,Inés of My Soul,Isabel Allende/Margaret Sayers Peden,3.93,0061161535,9780061161537,eng,321,15345,1075,11/7/2006,Harper +3301,La casa de los espíritus,Isabel Allende,4.23,0060951303,9780060951306,spa,454,608,38,9/18/2001,HarperCollins Espanol +3302,El plan infinito,Isabel Allende,3.72,0060951273,9780060951276,spa,336,514,33,5/14/2002,Harper Perennial +3303,El reino del dragón de oro,Isabel Allende,3.84,0060591714,9780060591717,spa,432,1189,51,9/7/2004,HarperCollins Espanol +3304,City of the Beasts (Eagle and Jaguar #1),Isabel Allende/Margaret Sayers Peden,3.71,0060535032,9780060535032,eng,408,17962,778,4/27/2004,Rayo +3311,Self,Yann Martel,3.43,0571219764,9780571219766,eng,331,2359,146,4/7/2003,Faber Faber +3316,Die Brücke über die Drina,Ivo Andrić/Ernst E. Jonas,4.33,3518399608,9783518399606,ger,407,9,0,3/1/2003,Suhrkamp +3325,Drina Dances in Switzerland,Jean Estoril/Jenny Sanders,4.02,0750002441,9780750002448,eng,188,13,1,8/23/1993,Hodder Children's Books +3340,The Story of Salt,Mark Kurlansky/S.D. Schindler,4.08,0399239987,9780399239984,eng,48,382,85,9/7/2006,G.P. Putnam's Sons Books for Young Readers +3341,Nonviolence: Twenty-Five Lessons from the History of a Dangerous Idea,Mark Kurlansky/Dalai Lama XIV,4.00,0679643354,9780679643357,eng,203,768,96,9/12/2006,Modern Library +3343,Boogaloo on 2nd Avenue,Mark Kurlansky,3.17,0345448197,9780345448194,eng,319,191,26,2/28/2006,Random House Trade +3344,Cod: A Biography of the Fish That Changed the World,Mark Kurlansky,3.91,0140275010,9780140275018,eng,294,970,104,7/1/1998,Penguin Books +3345,1968: The Year That Rocked the World,Mark Kurlansky,3.78,0345455827,9780345455826,eng,480,2046,248,1/11/2005,Random House Trade Paperbacks +3346,A Chosen Few: The Resurrection of European Jewry (Reader's Circle),Mark Kurlansky,3.87,0345448146,9780345448149,eng,456,51,2,3/26/2002,Ballantine Books +3347,The Basque History of the World: The Story of a Nation,Mark Kurlansky,3.85,0140298517,9780140298512,eng,400,3457,329,2/1/2001,Penguin Books +3348,The Cod's Tale,Mark Kurlansky/S.D. Schindler,3.91,0399234764,9780399234767,eng,48,127,25,9/10/2001,G.P. Putnam's Sons Books for Young Readers +3351,Open City 6: The Only Woman He Ever Left,Open City Magazine/James Purdy/Daniel Pinchbeck/Michael Cunningham/Deborah Garrison/Rem Koolhaas/Rick Moody/Strawberry Saroyan/Debra Garrison,0.00,189044717X,9781890447175,eng,200,0,0,10/13/2000,Grove Press Open City Books +3357,Harry Potter Y La Piedra Filosofal (Harry Potter #1),J.K. Rowling,4.47,0613359607,9780613359603,spa,254,142,12,3/6/2001,Turtleback Books +3359,Angle of Repose,Wallace Stegner/Jackson J. Benson,4.27,0141185473,9780141185477,eng,557,856,146,12/1/2000,Penguin Classics +3368,Don't Make Me Think: A Common Sense Approach to Web Usability,Steve Krug,4.25,0321344758,9780321344755,en-US,201,7736,641,8/28/2005,New Riders Publishing +3384,Girlfriend in a Coma,Douglas Coupland,3.62,0060987324,9780060987329,eng,288,15798,612,3/1/1999,ReganBooks +3388,Corelli's Mandolin,Louis de Bernières,3.98,067976397X,9780679763970,eng,437,62954,1791,8/29/1995,Vintage +3402,Kiffe Kiffe Tomorrow,Faïza Guène/Sarah Adams,3.40,0156030489,9780156030489,eng,179,1084,131,7/3/2006,Mariner Books +3403,Our Kind of People: Inside America's Black Upper Class,Lawrence Otis Graham,3.72,0060984384,9780060984380,en-US,406,1170,117,12/22/1999,Harper Perennial +3404,The Senator and the Socialite: The True Story of America's First Black Dynasty,Lawrence Otis Graham,3.95,0060184124,9780060184124,eng,480,138,29,6/27/2006,Harper +3409,Temptations,Otis Williams/Patricia Romanowski,4.19,0815412185,9780815412182,eng,304,99,16,6/25/2002,Cooper Square Press +3413,The Thorn Birds,Colleen McCullough,4.23,0060837551,9780060837556,eng,673,533,66,9/6/2005,Avon Books +3416,Caesar (Masters of Rome #5),Colleen McCullough,4.37,0060510854,9780060510855,eng,928,5991,120,1/28/2003,Avon +3417,Caesar's Women (Masters of Rome #4),Colleen McCullough,4.25,0380710846,9780380710843,eng,943,5423,157,2/1/1997,Avon +3418,On Off (Carmine Delmonico #1),Colleen McCullough,3.52,0743286421,9780743286428,eng,372,1182,175,5/23/2006,Simon & Schuster +3419,Three Complete Novels: Tim/An Indecent Obsession/The Ladies of Missalonghi,Colleen McCullough,3.67,0517201666,9780517201664,en-US,768,39,7,2/14/1999,Wings +3420,Morgan's Run,Colleen McCullough,3.95,0671024183,9780671024185,eng,848,3478,191,1/1/2002,Pocket Books +3421,The October Horse: A Novel of Caesar and Cleopatra (Masters of Rome #6),Colleen McCullough,4.29,0671024205,9780671024208,eng,1110,4291,119,10/28/2003,Pocket Books +3422,The First Man in Rome (Masters of Rome #1),Colleen McCullough,4.11,068809368X,9780688093686,eng,896,311,49,9/28/1990,William Morrow & Company (NYC) +3424,The Grass Crown (Masters of Rome #2),Colleen McCullough,4.30,038071082X,9780380710829,eng,1104,9623,199,7/1/1992,Avon +3425,Tim,Colleen McCullough,3.81,0380711966,9780380711963,eng,288,153,17,11/1/1990,Avon +3426,O'Brien's the Things They Carried,Jill Colella/CliffsNotes,3.69,0764586688,9780764586682,eng,128,24,2,12/14/2000,Cliffs Notes +3431,The Five People You Meet in Heaven,Mitch Albom,3.93,1401308589,9781401308582,eng,196,520051,16562,9/23/2003,Hyperion +3437,The Curious Incident of the Dog in the Night-Time,Mark Haddon,3.88,0099450259,9780099450252,eng,272,16588,1606,4/15/2004,Vintage +3438,The Curious Incident of the Dog In the Night-time,Mark Haddon,3.88,0099456761,9780099456766,eng,268,6124,754,4/1/2004,Red Fox +3439,The Curious Incident of the Dog in the Night-time,Mark Haddon,3.88,0385662238,9780385662239,eng,240,34,6,3/28/2006,Doubleday Canada +3444,Northern Lights,Tim O'Brien,3.29,0767904419,9780767904414,eng,372,981,69,9/1/1999,Broadway Books +3445,If I Die in a Combat Zone Box Me Up and Ship Me Home,Tim O'Brien,3.95,0767904435,9780767904438,eng,225,7763,362,9/1/1999,Broadway Books +3446,Going After Cacciato,Tim O'Brien,3.91,0767904427,9780767904421,eng,351,10384,637,9/1/1999,Broadway/Crown Publishing Group +3447,In the Lake of the Woods,Tim O'Brien,3.78,061870986X,9780618709861,eng,303,14655,1211,9/1/2006,Mariner Books +3449,The Nuclear Age,Tim O'Brien,3.45,0140259104,9780140259100,eng,320,945,61,12/1/1996,Penguin Books +3462,The Rescue,Nicholas Sparks,4.11,0446696129,9780446696128,eng,352,154933,3141,4/1/2005,Grand Central Publishing +3463,A Bend in the Road,Nicholas Sparks,4.03,0446696137,9780446696135,eng,341,125693,3229,4/1/2005,Grand Central Publishing +3464,True Believer (Jeremy Marsh & Lexie Darnell #1),Nicholas Sparks,3.80,044669651X,9780446696517,eng,465,68228,2425,4/11/2006,Grand Central Publishing +3465,Three Weeks With My Brother,Nicholas Sparks/Micah Sparks,4.03,0446694851,9780446694858,eng,368,36784,2658,1/3/2006,Grand Central Publishing +3466,The Wedding (The Notebook #2),Nicholas Sparks,3.99,0446615862,9780446615860,eng,276,126629,5295,8/1/2005,Vision +3468,El Guardián,Nicholas Sparks/Ramón González Férriz,4.15,8496284530,9788496284531,spa,444,31,3,4/1/2005,Roca Editorial +3469,Nights in Rodanthe,Nicholas Sparks,3.84,0446691798,9780446691796,en-US,212,1596,157,8/1/2004,Warner Books +3471,Message in a Bottle,Nicholas Sparks,3.96,0446606812,9780446606813,en-GB,370,2755,218,2/1/1999,Grand Central Publishing +3473,A Walk to Remember,Nicholas Sparks,4.17,0446693804,9780446693806,eng,240,555995,10173,9/1/2004,Grand Central Publishing +3476,Icy Sparks,Gwyn Hyman Rubio,3.70,0142000205,9780142000205,eng,320,37936,1192,3/8/2001,Penguin Books +3478,Message in a Bottle,Nicholas Sparks,3.96,0446676071,9780446676076,eng,342,201488,3496,12/1/1999,Warner Books +3479,Sugarplums and Scandal (Love at Stake #2.5; Bed-and-Breakfast Mysteries #22.5),Lori Avocato/Dana Cameron/Mary Dahiem/Suzanne Macpherson/Cait London/Kerrelyn Sparks/Mary Daheim,3.98,0061136956,9780061136955,eng,327,1967,66,10/31/2006,Avon +3483,Special Topics in Calamity Physics,Marisha Pessl,3.71,067003777X,9780670037773,eng,514,32370,4212,8/3/2006,Penguin Books Ltd +3491,The Dictionary of Corporate Bullshit: An A to Z Lexicon of Empty Enraging and Just Plain Stupid Office Talk,Lois Beckwith,4.03,0767920740,9780767920742,eng,192,82,9,2/14/2006,Three Rivers Press +3493,On Truth,Harry G. Frankfurt/Baruch Spinoza,3.52,030726422X,9780307264220,en-US,112,790,99,10/31/2006,Knopf +3507,Twelve Sharp (Stephanie Plum #12),Janet Evanovich,4.15,0312349486,9780312349486,eng,310,81381,1925,6/20/2006,St. Martin's Press +3509,Sharp Edges,Jayne Ann Krentz,3.86,0671524097,9780671524098,eng,368,2792,73,7/27/2004,Pocket Star Books +3510,Mrs. Sharp's Traditions: Reviving Victorian Family Celebrations of Comfort & Joy,Sarah Ban Breathnach,4.08,074321076X,9780743210768,en-US,256,317,33,12/31/2001,Scribner Book Company +3513,The Sly Spy (Olivia Sharp Agent for Secrets #3),Marjorie Weinman Sharmat/Mitchell Sharmat/Denise Brunkus,3.85,0440420628,9780440420620,eng,74,51,7,6/14/2005,Yearling Books +3516,The Green Toenails Gang (Olivia Sharp Agent for Secrets #4),Marjorie Weinman Sharmat/Mitchell Sharmat/Denise Brunkus,3.77,0440420636,9780440420637,eng,72,41,7,7/12/2005,Yearling Books +3519,The Pizza Monster (Olivia Sharp Agent for Secrets #1),Marjorie Weinman Sharmat/Mitchell Sharmat/Denise Brunkus,3.54,0440420598,9780440420590,eng,80,56,7,5/10/2005,Yearling +3520,The Spy Who Barked (Adam Sharp #1),George E. Stanley,3.43,0307264122,9780307264121,eng,48,26,5,4/9/2002,Random House Books for Young Readers +3525,Kare First Love Vol. 9 (Kare First Love #9),Kaho Miyasaka,4.06,1421505479,9781421505473,eng,208,612,8,9/12/2006,VIZ Media LLC +3529,The World's First Love: Mary Mother of God,Fulton J. Sheen,4.59,0898705975,0008987059752,en-US,276,641,63,9/1/1996,Ignatius Press +3530,Kare First Love Vol. 10 (Kare First Love #10),Kaho Miyasaka,4.09,1421505487,9781421505480,eng,208,715,18,12/12/2006,VIZ Media LLC +3531,The Tutor's First Love,George MacDonald/Michael R. Phillips,4.08,087123596X,9780871235961,eng,238,364,21,7/1/2000,Bethany House Publishers +3532,First Love,Ivan Turgenev/Constance Garnett,3.78,0974607894,9780974607894,eng,124,5856,310,9/1/2004,Melville House Publishing +3536,Love @ First Site,Jane Moore,3.41,0767916913,9780767916912,en-US,368,910,74,5/9/2006,Broadway Books +3545,First Love Second Chance,Amanda Clark,3.73,0373706405,9780373706402,eng,304,13,2,2/22/1995,Harlequin Superromance +3554,The Modern Prince: Charles J. Haughey and the Quest for Power,Justin O'Brien,3.50,1903582415,9781903582411,eng,212,4,0,4/28/2003,Merlin Publishing +3557,The Modern Prince and Other Writings,Antonio Gramsci,3.89,0717801330,9780717801336,eng,192,118,9,10/1/1959,International Publishers +3562,Emily of New Moon (Emily #1),L.M. Montgomery,4.10,055323370X,9780553233704,eng,339,38411,1366,4/1/1983,Dell Laurel-Leaf +3564,The Selected Journals Of L.M. Montgomery Vol. 5: 1935-1942,L.M. Montgomery/Mary Henley Rubio/Elizabeth Hillman Waterston,4.24,0195421167,9780195421163,eng,410,184,22,11/4/2004,Oxford University Press USA +3566,Against the Odds: Tales of Achievement,L.M. Montgomery/Rea Wilmshurst,3.83,0553565923,9780553565928,en-US,246,928,27,11/1/1994,Bantam Starfire +3574,Anne of Avonlea,L.M. Montgomery/Susan O'Malley,4.23,0786180307,9780786180301,eng,8,63,8,12/1/1998,Blackstone Audiobooks +3577,A Tangled Web,L.M. Montgomery,3.88,0770422454,9780770422455,eng,288,3760,248,8/1/1989,Seal Books +3579,The Complete Anne of Green Gables Boxed Set (Anne of Green Gables #1-8),L.M. Montgomery,4.43,0553609416,0076783609419,eng,2088,98611,1447,10/6/1998,Starfire +3580,Pat of Silver Bush (Pat #1),L.M. Montgomery,3.90,0770422470,9780770422479,eng,288,6082,188,6/1/1988,Seal Books +3581,Sherlock Holmes: The Complete Novels and Stories Volume I,Arthur Conan Doyle,4.47,0553212419,9780553212419,eng,1059,24087,554,8/26/1986,Bantam Classics +3582,The New Annotated Sherlock Holmes: The Complete Short Stories,Arthur Conan Doyle/Leslie S. Klinger,4.64,0393059162,9780393059168,eng,1878,1411,54,11/30/2004,W. W. Norton & Company +3583,The New Annotated Sherlock Holmes: The Novels,Arthur Conan Doyle/Leslie S. Klinger,4.53,039305800X,9780393058000,eng,907,2203,32,11/7/2005,W. W. Norton & Company +3584,The Science of Sherlock Holmes: From Baskerville Hall to the Valley of Fear the Real Forensics Behind the Great Detective's Greatest Cases,E.J. Wagner,4.22,0471648795,9780471648796,eng,244,2037,71,3/1/2006,Wiley +3585,Sherlock Holmes: A Baker Street Dozen,Arthur Conan Doyle/John Gielgud/Ralph Richardson/Orson Welles,3.96,1598870297,9781598870299,eng,6,18,4,4/20/2006,HighBridge Company +3587,Sherlock Holmes: The Unauthorized Biography,Nick Rennison,4.26,0871139472,9780871139474,eng,304,29,6,10/11/2006,Atlantic Monthly Press +3593,Murder by Moonlight & Other Mysteries (New Adventures of Sherlock Holmes 19-24),NOT A BOOK,4.00,0743564677,9780743564670,eng,0,7,2,10/3/2006,Simon Schuster Audio +3595,The Mysteries of Sherlock Holmes,Arthur Conan Doyle/Paul Bachem,4.18,0448409577,9780448409573,eng,218,119,8,10/15/1996,Grosset & Dunlap +3597,The Complete Adventures and Memoirs of Sherlock Holmes,Arthur Conan Doyle,4.33,0517174960,9780517174968,eng,334,2184,87,7/1/2001,Gramercy Books +3599,The Unfortunate Tobacconist & Other Mysteries (Sherlock Holmes 1-6),NOT A BOOK,3.50,074353395X,9780743533959,eng,0,12,1,10/1/2003,Simon & Schuster Audio +3603,Personal Finance For Dummies,Eric Tyson,3.77,0470038322,9780470038321,en-GB,458,114,15,10/1/2006,For Dummies +3604,Personal Finance for Dummies,Eric Tyson/Rich Tennant,3.77,0764525905,9780764525902,eng,454,925,92,8/1/2003,John Wiley & Sons +3631,Catching Alice,Clare Naylor,3.38,0449005577,9780449005576,en-US,328,948,27,10/31/2000,Ballantine Books +3635,The Dream Giver,Bruce H. Wilkinson/David Kopp/Heather Harpham Kopp,4.26,159052201X,9781590522011,eng,157,5044,316,9/3/2003,Multnomah Books +3636,The Giver (The Giver #1),Lois Lowry,4.13,0385732554,9780385732550,eng,208,1585589,56604,1/24/2006,Ember +3638,The Wish Giver: Three Tales of Coven Tree,Bill Brittain/Andrew Glass,3.83,0064401685,9780064401685,eng,192,2201,218,4/2/2019,HarperCollins +3640,Indian Givers: How the Indians of the Americas Transformed the World,Jack Weatherford,4.11,0449904962,9780449904961,eng,288,1760,135,11/29/1989,Ballantine Books +3649,The Last Life,Claire Messud,3.56,0156011654,9780156011655,eng,400,1426,201,9/28/2000,Mariner Books +3650,The Hunters,Claire Messud,3.42,0330488155,9780330488150,eng,200,406,64,5/18/2003,Picador +3651,When the World Was Steady,Claire Messud,3.17,0964561107,9780964561106,eng,270,481,58,9/1/1995,Granta +3656,The Sea,John Banville,3.51,1400097029,9781400097029,eng,195,19308,1803,8/15/2006,Vintage +3657,The Sea,John Banville,3.51,0307263118,9780307263117,eng,195,586,103,12/7/2005,Alfred A. Knopf +3659,The Book of Evidence (The Freddie Montgomery Trilogy #1),John Banville,3.71,0375725237,9780375725234,eng,220,3202,278,6/12/2001,Vintage +3660,Athena (The Freddie Montgomery Trilogy #3),John Banville,3.66,0679736859,9780679736851,eng,240,387,29,5/28/1996,Vintage +3661,Doctor Copernicus (The Revolutions Trilogy #1),John Banville,3.65,0679737995,9780679737995,eng,242,583,60,10/12/1993,Vintage +3664,Shroud (The Cleave Trilogy #2),John Banville,3.66,037572530X,9780375725302,eng,257,974,81,6/8/2004,Vintage +3665,Ghosts,John Banville,3.61,0330371851,9780330371858,eng,244,33,3,12/17/1998,Picador +3679,On Beauty,Zadie Smith,3.73,0143037749,9780143037743,eng,445,53736,3657,8/29/2006,Penguin Books +3682,A Great and Terrible Beauty (Gemma Doyle #1),Libba Bray,3.79,0689875347,9780689875342,eng,403,189652,8207,12/9/2003,Simon and Schuster +3684,The Black Book of Hollywood Beauty Secrets,Kym Douglas/Cindy Pearlman,3.37,0452287650,9780452287655,en-US,224,130,16,12/1/2006,Plume Books +3685,Black Beauty,Anna Sewell,3.96,0439228905,9780439228909,eng,245,208684,3358,3/1/2003,Scholastic Paperbacks +3686,Truth and Beauty,Ann Patchett,3.94,0060572159,9780060572150,eng,257,31134,2662,4/5/2005,Harper Perennial +3687,The Life of Graham Greene Vol. 1: 1904-1939,Norman Sherry,4.11,0142004200,9780142004203,en-US,816,170,21,9/7/2004,Penguin Books +3688,Complete Short Stories,Graham Greene/Pico Iyer,4.17,0143039105,9780143039105,eng,594,1122,69,2/1/2005,Penguin Classics +3690,The Power and the Glory,Graham Greene/John Updike,4.00,0142437301,9780142437308,eng,222,25490,1585,2/25/2003,Penguin Books +3692,The Heart of the Matter,Graham Greene,3.99,0099478420,9780099478423,eng,272,21842,891,10/7/2004,Vintage Classics +3693,Orient Express,Graham Greene/Christopher Hitchens,3.46,0142437913,9780142437919,eng,197,2064,220,8/31/2004,Penguin Classics +3695,Journey Without Maps,Graham Greene/Paul Theroux,3.60,0143039725,9780143039723,eng,272,1139,70,6/27/2006,Penguin Classics +3698,The Quiet American,Graham Greene/Robert Stone,3.97,0143039024,9780143039020,eng,180,37620,2298,8/31/2004,Penguin Classics Deluxe Editions +3701,Collected Short Stories,Graham Greene,3.98,0140186123,9780140186123,eng,368,295,22,4/1/1993,Penguin Books +3705,The Third Man & The Fallen Idol,Graham Greene,3.77,014018533X,9780140185331,eng,157,1322,109,7/1/1992,Penguin Books Ltd +3707,The Tenth Man,Graham Greene,3.73,0671019090,9780671019099,eng,160,2910,220,2/1/1998,Washington Square Press +3710,The Autograph Man,Zadie Smith,3.16,037570387X,9780375703874,eng,347,9541,576,6/17/2003,Vintage +3711,White Teeth,Zadie Smith,3.77,0375703861,9780375703867,eng,448,102370,5677,6/12/2001,Vintage +3717,Stranger than Fiction,Chuck Palahniuk,3.57,0385722222,9780385722223,eng,233,18210,629,5/10/2005,Anchor +3731,Great Short Works of Herman Melville,Herman Melville/Warner Berthoff,4.04,0060586540,9780060586546,eng,512,424,13,3/2/2004,Harper Perennial Modern Classics +3732,Selected Poems of Herman Melville,Herman Melville/Robert Penn Warren,3.77,1567922694,9781567922691,eng,512,12,3,9/10/2004,David R. Godine Publisher +3733,Redburn / White-Jacket / Moby-Dick,Herman Melville/G. Thomas Tanselle,4.20,0940450097,9780940450097,eng,1436,1031,72,4/15/1983,Library of America +3734,Pierre / Israel Potter / The Piazza Tales / The Confidence-Man / Uncollected Prose / Billy Budd,Herman Melville/Harrison Hayford,4.18,0940450240,9780940450240,eng,1478,348,16,4/1/1985,Library of America +3736,Redburn,Herman Melville/Harold Beaver,3.62,0140431055,9780140431056,eng,448,545,53,8/26/1976,Penguin Classics +3738,Typee / Omoo / Mardi,Herman Melville/G. Thomas Tanselle,3.55,0940450003,9780940450004,eng,1333,644,26,5/6/1982,Library of America +3743,Harriet Spies Again (Harriet the Spy Adventures #1),Helen Ericson,3.84,0440416884,9780440416883,eng,256,1360,52,8/26/2003,Yearling +3744,Harriet the Spy Double Agent (Harriet the Spy Adventures),Maya Gold,3.80,0385327870,9780385327879,eng,160,1,0,9/13/2005,Delacorte Books for Young Readers +3750,Moonraker (James Bond #3),Ian Fleming,3.74,0142002062,9780142002063,eng,247,15204,780,12/31/2002,Penguin Books +3751,Moonraker's Bride,Madeleine Brent,4.31,0449235947,9780449235942,eng,319,55,13,6/12/1978,Fawcett +3754,Dr No / Moonraker / Thunderball / From Russia with Love / On Her Majesty's Secret Service / Goldfinger,Ian Fleming,3.98,0862731585,9780862731588,eng,862,0,0,1/1/1984,Heinemann-Octopus +3758,Casino Royale (James Bond #1),Ian Fleming,3.73,014200202X,9780142002025,eng,181,48961,2823,8/27/2002,Penguin +3759,Goldfinger (James Bond #7),Ian Fleming,3.80,0142002046,9780142002049,eng,264,16055,639,8/27/2002,Penguin Books +3762,On Her Majesty's Secret Service (James Bond #11),Ian Fleming,3.96,0142003255,9780142003251,eng,326,14108,428,9/2/2003,Penguin Books +3765,Octopussy & the Living Daylights (James Bond #14),Ian Fleming,3.55,0142003298,9780142003299,eng,120,5074,211,4/6/2004,Penguin Books +3768,Book of Sketches,Jack Kerouac/George Condo,3.80,0142002151,9780142002155,eng,432,572,43,4/4/2006,Penguin Books +3769,The Dharma Bums,Jack Kerouac,3.92,0141184884,9780141184883,en-GB,204,1361,77,8/3/2000,Penguin Books Ltd +3770,Book of Haikus,Jack Kerouac,3.91,1904634001,9781904634003,eng,200,25,5,3/2/2004,Enitharmon Press +3774,The Subterraneans,Jack Kerouac,3.68,0141184892,9780141184890,eng,192,426,42,9/6/2007,Penguin Books Ltd +3776,Ballet Shoes,Noel Streatfeild,4.07,1842552473,9781842552476,eng,184,210,26,12/23/2004,Orion Children's Books +3782,Theater Shoes (Shoes #4),Noel Streatfeild/Diane Goode,4.02,0679854347,9780679854340,eng,272,4461,158,11/15/1994,Yearling +3784,Movie Shoes (Shoes #6),Noel Streatfeild,4.00,0440458153,9780440458159,eng,239,1351,32,5/1/1984,Yearling Books +3787,Party Shoes (Shoes #5),Noel Streatfeild,3.64,0192752537,9780192752536,en-US,243,430,33,9/1/2002,Oxford University Press USA +3788,Thursday's Child (Margaret Thursday #1),Noel Streatfeild,3.98,0440486874,9780440486879,eng,256,1059,38,12/1/1985,Yearling +3797,Miss Happiness and Miss Flower,Rumer Godden/Gary Blythe,4.27,1405088567,9781405088565,eng,104,913,66,9/1/2006,MacMillan UK +3798,The River,Rumer Godden,3.95,0330489992,9780330489997,eng,128,377,54,4/16/2004,Pan +3799,The Dolls' House,Rumer Godden/Christian Birmingham,4.01,0330442554,9780330442558,eng,153,1410,73,11/3/2006,Macmillan +3801,China Court: The Hours of a Country House,Rumer Godden,3.97,0688117228,9780688117221,eng,358,516,77,12/31/1993,William Morrow & Company +3803,Rumer Godden,Anne Chisholm,3.82,0330367471,9780330367479,eng,335,9,5,6/11/1999,Pan +3805,The Corrections,Jonathan Franzen,3.79,1841156736,9781841156736,eng,653,133237,7468,9/2/2002,Fourth Estate Paperbacks +3806,Creative Correction: Extraordinary Ideas For Everyday Discipline,Lisa Whelchel/Stormie Omartian,3.93,1589971280,9781589971288,en-US,367,1094,87,3/31/2010,Thomas Nelson +3815,Original Sin (Adam Dalgliesh #9),P.D. James,3.91,0446679224,9780446679220,eng,511,6736,297,12/2/2005,Grand Central Publishing +3818,Original Sin: Illuminating the Riddle,Henri Blocher,3.68,083082605X,9780830826056,eng,158,64,16,10/2/2000,IVP Academic +3820,An Original Sin,Nina Bangs,3.75,0505523248,9780505523242,eng,394,369,16,7/1/1999,Love Spell +3822,Aliens: Original Sin,Michael Jan Friedman,3.71,1595820159,0761568107371,eng,256,247,18,10/26/2005,Dark Horse Books +3825,Death in Holy Orders (Adam Dalgliesh #11),P.D. James/Christa Seibicke,3.92,0345446666,9780345446664,eng,429,9847,516,3/26/2002,Fawcett Books +3826,The Lighthouse (Adam Dalgliesh #13),P.D. James,3.81,0307275736,9780307275738,eng,383,10651,711,10/10/2006,Vintage +3827,Unnatural Causes (Adam Dalgliesh #3),P.D. James,3.94,0571204104,9780571204106,eng,218,9258,330,5/20/2002,Penguin Books in association with Faber & Faber +3828,Death of an Expert Witness (Adam Dalgliesh #6),P.D. James,3.99,0571204201,9780571204205,eng,306,8045,265,5/20/2002,Gardners Books +3829,A Mind To Murder (Adam Dalgliesh #2),P.D. James,3.82,0571204155,9780571204151,eng,225,39,4,5/20/2002,Gardners Books +3830,A Taste for Death (Adam Dalgliesh #7),P.D. James,4.02,1400096472,9781400096473,eng,459,10304,374,11/8/2005,Vintage +3831,Time To Be In Earnest: A Fragment Of Autobiography,P.D. James,3.93,0345442121,9780345442123,eng,306,495,76,2/27/2001,Ballantine Books +3832,Cover Her Face (Adam Dalgliesh #1),P.D. James,3.93,0743219570,9780743219570,eng,250,26375,953,5/8/2001,Scribner +3833,The Black Tower (Adam Dalgliesh #5),P.D. James,4.00,0743219619,9780743219617,eng,352,13801,335,10/2/2001,Scribner +3834,Innocent Blood,P.D. James,3.68,0743219635,9780743219631,eng,400,3793,286,8/2/2001,Scribner +3835,Don Quixote,Miguel de Cervantes Saavedra/Edith Grossman/Harold Bloom,3.87,0060934344,9780060934347,eng,940,4956,705,4/26/2005,Ecco +3836,Don Quixote,Miguel de Cervantes Saavedra/John Rutherford/Roberto González Echevarría,3.87,0142437239,9780142437230,eng,1023,160911,4087,2/25/2003,Penguin Books +3837,Don Quixote,Miguel de Cervantes Saavedra/Walter Starkie,3.87,0451528905,9780451528902,en-US,544,71,5,6/3/2003,Signet Classics +3840,Don Quixote,Miguel de Cervantes Saavedra/Tobias Smollett/Carlos Fuentes,3.87,037575699X,9780375756993,eng,1168,393,40,4/10/2001,Modern Library +3841,Lectures on Don Quixote,Vladimir Nabokov/Fredson Bowers/Guy Davenport/Miguel de Cervantes Saavedra/Samuel Putnam,3.87,0156495406,9780156495400,eng,240,275,14,4/18/1984,Harcourt Brace Jovanovich +3842,Cliffs Notes on Cervantes' Don Quixote,Marianne Sturman,3.61,0822004151,9780822004158,eng,96,21,2,7/8/1964,Cliffs Notes +3848,Desert Heat (Joanna Brady #1),J.A. Jance,4.00,0727861158,9780727861153,eng,256,41,11,9/1/2004,Severn House Publishers +3849,Kentucky Heat,Fern Michaels,4.19,0821773682,9780821773680,eng,383,1869,46,9/1/2002,Zebra +3850,Heat Wave: A Social Autopsy of Disaster in Chicago,Eric Klinenberg,3.86,0226443221,9780226443225,eng,320,732,71,7/15/2003,University Of Chicago Press +3851,Texas Heat (Texas #2),Fern Michaels,4.18,0345449606,9780345449603,eng,496,2025,41,11/27/2001,Ballantine Books +3852,Primal Heat (Includes: Breeds #8.5; Devlin Dynasty #1; Moon Lust #1),Lora Leigh/Sherri L. King/Lorie O'Clare/Jaci Burton,4.13,1843607409,9781843607403,eng,196,3567,62,5/15/2004,Ellora's Cave +3853,Heat and Dust,Ruth Prawer Jhabvala,3.55,1582430152,9781582430157,eng,190,6214,270,4/16/1999,Counterpoint +3858,Holy Cow: An Indian Adventure,Sarah Macdonald,3.53,0767915747,9780767915748,eng,304,15315,1101,4/13/2004,Broadway Books +3859,Holy Cows and Hog Heaven: The Food Buyer's Guide to Farm Friendly Food,Joel Salatin/Michael Pollan,4.01,0963810944,9780963810946,eng,134,292,35,2/19/2005,Polyface +3867,The History of Love,Nicole Krauss,3.92,0393328627,9780393328622,eng,255,110082,9777,5/17/2006,Norton +3869,A Brief History of Time,Stephen Hawking,4.17,0553380168,9780553380163,eng,212,239652,5860,9/1/1998,Bantam Books +3870,A Short History of Nearly Everything,Bill Bryson,4.21,0767923227,9780767923224,eng,624,352,37,11/1/2005,Broadway Books +3871,The Politically Incorrect Guide to American History,Thomas E. Woods Jr.,4.03,0895260476,9780895260475,en-US,270,1604,153,11/1/2004,Regnery Publishing +3872,A History of the World in 6 Glasses,Tom Standage,3.76,0802715524,9780802715524,eng,336,14820,1686,5/16/2006,Bloomsbury +3873,A History of God: The 4 000-Year Quest of Judaism Christianity and Islam,Karen Armstrong,3.87,0517223120,9780517223123,eng,460,38915,1087,3/2/2004,Gramercy Books +3875,The Sun Also Rises,Ernest Hemingway/William Hurt,3.82,0743564413,9780743564410,eng,8,302,69,10/17/2006,Simon Schuster Audio +3886,The Bon Appetit Cookbook,Barbara Fairchild,4.07,0764596861,9780764596865,eng,816,1816,22,8/15/2006,Houghton Mifflin Harcourt +3895,The Barefoot Contessa Cookbook,Ina Garten/Melanie Acevedo,4.15,0609602195,9780609602195,eng,256,28789,177,4/6/1999,Clarkson Potter +3900,Into a Paris Quartier: Reine Margot's Chapel and Other Haunts of St. Germain,Diane Johnson,3.51,0792272668,9780792272663,eng,204,240,46,5/1/2005,National Geographic Society +3914,Sylvia,Leonard Michaels/Diane Johnson,3.86,0374271070,9780374271077,eng,129,807,95,5/29/2007,Farrar Straus and Giroux +3916,The Life Of Dashiell Hammett,Diane Johnson,3.73,070112766X,9780701127664,eng,344,4,0,1/23/1984,Vintage/Ebury (A Division of Random House Group) +3918,Divorcio a la Francesa: Le Divorce,Diane Johnson/Carlos Milla Soler/Roberto Fernandez Sastre,2.88,8420466557,9788420466552,spa,388,6,0,6/1/2003,Santillana USA Publishing Company +3921,London is the Best City in America,Laura Dave,3.45,0670037567,9780670037568,eng,256,2168,233,5/18/2006,Viking Adult +3938,Hyperion (Los Cantos de Hyperion #1),Dan Simmons/Carlos Alberto Gardini,4.24,8466617353,9788466617352,spa,618,174,14,6/1/2005,Ediciones B +3939,The Fall of Hyperion (Hyperion Cantos #2),Dan Simmons,4.20,0747236046,9780747236047,eng,632,237,15,2/20/1992,Headline Book Pub Ltd +3940,Supreme Power: Hyperion,J. Michael Straczynski/Dan Jurgens,3.45,0785118950,9780785118954,eng,120,232,9,7/19/2006,Marvel +3966,Die Hyperion-Gesänge,Dan Simmons/Joachim Körber,4.42,3453215281,9783453215283,ger,1456,141,11,8/1/2002,Heyne +3967,La Chute d'Hypérion II,Dan Simmons/Guy Abadia,4.20,2266111574,9782266111577,fre,347,21,1,12/26/2000,Pocket +3968,Endymion,Dan Simmons/Guy Abadia,4.17,2221089561,9782221089569,fre,572,29,1,12/14/1998,Robert Laffont +3972,Olympos (Ilium #2),Dan Simmons,3.94,0380817934,9780380817931,eng,891,13300,484,7/25/2006,Harper Voyager +3973,Ilium (Ilium #1),Dan Simmons,4.03,0380817926,9780380817924,eng,752,21973,905,6/28/2005,HarperTorch +3974,The Terror,Dan Simmons,4.07,0316017442,9780316017442,eng,769,31711,3317,1/8/2007,Little Brown and Company +3975,Worlds Enough & Time: Five Tales of Speculative Fiction,Dan Simmons,3.75,0060506040,9780060506049,eng,272,953,61,11/26/2002,Harper Voyager +3976,Hard Freeze (Joe Kurtz #2),Dan Simmons,3.84,0312989482,9780312989484,eng,320,734,44,9/15/2003,Minotaur Books +3977,Endymion (Hyperion Cantos #3),Dan Simmons,4.17,0553572946,9780553572940,eng,563,38357,1111,12/1/1996,Bantam Spectra +3978,A Winter Haunting (Seasons of Horror #2),Dan Simmons,3.60,0380817160,9780380817160,eng,371,6253,488,12/31/2002,HarperTorch +3985,The Amazing Adventures of Kavalier & Clay,Michael Chabon,4.18,0312282990,9780312282998,eng,639,165862,9143,8/25/2001,Picador USA +3986,The Amazing Adventures of the Escapist: Volume 1,Michael Chabon/Glen David Gold/Bill Sienkiewicz/Howard Chaykin/Gene Colan/Steve Lieber/Eric Wight/Kevin McCarthy,3.46,159307171X,9781593071714,eng,159,1097,105,5/18/2004,Dark Horse +3997,The Great House of God,Max Lucado,4.25,0849942985,9780849942983,eng,240,1101,58,10/31/2001,Thomas Nelson +4006,The Valkyries,Paulo Coelho/Alan R. Clarke,3.31,0722533942,9780722533949,eng,243,16483,685,9/6/1999,HarperTorch (an imprint of HarperCollins Publishers) +4008,The Devil and Miss Prym (On the Seventh Day #3),Paulo Coelho/Amanda Hopkinson/Nick Caistor,3.61,0060527994,9780060527990,eng,205,47673,2046,7/3/2006,HarperOne +4009,Nine Stories,J.D. Salinger,4.19,0316767727,9780316767729,eng,198,112779,2897,1/30/2001,Little Brown and Company +4014,The Sun Rises: and Other Questions About Time and Seasons,Brenda Walpole,3.94,0753459647,9780753459645,eng,32,50,6,9/15/2006,Kingfisher +4023,American Psycho,Bret Easton Ellis,3.82,033048477X,9780330484770,eng,399,844,76,4/21/2010,Picador +4031,Lunar Park,Bret Easton Ellis,3.70,0375727272,9780375727276,eng,404,24618,738,8/29/2006,Vintage +4035,The Burden of Proof (Kindle County Legal Thriller #2),Scott Turow,4.06,0446677124,9780446677127,eng,608,32337,272,12/1/2000,Grand Central Publishing +4043,Godless,Pete Hautman,3.60,1416908161,9781416908166,eng,208,4213,735,11/1/2005,Simon Schuster Books for Young Readers +4050,That Godless Court?: Supreme Court Decisions on Church-State Relationships,Ronald B. Flowers,3.59,0664228917,9780664228910,en-US,228,12,1,9/2/2005,Westminster John Knox Press +4055,Soul Mates: Honouring the Mysteries of Love and Relationship,Thomas Moore,3.99,0060925752,9780060925758,eng,288,4372,81,12/13/2013,Harper Perennial +4060,Soul Mates & Twin Flames: The Spiritual Dimension of Love & Relationships (Pocket Guide to Practical Spirituality),Elizabeth Clare Prophet,3.79,0922729484,9780922729487,en-US,155,141,5,8/17/2017,Summit University Press +4066,Hot Chocolate for the Mystical Lover: 101 True Stories of Soul Mates Brought Together by Divine Intervention,Arielle Ford/Deepak Chopra,4.08,0452282179,9780452282179,en-US,412,38,4,1/1/2001,Plume +4069,Man's Search for Meaning,Viktor E. Frankl/Harold S. Kushner/William J. Winslade/Isle Lasch,4.36,080701429X,9780807014295,eng,165,282127,13449,6/1/2006,Beacon Press +4070,Man's Search for Meaning,Viktor E. Frankl/Gordon W. Allport/Ilse Lasch,4.36,0807014265,9780807014264,eng,165,391,44,3/30/2000,Beacon Press (Boston) +4075,In Search of Memory: The Emergence of a New Science of Mind,Eric R. Kandel,4.10,0393058638,9780393058635,eng,430,3958,172,2/1/2006,W. W. Norton & Company +4077,Search Engine Optimization for Dummies,Peter Kent,3.79,0471979988,9780471979982,en-US,382,143,20,5/1/2006,For Dummies +4099,The Pragmatic Programmer: From Journeyman to Master,Andy Hunt/Dave Thomas,4.31,020161622X,9780201616224,eng,321,12563,699,10/30/1999,Addison-Wesley Professional +4100,Behind Closed Doors: Secrets of Great Management,Johanna Rothman/Esther Derby,3.96,0976694026,9780976694021,en-US,176,840,63,9/26/2005,Pragmatic Bookshelf +4104,Blink: The Power of Thinking Without Thinking,Malcolm Gladwell,3.93,0713997273,9780713997279,eng,278,832,118,1/11/2005,Penguin +4106,Blink 182,Anne Hoppus,4.42,0859653234,9780859653237,eng,112,62,4,12/1/2001,Plexus Publishing Ltd +4108,I Blink: And Other Questions About My Body,Brigid Avison,3.92,0753456109,9780753456101,eng,32,36,1,4/25/2003,Kingfisher +4117,The Great Good Thing (The Sylvie Cycle #1),Roderick Townley,3.90,0689837143,9780689837142,en-US,224,1782,197,9/1/2003,Simon & Schuster Childrens Books +4119,The Great Good Place: Cafes Coffee Shops Bookstores Bars Hair Salons and Other Hangouts at the Heart of a Community,Ray Oldenburg,3.83,1569246815,9781569246818,eng,384,608,78,8/18/1999,Da Capo Press +4122,Built to Last: Successful Habits of Visionary Companies,James C. Collins/Jerry I. Porras,3.99,0060566108,9780060566104,eng,368,53749,509,11/2/2004,Harper Business +4135,I Like You: Hospitality Under the Influence,Amy Sedaris,3.88,0446578843,9780446578844,eng,304,37258,1401,10/16/2006,Warner Books (NY) +4140,Children Playing Before a Statue of Hercules,David Sedaris/Richard Yates/Dorothy Parker/Joyce Carol Oates/Lorrie Moore/Flannery O'Connor/Amy Hempel/Akhil Sharma/Tim Johnston/Tobias Wolff/Sarah Vowell/Charles Baxter/Jhumpa Lahiri/Katherine Mansfield/Alice Munro/Jean Thompson/Frank Gannon/Patricia Highsmith/Jincy Willett,3.68,0743276124,9780743276122,eng,344,6490,463,8/1/2005,Simon & Schuster +4144,Bringing Down The House,Ben Mezrich,3.89,0099468239,9780099468233,en-GB,320,518,61,5/6/2004,Arrow +4162,Read for Your Life: 11 Ways to Better Yourself Through Books,Pat Williams/Peggy Matthews Rose,3.70,0757305458,9780757305450,eng,311,82,17,6/1/2007,Hci +4165,The Hip-Hop Church: Connecting with the Movement Shaping Our Culture,Efrem Smith/Phil Jackson,3.91,0830833293,9780830833290,eng,227,21,4,12/15/2005,IVP Books +4167,The Final Season: Fathers Sons and One Last Season in a Classic American Ballpark,Tom Stanton,4.16,0312291566,9780312291563,eng,256,216,25,5/8/2002,St. Martin's Griffin +4191,The Cold Six Thousand (Underworld USA #2),James Ellroy,4.01,037572740X,9780375727405,eng,688,5642,265,6/11/2002,Vintage +4200,White Teeth,Zadie Smith,3.77,0140276335,9780140276336,eng,542,4202,406,1/25/2001,Penguin Books +4204,White Teeth,Zadie Smith,3.77,1417626283,9781417626281,eng,448,81,11,6/1/2001,Turtleback Books +4207,White Teeth,Zadie Smith,3.77,0140297782,9780140297782,en-GB,542,1265,142,11/30/2000,Penguin +4216,Schiffbruch mit Zuschauer. Paradigma einer Daseinsmetapher,Hans Blumenberg,3.93,3518222635,9783518222638,ger,106,6,0,5/27/1997,Suhrkamp +4221,The Guide to Dan Brown's the Solomon Key,Greg Taylor,2.98,0875168167,9780875168166,en-US,183,34,2,9/30/2005,DeVorss & Company +4223,The Da Vinci Code (Robert Langdon #2),Dan Brown,3.84,0739326740,9780739326749,en-US,756,3645,407,3/28/2006,Random House Large Print +4227,Angels & Demons (Robert Langdon #1),Dan Brown,3.89,0743275063,9780743275064,en-US,528,1192,143,5/3/2005,Atria Books +4232,The Illuminati,Larry Burkett,3.71,1595540016,0020049130001,eng,352,60,8,10/4/2004,Thomas Nelson +4241,The Illuminati Papers,Robert Anton Wilson,3.83,1579510027,9781579510022,en-US,168,710,22,12/11/1997,Ronin Publishing (CA) +4248,The Da Vinci Code,Dan Brown,3.84,1400079179,9781400079179,eng,489,13934,1459,3/28/2006,Anchor +4249,The Da Vinci Code (Robert Langdon #2),Dan Brown/Paul Michael,3.84,0739339788,9780739339787,eng,0,91,16,3/28/2006,Random House Audio +4250,El código Da Vinci (Robert Langdon #2),Dan Brown/Juanjo Estrella,3.84,8495618605,9788495618603,spa,557,3276,190,10/17/2003,Umbriel +4251,Truth and Fiction in The Da Vinci Code: A Historian Reveals What We Really Know about Jesus Mary Magdalene & Constantine,Bart D. Ehrman,3.64,0195307135,9780195307139,en-US,207,533,50,5/18/2006,Oxford University Press USA +4256,Harry Potter and the Prisoner of Azkaban (Harry Potter #3),J.K. Rowling,4.56,074757362X,9780747573623,eng,480,3141,140,7/1/2008,Bloomsbury UK +4259,Housekeeping vs. the Dirt,Nick Hornby/Sarah Vowell/Jess Walter/Jennie Erdal/Joshua Ferris,3.88,1932416595,9781932416596,eng,153,2636,302,9/13/2006,McSweeney's +4260,The Polysyllabic Spree,Nick Hornby,3.73,1932416242,9781932416244,eng,143,6828,621,11/30/2004,McSweeney's +4261,Songbook,Nick Hornby,3.56,1573223565,9781573223560,eng,207,10066,341,10/7/2003,Riverhead Books +4263,My Favorite Year: A Collection of Football Writing,Nick Hornby/D.J. Taylor/Huw Richards/Chris Pierson/Roddy Doyle/Harry Ritchie/Harry Pearson/Olly Wicken/Graham Brack/Matt Nation/Ed Horton/Don Watson,3.68,0753814412,9780753814413,eng,288,393,4,8/1/2001,Orion Publishing +4264,Fever Pitch,Nick Hornby,3.74,1573226882,9781573226882,eng,247,28830,1069,3/1/1998,Riverhead Books +4267,High Fidelity,Nick Hornby,3.94,1573228214,9781573228213,en-US,323,827,101,3/1/2000,Riverhead Books +4273,About a Boy,Nick Hornby,3.80,0141007338,9780141007335,eng,278,825,73,4/4/2002,Penguin +4277,The Complete Polysyllabic Spree,Nick Hornby,3.59,0670916668,9780670916665,eng,278,450,63,9/7/2006,Viking +4278,Medicus (Gaius Petreius Ruso #1),Ruth Downie,3.73,1596912316,9781596912311,eng,386,5723,695,3/6/2007,Bloomsbury Publishing PLC +4287,Middlesex Borough (Images of America: New Jersey),Middlesex Borough Heritage Committee,5.00,0738511676,9780738511672,eng,128,2,0,3/17/2003,Arcadia Publishing +4295,David Foster Wallace's Infinite Jest: A Reader's Guide,Stephen J. Burn,3.82,082641477X,9780826414779,en-GB,96,900,48,5/20/2003,Bloomsbury Academic +4300,Scar Tissue,Anthony Kiedis,4.11,1401301010,9781401301019,en-US,465,327,46,10/6/2004,Hachette Books +4314,Monsieur Ibrahim et les fleurs du Coran,Éric-Emmanuel Schmitt,3.82,2226126260,9782226126269,fre,85,975,62,6/13/2001,Albin Michel +4315,Zaat,Sonallah Ibrahim/صنع الله إبراهيم/Anthony Calderbank,3.55,9774248449,9789774248443,ara,349,122,12,3/15/2004,American University in Cairo Press +4325,Dreamland,Sarah Dessen,3.91,0142401757,9780142401750,eng,250,70043,3881,5/11/2004,Speak +4326,End Game (Dreamland #8),Dale Brown/Jim DeFelice,4.02,0060094427,9780060094423,eng,432,327,7,10/31/2006,HarperTorch +4329,H. P. Lovecraft's Dreamlands (Call of Cthulhu RPG),Chris Williams/Sandy Petersen,3.97,1568821573,9781568821573,eng,260,98,2,2/2/2008,Chaosium +4331,Dreamland (Dreamland #1),Dale Brown/Jim DeFelice,3.90,0007109660,9780007109661,eng,375,1313,28,7/2/2001,HarperCollins Publishers Ltd +4332,Satan's Tail (Dreamland #7),Dale Brown/Jim DeFelice,4.00,0060094419,9780060094416,eng,405,339,9,7/26/2005,HarperTorch +4337,The Zanzibar Chest,Aidan Hartley,4.01,1594480117,9781594480119,en-US,496,2218,172,8/3/2004,Riverhead Books +4338,Dispatches from the Edge: A Memoir of War Disasters and Survival,Anderson Cooper,3.96,0061132381,9780061132384,eng,212,7205,825,5/23/2006,Harper +4339,Dispatches,Michael Herr,4.23,0679735259,9780679735250,eng,260,13108,795,8/6/1991,Vintage +4341,Dispatch,Bentley Little,3.62,0451216776,9780451216779,en-US,386,1291,100,10/4/2005,Signet +4346,Dispatches from the Tenth Circle: The Best of the Onion,Robert D. Siegel/Todd Hanson/Carol Kolb/The Onion,4.21,0609808346,9780609808344,eng,174,3472,30,9/4/2001,Three Rivers Press +4352,Hello! Is That Grandma?,Ian Whybrow/Deborah Allwright,3.53,0439944392,9780439944397,en-GB,32,57,14,5/7/2007,Alison Green Books +4359,How Much is That Guinea Pig in the Window?,Joanne Rocklin/Meredith Johnson,4.00,0590227165,9780590227162,en-US,48,27,7,10/1/1995,Scholastic Inc. +4360,My War Gone By I Miss It So,Anthony Loyd,4.29,0140298541,9780140298543,eng,336,1505,119,2/1/2001,Penguin Books (NY) +4362,Night Draws Near: Iraq's People in the Shadow of America's War,Anthony Shadid,4.12,0312426038,9780312426033,eng,507,643,61,9/5/2000,St. Martin's Press +4364,Maximum City: Bombay Lost and Found,Suketu Mehta,3.93,0375703403,9780375703409,eng,542,9024,637,9/27/2005,Vintage +4370,Catfish and Mandala: A Two-Wheeled Voyage Through the Landscape and Memory of Vietnam,Andrew X. Pham,3.96,0312267177,9780312267179,en-US,344,4820,524,9/2/2000,Picador USA +4372,When Broken Glass Floats: Growing Up Under the Khmer Rouge,Chanrithy Him,4.14,0393322106,9780393322101,eng,336,3534,320,4/17/2001,W. W. Norton Company +4373,First They Killed My Father: A Daughter of Cambodia Remembers,Loung Ung,4.35,0060856262,9780060856267,eng,238,26524,2609,4/4/2006,Harper Perennial +4382,Fahrenheit 451,Ray Bradbury/Christopher Hurt,3.99,078617627X,9780786176274,eng,5,483,146,11/1/2005,Blackstone Audiobooks +4390,Los funerales de la Mamá Grande,Gabriel García Márquez,3.78,0307350320,9780307350329,spa,160,4694,133,2/7/2006,Plaza y Janes +4394,Collected Novellas,Gabriel García Márquez/Gregory Rabassa/J.S. Bernstein,4.00,006093266X,9780060932664,eng,288,838,51,1/8/2008,Harper Perennial Modern Classics +4397,The Grapes of Wrath,John Steinbeck/Robert DeMott/Mick Wiggins,3.96,0143039431,9780143039433,eng,464,7044,639,3/28/2006,Penguin Classics +4398,CliffsNotes on Steinbeck's The Grapes of Wrath,Kelly McGrath Vlcek/CliffsNotes/John Steinbeck,3.81,0764585967,9780764585968,eng,112,30,5,6/5/2000,Cliffs Notes +4399,The Grapes of Wrath,John Steinbeck,3.96,0582461537,9780582461536,eng,597,37,8,3/1/2001,Longman Schools Division (a Pearson Education Company) +4404,American Gods,Neil Gaiman,4.11,0060010606,9780060010607,eng,635,1211,169,6/1/2001,PerfectBound (HarperCollins) +4405,American Gospel: God the Founding Fathers and the Making of a Nation,Jon Meacham,3.80,1400065550,9781400065554,eng,399,1876,244,4/4/2006,Random House (NY) +4407,American Gods (American Gods #1),Neil Gaiman,4.11,0747263744,9780747263746,eng,635,383045,15962,3/4/2005,Headline Review +4408,East of Eden,John Steinbeck,4.37,0142004235,9780142004234,eng,601,3942,396,6/18/2002,Penguin Books +4411,Eden in the East: The Drowned Continent of Southeast Asia,Stephen Oppenheimer,3.98,0753806797,9780753806791,eng,575,99,15,7/1/1999,Orion Publishing +4415,East Of Eden,John Steinbeck,4.37,0553116088,9780553116083,eng,691,83,18,1/1/1977,Bantam Books +4417,Who Was John F. Kennedy?,Yona Zeldis McDonough/Nancy Harrison/Jill Weber,4.18,0448437430,9780448437439,eng,112,679,116,12/29/2004,Grosset & Dunlap +4418,The Radical Right & the Murder of John F. Kennedy: Stunning Evidence in the Assassination of the President,Harrison Edward Livingstone,3.22,1412040558,9781412040556,en-US,615,9,0,10/6/2004,Trafford Publishing +4424,An Unfinished Life: John F. Kennedy 1917-1963,Robert Dallek,4.07,0316907928,9780316907927,en-US,849,7981,307,5/4/2004,Back Bay Books +4434,Sellevision,Augusten Burroughs,3.56,1843543648,9781843543640,eng,229,175,9,1/1/2006,Atlantic +4435,Dry,Augusten Burroughs,4.03,1843541858,9781843541851,eng,295,1158,91,3/1/2005,Atlantic +4436,Running with Scissors,Augusten Burroughs,3.72,1843544857,9781843544852,en-GB,320,667,70,11/4/2006,Atlantic Books +4451,People of the Lie: The Hope for Healing Human Evil,M. Scott Peck,3.98,0684848597,9780684848594,en-CA,272,6256,459,1/2/1998,Touchstone +4454,The Road Less Traveled: A New Psychology of Love Traditional Values and Spiritual Growth,M. Scott Peck,4.05,0743243153,9780743243155,en-US,318,1314,98,2/4/2003,Touchstone +4465,The Adventures of Sherlock Holmes,Arthur Conan Doyle,4.36,1842055062,9781842055069,eng,189,5906,140,1/1/2004,Geddes & Grosset +4472,A Prayer for Owen Meany,John Irving,4.23,0679642595,9780679642596,eng,641,1073,97,6/4/2002,Modern Library +4477,Complications: A Surgeon's Notes on an Imperfect Science,Atul Gawande/Susanne Kuhlmann-Krieg,4.26,0312421702,9780312421700,eng,270,33828,2237,4/1/2003,Picador USA +4479,Sad Underwear and Other Complications: More Poems for Children and Their Parents,Judith Viorst/Richard Hull,3.91,0689833768,9780689833762,en-US,80,109,13,4/1/2000,Atheneum Books for Young Readers +4487,Bridget Jones: The Edge Of Reason (Bridget Jones #2),Helen Fielding,3.57,033036734X,9780330367349,eng,422,965,49,11/18/1999,Picador Macmillan Publishers Ltd +4488,Bridget Jones's Guide to Life,Helen Fielding,3.49,0142000213,9780142000212,en-US,64,1104,34,4/1/2001,Penguin Books +4515,Las luces de septiembre (Niebla #3),Carlos Ruiz Zafón,3.77,8423671267,9788423671267,spa,279,5119,217,10/1/2005,Edebé +4519,A Framework for Understanding Poverty,Ruby K. Payne,3.90,1929229488,9781929229482,eng,199,3690,518,2/9/2006,AHA! Process +4520,El príncipe de la niebla (Trilogía de la Niebla #1),Carlos Ruiz Zafón,3.70,0061284386,9780061284380,spa,230,3602,325,11/21/2006,Rayo +4524,The Shadow of the Wind,Carlos Ruiz Zafón/Lucia Graves,4.26,0753819317,9780753819319,eng,403,1278,175,10/28/2004,Phoenix +4525,Ruby for Rails: Ruby Techniques for Rails Developers,David A. Black/David Heinemeier Hansson,3.77,1932394699,9781932394696,eng,493,180,10,5/11/2006,Manning Publications +4540,About the B'nai Bagels,E.L. Konigsburg,3.57,0440400341,9780440400349,eng,172,308,30,3/1/1985,Dell +4579,The Far Side of Evil,Sylvia Engdahl,3.98,0142402931,9780142402931,eng,324,60,9,1/13/2005,Firebird +4580,Enchantress from the Stars,Sylvia Engdahl/Lois Lowry,3.95,0142500372,9780142500378,eng,304,2045,230,2/24/2003,Firebird +4583,Everything Is Illuminated,Jonathan Safran Foer,3.90,0060792175,9780060792176,eng,276,1764,191,8/23/2005,Harper Perennial +4584,Everything Is Illuminated,Jonathan Safran Foer,3.90,0141008253,9780141008257,eng,276,5210,522,6/5/2003,Penguin Group +4588,Extremely Loud and Incredibly Close,Jonathan Safran Foer,3.98,0618711651,9780618711659,eng,326,335477,19241,4/4/2006,Mariner Books +4591,Genome: the Autobiography of a Species in 23 Chapters,Matt Ridley,4.04,0060894083,9780060894085,eng,344,20695,714,5/30/2006,Harper Perennial +4593,Bioinformatics: Sequence and Genome Analysis,David W. Mount,3.86,0879697121,9780879697129,en-US,692,63,3,8/16/2004,Cold Spring Harbor Laboratory Press +4595,The Genome War: How Craig Venter Tried to Capture the Code of Life and Save the World,James Shreeve,3.83,0345433742,9780345433749,eng,392,272,23,6/28/2005,Ballantine Books +4599,Carter Beats the Devil,Glen David Gold,4.09,0786886323,9780786886326,eng,483,11095,880,9/18/2002,Hyperion +4600,Moo Baa La La La!,Sandra Boynton,4.20,0689861133,9780689861130,eng,14,28925,527,9/6/2004,Simon & Schuster Childrens Books +4601,Click Clack Moo: Cows That Type,Doreen Cronin/Betsy Lewin,4.24,0743461517,9780743461511,eng,30,348,33,6/1/2003,Pocket Books +4602,Dooby Dooby Moo,Doreen Cronin/Betsy Lewin,4.10,0689845073,9780689845079,eng,40,7823,250,8/8/2006,Atheneum Books for Young Readers +4605,Moo,Jane Smiley,3.46,2743604913,9782743604912,fre,482,6441,492,6/1/1999,Rivages +4606,Sailor Moo: Cow at Sea,Lisa Wheeler/Ponder Goembel,4.07,0689842198,9780689842191,eng,32,161,41,7/1/2002,Atheneum/Richard Jackson Books +4608,CliffsNotes on Heller's Catch-22,Charles A. Peek/CliffsNotes/Joseph Heller,3.55,0822002965,9780822002963,eng,48,37,1,12/31/1975,Cliffs Notes +4610,Catch-22,Joseph Heller,3.98,0099477319,9780099477310,eng,519,5517,452,10/6/1994,Vintage +4620,Geisha,Liza Dalby,4.00,0520204956,9780520204959,eng,367,3730,142,10/1/1998,University of California Press +4623,Does Anything Eat Wasps?: And 101 Other Unsettling Witty Answers to Questions You Never Thought You Wanted to Ask,New Scientist/Mick O'Hare,3.52,0743297261,9780743297264,en-US,224,606,45,4/5/2006,Atria Books +4624,Chronik eines angekündigten Todes,Gabriel García Márquez/Curt Meyer-Clason,3.97,3462031953,9783462031959,ger,119,11,1,8/1/2002,Kiepenheuer & Witsch +4625,The Complete Short Stories of Ernest Hemingway,Ernest Hemingway/John Hemingway/Patrick Hemingway/Gregory H. Hemingway/Charles Scribner Jr.,4.29,0684843323,9780684843322,eng,650,30081,649,8/3/1998,Scribner +4626,Hemingway & Bailey's Bartending Guide to Great American Writers,Mark Bailey/Edward Hemingway,3.90,1565124820,9781565124820,eng,97,132,24,10/13/2006,Algonquin Books +4627,For Whom The Bell Tolls,Ernest Hemingway,3.97,0099481561,9780099481560,en-GB,490,162,7,5/5/2005,Vintage Classics +4631,A Moveable Feast,Ernest Hemingway,4.04,0099285045,9780099285045,eng,192,82993,4808,9/6/2012,Vintage +4633,Islands in the Stream,Ernest Hemingway,3.88,0743253426,9780743253420,eng,448,11265,471,7/22/2003,Scribner +4637,Berlin Blues,Sven Regener/John Brownjohn,3.87,0099449234,9780099449232,eng,247,186,24,11/4/2004,Vintage +4641,The Short Stories,Ernest Hemingway,4.26,0684837862,9780684837864,en-US,464,219,21,7/25/2002,Scribner Classics +4642,Hemingway's Cats: An Illustrated Biography,Carlene Fredericka Brennen/Hilary Hemingway,3.82,1561643424,9781561643424,eng,185,45,9,1/1/2005,Pineapple Press +4651,The Ernest Hemingway Audio Collection,Ernest Hemingway/Charlton Heston,4.30,0694524980,9780694524983,en-US,4,43,6,5/8/2001,Caedmon +4653,Until I Find You,John Irving,3.63,0552773123,9780552773126,eng,928,198,33,8/1/2006,Black Swan +4654,The Imaginary Girlfriend,John Irving,3.42,0345458265,9780345458261,eng,208,1841,112,12/3/2002,Ballantine Books +4656,The Fourth Hand,John Irving,3.31,0345463153,9780345463159,eng,368,25257,977,4/29/2003,Fawcett Books +4657,The Water-Method Man,John Irving,3.35,034541800X,9780345418005,eng,272,10479,251,6/23/1997,Ballantine Books +4658,Setting Free the Bears,John Irving,3.30,0345417984,9780345417985,eng,304,8896,217,6/23/1997,Ballantine Books +4660,The 158-Pound Marriage,John Irving,3.24,0345417968,9780345417961,en-US,176,11346,280,6/23/1997,Ballantine Books +4662,The Short Stories,F. Scott Fitzgerald/Matthew J. Bruccoli,4.23,0684842505,9780684842509,eng,800,12039,164,4/15/1998,Scribner +4664,A Life in Letters,F. Scott Fitzgerald/Matthew J. Bruccoli,4.22,0684801531,9780684801537,eng,528,186,13,5/3/1995,Scribner +4666,On Authorship,F. Scott Fitzgerald/Matthew J. Bruccoli/Judith S. Baughman,3.75,1570031460,9781570031465,eng,203,8,1,9/1/1996,University of South Carolina Press +4669,The St. Paul Stories of F. Scott Fitzgerald,F. Scott Fitzgerald/Dave Page/Patricia Hampl,4.00,0873515129,9780873515122,en-US,328,100,11,9/24/2004,Minnesota Historical Society Press +4670,Tender is the Night,F. Scott Fitzgerald/Arnold Goldman/Richard Godden,3.82,0141183594,9780141183596,en-GB,400,1354,140,6/28/2001,Penguin Classics +4673,The Great Gatsby,Kathleen Parkinson/F. Scott Fitzgerald,3.88,0140771972,9780140771978,eng,144,557,28,11/25/2003,Penguin Global +4674,The Great Gatsby,F. Scott Fitzgerald/Tim Robbins,3.91,0060098910,9780060098919,eng,6,258,58,10/1/2002,Caedmon +4675,The Great Gatsby,F. Scott Fitzgerald/Alexander Scourby,3.91,1572702567,9781572702561,eng,4,63,13,3/13/2002,Audio Partners +4676,Cliffs Notes on Fitzgerald's the Great Gatsby,Kate Maurer/F. Scott Fitzgerald/CliffsNotes,3.70,0764586017,9780764586019,eng,96,78,13,6/5/2000,Cliffs Notes +4677,The Great Gatsby,F. Scott Fitzgerald,3.91,0140620184,9780140620184,eng,188,2729,245,1/13/1994,Penguin Books +4680,Limitations (Kindle County Legal Thriller #7),Scott Turow,3.33,0312426453,9780312426453,eng,208,1750,228,11/14/2006,Picador +4681,Reversible Errors (Kindle County Legal Thriller #6),Scott Turow,3.83,0446612626,9780446612623,eng,553,5073,222,11/1/2003,Warner Vision +4682,The Laws Of Our Fathers (Kindle County Legal Thriller #4),Scott Turow,3.75,0446604402,9780446604406,eng,817,3655,162,9/1/1997,Grand Central Publishing +4683,Personal Injuries (Kindle County Legal Thriller #5),Scott Turow,3.86,0446608602,9780446608602,eng,528,5163,179,12/1/2000,Warner Books (NY) +4685,One L: The Turbulent True Story of a First Year at Harvard Law School,Scott Turow,3.67,0446673781,9780446673785,eng,288,6093,447,9/1/1997,Warner Books (NY) +4686,Ultimate Punishment,Scott Turow,3.81,031242373X,9780312423735,eng,176,506,50,8/1/2004,St. Martins Press-3PL +4692,The Physician (Cole Family Trilogy #1),Noah Gordon,4.37,0751503894,9780751503890,eng,720,23114,1175,7/1/2001,Little Brown Book Group +4693,Matters of Choice (Cole Family Trilogy #3),Noah Gordon/Mirjana Cvekić/Ljiljana Cvekić,3.39,0451187261,9780451187260,eng,448,2680,142,5/1/1997,Signet +4695,The Rabbi,Noah Gordon,3.69,0449214540,9780449214541,eng,448,921,44,8/12/1987,Fawcett +4696,The Last Jew,Noah Gordon/Mirjana Cvekić/Ljiljana Cvekić,4.10,0312300530,9780312300531,eng,352,4360,189,8/15/2000,St. Martin's Griffin +4698,The Frequencies,Noah Eli Gordon,4.32,0974016713,9780974016719,eng,81,69,8,1/1/2003,Tougher Disguises +4700,Chamán (Familia Cole #2),Noah Gordon/Elsa Mateo,4.12,849654642X,9788496546424,spa,768,493,24,6/30/2006,Zeta Bolsillo +4703,The Talking Horse and the Sad Girl and the Village Under the Sea: Poems,Mark Haddon,3.31,0307275698,9780307275691,eng,60,418,37,4/11/2006,Vintage +4704,Ocean Star Express,Mark Haddon/Peter Sutton,3.57,000664600X,9780006646006,eng,32,1,0,7/1/2002,HarperCollins UK +4714,The Damned and the Beautiful: American Youth in the 1920's,Paula S. Fass,3.76,0195024923,9780195024920,spa,520,83,14,2/19/1978,Oxford University Press USA +4717,This Side of Paradise (Paradise #1),Steven L. Layne,3.73,1589802543,9781589802544,eng,224,549,80,3/31/2005,Pelican Publishing +4723,Trimalchio,F. Scott Fitzgerald/James L.W. West III,4.42,0521890470,9780521890472,eng,214,41,4,4/25/2002,Cambridge University Press +4738,Souvenir of Canada 2,Douglas Coupland,3.83,1553650433,9781553650430,eng,144,332,9,5/10/2004,Douglas McIntyre +4739,Souvenir of Canada,Douglas Coupland,3.85,1550549170,9781550549171,en-US,144,893,34,7/1/2002,Douglas McIntyre +4742,The Illustrated Art of War,Sun Tzu/Samuel B. Griffith,3.97,019518999X,9780195189995,eng,272,91,11,10/15/2005,Oxford University Press USA +4745,World War 3 Illustrated: Confrontational Comics,Scott Cunningham/Peter Kuper/Seth Tobocman/Sabrina Jones,3.85,1568580398,9781568580395,eng,256,20,2,10/17/1995,Running Press +4746,Master Index: An Illustrated Guide,Time-Life Books,3.56,0809447967,9780809447961,eng,175,16,1,9/1/1993,Time-Life Books Inc. +4752,A New Hope: The Illustrated Screenplay (Star Wars Episode IV),George Lucas,4.23,0345420691,9780345420695,eng,166,11,0,3/24/1998,Del Rey +4764,Soul of the Sword: An Illustrated History of Weaponry and Warfare from Prehistory to the Present,Robert L. O'Connell/John Batchelor,3.75,0684844079,9780684844077,en-US,400,55,5,8/27/2002,Free Press +4767,Star Wars Episode 1: The Phantom Menace Illustrated Screenplay,George Lucas,3.92,0345431103,9780345431103,eng,150,259,9,4/21/1999,Del Rey Books +4777,Warfare in the Classical World: An Illustrated Encyclopedia of Weapons Warriors and Warfare in the Ancient Civilizations of Greece and Rome,John Warry/Phillip de ste. Croix,4.14,0806127945,9780806127941,eng,224,383,19,10/15/1995,University of Oklahoma Press +4796,The Winter of Our Discontent,John Steinbeck/Susan Shillinglaw,3.99,0143039482,9780143039488,eng,336,32091,1517,8/26/2008,Penguin Classics +4799,Cannery Row,John Steinbeck,4.04,014200068X,9780142000687,eng,181,96408,3909,2/5/2002,Penguin Books +4801,The Grapes of Wrath and Other Writings 1936–1941: The Long Valley / The Grapes of Wrath / The Log from the Sea of Cortez / The Harvest Gypsies,John Steinbeck/Elaine Steinbeck/Robert DeMott,4.41,1883011159,9781883011154,eng,1088,884,25,9/1/1996,Library of America +4802,Tortilla Flat,John Steinbeck,3.83,0141185112,9780141185118,en-GB,154,438,38,9/7/2000,Penguin Classics +4803,The Log from the Sea of Cortez,John Steinbeck/Richard Astro,3.84,0141186070,9780141186078,eng,288,3427,276,1/18/2001,Penguin Books Ltd +4805,The Illustrated Longitude: The True Story of a Lone Genius Who Solved the Greatest Scientific Problem of His Time,Dava Sobel/William J.H. Andrewes/William J. H. Andrewes,3.97,0802775934,9780802775931,eng,224,179,20,10/1/2003,Walker Books +4806,Longitude: The True Story of a Lone Genius Who Solved the Greatest Scientific Problem of His Time,Dava Sobel/Neil Armstrong,3.97,0802714625,9780802714626,eng,192,47453,1865,10/1/2005,Walker Books +4808,Latitude and Longitude (Rookie Read-About Geography),Rebecca Aberg/Jeanne Clidas,3.53,0516277650,9780516277653,eng,32,1,0,9/1/2003,Children's Press(CT) +4812,The Quest for Longitude: The Proceedings of the Longitude Symposium Harvard University Cambridge Massachusetts November 4-6 1993,William Andrewes,4.50,0964432900,9780964432901,eng,437,10,2,10/1/1996,Collection of Historical Scientific Instruments +4813,1421: The Year China Discovered America,Gavin Menzies,3.60,006054094X,9780060540944,eng,650,11751,893,1/1/2004,Harper Perennial (NYC) +4817,Dr. Desirable,Kristi Gold,3.27,0373764219,9780373764211,eng,192,20,1,1/25/2002,Silhouette Desire +4820,Mayflower: A Story of Courage Community and War,Nathaniel Philbrick,3.87,0670037605,9780670037605,eng,461,31384,2255,5/9/2006,Viking +4824,Before the Mayflower: A History of Black America,Lerone Bennett Jr.,4.44,0874850916,9780874850918,eng,796,6,2,10/23/2003,Johnson Publishing Company (IL) +4829,Before The Mayflower A History of Black America,Lerone Bennett Jr.,4.44,0140072144,9780140072143,en-US,70,26,1,5/1/1984,Penguin Books +4830,Shalimar the Clown,Salman Rushdie,3.88,0679783482,9780679783480,eng,398,11418,743,10/10/2006,Random House Trade +4832,Midnight's Children,Salman Rushdie,3.98,0330267140,9780330267144,eng,463,364,46,4/8/1982,Picador +4835,Haroun and the Sea of Stories (Khalifa Brothers #1),Salman Rushdie/Paul Birkbeck,4.01,0670886580,9780670886586,eng,224,22378,1613,8/27/1999,Viking Children's Books +4836,Fury,Salman Rushdie,3.29,0099421860,9780099421863,eng,272,6711,354,9/5/2002,Vintage +4845,Code Complete,Steve McConnell,4.29,0735619670,9780735619678,en-US,914,7059,326,6/19/2004,Microsoft Press +4864,Dale Carnegie's Lifetime Plan for Success: How to Win Friends and Influence People & How to Stop Worrying and Start Living,Dale Carnegie,4.17,1578660394,9781578660391,eng,538,111,6,6/15/1998,Galahad Books +4866,How to Stop Worrying and Start Living,Dale Carnegie,4.12,0671035975,9780671035976,eng,358,61639,1607,10/5/2004,Gallery Books +4870,How To Enjoy Your Life And Your Job,Dale Carnegie/Dorothy Carnegie,3.96,0671708260,9780671708269,eng,224,1907,121,1/2/1990,Pocket Books +4873,The Leader In You: How to Win Friends Influence People and Succeed in a Changing World,Dale Carnegie/Stuart R. Levine/Michael A. Crom,4.08,0671519980,9780671519988,eng,256,3713,103,5/1/1995,Pocket Books +4887,The Drama of the Gifted Child: The Search for the True Self,Alice Miller/Ruth Ward,4.09,0465016901,9780465016907,eng,144,12436,619,7/22/2008,Basic Books +4888,The Drama of the Gifted Child: The Search for the True Self,Alice Miller,4.09,046501691X,9780465016914,en-US,118,97,10,6/1/1983,Basic Books +4894,Who Moved My Cheese?,Spencer Johnson/Kenneth H. Blanchard,3.80,0091883768,9780091883768,eng,96,311436,8421,2/7/2002,Vermilion +4898,Blue Ocean Strategy: How to Create Uncontested Market Space and Make the Competition Irrelevant,W. Chan Kim/Renée Mauborgne,3.91,1591396190,9781591396192,eng,240,46064,871,2/1/2005,Harvard Business Review Press +4900,Heart of Darkness,Joseph Conrad,3.42,1892295490,9781892295491,eng,188,321078,8423,10/1/2003,Green Integer +4906,Heart of Darkness and Other Tales,Joseph Conrad/Cedric Watts,3.58,0192801724,9780192801722,eng,225,3761,177,9/25/2003,Oxford University Press +4907,Heart of Darkness,Joseph Conrad,3.42,159224646X,9781592246465,eng,132,92,11,5/1/2003,Wildside Press +4909,Teacher Man (Frank McCourt #3),Frank McCourt,3.75,0743243781,9780743243780,eng,272,26508,2019,9/19/2006,Scribner +4916,Angela's Ashes,Frank McCourt,4.11,0007718721,9780007718726,eng,224,711,64,12/17/1998,Simon & Schuster +4921,Three Men in a Boat (Three Men #1),Jerome K. Jerome,3.89,0140621334,9780140621334,eng,185,38313,2811,10/1/1994,Penguin Books +4922,Three Men in a Boat: To Say Nothing of the Dog,Jerome K. Jerome,3.89,0486451100,9780486451107,eng,144,213,32,6/16/2006,Dover Publications +4924,Three Men in a Boat: To Say Nothing of the Dog,Jerome K. Jerome,3.89,1904919529,9781904919520,eng,272,52,8,3/1/2005,Collectors Library +4925,Three Men in a Boat,Jerome K. Jerome,3.89,0141441216,9780141441214,eng,178,786,125,3/25/2004,Penguin Classics +4926,Three Men in a Boat and Three Men on the Bummel,Jerome K. Jerome/Jeremy Lewis,4.08,0140437509,9780140437508,en-US,400,2318,182,11/25/1999,Penguin Classics +4929,Kafka on the Shore,Haruki Murakami/Philip Gabriel,4.14,1400079276,9781400079278,eng,467,225397,12452,1/3/2006,Vintage International +4933,The Brothers Karamazov,Fyodor Dostoyevsky/Constance Garnett/Manuel Komroff/John Bayley,4.32,0451527348,9780451527349,eng,736,983,91,6/1/1999,Signet Classics +4934,The Brothers Karamazov,Fyodor Dostoyevsky/Fyodor Dostoevsky/Richard Pevear/Larissa Volokhonsky,4.32,0374528373,9780374528379,eng,796,191531,6795,6/14/2002,Farrar Straus and Giroux +4935,The Brothers Karamazov,Fyodor Dostoyevsky/David McDuff,4.32,0140449248,9780140449242,eng,1013,1673,184,2/27/2003,Penguin Books Ltd +4936,The Brothers Karamazov,Fyodor Dostoyevsky/Richard Pevear/Larissa Volokhonsky,4.32,0679729259,9780679729259,eng,796,617,80,9/3/1991,Vintage Books USA +4938,The Brothers Karamazov,Fyodor Dostoyevsky/Simon Vance/Thomas R. Beyer Jr.,4.32,1596440791,9781596440791,eng,16,20,2,5/1/2005,Hovel Audio +4940,The Brothers Karamazov,Fyodor Dostoyevsky/Constance Garnett/Maire Jaanus,4.32,159308045X,9781593080457,eng,720,1089,202,7/25/2004,Barnes Noble Classics +4942,CliffsNotes on Dostoevsky's The Brothers Karamazov,James Lamar Roberts/Gary Carey,3.50,0764538136,9780764538131,en-GB,96,4,0,1/10/2003,Cliffs Notes +4943,Hungry Planet,Peter Menzel/Faith D'Aluisio,4.44,1580086810,9781580086813,eng,288,1455,193,10/1/2005,Material World +4944,The Very Hungry Caterpillar,Eric Carle,4.29,0399226907,9780399226908,eng,13,3945,262,3/23/1994,Philomel Books +4945,The Little Mouse the Red Ripe Strawberry and the Big Hungry Bear,Don Wood,4.32,0859533301,9780859533300,en-US,32,65,10,9/1/1996,Child's Play International +4947,One Hundred Hungry Ants,Elinor J. Pinczes/Bonnie Mackain,4.05,0395971233,9780395971239,en-US,32,2114,166,9/27/1999,HMH Books for Young Readers +4950,The Hungry Tide,Amitav Ghosh,3.95,061871166X,9780618711666,eng,333,11838,815,6/7/2006,Mariner Books +4951,Feeding the Hungry Heart: The Experience of Compulsive Eating,Geneen Roth,3.96,0452270839,9780452270831,eng,224,749,46,9/1/1993,Plume +4952,What Is the What,Dave Eggers,4.16,1932416641,9781932416640,eng,475,65767,6203,10/18/2006,McSweeney's +4953,A Heartbreaking Work of Staggering Genius,Dave Eggers,3.68,0375725784,9780375725784,eng,485,157572,8463,2/13/2001,Vintage +4954,You Shall Know Our Velocity!,Dave Eggers,3.63,1400033543,9781400033546,eng,401,25811,1463,7/1/2003,Vintage +4955,How We Are Hungry,Dave Eggers,3.75,1400095565,9781400095568,eng,224,12007,659,10/11/2005,Vintage +4956,How We Are Hungry: Stories,Dave Eggers,3.75,1932416137,9781932416138,eng,218,488,38,10/13/2004,McSweeney's +4963,Merry Christmas Stinky Face,Lisa McCourt/Cyd Moore,3.97,0439635772,9780439635776,eng,32,20,3,10/1/2004,Scholastic +4964,Love You Until--,Lisa McCourt/Cyd Moore,4.50,0809166585,9780809166589,eng,32,4,0,12/3/2005,Paulist Press +4965,Year of Wonders,Geraldine Brooks,4.01,0142001430,9780142001431,eng,358,120736,8549,4/30/2002,Penguin Books +4966,The Wonder Years: Helping Your Baby and Young Child Successfully Negotiate the Major Developmental Milestones,Tanya Remer Altmann/American Academy of Pediatrics,3.51,0553804766,9780553804768,en-US,224,55,9,9/26/2006,Bantam Books +4978,Wolves of the Calla (The Dark Tower #5),Stephen King/Bernie Wrightson,4.18,141651693X,9781416516934,eng,931,127168,2801,2/1/2006,Pocket Books +4979,A Man Without a Country,Kurt Vonnegut Jr./Daniel Simon,4.07,081297736X,9780812977363,eng,160,34339,2061,1/16/2007,Random House Trade Paperbacks +4981,Slaughterhouse-Five,Kurt Vonnegut Jr.,4.07,0385333846,9780385333849,eng,275,1001671,19056,1/12/1999,Dial Press +4983,Kurt Vonnegut's Cat's Cradle (Modern Critical Interpretations),Harold Bloom/Terry Southern/David H. Goldsmith/James Lundquist/Lawrence R. Broer/Peter J. Reed/Loree Rackstraw/William S. Doxey/Jerome Klinkowitz/Richard Giannone/John L. Simons/Leonard Mustazza/Zoltan Ab di-Nagy/Peter Freese/Wendy B. Faris,4.35,0791071685,9780791071687,eng,258,28254,196,12/19/2002,Chelsea House Publications +4986,God Bless You Dr. Kevorkian,Kurt Vonnegut Jr.,3.84,0743422007,9780743422000,eng,80,12754,558,5/22/2001,Washington Square Press +4987,Jailbird,Kurt Vonnegut Jr.,3.82,0385333900,9780385333900,eng,310,17881,593,1/12/1999,Dial Press Trade Paperback +4988,Fates Worse Than Death,Kurt Vonnegut Jr.,3.87,0425134067,9780425134061,en-US,240,3183,115,9/1/1992,Berkley +4989,The Red Tent,Anita Diamant,4.17,0312353766,9780312353766,eng,336,470858,15859,11/1/2005,St. Martin's Press +4990,Inside the Red Tent,Sandra Hack Polaski,3.96,0827230281,9780827230286,eng,100,181,16,7/1/2006,Chalice Press +4991,Anita Diamant's The Red Tent: A Reader's Guide,Ann Finding,4.13,0826415741,9780826415745,eng,88,440,55,9/7/2004,Bloomsbury Academic +4997,La Jeune fille à la perle,Tracy Chevalier/Marie-Odile Fortier-Masek,3.88,2070417948,9782070417940,fre,313,618,38,3/16/2002,Gallimard +4999,Iron Kingdom: The Rise and Downfall of Prussia 1600–1947,Christopher Clark,4.14,0674023854,9780674023857,eng,776,2583,183,9/29/2006,Belknap Press of Harvard University Press +5004,Downfall (Dragonlance: Dhamon Saga #1),Jean Rabe,3.68,0786918144,9780786918140,eng,397,878,9,3/1/2001,Wizards of the Coast +5005,Berlin: The Downfall 1945,Antony Beevor,4.29,0670886955,9780670886951,eng,489,244,17,1/1/2002,Viking Books +5008,El azul de la virgen,Tracy Chevalier,3.66,8466313591,9788466313599,spa,411,50,5,10/1/2004,Punto de Lectura +5015,Saturday,Ian McEwan,3.63,1400076196,9781400076192,eng,289,52576,3332,4/11/2006,Anchor +5027,I Love Saturdays y domingos,Alma Flor Ada/Elivia Savadier,4.05,068987409X,9780689874093,en-US,32,34,10,9/1/2004,Atheneum Books for Young Readers +5051,A Dangerous Fortune,Ken Follett,4.05,0330332651,9780330332651,eng,596,154,12,2/19/1999,MacMillan General Books +5053,The Man From St. Petersburg,Ken Follett,3.88,0451208706,9780451208705,eng,320,16057,663,6/3/2003,NAL +5055,Night Over Water,Ken Follett,3.82,0451211472,9780451211477,eng,448,14545,652,4/6/2004,NAL +5057,The Truth about the Drug Companies: How They Deceive Us and What to Do about It,Marcia Angell,3.95,0375760946,9780375760945,en-GB,319,666,72,8/9/2005,Random House Trade +5061,La verdad acerca de las Industrias Farmacéuticas: cómo nos engaña y qué hacer al respecto,Marcia Angell,3.95,9580493510,9789580493518,spa,324,3,0,12/1/2006,Norma +5062,Jackdaws,Ken Follett,3.97,0451219597,9780451219596,eng,416,20892,953,12/5/2006,NAL +5065,Whiteout,Ken Follett/David Tennant,3.58,1405052716,9781405052719,eng,4,13,1,9/1/2006,MacMillan Audio +5066,Jackdaws,Ken Follett,3.97,0451207521,9780451207524,eng,496,367,32,11/26/2002,Signet +5069,Battle Angel Alita - Last Order : Angel's Vision Vol. 08,Yukito Kishiro,4.10,1421508656,9781421508658,eng,208,336,5,12/12/2006,VIZ Media LLC +5071,Battle Angel Alita - Last Order : Guilty Angel Vol. 07,Yukito Kishiro,4.12,1421504332,9781421504339,eng,208,340,4,6/13/2006,VIZ Media LLC +5073,Gunnm Last Order Tome 01,Yukito Kishiro,4.06,2723439801,9782723439800,fre,200,48,2,11/27/2002,Glénat +5077,Your Inner Physician and You: CranioSacral Therapy and SomatoEmotional Release,John E. Upledger,4.11,1556432461,9781556432460,eng,240,248,27,9/4/1997,North Atlantic Books +5084,My Life in France,Julia Child/Alex Prud'Homme,4.17,1400043468,9781400043460,eng,336,69153,6152,4/4/2006,Knopf Publishing Group +5089,A Short History of Nearly Everything (Illustrated Edition),Bill Bryson,4.21,0385663552,9780385663557,eng,624,28,7,10/5/2010,Anchor Canada +5094,The Drawing of the Three (The Dark Tower #2),Stephen King,4.23,0451210859,9780451210852,eng,463,173022,5139,8/5/2003,Signet +5102,The Handmaid's Tale,Margaret Atwood/Valerie Martin,4.11,0307264602,9780307264602,eng,350,2102,282,10/17/2006,Everyman's Library +5104,The Handmaid's Tale,Margaret Atwood,4.11,0435124099,9780435124090,en-GB,308,529,59,9/1/2009,Heinemann Library +5107,The Catcher in the Rye,J.D. Salinger,3.80,0316769177,9780316769174,eng,277,2457092,43499,1/30/2001,Back Bay Books +5111,The Catcher in the Rye - Barron's Book Notes,Barron's,3.72,0812034074,9780812034073,eng,120,775,24,10/1/1984,Barron's Educational Series +5113,Franny and Zooey,J.D. Salinger,3.98,0316769029,9780316769020,eng,201,167157,4994,1/30/2001,Back Bay Books +5114,Raise High the Roof Beam Carpenters & Seymour: An Introduction,J.D. Salinger,4.11,0316766941,9780316766944,eng,256,40629,1189,1/30/2001,Back Bay Books +5128,The Doors of Perception & Heaven and Hell,Aldous Huxley,3.92,0060595183,9780060595180,eng,187,30012,797,5/4/2004,Harper Perennial Modern Classics +5129,Brave New World,Aldous Huxley,3.99,0060929871,9780060929879,eng,288,1247221,20014,9/1/1998,HarperPerennial / Perennial Classics +5130,Island,Aldous Huxley,3.83,0060085495,9780060085490,eng,354,19668,1031,7/30/2002,Harper Perennial Classics +5131,The Perennial Philosophy,Aldous Huxley,4.19,006057058X,9780060570583,eng,336,3266,163,4/13/2004,Harper Perennial Modern Classics +5132,Huxley and God: Essays on Religious Experience,Aldous Huxley/Huston Smith/Jacqueline Hazard Bridgeman,4.30,0824522524,9780824522520,eng,320,98,4,3/1/2003,The Crossroad Publishing Company +5134,Moksha: Writings on Psychedelics & the Visionary Experience,Aldous Huxley/Michael Horowitz/Cynthia Palmer,4.19,0892817585,9780892817580,eng,304,404,15,4/1/1999,Park Street Press +5135,Point Counter Point,Aldous Huxley,3.86,1564781313,9781564781314,eng,432,9522,210,10/1/1996,Dalkey Archive Press +5136,After Many a Summer Dies the Swan,Aldous Huxley,3.75,1566630185,9781566630184,en-US,368,2056,149,1/1/1993,Ivan R. Dee Publisher +5137,The Flame Trees of Thika: Memories of an African Childhood,Elspeth Huxley,4.12,0141183780,9780141183787,en-GB,281,4773,217,2/1/2000,Penguin Classics +5139,The Devil Wears Prada (The Devil Wears Prada #1),Lauren Weisberger,3.74,0307275558,9780307275554,eng,432,744569,7247,5/30/2006,Anchor Books +5144,Arundhati Roy's The God of Small Things: A Reader's Guide,Julie Mullaney,4.01,0826453279,9780826453273,en-GB,96,309,19,3/30/2002,Bloomsbury Academic +5148,A Separate Peace,John Knowles/David Levithan,3.57,0743253973,9780743253970,eng,208,175779,6261,9/30/2003,Scribner +5157,Black and Blue,Anna Quindlen,3.88,0385333137,9780385333139,eng,288,75494,1386,8/25/2010,Delta Publishing +5158,A Virtuous Woman,Kaye Gibbons,3.69,0375703063,9780375703065,eng,165,23170,587,11/5/1997,Vintage +5159,Here on Earth,Alice Hoffman,3.69,0425169693,9780425169698,eng,336,43028,1472,7/1/1999,Berkley +5160,The Heart of a Woman,Maya Angelou,4.20,0375500723,9780375500725,eng,288,17966,437,5/17/1997,Random House +5161,The Deep End of the Ocean (Cappadora Family #1),Jacquelyn Mitchard,3.87,0140286276,9780140286274,eng,464,112856,1028,10/1/1999,Penguin Books +5167,Cane River,Lalita Tademy,4.06,0446678457,9780446678452,eng,522,42695,1845,4/1/2002,Grand Central Publishing +5168,Where the Heart Is,Billie Letts,4.02,0446672211,9780446672214,eng,376,227716,3407,6/1/1998,Grand Central Publishing +5169,Oprah Winfrey,Katherine E. Krohn,3.79,0822550008,9780822550006,eng,128,38,5,1/1/2002,Lerner Publications +5171,Drowning Ruth,Christina Schwarz,3.74,0345439104,9780345439109,eng,368,74161,2159,7/31/2001,Ballantine Books +5174,Fall on Your Knees,Ann-Marie MacDonald,3.96,0743466527,9780743466523,eng,672,55988,2434,10/29/2002,Pocket Books +5175,What Looks Like Crazy on an Ordinary Day (Idlewild #1),Pearl Cleage,3.73,038079487X,9780380794874,eng,244,19366,645,11/1/1998,Harper Perennial +5176,While I Was Gone,Sue Miller,3.69,0345443284,9780345443281,eng,304,56320,1185,5/12/2000,Ballantine Books +5179,Mother of Pearl,Melinda Haynes,3.69,0671774670,9780671774677,eng,465,19073,427,6/1/2000,Washington Square Press +5186,Breath Eyes Memory,Edwidge Danticat,3.88,037570504X,9780375705045,eng,234,25200,1229,5/18/1998,Vintage +5187,The Book of Ruth,Jane Hamilton,3.85,0385265700,9780385265706,en-US,328,63595,1222,12/1/1989,Anchor Books +5190,Open House,Elizabeth Berg,3.70,0345435168,9780345435163,eng,272,54119,1629,5/1/2001,Ballantine Books +5191,The Pilot's Wife,Anita Shreve,3.52,0316601950,9780316601955,eng,304,78714,3860,3/30/1999,Back Bay Books +5196,Tara Road,Maeve Binchy,3.90,0440235596,9780440235590,eng,648,66629,1712,7/18/2000,Dell +5197,A Lesson Before Dying,Ernest J. Gaines,3.95,0375702709,9780375702709,eng,256,47143,2998,9/28/1997,Vintage +5198,Paradise,Toni Morrison,3.80,0452280397,9780452280397,eng,318,19927,812,4/1/1999,Plume (Penguin Books Ltd) +5202,The Treasure Hunt: A Little Bill Book,Bill Cosby/Varnette P. Honeywood,3.34,0590956183,9780590956185,eng,40,364,18,9/1/1997,Cartwheel +5203,She's Come Undone,Wally Lamb,3.88,0671021001,9780671021009,eng,465,294348,9096,6/28/1998,Pocket +5204,We Were the Mulvaneys,Joyce Carol Oates,3.73,0452282829,9780452282827,eng,454,87367,2553,9/1/1997,Plume +5205,A Map of the World,Jane Hamilton/Frank Muller/C.J. Critt,3.81,0385720106,9780385720106,en-GB,400,68554,1476,12/3/1999,Anchor Books +5207,Daughter of Fortune,Isabel Allende/Margaret Sayers Peden,3.91,006019491X,9780060194918,eng,399,1005,95,10/6/1999,Harper +5209,The Meanest Thing To Say,Bill Cosby/Varnette P. Honeywood/Varnette Hon Eywood,3.54,0590956167,9780590956161,eng,40,990,55,9/1/1997,Cartwheel +5210,The Good Earth (House of Earth #1),Pearl S. Buck,3.98,0743272935,9780743272933,eng,357,4080,501,9/15/2004,Washington Square Press +5211,A Fine Balance,Rohinton Mistry,4.36,140003065X,9781400030651,eng,603,112196,7546,11/30/2001,Vintage +5212,The Best Way to Play: A Little Bill Book,Bill Cosby/Varnette P. Honeywood/Varnette Honeywood,3.49,0590956175,9780590956178,eng,40,405,17,9/1/1997,Cartwheel +5213,White Oleander,Janet Fitch,3.96,0316284955,9780316284950,eng,480,3112,210,5/1/2000,Back Bay Books +5214,Cry the Beloved Country,Alan Paton,3.90,0743262174,9780743262170,eng,316,3140,383,11/1/2003,Scribner +5215,One Hundred Years of Solitude,Gabriel García Márquez/Gregory Rabassa,4.07,0060740450,9780060740450,eng,458,3437,316,1/20/2004,Harper Perennial +5216,Song of Solomon,Toni Morrison,4.06,0452260116,9780452260115,en-US,337,1730,143,9/1/1987,Plume +5217,One Hundred Years of Solitude,Gabriel García Márquez/Gregory Rabassa,4.07,1417735988,9781417735983,eng,417,90,5,2/1/2006,Turtleback Books +5219,The Bluest Eye,Toni Morrison,4.03,0452282195,9780452282193,eng,216,3420,280,4/27/2000,Plume Books +5220,The Poisonwood Bible,Barbara Kingsolver,4.06,0060930535,9780060930530,eng,546,5773,828,10/1/1999,Harper Perennial +5230,Vergeef me,Wally Lamb/Inge de Heer,4.18,9022530078,9789022530078,nl,744,67,9,7/1/2001,De Boekerij +5237,The Crusader: Ronald Reagan and the Fall of Communism,Paul Kengor,4.23,0061136905,9780061136900,eng,432,179,14,10/17/2006,Harper +5240,Ronald Reagan: How an Ordinary Man Became an Extraordinary Leader,Dinesh D'Souza,4.13,0684848236,9780684848235,eng,304,1059,35,2/23/1999,Free Press +5249,Ethan Frome and Summer,Edith Wharton/Elizabeth Strout,3.86,0375757287,9780375757280,eng,274,483,54,5/8/2001,Modern Library +5255,Collected Stories 1891-1910,Edith Wharton/Maureen Howard,4.26,1883011930,9781883011932,eng,928,56,8,1/29/2001,Library of America +5261,A Backward Glance,Edith Wharton/Louis Auchincloss,3.76,0684847558,9780684847559,eng,385,521,77,7/15/1998,Scribner +5272,The Best Short Stories of Edith Wharton,Edith Wharton,3.77,1417911832,9781417911837,eng,300,41,4,4/16/2004,Kessinger Publishing +5289,Complete Works of Oscar Wilde,Oscar Wilde/Merlin Holland,4.45,0007144350,9780007144358,eng,1270,11903,183,8/4/2003,HarperCollins Publishers +5294,Oscar Wilde,Richard Ellmann,4.24,0394759842,9780394759845,eng,736,2695,119,11/5/1988,Vintage +5296,An Ideal Husband,Oscar Wilde,4.04,048641423X,9780486414232,eng,78,32946,895,2/5/2001,Dover Publications +5297,The Picture of Dorian Gray,Oscar Wilde/Jeffrey Eugenides,4.08,0375751513,9780375751516,eng,272,760717,17179,6/1/2004,Random House: Modern Library +5304,De Profundis and Other Writings,Oscar Wilde/Hesketh Pearson,4.21,014043089X,9780140430899,eng,252,2298,91,8/26/1976,Penguin Books +5305,Sense and Sensuality: Jesus Talks to Oscar Wilde on the Pursuit of Pleasure (Great Conversations),Ravi Zacharias,3.95,1590528603,9781590528600,en-US,94,545,52,6/1/2006,Multnomah Books +5306,Travels with Charley: In Search of America,John Steinbeck,4.08,0142000701,9780142000700,eng,214,56349,3738,2/5/2002,Penguin +5307,Novels and Stories 1932–1937: The Pastures of Heaven / To a God Unknown / Tortilla Flat / In Dubious Battle / Of Mice and Men,John Steinbeck/Elaine Steinbeck/Robert DeMott,4.35,1883011019,9781883011017,eng,909,371,25,9/1/1994,Library of America +5308,The Pearl,John Steinbeck,3.46,0142000698,9780142000694,eng,96,160706,6198,1/8/2002,Penguin Books +5309,The Life and Times of Scrooge McDuck,Don Rosa,4.67,0911903968,9780911903966,eng,266,2467,149,6/1/2005,Gemstone Publishing +5310,The Life and Times of Scrooge McDuck Companion,Don Rosa,4.48,1888472405,9781888472400,eng,208,959,22,9/19/2006,Gemstone Publishing +5314,The Last Christmas of Ebenezer Scrooge,Marvin Kaye,4.13,1592241336,9781592241330,eng,168,14,3,9/1/2004,Wildside Press +5316,Uncle Scrooge #359,Don Rosa/Carl Barks/Lars Jensen/Pat McGreal/Carol McGreal/Frank Jonker/Romano Scarpa/Mau Heymans/José Massaroli,3.88,1888472421,9781888472424,eng,64,8,1,11/7/2006,Gemstone Publishing +5319,A Christmas Story,Jean Shepherd,4.08,0767916220,9780767916226,eng,144,3187,381,10/28/2003,Broadway Books +5321,My First Story of Christmas,Tim Dowley/Roger Langton,4.07,0802417582,9780802417589,eng,24,10,1,9/1/2004,Moody Publishers +5322,The Christmas Story,Jane Werner Watson/Eloise Wilkin,4.43,0307989135,9780307989130,en-US,24,1304,32,8/1/2000,Golden Books +5327,A Christmas Carol,Charles Dickens/P.J. Lynch,4.05,0763631205,9780763631208,en-CA,160,4359,353,9/12/2006,Candlewick Press +5328,A Christmas Carol,Charles Dickens,4.05,1580495796,9781580495790,eng,112,6671,490,1/1/2012,Penguin Books +5330,The Annotated Christmas Carol,Charles Dickens/Michael Patrick Hearn/John Leech,4.05,0393051587,9780393051582,eng,266,276,46,11/17/2004,W. W. Norton Company +5332,Charles Dickens' A Christmas Carol,Jane Parker Resnick/Christian Birmingham,4.10,0762408480,9780762408481,eng,56,58,6,10/11/2000,Running Press Kids +5337,Little Dorrit,Charles Dickens/Hablot Knight Browne/David Gates,3.99,037575914X,9780375759147,eng,1347,291,33,3/12/2002,Modern Library +5338,A Christmas Carol and Other Christmas Writings,Charles Dickens/Michael Slater,4.14,0140439056,9780140439052,eng,288,30393,449,10/30/2003,Penguin Classics +5342,The Life of Our Lord: Written for His Children During the Years 1846 to 1849,Charles Dickens,4.01,0684865378,9780684865379,eng,128,1729,364,11/9/1999,Simon Schuster +5344,Hard Times,Charles Dickens,3.52,0321107217,9780321107213,eng,353,41041,1706,10/19/2003,Pearson Longman +5345,The Innocent Man: Murder and Injustice in a Small Town,John Grisham,3.82,0385517238,9780385517232,eng,360,52005,4136,10/10/2006,Doubleday Books +5346,The Last Juror,John Grisham,3.87,0385339682,9780385339681,eng,278,72294,1755,4/25/2006,Delta +5348,The Testament,John Grisham/Jorma-Veikko Sappinen,3.86,0440234743,9780440234746,eng,535,89014,2361,12/28/1999,Island +5349,The Rainmaker,John Grisham,3.94,0385339607,9780385339605,eng,419,151818,1489,9/27/2005,Delta +5350,The Partner,John Grisham,3.92,0385339100,9780385339100,eng,416,97474,1928,4/26/2005,Delta +5351,The Street Lawyer,John Grisham,3.83,0385339097,9780385339094,eng,384,89947,1813,4/26/2005,Bantam +5352,The Summons,John Grisham,3.69,0385339593,9780385339599,eng,384,58901,1642,9/27/2005,Delta +5354,The Brethren,John Grisham,3.73,0385339674,9780385339674,eng,384,76085,1505,12/27/2005,Delta +5356,The King of Torts,John Grisham,3.68,0385339658,9780385339650,eng,276,68098,1705,12/27/2005,Delta +5357,Skipping Christmas,John Grisham,3.49,0099481685,9780099481683,eng,198,46334,3399,11/6/2004,Arrow +5358,The Firm,Robin Waterfield/John Grisham,4.01,0582418275,9780582418271,eng,76,540910,3378,2/15/2000,Addison Wesley Publishing Company +5359,The Client,John Grisham,4.00,0385339089,9780385339087,eng,483,367399,1978,3/16/2010,Delta +5360,A Painted House,John Grisham,3.70,0385337930,9780385337939,eng,384,67857,3375,2/3/2004,Bantam +5362,The Summons / The Brethren,John Grisham/Michael Beck/Frank Muller,3.99,0739342770,9780739342770,eng,0,241,9,10/10/2006,Random House Audio +5364,Dragonfly in Amber (Outlander #2),Diana Gabaldon,4.32,0385335970,9780385335973,eng,743,222140,11121,8/7/2001,Bantam +5368,Forever Amber,Kathleen Winsor,3.99,0141009829,9780141009827,eng,972,14409,849,7/25/2002,Penguin +5370,Amber Brown Is Green With Envy,Paula Danziger/Tony Ross,3.95,0439071712,9780439071710,en-GB,160,834,42,8/1/2004,Scholastic +5371,Amber Brown Is Not a Crayon,Paula Danziger/Tony Ross,3.84,0142406198,9780142406199,eng,96,4787,189,9/7/2006,Puffin Books +5372,Amber and Ashes (Dragonlance: The Dark Disciple #1),Margaret Weis,3.87,0786937424,9780786937424,eng,336,2637,64,7/1/2005,Wizards of the Coast +5373,The Waste Lands (The Dark Tower #3),Stephen King/Ned Dameron,4.24,0747411875,9780747411871,eng,509,76,5,11/12/1992,Time Warner Paperbacks +5374,The Dragon's Eye (Dragonology Chronicles #1),Dugald A. Steer/Douglas Carrel,3.82,0763628107,9780763628109,eng,221,2221,113,11/14/2006,Candlewick Press +5375,The Dragon's Eye (Erec Rex #1),Kaza Kingsley/Melvyn Grant,4.00,0978655567,9780978655563,eng,341,59,8,10/1/2006,Firelight Press +5376,Dragon's Eye (Stonefort #1),James A. Hetley,3.43,0441013724,9780441013722,en-US,368,133,16,10/31/2006,Ace +5396,Dragon's Eye,Christopher Stasheff/William R. Forstchen/Nick DiChario/S.N. Lewitt/Bill Fawcett/Mike Resnick/Mickey Zucker Reichert/S.M. Stirling/Diane Duane/Jody Lynn Nye/Roland J. Green/Teresa Patterson/Judith R. Conly,3.51,0671876090,9780671876098,en-GB,279,41,7,7/1/1994,Baen Books +5402,"Stand Back " Said the Elephant "I'm Going to Sneeze!",Patricia Thomas/Wallace Tripp,4.39,0688093388,9780688093389,eng,32,1004,130,4/23/1990,William Morrow & Company Inc. +5404,Here I Stand: A Life of Martin Luther,Roland H. Bainton,4.08,0452011469,9780452011465,eng,336,2841,224,4/1/1995,Plume Books +5412,The Stand: Das letzte Gefecht,Stephen King/Joachim Körber,4.34,3404134117,9783404134113,ger,1227,256,16,9/1/2003,Bastei Lübbe +5413,'Salem's Lot,Stephen King/Jerry N. Uelsmann,4.25,0385516487,9780385516488,eng,594,84123,571,11/1/2005,Doubleday +5414,'Salem's Lot,Stephen King/Ron McLarty,4.02,0743536967,9780743536967,eng,17,227,54,1/19/2004,Simon & Schuster Audio +5415,'Salem's Lot,Stephen King,4.02,0965772411,9780965772419,eng,405,1039,130,10/17/1975,Doubleday +5417,Carrie / 'Salem's Lot / The Shining,Stephen King,4.54,0517219026,9780517219027,eng,1096,13137,61,7/2/2002,Wings +5419,'Salem's Lot,Stephen King,4.02,0451092317,9780451092311,en-US,427,178,35,11/13/1979,Signet +5420,'Salem's Lot,Stephen King,4.02,0340770538,9780340770535,eng,586,25,6,10/6/2010,Hodder & Stoughton Ltd +5427,Orientalism,Edward W. Said,4.08,0141187425,9780141187426,eng,396,873,77,8/28/2003,Penguin Classics +5439,Interpreter of Maladies,Jhumpa Lahiri,4.15,0618101365,9780618101368,eng,198,131876,8009,5/22/2000,Houghton Mifflin Harcourt +5442,The Faiths of the Founding Fathers,David L. Holmes,3.89,0195300920,9780195300925,en-US,225,461,66,3/1/2006,Oxford University Press USA +5452,Girls in Pants: The Third Summer of the Sisterhood (Sisterhood #3),Ann Brashares,3.83,0553375938,9780553375930,eng,338,61435,1290,6/13/2006,Ember +5453,Forever in Blue: The Fourth Summer of the Sisterhood (Sisterhood #4),Ann Brashares,3.81,0385729367,9780385729369,eng,384,62199,1613,1/9/2007,Delacorte Books +5458,Junie B. First Grader: Cheater Pants (Junie B. Jones #21),Barbara Park/Denise Brunkus,4.04,0375823026,9780375823022,en-US,86,111,8,4/27/2004,Random House Books for Young Readers +5471,Nineteen Eighty-Four,George Orwell/Thomas Pynchon,4.18,0452284236,9780452284234,eng,339,9910,748,5/6/2003,Plume +5472,Animal Farm / 1984,George Orwell/Christopher Hitchens,4.28,0151010269,9780151010264,eng,400,146659,1625,6/1/2003,Houghton Mifflin Harcourt +5477,1984,George Orwell/Erich Fromm,4.18,0451516753,9780451516756,eng,268,1322,121,7/1/1981,Signet Classics +5478,Nineteen Eighty-Four,George Orwell,4.18,1421808323,9781421808321,eng,387,215,17,7/1/2005,1st World Library +5479,Brave New World / Brave New World Revisited,Aldous Huxley/Christopher Hitchens,4.16,0060776099,9780060776091,eng,340,129179,1047,7/5/2005,Harper Perennial Modern Classics +5480,Brave New World and Brave New World Revisited,Aldous Huxley/Christopher Hitchens,4.16,0060535261,9780060535261,eng,340,421,53,6/1/2004,HarperCollins +5481,Brave New World Revisited,Aldous Huxley,3.95,0060898526,9780060898526,eng,123,12989,740,9/5/2006,Harper Perennial Modern Classics +5485,Brave New World,Aldous Huxley,3.99,0060850523,9780060850524,eng,259,13353,1286,10/17/2006,HarperCollins +5486,Andrew Carnegie,David Nasaw,3.99,1594201048,9781594201042,eng,896,2580,205,10/24/2006,Penguin Press HC The +5488,The Cairo Trilogy: Palace Walk / Palace of Desire / Sugar Street (The Cairo Trilogy #1-3),Naguib Mahfouz,4.46,0375413316,9780375413315,eng,1313,3347,245,10/16/2001,Everyman's Library +5490,Children of the Alley,Naguib Mahfouz/Peter Theroux,4.10,0385264739,9780385264730,eng,464,1192,131,10/18/1996,Anchor +5497,Akhenaten: Dweller in Truth,Naguib Mahfouz/Tagreid Abu-Hassabo,3.81,0385499094,9780385499095,eng,168,1282,139,4/4/2000,Anchor +5498,Adrift on the Nile,Naguib Mahfouz/Frances Liardet,3.82,0385423330,9780385423335,eng,167,411,38,1/1/1994,Anchor Books +5499,Midaq Alley,Naguib Mahfouz/Trevor Le Gassick,3.85,0385264763,9780385264761,eng,286,4815,446,12/1/1991,Anchor Books +5502,The Harafish,Naguib Mahfouz/Catherine Cobham/Naguib Mahfouz,4.36,0385423357,9780385423359,eng,416,590,61,9/17/1997,Anchor Books +5503,The Day the Leader Was Killed,Naguib Mahfouz/Surgana/Naguib Mahfouz,3.63,0385499221,9780385499224,eng,112,809,93,6/6/2000,Anchor +5508,Anne Frank Beyond the Diary: A Photographic Remembrance,Ruud van der Rol/Rian Verhoeven/Anna Quindlen/Anne Frank/Tony Langham/Plym Peters,4.27,0140369260,9780140369267,eng,113,24181,242,5/1/1995,Puffin Books +5509,Anne Frank Remembered: The Story of the Woman Who Helped to Hide the Frank Family,Miep Gies/Alison Leslie Gold,4.29,0671662341,9780671662349,eng,252,55487,669,4/15/1988,Touchstone Books +5513,The Diary of Anne Frank,Frances Goodrich/Albert Hackett/Wendy Kesselman,4.06,082221718X,9780822217183,eng,70,1320,61,10/1/1998,Dramatists Play Service +5514,Anne Frank: Life in Hiding,Johanna Hurwitz/Vera Rosenberry,3.99,0380732548,9780380732548,eng,64,152,23,12/8/1999,HarperCollins +5518,Cliffs Notes on Hansberry's A Raisin in the Sun,Rosetta James,3.90,0822011085,9780822011088,en-GB,80,10,2,8/15/1992,Cliffs Notes +5526,Dear John,Nicholas Sparks,4.03,0446528056,9780446528054,eng,276,502726,9645,10/30/2006,Warner Books (NY) +5527,All the King's Men,Robert Penn Warren,4.09,0156004801,9780156004800,eng,439,47324,1720,9/1/1996,Harcourt Brace +5528,Cliffs notes on Warren's All the King's Men,L. David Allen,3.45,0822001462,9780822001461,eng,80,3,1,1/13/1964,Cliffs Notes +5530,All the King's Men: Three Stage Versions,Robert Penn Warren/James A. Perkins/James A. Grimshaw,4.00,0820320978,9780820320977,eng,264,3,0,7/4/2000,University of Georgia Press +5534,Men's Health: Book of Muscle - The World's Most Complete Guide to Building Your Body,Ian King/Lou Schuler/Frederick Deluvier,3.98,1579547699,9781579547691,en-US,364,256,13,10/17/2003,Rodale Books +5544,Surely You're Joking Mr. Feynman!: Adventures of a Curious Character,Richard P. Feynman,4.28,0393316041,9780393316049,eng,391,106526,3685,4/12/1997,W. W. Norton & Company +5545,The Feynman Lectures on Physics 3 Vols,Richard P. Feynman/Robert B. Leighton/Matthew L. Sands,4.60,0201500647,9780201500646,en-US,3,78,7,1/1/1989,Addison Wesley Publishing Company +5548,What Do You Care What Other People Think?,Richard P. Feynman,4.27,0393320928,9780393320923,eng,256,15700,556,1/11/2001,W.W. Norton & Company +5550,Perfectly Reasonable Deviations from the Beaten Track: Letters of Richard P. Feynman,Richard P. Feynman/Michelle Feynman,4.25,0738206369,9780738206363,en-US,512,1874,93,4/5/2005,Basic Books +5552,QED: The Strange Theory of Light and Matter,Richard P. Feynman,4.24,0691024170,9780691024172,eng,158,13463,320,10/21/1988,Princeton University Press +5554,Kiffe Kiffe Demain (French Edition),Faïza Guène,3.40,0785990232,9780785990239,fre,182,19,1,10/1/2005,French & European Publications +5558,iWoz,Steve Wozniak/Gina Smith,3.87,0393061434,9780393061437,en-GB,313,3536,375,9/17/2006,W. W. Norton Company +5571,Cradle to Cradle: Remaking the Way We Make Things,William McDonough/Michael Braungart,4.11,0865475873,9780865475878,eng,193,9017,820,4/22/2002,North Point Press +5575,Cradle and All,James Patterson,3.86,0446609404,9780446609401,eng,384,27869,869,2/1/2001,Vision +5585,The Creation of the American Republic 1776-1787,Gordon S. Wood,4.12,0807847232,9780807847237,eng,675,1792,43,4/6/1998,Omohundro Institute and University of North Carolina Press +5587,Power Faith and Fantasy: America in the Middle East 1776 to the Present,Michael B. Oren,3.98,0393058263,9780393058260,eng,832,1510,216,1/16/2007,W. W. Norton Company +5595,Problems of the Self: Philosophical Papers 1956 1972,Bernard Williams,3.97,0521290600,9780521290609,en-US,276,57,2,3/25/1976,Cambridge University Press +5598,Moral Luck: Philosophical Papers 1973-1980,Bernard Williams,4.09,0521286913,9780521286916,eng,188,114,5,3/12/1981,Cambridge University Press +5599,Ethics and the Limits of Philosophy,Bernard Williams,4.06,067426858X,9780674268586,en-US,230,556,20,3/15/1986,Harvard University Press +5606,On Rhetoric and Language: Four Key Dialogues,Jean Nienkamp,4.20,1880393336,9781880393338,eng,232,10,1,7/1/1999,Routledge +5635,The Norton Anthology of Modern and Contemporary Poetry,Jahan Ramazani/Richard Ellmann/Robert O'Clair,4.23,039332429X,9780393324297,eng,1136,286,21,4/17/2003,W. W. Norton Company +5653,The Elephant War,Gillian Avery,3.67,1903252040,9781903252048,eng,256,19,3,10/1/2000,Jane Nissen Books +5659,The Wind in the Willows,Kenneth Grahame/Gillian Avery,3.99,0143039091,9780143039099,eng,197,147748,3490,10/27/2005,Penguin Books +5660,The Everyman Anthology of Poetry for Children,Gillian Avery/Everyman's Library/Thomas Benwick,4.14,0679436340,9780679436348,eng,379,22,4,9/27/1994,Everyman's Library +5661,Holiday Romance and Other Writings for Children,Charles Dickens,3.32,0460876015,9780460876018,eng,368,8,3,5/1/1995,Everyman Paperback Classics +5665,Ideas Have Consequences,Richard M. Weaver,4.16,0226876802,9780226876801,eng,198,970,105,9/28/1984,University Of Chicago Press +5671,The Ethics of Rhetoric,Richard M. Weaver,4.14,0961180021,9780961180027,eng,240,65,9,11/3/1995,Routledge +5678,Manliness,Harvey Mansfield,3.39,0300106645,9780300106640,eng,304,177,31,3/11/2006,Yale University Press +5685,Anna Karenina,Leo Tolstoy/Richard Pevear/Larissa Volokhonsky,4.05,0142000272,9780142000274,en-US,838,2415,397,12/1/2001,Penguin Books +5691,The Brothers Karamazov,Fyodor Dostoyevsky/Richard Pevear/Larissa Volokhonsky,4.32,0099922800,9780099922803,eng,796,443,55,1/16/1992,Vintage Classics +5693,Selected Stories of Anton Chekhov,Anton Chekhov/Richard Pevear/Larissa Volokhonsky,4.35,0553381008,9780553381009,eng,467,27027,466,10/31/2000,Modern Library +5694,Mother Maria Skobtsova: Essential Writings,Maria Skobtsova/Richard Pevear,4.31,1570754365,9781570754364,eng,192,62,9,10/1/2002,Orbis Books +5696,What is Art?,Leo Tolstoy/Richard Pevear/Larissa Volokhonsky,3.72,0140446427,9780140446425,eng,230,127,24,8/31/1995,Penguin Classics +5697,The Complete Short Novels,Anton Chekhov/Richard Pevear/Larissa Volokhonsky,4.47,140003292X,9781400032921,eng,548,10580,118,8/18/2005,Vintage Classics +5698,The Double and The Gambler,Fyodor Dostoyevsky/Richard Pevear/Larissa Volokhonsky,4.16,0375719016,9780375719011,eng,344,2486,99,1/16/2007,Vintage Classics +5700,The Adolescent,Fyodor Dostoyevsky/Richard Pevear/Larissa Volokhonsky,3.94,0375719008,9780375719004,eng,647,3568,159,12/7/2004,Vintage +5712,If I Die in a Combat Zone,Tim O'Brien,3.95,0007162995,9780007162994,eng,208,11,0,4/7/2003,Flamingo +5713,If I Die In A Combat Zone,Tim O'Brien,3.95,0586087990,9780586087992,eng,208,53,4,4/24/1995,Flamingo +5720,Rainbow Six (John Clark #2; Jack Ryan Universe #10),Tom Clancy/David Dukes,4.09,0425170349,9780425170342,eng,912,40815,908,9/1/1999,Berkley Books +5728,Child of War Woman of Peace,Le Ly Hayslip/James Hayslip/Jenny Wurts,3.80,0385471475,9780385471473,eng,388,186,22,12/1/1993,Anchor +5729,When Heaven and Earth Changed Places: A Vietnamese Woman's Journey from War to Peace,Le Ly Hayslip/Jay Wurts,4.12,0452271681,9780452271685,eng,400,2593,252,11/1/1993,Plume +5735,Philip Vera Cruz: A Personal History of Filipino Immigrants and the Farmworkers Movement,Craig Scharlin/Lilia V. Villanueva,4.22,0295979844,9780295979847,en-US,208,86,4,6/1/2000,University of Washington Press +5736,Coming of Age in Mississippi: The Classic Autobiography of a Young Black Girl in the Rural South,Anne Moody,4.13,0385337817,9780385337816,eng,424,7072,453,2/3/2004,Delta +5738,I'm Too Young To Be Seventy,Judith Viorst/Laura Gibson,3.93,0743267745,9780743267748,en-US,64,237,45,10/12/2005,Simon Schuster +5743,Seventy-Seven Clocks (Bryant & May #3),Christopher Fowler,3.89,0553587153,9780553587159,eng,496,2095,188,11/29/2005,Bantam Books +5752,The Blank Slate: The Modern Denial of Human Nature,Steven Pinker,4.08,0142003344,9780142003343,eng,528,18793,721,8/26/2003,Penguin Books +5755,The Language Instinct: How the Mind Creates Language,Steven Pinker,4.03,0060958332,9780060958336,eng,448,15441,693,11/7/2000,Harper Perennial Modern Classics +5756,Learnability and Cognition: The Acquisition of Argument Structure,Steven Pinker/Jacques A. Mehler,3.75,0262660733,9780262660730,eng,432,50,1,8/28/1991,Bradford Book +5759,Fight Club,Chuck Palahniuk,4.19,0393327345,9780393327342,eng,218,388782,9654,10/17/2005,W.W. Norton & Company (NYC) +5766,BSD Hacks,Lavigne,3.80,0596006799,9780596006792,en-US,450,42,5,5/31/2004,O'Reilly Media +5770,The Design and Implementation of the 4.3BSD UNIX Operating System,Samuel J. Leffler/Marshall Kirk McKusick/Michael J. Karels,4.26,0201061961,9780201061963,eng,471,27,2,6/1/1989,Addison Wesley Publishing Company +5776,Choke,Stuart Woods,3.84,0061094226,9780061094224,eng,352,2288,96,9/12/1996,HarperTorch +5777,Choke Point: A Brinker Mystery (Brinker P.I.),James C. Mitchell,3.22,0312315325,9780312315320,eng,272,3,0,10/5/2004,St. Martin's Minotaur +5787,The Aleph and Other Stories,Jorge Luis Borges/Andrew Hurley,4.38,0142437883,9780142437889,eng,210,20259,460,7/27/2004,Penguin Classics +5794,El Aleph,Jorge Luis Borges,4.38,9500425998,9789500425995,spa,253,146,9,9/1/2007,Planeta Publishing +5797,Vanity Fair,William Makepeace Thackeray/John Carey,3.79,0141439831,9780141439839,eng,867,102877,2286,1/30/2003,Penguin Books +5799,Vanity Fair,William Makepeace Thackeray/Nicholas Dames,3.79,1593080719,9781593080716,eng,696,553,97,11/1/2003,Barnes Noble Classics +5800,Vanity Fair,William Makepeace Thackeray,3.79,0140620850,9780140620856,eng,672,296,34,10/3/1998,Penguin Books +5805,V for Vendetta,Alan Moore/David Lloyd,4.25,1401207928,9781401207922,eng,296,234954,4058,11/1/2005,Vertigo +5809,V.,Thomas Pynchon/Carlos Martín Ramírez,3.96,2020418770,9782020418775,fre,640,15174,561,1/2/2001,Contemporary French Fiction +5810,Girl in the Shadows (Shadows #2),V.C. Andrews,3.81,1416500529,9781416500520,en-US,400,5,1,3/7/2006,Pocket Books +5812,V for Vendetta,Steve Moore/Lilly Wachowski/Lana Wachowski/Alan Moore,4.15,1416516999,9781416516996,eng,358,2980,118,3/1/2006,Pocket Star Books +5813,Heaven (Casteel #1),V.C. Andrews,4.03,0671010050,9780671010058,eng,464,13,0,4/1/1997,Pocket Books +5814,Slow Learner: Early Stories,Thomas Pynchon,3.50,0099532514,9780099532514,eng,208,3169,161,2/16/1995,Vintage Classics +5816,A Gravity's Rainbow Companion: Sources and Contexts for Pynchon's Novel,Steven Weisenburger,4.01,0820328073,9780820328072,eng,424,152,26,11/1/2006,University of Georgia Press +5821,Casino Royale,Ian Fleming,3.73,0141187581,9780141187587,eng,181,371,43,6/3/2004,Penguin Books Limited (UK) +5824,Casino Royale,Anthony Hern/Ian Fleming/Henry Gammidge/John McLusky,3.70,1840238437,9781840238433,eng,96,110,10,6/1/2005,Titan Books +5826,Bel Canto,Ann Patchett,3.93,0060838728,9780060838720,eng,352,218195,13012,8/2/2005,Harper Perennial +5835,Guerilla Film Makers Movie Blueprint,Chris Jones/Jonathan Newman/Cara Williams,4.20,0826414532,9780826414533,eng,608,50,1,6/20/2003,Bloomsbury Academic +5838,Mini-Manual of the Urban Guerrilla,Carlos Marighella,3.31,1894925025,9781894925020,en-US,66,127,13,9/9/2002,Abraham Guillen Press +5843,The Career Programmer: Guerilla Tactics for an Imperfect World (Expert's Voice),Christopher Duncan,3.13,1590596242,9781590596241,en-US,264,37,7,2/1/2006,Apress +5845,A Bend in the River,V.S. Naipaul,3.77,0330487140,9780330487146,eng,326,13147,690,5/10/2002,Picador USA +5848,The Middle Passage,V.S. Naipaul,3.61,0375708340,9780375708343,en-US,256,461,35,1/8/2002,Vintage +5851,Magic Seeds,V.S. Naipaul,3.13,0375707271,9780375707278,eng,280,715,104,11/8/2005,Vintage +5853,Half a Life,V.S. Naipaul,3.25,037570728X,9780375707285,eng,224,3078,301,4/23/2009,Vintage International +5855,North of South: An African Journey,Shiva Naipaul,3.89,0140188266,9780140188264,eng,352,279,33,9/26/1996,Penguin Classics +5863,V.S. Naipaul,Bruce Alvin King,2.00,1403904561,9781403904560,eng,240,0,0,10/10/2003,Palgrave Macmillan +5874,Regeneration Through Violence: The Mythology of the American Frontier 1600–1860,Richard Slotkin,4.30,0806132299,9780806132297,eng,670,163,16,4/15/2000,University of Oklahoma Press +5875,Regeneration (Species Imperative #3),Julie E. Czerneda,4.13,0756403456,9780756403454,en-US,543,54,2,5/2/2006,DAW Hardcover +5877,The Regeneration Trilogy (Regeneration #1-3),Pat Barker,4.38,0670869295,9780670869299,eng,592,1588,95,1/1/1996,Viking Books +5880,The Sparrow (The Sparrow #1),Mary Doria Russell,4.16,0552997773,9780552997775,eng,506,664,103,11/1/1997,Black Swan +5881,The Age of Bronze (Pirates of the Caribbean: Jack Sparrow #5),Rob Kidd/Walt Disney Company,4.05,1423101685,9781423101680,eng,144,548,14,12/1/2006,Disney Press +5882,The Sword of Cortés (Pirates of the Caribbean: Jack Sparrow #4),Rob Kidd/Jean-Paul Orpinas/Walt Disney Company,3.98,1423100611,9781423100614,en-US,122,644,14,10/1/2006,Disney Press +5883,The Pirate Chase (Pirates of the Caribbean: Jack Sparrow #3),Rob Kidd/Walt Disney Company,3.89,1423100204,9781423100201,eng,119,730,20,8/1/2006,Disney Press +5885,The Siren Song (Pirates of the Caribbean: Jack Sparrow #2),Rob Kidd/Jean-Paul Orpinas,3.86,1423100190,9781423100195,eng,123,859,27,6/1/2006,Disney Press +5886,The Coming Storm (Pirates of the Caribbean: Jack Sparrow #1),Rob Kidd/Jean-Paul Orpinas,3.83,1423100182,9781423100188,en-US,135,1414,82,6/1/2006,Disney Press +5890,The Woman in White,Wilkie Collins/Matthew Sweet,4.00,0141439610,9780141439617,eng,672,108060,5168,2/27/2003,Penguin Classics +5891,The Woman in White,Wilkie Collins,4.00,0486440966,9780486440965,eng,504,136,28,4/15/2005,Dover Publications +5893,The Woman in White,Wilkie Collins/Maria K. Bachman/Don Richard Cox,4.00,1551116448,9781551116440,eng,696,122,15,4/20/2006,Broadview Press Inc +5896,The Woman in White,Wilkie Collins/Camille Cauti,4.00,1593082800,9781593082802,eng,635,624,136,4/25/2005,Barnes Noble Classics +5898,The Lord of the Rings (The Lord of the Rings #1-3),J.R.R. Tolkien,4.50,0007136587,9780007136582,eng,1200,682,43,9/16/2002,Not Avail +5901,The 9/11 Commission Report: Final Report of the National Commission on Terrorist Attacks Upon the United States,National Commission on Terrorist Attacks Upon The United States,3.60,0393060411,9780393060416,eng,624,146,16,10/17/2004,W. W. Norton Company +5907,The Hobbit or There and Back Again,J.R.R. Tolkien,4.27,0618260307,9780618260300,eng,366,2530894,32871,8/15/2002,Houghton Mifflin +5910,The Annotated Hobbit,J.R.R. Tolkien/Douglas A. Anderson,4.27,0007137273,9780007137275,eng,411,121,16,4/7/2003,HarperCollins +5911,Poems From The Hobbit,J.R.R. Tolkien,4.30,0618009345,9780618009343,eng,57,169,5,12/13/1999,Houghton Mifflin Harcourt +5912,The Hobbit: Or There and Back Again,J.R.R. Tolkien,4.27,1594130051,9781594130052,eng,481,276,43,9/1/2003,Large Print Press +5915,The Hobbit,J.R.R. Tolkien,4.27,0261103288,9780261103283,eng,277,3213,329,9/17/2007,HarperCollins +5918,Ruthless Rhymes for Heartless Homes and More Ruthless Rhymes,Harry Graham/Frank J. Moore/D. Streamer,3.86,0486402185,9780486402185,eng,64,44,10,6/19/2013,Dover Publications +5931,The Essential Neruda: Selected Poems,Pablo Neruda/Mark Eisner/Lawrence Ferlinghetti/Robert Hass/Stephen Mitchell/Alastair Reid/Forrest Gander/Jack Hirschman/Stephen Kessler/John Felstiner,4.46,0872864286,9780872864283,eng,200,5149,210,4/1/2004,City Lights Publishers +5932,Twenty Love Poems and a Song of Despair,Pablo Neruda/W.S. Merwin/Cristina García,4.30,0143039962,9780143039969,eng,70,37942,1105,12/26/2006,Penguin Classics +5934,Veinte poemas de amor y una canción desesperada; Cien sonetos de amor,Pablo Neruda,4.30,1400001447,9781400001446,eng,160,1120,54,1/22/2002,Plaza y Janes +5937,Love,Pablo Neruda,4.46,0786881488,9780786881482,eng,43,1333,68,6/16/1995,Miramax Books +5942,Anil's Ghost,Michael Ondaatje,3.57,0375724370,9780375724374,eng,311,13022,1013,4/24/2001,Vintage +5952,Waiting for My Cats to Die: A Memoir,Stacy Horn,3.67,0312287445,9780312287443,eng,320,177,28,1/17/2002,St. Martin's Griffin +5957,Narcissus and Goldmund,Hermann Hesse/Leila Vennewitz,4.20,0720608724,9780720608724,eng,288,175,9,6/1/1993,Peter Owen Ltd +5966,Edward Lear's Book of Nonsense: With Lear's Original Illustrations,Edward Lear/Simcha Shtull,3.65,1888297018,9781888297010,eng,46,71,8,11/1/1995,Maxima New Media +5969,A Sparrow Falls (Courtney #3),Wilbur Smith,4.19,0312940688,9780312940683,eng,640,5019,91,1/2/2007,St. Martin's Paperbacks +5970,Providence of a Sparrow: Lessons from a Life Gone to the Birds,Chris Chester,4.33,1400033853,9781400033850,eng,304,228,44,4/13/2004,Anchor +5974,Sparrow Hawk Red,Ben Mikaelsen,3.79,0786811056,9780786811052,eng,185,1,0,4/1/1995,Little Brown Books for Young Readers +5975,The Fall of a Sparrow,Robert Hellenga,3.69,0684850273,9780684850276,eng,464,824,89,7/6/1999,Scribner +5976,The Bluebird and the Sparrow (Women of the West #10),Janette Oke,3.83,0764202537,9780764202537,en-US,251,78,9,8/1/2006,Bethany House Publishers +5981,Journey of the Sparrows,Fran Leeper Buss/Daisy Cubias,3.69,0142302090,9780142302095,eng,160,205,25,12/30/2002,Puffin Books +5984,Aleutian Sparrow,Karen Hesse/Evon Zerbetz/Kim McGillivray,3.78,1416903275,9781416903277,eng,160,710,146,6/1/2005,Margaret K. McElderry Books +5985,An Episode of Sparrows,Rumer Godden,4.21,1590171241,9781590171240,en-GB,247,900,126,10/31/2004,The New York Review Children's Collection +5989,Li Po and Tu Fu: Poems,Li Bai/Du Fu/Arthur Cooper/Shui Chien-Tung,4.14,0140442723,9780140442724,eng,256,389,28,4/26/1973,Penguin Classics +5991,混血王子的背叛 (哈利波特 #6),J.K. Rowling/J.K.羅琳/皇冠編譯組/張定綺/彭倩文/趙丕慧/林靜華,4.57,9573321742,9789573321743,zho,735,75,0,10/1/2005,皇冠文化出版有限公司 +6003,火盃的考驗 (哈利波特 #4),J.K. Rowling/J.K.羅琳/彭倩文,4.56,9573318318,9789573318316,zho,768,91,2,12/8/2001,皇冠文化出版有限公司 +6008,Five T'ang Poets,Wang Wei/Li Bai/Li Ho/Li Shang-yin/David Young,4.30,093244055X,9780932440556,eng,184,169,21,10/8/1990,Oberlin College Press +6038,The End of Obscenity: The Trials of Lady Chatterley Tropic of Cancer and Fanny Hill,Charles Rembar,3.88,0060970618,9780060970611,eng,528,11,0,12/1/1986,HarperCollins Publishers +6048,Juniper,Monica Furlong,4.16,0394832205,9780394832203,eng,198,112,7,2/24/2004,Random House Children's Books +6057,The Long Road Back: A Survivor's Guide to Anorexia,Judy Tam Sargent/Sonia Nordenson,3.20,1880823195,9781880823194,en-GB,194,30,3,10/1/1998,North Star Publications (MA) +6058,The Road Back,Erich Maria Remarque,4.32,1931541744,9781931541749,eng,352,3146,99,12/1/2001,Simon Publications +6066,Robinson Crusoe,Daniel Defoe/L.J. Swingle,3.67,1593080115,9781593080112,eng,312,350,49,4/1/2003,Barnes & Noble Classics +6069,Achilles in Vietnam: Combat Trauma and the Undoing of Character,Jonathan Shay,4.25,0684813211,9780684813219,en-US,272,1130,110,10/1/1995,Scribner +6076,The Work of Mourning,Jacques Derrida/Pascale-Anne Brault/Michael Naas,4.20,0226142817,9780226142814,eng,272,167,7,9/15/2003,University of Chicago Press +6089,Transform Your Life: A step-by-step programme for change,Diana Cooper,4.00,0749919442,9780749919443,eng,176,6,0,10/29/1998,Little Brown Book Group +6106,A Short History of Byzantium,John Julius Norwich,4.09,0679772693,9780679772699,eng,496,1772,142,12/29/1998,Vintage +6107,The Middle Sea: A History of the Mediterranean,John Julius Norwich,3.85,0701176083,9780701176082,eng,588,662,53,10/31/2006,Chatto & Windus +6109,A History of Venice,John Julius Norwich,4.20,0679721975,9780679721970,eng,673,1422,93,6/18/1989,Vintage +6110,The Normans in Sicily: The Normans in the South 1016-1130 and the Kingdom in the Sun 1130-1194,John Julius Norwich,4.34,0140152121,9780140152128,eng,816,268,16,9/1/2004,Penguin Global +6112,Siddhartha,Hermann Hesse/Susan Bernofsky/Tom Robbins,4.02,0679643362,9780679643364,eng,129,888,60,7/18/2006,Modern Library +6115,Siddhartha,Hermann Hesse/Joachim Neugroschel/Ralph Freedman,4.02,0142437182,9780142437186,eng,132,1104,114,12/31/2002,Penguin Books +6129,Siddhartha,Hermann Hesse,4.02,2253008486,9782253008484,fre,160,590,29,10/31/1975,Le Livre de Poche +6138,The Moonstone,Wilkie Collins/Carolyn G. Heilbrun,3.91,0375757856,9780375757853,eng,528,59709,2819,9/11/2001,Modern Library +6140,The Moonstone,Wilkie Collins,3.91,0140620133,9780140620139,en-GB,464,349,44,10/24/1998,Penguin Books +6144,The Moonstone,Wilkie Collins/P.D. James,3.91,0192100289,9780192100283,eng,576,74,6,6/10/1999,Oxford University Press USA +6148,Ride of the Second Horseman: The Birth and Death of War,Robert L. O'Connell,4.29,0195119207,9780195119206,eng,320,13,0,10/19/1997,Oxford University Press USA +6149,Beloved,Toni Morrison,3.83,1400033411,9781400033416,eng,324,282045,9004,6/8/2004,Vintage +6150,Cry the Beloved Country,Alan Paton,3.90,074326195X,9780743261951,eng,316,54558,2937,11/25/2003,Scribner +6151,Life of the Beloved: Spiritual Living in a Secular World,Henri J.M. Nouwen,4.28,0824519868,9780824519865,eng,160,7551,498,10/1/2002,Crossroad +6152,Come Away My Beloved,Frances J. Roberts,4.58,1593109156,9781593109158,eng,192,8,0,10/1/2005,Barbour Books +6155,Israel My Beloved,Kay Arthur,4.16,0736903704,9780736903707,eng,448,681,83,3/15/2001,Harvest House Publishers +6156,Beloved Bride: The Letters of Stonewall Jackson to His Wife,Bill Potter/Stephen Lang,4.10,1929241631,9781929241637,eng,156,137,18,4/10/2003,Vision Forum +6157,The Search for the Beloved: Journeys in Mythology and Sacred Psychology (Inner Workbook),Jean Houston,3.95,0874778719,9780874778717,en-US,272,18,2,6/30/1997,TarcherPerigee +6159,Reservation Blues,Sherman Alexie,3.98,0802141900,9780802141903,eng,306,11163,772,2/7/2005,Grove Press +6163,The Border Trilogy: All the Pretty Horses The Crossing Cities of the Plain,Cormac McCarthy,4.44,0375407936,9780375407932,eng,1040,4589,252,9/28/1999,Everyman's Library +6167,Music & Silence,Rose Tremain,3.95,0743418263,9780743418263,eng,485,2923,214,5/1/2001,Washington Square Press +6173,The Periodic Table,Primo Levi,4.21,0140296611,9780140296617,en-GB,194,101,10,1/1/2009,Penguin Group(CA) +6174,Survival in Auschwitz,Primo Levi/Stuart J. Woolf/Philip Roth,4.32,0684826801,9780684826806,eng,187,29099,900,9/1/1995,Simon Schuster +6175,The Reawakening,Primo Levi/Stuart J. Woolf,4.29,0684826356,9780684826356,eng,230,1269,67,12/1/1995,Touchstone +6176,The Drowned and the Saved,Primo Levi,4.40,0349100470,9780349100470,eng,170,3542,169,2/1/1989,Abacus +6180,The Monkey's Wrench,Primo Levi/William Weaver/Ruth Feldman/Ruth Tenzer Feldman,3.92,0140188924,9780140188929,eng,192,601,34,7/1/1995,Penguin +6182,Primo Levi: A Life,Ian Thomson,4.11,0312423675,9780312423674,eng,640,104,5,12/1/2004,Picador +6184,Wuthering Heights,Emily Brontë,3.85,0140620125,9780140620122,eng,279,2155,182,1/13/2007,Penguin Books +6192,Disgrace,J.M. Coetzee,3.84,0143036378,9780143036371,eng,220,61545,3916,8/30/2005,Penguin Books +6194,Waiting for the Barbarians,J.M. Coetzee,3.94,0140283358,9780140283358,eng,152,18097,1029,10/1/1999,Penguin Books +6197,The Lives of Animals,J.M. Coetzee/Amy Gutmann/Peter Singer/Wendy Doniger/Barbara Smuts/Marjorie Garber,3.69,069107089X,9780691070896,eng,136,1930,139,5/6/2001,Princeton University Press +6198,Boyhood: Scenes from Provincial Life,J.M. Coetzee,3.79,014026566X,9780140265668,eng,166,3162,183,9/1/1998,Penguin Books +6200,Youth,J.M. Coetzee,3.79,0142002003,9780142002001,eng,176,4931,261,10/7/2003,Penguin Books +6207,Age of Iron,J.M. Coetzee,3.84,0140275657,9780140275650,eng,198,2976,207,9/1/1998,Penguin Books +6216,The Wife (Kristin Lavransdatter #2),Sigrid Undset/Tiina Nunnally/Sherrill Harbison,4.15,0141181281,9780141181288,eng,402,2116,164,11/1/1999,Penguin Classics +6217,Kristin Lavransdatter (Kristin Lavransdatter #1-3),Sigrid Undset/Tiina Nunnally/Brad Leithauser,4.28,0143039164,9780143039167,eng,1144,7210,926,9/27/2005,Penguin Books +6218,The Axe (The Master of Hestviken #1),Sigrid Undset/Arthur G. Chater,4.21,0679752730,9780679752738,eng,304,496,51,11/29/1994,Vintage +6219,The Cross (Kristin Lavransdatter #3),Sigrid Undset/Tiina Nunnally/Sherrill Harbison,4.29,0141182350,9780141182353,eng,366,1803,146,4/1/2000,Penguin Classics +6220,The Wreath (Kristin Lavransdatter #1),Sigrid Undset/Tiina Nunnally,4.02,0141180412,9780141180410,eng,305,3831,473,12/1/1997,Penguin Classics +6221,The Mistress of Husaby (Kristin Lavransdatter #2),Sigrid Undset,4.15,0394752937,9780394752938,en-US,384,167,30,5/12/1987,Vintage +6222,Jenny,Sigrid Undset/Tiina Nunnally,3.79,158642050X,9781586420505,eng,330,549,42,6/1/1998,Steerforth +6224,The Unknown Sigrid Undset: Jenny and Other Works,Sigrid Undset/Tim Page/Tiina Nunnally/Naomi Walford,4.19,1586420216,9781586420215,eng,406,48,9,12/31/2001,Steerforth Press +6226,Gunnar's Daughter,Sigrid Undset/Sherrill Harbison/Arthur G. Chater,4.18,014118020X,9780141180205,eng,161,848,79,4/1/1998,Penguin Classics +6227,The Snake Pit (The Master of Hestviken #2),Sigrid Undset/Arthur G. Chater,4.23,0679755543,9780679755548,eng,240,349,18,11/29/1994,Vintage +6230,The Son Avenger (The Master of Hestviken #4),Sigrid Undset,4.40,0679755527,9780679755524,en-US,288,275,19,6/24/1995,Vintage +6240,An Imaginary Life,David Malouf,3.88,0099273845,9780099273844,eng,156,1552,144,2/5/1999,Vintage +6245,The Great World,David Malouf,3.88,0099273861,9780099273868,eng,336,539,33,5/20/1999,Vintage +6253,A Very Long Engagement,Sébastien Japrisot,3.91,0099474549,9780099474548,eng,320,79,16,1/6/2005,Vintage +6259,Birdsong,Sebastian Faulks,4.09,0679776818,9780679776819,eng,483,57513,2306,6/2/1997,Vintage International +6273,The Collected Poems of Wilfred Owen,Wilfred Owen/Cecil Day-Lewis,4.34,0811201325,9780811201322,eng,192,3151,106,1/17/1965,New Directions +6286,Murder in Foggy Bottom (Capital Crimes #17),Margaret Truman,3.71,0449001962,9780449001967,en-US,368,688,46,1/29/2002,Fawcett +6288,The Road,Cormac McCarthy,3.97,0307265439,9780307265432,eng,241,606433,34301,9/26/2006,Alfred A. Knopf +6290,The Road to Serfdom,Friedrich A. Hayek,4.18,0415253896,9780415253895,eng,272,258,23,3/9/2006,Routledge +6291,Road of the Patriarch (Forgotten Realms: The Sellswords #3),R.A. Salvatore,4.19,0786940751,9780786940752,eng,346,6274,78,12/20/2006,Wizards of the Coast +6293,Road Trip USA: Cross-Country Adventures on America's Two-Lane Highways,Jamie Jensen,3.96,1566917662,9781566917667,en-US,964,448,21,3/31/2006,Rick Steves +6294,Howl's Moving Castle (Howl's Moving Castle #1),Diana Wynne Jones,4.29,006441034X,9780064410342,eng,329,161582,9026,8/1/2001,Harper Trophy +6295,Howl and Other Poems,Allen Ginsberg/William Carlos Williams,4.13,0872863107,9780872863101,eng,56,85143,1284,1/1/2001,City Lights +6296,When Rabbit Howls,Truddi Chase/Robert A. Phillips,4.04,0425183319,9780425183311,eng,400,262,32,2/5/2002,Berkley +6297,The Art of Howl's Moving Castle,Hayao Miyazaki/Yuji Oniki/Joe Hisaishi,4.51,1421500493,9781421500492,eng,256,2874,76,7/1/2005,VIZ Media LLC +6298,Howl: Original Draft Facsimile Transcript & Variant Versions Fully Annotated by Author with Contemporaneous Correspondence,Allen Ginsberg/Barry Miles,4.22,0061137456,9780061137457,eng,208,180,28,10/10/2006,Harper Perennial Modern Classics +6302,The Best of America's Test Kitchen 2007: The Year's Best Recipes Equipment Reviews and Tastings,America's Test Kitchen,4.35,1933615095,9781933615097,eng,312,193,7,9/1/2006,America's Test Kitchen +6310,Charlie and the Chocolate Factory (Charlie Bucket #1),Roald Dahl/Quentin Blake,4.13,0142403881,9780142403884,eng,176,558799,7239,6/2/2005,Puffin Books +6311,Charlie and the Chocolate Factory: A Play,Richard R. George/Roald Dahl,4.33,0140311254,9780140311259,eng,89,2760,47,9/27/1979,Puffin Books +6316,Charlie and the Chocolate Factory (Abridged),Roald Dahl,3.86,0142404209,9780142404201,en-US,40,12,2,6/2/2005,Puffin +6326,Collected Stories,Roald Dahl/Jeremy Treglown,4.39,0307264904,9780307264909,eng,850,346,43,10/17/2006,Alfred A. Knopf +6329,Roald Dahl Treasury,Roald Dahl,4.43,067003665X,9780670036653,eng,448,2143,65,9/15/2003,Viking Juvenile +6332,Dirty Beasts,Roald Dahl/Quentin Blake,4.01,0142302279,9780142302279,eng,32,4075,121,10/14/2002,Puffin Books +6334,Never Let Me Go,Kazuo Ishiguro,3.82,1400078776,9781400078776,eng,288,380646,22957,8/31/2010,Vintage Books +6335,Never Let Me Go,Kazuo Ishiguro,3.82,0676977111,9780676977110,eng,288,1177,163,1/31/2006,Vintage Books +6339,Never Let Me Go,Kazuo Ishiguro/Rosalyn Landor,3.82,1415916292,9781415916292,eng,10,323,120,4/12/2005,Books on Tape +6340,Homeric Moments: Clues to Delight in Reading the Odyssey and the Iliad,Eva Brann,4.30,0967967570,9780967967578,eng,326,118,13,9/1/2002,Paul Dry Books +6341,Paradoxes of Education in a Republic,Eva Brann,4.28,0226071367,9780226071367,eng,178,29,3,8/15/1989,University of Chicago Press +6342,The Music of the Republic: Essays on Socrates' Conversations and Plato's Writings,Eva Brann,4.58,1589880080,9781589880085,eng,378,20,2,3/1/2004,Paul Dry Books +6343,Open Secrets / Inward Prospects: Reflections on World and Soul,Eva Brann,4.42,1589880196,9781589880191,eng,435,10,1,10/1/2004,Paul Dry Books +6346,Phaedo,Plato/Eva Brann/Peter Kalkavage/Eric Salem,4.04,0941051692,9780941051699,eng,118,94,12,9/1/1998,Focus +6360,Rocky Stories: Tales of Love Hope and Happiness at America's Most Famous Steps,Michael Vitez/Tom Gralish/Sylvester Stallone,4.16,1589880293,9781589880290,eng,144,31,4,11/1/2006,Paul Dry Books +6366,My Heart May Be Broken but My Hair Still Looks Great (Domestic Equalizers #2),Dixie Cash,3.88,0061134236,9780061134234,eng,336,1226,120,8/29/2006,William Morrow Paperbacks +6367,Since You're Leaving Anyway Take Out the Trash (Domestic Equalizers #1),Dixie Cash,3.81,0060595361,9780060595364,eng,384,1614,167,8/31/2004,Avon +6388,The Da Vinci Code (Robert Langdon #2),Dan Brown,3.84,0385504217,9780385504218,eng,522,2780,334,3/18/2003,Doubleday Publishing (NY) +6407,Blessings from the Other Side: Wisdom and Comfort from the Afterlife for This Life,Sylvia Browne/Lindsay Harrison,3.98,0451206703,9780451206701,en-US,208,37,2,10/1/2002,NAL +6414,Mother God: The Feminine Principle to Our Creator,Sylvia Browne,4.05,1401903096,9781401903091,en-US,128,469,30,2/1/2004,Hay House +6418,Thanksgiving,Janet Evanovich,3.60,0060598808,9780060598808,eng,228,10637,474,10/31/2006,HarperTorch +6419,Plum Lovin' (Stephanie Plum #12.5),Janet Evanovich,3.72,0312306342,9780312306342,eng,164,47315,1446,1/9/2007,St. Martin's Press +6422,Four to Score (Stephanie Plum #4),Janet Evanovich,4.17,0312966970,9780312966973,eng,313,117541,2502,6/15/1999,St. Martin's Press +6424,Seven Up (Stephanie Plum #7),Janet Evanovich,4.16,0312980140,9780312980146,en-US,337,103618,1820,6/17/2002,St. Martin's Press +6425,Hard Eight (Stephanie Plum #8),Janet Evanovich/Lorelei King,4.17,0312983867,9780312983864,eng,326,101730,1878,6/16/2003,St. Martin's Press +6426,Motor Mouth (Alex Barnaby #2),Janet Evanovich,3.68,0060584033,9780060584030,eng,312,22251,671,10/3/2006,HarperCollins +6438,A Supposedly Fun Thing I'll Never Do Again: Essays and Arguments,David Foster Wallace,4.25,0316919896,9780316919890,eng,353,722,110,2/1/1997,Little Brown +6440,Ivanhoe,Walter Scott/Graham Tulloch,3.75,0140436588,9780140436587,eng,541,73757,1571,3/30/2000,Penguin Books /Penguin Classics +6441,Ivanhoe,Marianna Mayer/Walter Scott/John Rush,3.96,1587172488,9781587172489,en-US,56,178,22,10/7/2004,Chronicle Books +6459,Me and Jezebel: When Bette Davis Came for Dinner -- And Stayed ... And Stayed ... And Stayed ... And ...,Elizabeth L. Fuller,3.73,0425132641,9780425132647,eng,244,30,5,5/1/1992,Berkley +6460,George Washington and Benedict Arnold: A Tale of Two Patriots,Dave R. Palmer,4.27,1596980206,9781596980204,eng,424,242,37,8/1/2006,Regnery History +6462,His Excellency: George Washington,Joseph J. Ellis,3.92,1400032539,9781400032532,eng,320,32978,1112,11/8/2005,Vintage +6466,George Washington's Rules of Civility & Decent Behavior in Company and Conversation (Little Books of Wisdom),George Washington,4.08,155709103X,9781557091031,eng,30,835,113,8/1/1989,Applewood Books +6475,George Washington's Sacred Fire,Peter A. Lillback/Jerry Newcombe,4.18,0978605268,9780978605261,eng,1200,694,63,5/31/2011,Providence Forum Press +6480,Waverley,Walter Scott/Claire Lamont,3.43,0192836013,9780192836014,eng,463,69,8,8/20/1998,Oxford University Press +6482,The Antiquary,Walter Scott/Nicola J. Watson,3.83,0192831879,9780192831873,eng,528,354,37,5/23/2002,Oxford University Press +6483,Rob Roy,Walter Scott/Lockhart Bogle,3.70,0375760601,9780375760600,eng,576,26,1,7/9/2002,Modern Library +6505,Prozac Nation,Elizabeth Wurtzel,3.59,1573229628,9781573229623,eng,384,895,78,4/2/2002,Riverhead Books +6511,Girl Interrupted: Screenplay based on the book,James Mangold/Anna Hamilton Phelan/Lisa Loomer/Susanna Kaysen,4.02,057120211X,9780571202119,eng,167,253,15,2/21/2000,Faber & Faber +6524,How to Write a Damn Good Novel: A Step-by-Step No Nonsense Guide to Dramatic Storytelling,James N. Frey,3.86,0312010443,9780312010447,eng,192,2152,155,12/15/1987,St. Martin's Press +6526,Book of the Dead (Kay Scarpetta #15),Patricia Cornwell,3.65,0399153934,9780399153938,eng,511,23107,1295,11/1/2007,Putnam Adult +6527,At Risk (Winston Garano #1),Patricia Cornwell,3.41,0399153624,9780399153624,eng,212,422,47,5/23/2006,G. P. Putnam's Sons +6528,Predator (Kay Scarpetta #14),Patricia Cornwell,3.68,0425210278,9780425210277,eng,453,23630,842,10/1/2006,Berkley Publishing Group +6530,Trace (Kay Scarpetta #13),Patricia Cornwell,3.78,0425204200,9780425204207,eng,401,25822,729,6/28/2005,Berkley +6534,Postmortem (Kay Scarpetta #1),Patricia Daniels Cornwell/Patricia Cornwell,4.02,0743477154,9780743477154,eng,342,193117,2123,12/30/2003,Pocket Books +6536,Three Complete Novels: Postmortem / Body Of Evidence / All That Remains (Kay Scarpetta #1 #2 #3),Patricia Cornwell,4.29,0765191121,9780765191120,en-US,822,476,16,10/1/1997,Smithmark Publishers +6537,From Potter's Field (Kay Scarpetta #6),Patricia Cornwell,4.04,0425204693,9780425204696,eng,383,46084,614,8/30/2005,Berkley Books +6539,The Body Farm (Kay Scarpetta #5),Patricia Cornwell,4.05,0425201449,9780425201442,eng,351,57415,920,12/28/2004,Berkley +6540,Trace (Kay Scarpetta #13),Patricia Cornwell/Carolyn McCormick,3.78,0143058320,9780143058328,en-US,11,46,8,8/4/2005,Penguin Audio +6541,Cause of Death (Kay Scarpetta #7),Patricia Cornwell/C.J. Critt,3.93,0425213382,9780425213384,eng,356,38823,625,1/2/2007,Berkley Books +6542,The Patricia Cornwell CD Audio Treasury: All That Remains / Cruel & Unusual (Kay Scarpetta #3 #4),Patricia Cornwell/Kate Burton,4.16,0060791217,9780060791216,eng,0,202,1,7/26/2005,HarperAudio +6543,At Risk (Winston Garano #1),Patricia Cornwell,3.41,0425214761,9780425214763,en-US,289,10084,598,4/3/2007,Berkley Books +6544,The Scarpetta Collection: All That Remains / Cruel & Unusual (Kay Scarpetta #3 #4),Patricia Cornwell,4.16,074325581X,9780743255813,eng,672,30,2,11/11/2003,Scribner +6545,In the Dark of the Night,John Saul,3.88,034548701X,9780345487018,eng,324,4278,178,7/18/2006,Ballantine Books +6546,Perfect Nightmare,John Saul,3.89,0345467329,9780345467324,eng,384,3721,236,4/25/2006,Ballantine Books +6549, said the shotgun to the head.,Saul Williams,4.22,0743470796,9780743470797,en-US,192,2762,214,9/1/2003,MTV Books +6550,Early Color,Saul Leiter/Martin Harrison,4.73,3865211399,9783865211392,eng,156,144,8,1/15/2006,Steidl +6551,Herzog,Saul Bellow/Philip Roth,3.78,0142437298,9780142437292,eng,371,16550,813,2/25/2003,Penguin Classics +6552,Midnight Voices,John Saul/Joe Blades,3.75,0449006530,9780449006535,eng,384,2756,142,3/4/2003,Ballantine Books +6553,The Manhattan Hunt Club,John Saul,3.98,0345490649,9780345490643,eng,384,4889,221,3/28/2006,Ballantine Books +6556,Shadows,John Saul,3.93,0553560271,9780553560275,eng,393,10824,185,5/1/1993,Bantam +6557,The Presence,John Saul,3.76,0449002411,9780449002414,eng,432,2699,90,4/29/1998,Ballantine Books +6562,Creature,John Saul,3.84,0553284118,9780553284119,eng,416,10047,152,1/1/1997,Bantam +6568,Asylum (Blackstone Chronicles #6),John Saul,4.10,0449227944,9780449227947,eng,97,932,24,6/3/1997,Fawcett +6572,Suffer the Children,John Saul,3.91,044018293X,9780440182931,en-US,378,28001,301,7/1/1989,Dell +6588,The Big Bad Wolf (Alex Cross #9),James Patterson/مریم کاظمی‌تبار,3.99,0446610224,9780446610223,eng,400,42096,945,10/1/2004,Grand Central Publishing +6595,Big Bad Wolf,Linda Jones,3.80,0505521792,9780505521798,eng,359,123,6,2/27/1997,Love Spell +6611,Why Do Men Fall Asleep After Sex? More Questions You'd Only Ask a Doctor After Your Third Whiskey Sour,Mark Leyner/Billy Goldberg,3.55,0307345971,9780307345974,eng,263,1166,112,8/1/2006,Three Rivers Press +6613,Four Blondes,Candace Bushnell,2.82,080213825X,9780802138255,eng,256,23409,877,6/8/2001,Grove Press +6614,Lipstick Jungle,Candace Bushnell,3.41,0786887079,9780786887071,eng,496,37514,780,8/8/2006,Hachette Books +6615,Lipstick Jungle,Candace Bushnell,3.41,0786893966,9780786893966,eng,532,422,48,4/1/2007,Hachette Books +6618,The Easy Way to Stop Smoking: Join the Millions Who Have Become Nonsmokers Using the Easyway Method,Allen Carr,4.30,1402718616,9781402718618,eng,224,3510,510,9/23/2004,Sterling +6619,Teach Your Child to Read in 100 Easy Lessons,Siegfried Engelmann/Phyllis Haddox/Elaine Bruner,4.17,0671631985,9780671631987,en-US,395,2207,271,6/15/1986,Touchstone +6624,It's Not Easy Being Green: And Other Things to Consider,Jim Henson/Cheryl Henson,4.20,1401302424,9781401302429,eng,197,1409,168,9/14/2005,Hyperion +6625,Playing Easy to Get (B.A.D. Agency #1.5; Vikings Underground #3; Immortals After Dark #1),Sherrilyn Kenyon/Jaid Black/Kresley Cole,4.13,1416510877,9781416510871,eng,352,12509,340,2/7/2006,Gallery Books +6628,The Big Over Easy (Nursery Crime #1),Jasper Fforde,3.94,0143037234,9780143037231,eng,383,27137,1885,7/25/2006,Penguin +6635,The Enneagram Made Easy: Discover the 9 Types of People,Renee Baron/Elizabeth Wagele,3.82,0062510266,9780062510266,eng,161,1844,171,3/11/1994,HarperSanFrancisco +6640,It's Easy Being Green: A Handbook for Earth-Friendly Living,Crissy Trask/Mike Clelland,3.55,158685772X,9781586857721,eng,168,330,48,1/23/2006,Gibbs Smith +6644,Le Divorce,Diane Johnson,2.88,0452284481,9780452284487,eng,320,3602,295,7/1/2003,Plume +6654,Divine Conspiracy: Rediscovering Our Hidden Life in God,Dallas Willard,4.22,0006281141,9780006281146,en-US,384,52,2,10/5/1998,Fount +6655,The Divine Comedy,Dante Alighieri/John Ciardi,4.07,0451208633,9780451208637,eng,895,3127,205,5/27/2003,NAL +6656,The Divine Comedy,Dante Alighieri/Allen Mandelbaum/Eugenio Montale,4.07,0679433139,9780679433132,eng,798,86527,2004,8/1/1995,Everyman's Library +6657,Divine,Karen Kingsbury,4.28,141430935X,9781414309354,eng,355,9043,424,5/17/2007,Tyndale House Publishers +6658,When the Emperor Was Divine,Julie Otsuka,3.73,0141009055,9780141009056,en-US,160,180,27,1/12/2004,Penguin +6659,Complete Divine (Dungeons & Dragons Edition 3.5),David Noonan,3.64,0786932724,9780786932726,eng,191,803,8,5/1/2004,Wizards of the Coast +6660,A Divine Revelation of Hell,Mary K. Baxter/T.L. Lowery,4.18,0883682796,9780883682791,eng,208,1164,154,1/1/1993,Whitaker House +6667,Boy: Tales of Childhood (Roald Dahl's Autobiography #1),Roald Dahl/Quentin Blake,4.10,0141311401,9780141311401,eng,176,45253,1934,4/5/2001,Puffin Books +6668,The Enormous Crocodile,Roald Dahl/Quentin Blake,3.78,0142302457,9780142302453,eng,32,13986,525,3/24/2003,Puffin +6670,The Magic Finger,Roald Dahl/Quentin Blake,3.68,0141311290,9780141311296,eng,67,23558,1092,4/5/2001,Puffin Books +6671,The Wonderful Story of Henry Sugar and Six More,Roald Dahl,4.14,037581423X,9780375814235,eng,240,15116,663,9/11/2001,Knopf Books for Young Readers +6677,The Gremlins,Roald Dahl/Artists and Writers Guild/Walt Disney Company/Leonard Maltin,3.44,1593074964,9781593074968,eng,56,511,65,9/26/2006,Dark Horse Books +6678,Going Solo (Roald Dahl's Autobiography #2),Roald Dahl/Quentin Blake,4.08,0141311428,9780141311425,eng,209,17327,992,4/5/2001,Puffin +6680,Gumbo Ya-Ya: A Collection of Louisiana Folk Tales,Lyle Saxon/Edward Dreyer/Robert Tallant,4.04,0882896458,9780882896458,eng,640,307,23,5/31/1987,Pelican Publishing +6689,James and the Giant Peach,Roald Dahl/Quentin Blake,4.01,0375814248,9780375814242,eng,146,328542,4733,9/10/2002,Alfred A. Knopf +6690,Danny the Champion of the World,Roald Dahl/Quentin Blake,4.09,0375814256,9780375814259,eng,224,46753,1672,2/12/2002,Knopf Books for Young Readers +6691,My Uncle Oswald,Roald Dahl,3.89,0140055770,9780140055771,eng,208,8170,620,5/1/1986,Penguin (Non-Classics) +6693,Fantastic Mr. Fox,Roald Dahl/Quentin Blake,4.05,0375822070,9780375822070,eng,96,83723,2503,6/11/2002,Knopf Books for Young Readers +6694,The Giraffe and the Pelly and Me,Roald Dahl/Quentin Blake,3.82,0140568190,9780140568196,eng,32,17232,713,11/29/2001,Puffin +6708,The Power of Now: A Guide to Spiritual Enlightenment,Eckhart Tolle,4.13,1577314808,9781577314806,eng,229,159883,7012,8/19/2004,New World Library +6721,Wild Things: Four Tales,Douglas Clegg,3.58,1587671565,9781587671562,eng,97,67,8,10/1/2006,Cemetery Dance Publications +6745,Wild Things (Prowlers Book 1),Christopher Golden,4.03,074344017X,9780743440172,eng,311,7,0,4/7/2003,Pocket Books +6748,A Supposedly Fun Thing I'll Never Do Again: Essays and Arguments,David Foster Wallace,4.25,0316925284,9780316925280,eng,353,27674,2030,2/2/1998,Back Bay Books +6749,Oblivion,David Foster Wallace,4.07,0316010766,9780316010764,eng,329,10633,701,8/30/2005,Back Bay Books +6751,Consider the Lobster and Other Essays,David Foster Wallace,4.23,0316156116,9780316156110,eng,343,32876,2406,12/13/2005,Little Brown and Company +6753,Brief Interviews with Hideous Men,David Foster Wallace,3.86,034911188X,9780349111889,eng,273,18335,1155,4/1/2000,Abacus +6763,Diabetes Meal Planning Made Easy,Hope S. Warshaw/Warshaw Hope,3.42,1580402518,9781580402514,eng,301,33,4,10/15/2006,American Diabetes Association +6764,Easy French Reader,R. de Roussy de Sales,3.85,0071428488,9780071428484,eng,228,297,33,9/17/2003,McGraw-Hill Education +6781,Algebra the Easy Way,Douglas Downing,4.06,0764119729,9780764119729,eng,392,23,2,1/1/2003,Barrons Educational Series +6793,Easy Riders Raging Bulls,Peter Biskind,4.12,0684857081,9780684857084,eng,512,5305,341,4/4/1999,Simon Schuster +6794,Cloud Atlas,David Mitchell,4.02,0340822783,9780340822784,eng,529,6985,957,2/21/2005,Sceptre +6795,The Cloud Atlas,Liam Callanan,3.38,0385336950,9780385336956,en-GB,368,1748,260,8/1/2004,Dial Press +6800,Easy Labor: Every Woman's Guide to Choosing Less Pain and More Joy During Childbirth,William Camann/Kathryn Alexander,3.45,0345476638,9780345476630,eng,311,234,77,1/31/2006,Ballantine Books +6810,The McDougall Quick and Easy Cookbook,John A. McDougall/Mary McDougall,4.01,0452276969,9780452276963,eng,336,308,20,4/1/1999,Plume +6815,American Sign Language The Easy Way,David A. Stewart/Jessalyn Little/Elizabeth Stewart,3.75,0764134280,9780764134289,eng,480,34,6,11/1/2006,Barrons Educational Series +6819,Ghostwritten,David Mitchell,4.05,0375724508,9780375724503,eng,426,20880,1728,10/9/2001,Vintage +6823,Romeo & Juliet,William Shakespeare/Alan Durband,3.74,0748702555,9780748702558,eng,288,179,4,1/1/1993,Nelson Thornes Ltd +6838,Easy Prey (Lucas Davenport #11),John Sandford,4.08,0743484185,9780743484183,eng,480,11676,341,6/1/2004,Simon & Schuster +6851,Mayada Daughter of Iraq: One Woman's Survival Under Saddam Hussein,Jean Sasson,4.00,0451212924,9780451212924,eng,368,4208,298,9/7/2004,Berkley Books +6854,Three to Get Deadly (Stephanie Plum #3),Janet Evanovich,4.15,0312966091,9780312966096,eng,321,125114,2883,7/15/1998,St. Martin's Press +6855,Smitten (Elsie Hawkins #2),Janet Evanovich,3.67,0060598875,9780060598877,eng,234,11968,387,7/25/2006,HarperTorch +6856,Manhunt,Janet Evanovich,3.70,0060598824,9780060598822,eng,219,12152,449,11/29/2005,HarperTorch +6857,Three Plums In One (Stephanie Plum #1-3),Janet Evanovich,4.31,0743216393,9780743216395,eng,1016,2983,168,4/26/2001,Scribner +6858,Hot Six (Stephanie Plum #6),Janet Evanovich,4.19,0312976275,9780312976279,eng,336,108961,2082,6/15/2001,St. Martin's Paperbacks +6862,Amsterdam,Ian McEwan,3.43,0385494246,9780385494243,eng,208,35998,2445,11/2/1999,Anchor Books/Knopf Doubleday Publishing Group +6866,Fodor's Amsterdam (Fodor's Gold Guides),Fodor's Travel Publications Inc./Sarah Gold,3.43,1400016088,9781400016082,eng,288,6,0,4/6/2004,Fodor's +6869,The Child in Time,Ian McEwan,3.58,0385497520,9780385497527,eng,263,8285,543,11/2/1999,Anchor +6870,Enduring Love,Ian McEwan,3.63,0099481243,9780099481249,eng,245,30776,1515,10/28/2004,Vintage +6871,Black Dogs,Ian McEwan,3.44,0385494327,9780385494328,eng,149,7938,490,12/29/1998,Anchor +6872,The Comfort of Strangers,Ian McEwan,3.41,0679749845,9780679749844,eng,128,11116,836,11/1/1994,Anchor +6876,And the Envelope Please...: Ever After / An Affair To Remember / It Happened One Night,Barbara Bretton/Emilie Rose/Isabel Sharpe,3.57,0373836937,9780373836932,eng,279,7,1,2/7/2006,Harlequin Anthologies +6896,Las rubias de 5th Avenue,Plum Sykes,3.28,8497935888,9788497935883,spa,304,5,0,2/28/2005,Debolsillo +6899,Tuesdays with Morrie,Mitch Albom,4.10,0307275639,9780307275639,en-US,192,5541,498,6/29/2007,Anchor Books +6902,La Dernière Leçon,Mitch Albom,4.10,0785930736,9780785930730,fre,209,3,1,1/1/2001,French & European Pubns +6903,My Sister's Keeper,Mavis Applewater,3.86,097441218X,9780974412184,eng,252,89,2,3/9/2004,Limitless Corporation +6904,My Sister's Keeper (Gillian Adams #2),Nora Kelly,3.70,1890208280,9781890208288,eng,228,22,2,2/1/2000,Poisoned Pen Press +6905,Their Sisters' Keepers: Women's Prison Reform in America 1830-1930,Estelle B. Freedman,4.27,0472080520,9780472080526,eng,272,22,2,4/4/1984,University of Michigan Press +6919,Baby's Alphabet,Jean Marzollo/Nancy Sheehan,3.75,0761316434,9780761316435,eng,32,4,0,8/1/2002,Roaring Brook Press +6925,Welcome to the Monkey House,Kurt Vonnegut Jr./David Strathairn/Maria Tucci/Bill Irwin/Tony Roberts/Dylan Baker,4.15,0060898712,9780060898717,en-US,9,61,11,5/23/2006,Caedmon +6932,What Color Is Your Parachute? A Practical Manual for Job-Hunters and Career-Changers,Richard Nelson Bolles,3.70,1580087949,9781580087940,eng,382,4171,161,9/1/2006,Ten Speed Press +6937,You Can Have What You Want: Proven Strategies for Inner and Outer Success,Michael Neill,4.14,1401911838,9781401911836,en-US,240,21,1,10/15/2006,Hay House +6952,Like Water for Chocolate,Laura Esquivel/Thomas Christensen/Carol Christensen,3.95,0552995878,9780552995870,eng,222,283199,4997,9/16/1993,Black Swan +6953,Like Water for Chocolate,Laura Esquivel/Yareli Arizmendi,3.95,0739334190,9780739334195,eng,0,121,33,5/2/2006,Random House Audio +6954,Como agua para chocolate,Laura Esquivel,3.95,0785731237,9780785731238,spa,248,11,2,6/1/1994,Turtleback Books +6956,The Radicalism of the American Revolution,Gordon S. Wood,4.06,0679736883,9780679736882,eng,447,4246,195,3/2/1993,Vintage +6969,Emma,Jane Austen/Fiona Stafford,4.00,0141439580,9780141439587,eng,474,549271,11117,5/6/2003,Penguin Books +6970,Prince of Ice (Tale of the Demon World #3),Emma Holly,3.99,0425212599,9780425212592,en-US,294,1335,59,11/7/2006,Berkley Sensation +6971,Emma Lazarus,Esther Schor,3.88,0805242163,9780805242164,eng,368,30,7,9/5/2006,Schocken +6974,Strange Attractions,Emma Holly,3.68,0425205037,9780425205037,en-US,312,1221,66,11/1/2005,Berkley Books +6976,The Mermaid Chair,Sue Monk Kidd,3.13,0143036696,9780143036692,eng,368,68363,5816,3/7/2006,Penguin Books +6980,The Dance of the Dissident Daughter: A Woman's Journey from Christian Tradition to the Sacred Feminine,Sue Monk Kidd,3.95,0061144908,9780061144905,en-US,253,572,70,12/26/1996,HarperOne +6981,When the Heart Waits: Spiritual Direction for Life's Sacred Questions,Sue Monk Kidd,4.13,0061144894,9780061144899,eng,240,2366,231,10/11/2016,HarperOne +6984,With Open Hands,Henri J.M. Nouwen/Sue Monk Kidd,4.30,1594710643,9781594710643,en-US,125,782,76,4/1/2006,Ave Maria Press +6987,Saxons Vikings and Celts: The Genetic Roots of Britain and Ireland,Bryan Sykes,3.86,0393062686,9780393062687,eng,320,1033,171,12/17/2006,W. W. Norton Company +6988,Yeah I Said It,Wanda Sykes,3.71,0743482719,9780743482714,en-US,247,458,66,9/13/2005,Atria Books +6992,The Seven Daughters Of Eve,Bryan Sykes,3.98,0552152188,9780552152181,eng,368,153,14,7/1/2002,Corgi +6994,Dumbing Down Our Kids: Why American Children Feel Good About Themselves But Can't Read Write or Add,Charles J. Sykes,3.71,0312148232,9780312148232,eng,352,169,29,9/15/1996,St. Martin's Griffin +7003,If I Don't Write It Nobody Else Will: An Autobiography,Eric Sykes,3.88,0007177844,9780007177844,eng,512,25,2,5/1/2006,Fourth Estate +7006,Hamlet,William Shakespeare,4.02,1411400429,9781411400429,eng,352,9,2,7/3/2003,SparkNotes +7007,William Shakespeare's A Midsummer Night's Dream (Cliffs Complete),CliffsNotes/Michael McMahon,3.89,0764587250,9780764587252,eng,192,38,3,4/29/2001,Cliffs Notes +7009,A Midsummer Night's Dream,William Shakespeare,3.94,0451526961,9780451526960,eng,162,2167,101,5/1/1998,Signet Book +7010,A Midsummer Night's Dream,William Shakespeare/Amanda Root/Arkangel Cast/Roy Hudd/David Harewood,3.94,1932219242,9781932219241,eng,3,62,6,5/3/2005,AudioGO +7011,A Midsummer Night's Dream,William Shakespeare/Roma Gill/B. Litt,3.94,0198321503,9780198321507,eng,102,126,7,7/28/2005,Oxford University Press USA +7015,A Midsummer Night's Dream,William Shakespeare/Roma Gill,3.94,0198320213,9780198320210,eng,99,14,3,8/15/2002,Oxford University Press USA +7023,The Burning (Guardians of Ga'Hoole #6),Kathryn Lasky/Richard Cowdrey,4.08,0439405629,9780439405621,eng,224,9175,157,11/1/2004,Scholastic Paperbacks +7027,The Siege (Guardians of Ga'Hoole #4),Kathryn Lasky,4.10,0439405602,9780439405607,eng,203,9256,196,5/1/2004,Scholastic Inc. +7034,In the Company of Cheerful Ladies (No. 1 Ladies' Detective Agency #6),Alexander McCall Smith,4.08,140007570X,9781400075706,eng,256,1070,73,3/14/2006,Anchor +7035,Morality for Beautiful Girls (No. 1 Ladies' Detective Agency #3),Alexander McCall Smith,3.98,1400031362,9781400031368,eng,227,33028,1493,11/12/2002,Random House Anchor +7037,In the Company of Cheerful Ladies (No. 1 Ladies' Detective Agency #6),Alexander McCall Smith/Lisette Lecat,4.08,1419311743,9781419311741,eng,10,133,23,3/2/2005,Recorded Books Inc. +7041,The Full Cupboard of Life (No. 1 Ladies' Detective Agency #5),Alexander McCall Smith,4.02,0375422188,9780375422188,eng,198,480,28,4/20/2004,Pantheon Books +7045,The Tale of Genji,Murasaki Shikibu/Edward G. Seidensticker,3.72,0394735307,9780394735306,en-US,1090,317,55,7/12/1978,Alfred A. Knopf +7048,The Tale of Genji,Yoshitaka Amano/Murasaki Shikibu/Rachel Nacth/Anri Itō/Junichi Imura,4.05,1595820639,9781595820631,eng,81,475,37,8/8/2006,Dark Horse Books +7050,The Tale of Genji: Scenes from the World's First Novel (Illustrated Japanese Classics),Murasaki Shikibu/Masayuki Miyata/Jakuchō Seitouchi/Donald Keene/H. Mack Horton/Ayako Watanabe/Michiko Hiraoka,3.74,4770027729,9784770027726,eng,238,46,5,10/26/2001,Kodansha America +7052,Blue Shoes and Happiness (No. 1 Ladies' Detective Agency #7),Alexander McCall Smith,4.06,0375422722,9780375422720,eng,227,386,37,4/18/2006,Pantheon +7053,In the Company of Cheerful Ladies (No. 1 Ladies' Detective Agency #6),Alexander McCall Smith,4.08,0375422714,9780375422713,eng,233,22026,912,4/19/2005,Pantheon +7054,Ein Gentleman für Mma Ramotswe (No. 1 Ladies' Detective Agency #2),Alexander McCall Smith,3.96,3485009024,9783485009027,ger,238,11,3,2/1/2002,Nymphenburger +7055,Ein Koch für Mma Ramotswe (No. 1 Ladies' Detective Agency #3),Alexander McCall Smith,3.98,3485009601,9783485009607,ger,240,2,2,2/1/2003,Nymphenburger +7058,The Good Husband of Zebra Drive (No. 1 Ladies' Detective Agency #8),Alexander McCall Smith,4.07,0375422730,9780375422737,eng,213,20290,974,4/17/2007,Pantheon Books +7061,The No. 1 Ladies' Detective Agency (No. 1 Ladies' Detective Agency #1),Alexander McCall Smith,3.78,1400034779,9781400034772,eng,235,208669,9489,2/6/2003,Anchor Books +7062,Paris to the Moon,Adam Gopnik,3.76,0375758232,9780375758232,eng,368,12356,941,9/11/2001,Random House Trade Paperbacks +7064,The Belly of Paris (Les Rougon-Macquart #3),Émile Zola/Ernest Alfred Vizetelly/Henry Vizetelly,3.91,1557130663,9781557130662,eng,397,8,1,12/1/1995,Sun and Moon Press +7071,My Movie Business: A Memoir,John Irving,3.34,0345441303,9780345441300,eng,222,1113,60,10/10/2000,Ballantine Books +7076,Setting Free the Bears / The Water-Method Man / The 158-Pound Marriage,John Irving,3.83,0517146541,9780517146545,eng,718,304,8,5/21/1995,Wings +7078,The Headmaster's Papers,Richard A. Hawley/John Irving,3.99,0839731949,9780839731948,eng,240,11,4,9/1/2002,Paul S. Eriksson +7086,Blade Runner,Philip K. Dick,4.08,0345323882,9780345323880,eng,216,49,5,7/12/1987,Del Rey +7089,The Android (Animorphs #10),K.A. Applegate/Katherine Applegate,3.77,0590997300,9780590997300,eng,170,3856,119,9/1/1997,Scholastic Inc. +7090,The Soul of a New Machine,Tracy Kidder,4.11,0316491977,9780316491976,eng,293,5480,438,6/1/2000,Back Bay Books +7092,No Better Place to Die: The Battle Of Stones River,Peter Cozzens,4.17,0252062299,9780252062292,eng,282,273,21,7/1/1991,University of Illinois Press +7093,Never Call Retreat,Bruce Catton/E.B. Long,4.33,1842122916,9781842122914,eng,558,1552,33,12/31/2001,Phoenix Press (UK) +7101,The 42nd Parallel (U.S.A. #1),John Dos Passos,3.82,0618056815,9780618056811,eng,326,5290,321,5/25/2000,Mariner Books +7102,U.S.A.: 42e Parallèle/L'An premier du siècle/La Grosse galette,John Dos Passos,4.10,2070766039,9782070766031,eng,1344,9,1,9/4/2002,Gallimard +7103,The Big Money (U.S.A. #3),John Dos Passos/E.L. Doctorow,4.03,0618056831,9780618056835,en-US,464,2090,123,5/25/2000,Mariner Books +7104,1919 (U.S.A. #2),John Dos Passos/E.L. Doctorow,4.00,0618056823,9780618056828,en-US,400,2185,137,5/25/2000,Mariner Books +7113,The King in the Window,Adam Gopnik/Omar Rayyan,3.60,0786838949,9780786838943,en-US,410,805,108,10/15/2006,Miramax Books +7118,The Karamazov Brothers,Fyodor Dostoyevsky/Ignat Avsey,4.32,0192835092,9780192835093,eng,1054,235,26,8/20/1998,Oxford University Press +7119,The Grand Inquisitor: with related chapters from The Brothers Karamazov,Fyodor Dostoyevsky/Constance Garnett/Charles Guignon,4.36,0872201937,9780872201934,eng,128,210,14,10/1/1993,Hackett Publishing Company Inc. +7126,The Count of Monte Cristo,Alexandre Dumas/Robin Buss,4.25,0140449264,9780140449266,eng,1276,647271,14249,5/27/2003,Penguin Classics +7127,The Count of Monte Cristo,Alexandre Dumas/Brantley Johnson/Margaret Brantley,4.25,0743487559,9780743487559,eng,620,193,26,5/1/2004,Simon Schuster +7131,The Count of Monte Cristo,Alexandre Dumas/Lorenzo Carcaterra,4.25,037576030X,9780375760303,eng,1462,9921,586,6/11/2002,Modern Library +7135,The Brothers Karamazov,Fyodor Dostoyevsky/Andrew R. MacAndrew/Konstantin Mochulsky,4.32,0553212168,9780553212167,eng,1072,1022,154,4/1/1984,Bantam Classics +7138,Crime and Punishment,Fyodor Dostoyevsky/Leonard Stanton/James D. Hardy Jr./Sidney Monas/Robin Feuer Miller,4.21,0451530063,9780451530066,en-US,560,2041,183,3/7/2006,Signet +7139,Crime and Punishment in American History,Lawrence M. Friedman,3.86,0465014879,9780465014873,eng,590,112,4,9/9/1994,Basic Books +7140,Crime and Punishment in America,Elliott Currie,3.83,0805060162,9780805060164,eng,240,69,11,10/15/1998,Picador +7141,Cliffsnotes on Dostoevsky's Crime and Punishment,James Lamar Roberts/Fyodor Dostoyevsky/CliffsNotes,3.72,0764586556,9780764586552,eng,128,30,0,11/7/2000,Cliffs Notes +7142,On Crimes and Punishments,Cesare Beccaria/David Young,3.92,0915144999,9780915144990,eng,129,1,0,11/1/1986,Hackett Publishing Company Inc. +7144,Crime and Punishment,Fyodor Dostoyevsky/David McDuff,4.21,0143058142,9780143058144,eng,671,483122,10265,12/31/2002,Penguin +7150,Crime and Punishment (Norton Critical Editions),Fyodor Dostoyevsky/George Gibian/Jessie Coulson,4.21,0393096335,9780393096330,eng,690,34,5,4/1/1964,Norton and Co. +7154,The Politics of Injustice: Crime and Punishment in America,Katherine Beckett/Theodore Sasson,3.87,0761929940,9780761929949,eng,272,37,2,10/16/2003,Sage Publications Inc +7160,The Beginning and the End,Naguib Mahfouz,4.08,0385264585,9780385264587,eng,412,363,41,9/20/1989,Anchor Books +7182,The Black Tulip,Alexandre Dumas/Robin Buss,3.80,0140448926,9780140448924,eng,246,10208,598,4/24/2003,Penguin Classics +7186,La Dame aux Camélias,Alexandre Dumas fils/David Coward,3.99,0192836382,9780192836380,eng,256,15211,411,3/30/2000,Oxford University Press +7188,The Women's War,Alexandre Dumas/Robin Buss,3.93,0140449779,9780140449778,eng,546,292,23,4/27/2006,Penguin Classics +7197,The Knight of Maison-Rouge,Alexandre Dumas/Julie Rose/Lorenzo Carcaterra,3.89,0812969634,9780812969634,eng,448,1172,70,9/14/2004,Modern Library +7199,The Way the Crow Flies,Ann-Marie MacDonald,4.09,0060586370,9780060586379,en-US,848,11330,1011,8/31/2004,Harper Perennial +7201,As the Crow Flies,Jeffrey Archer,4.10,0312997116,9780312997113,eng,800,16264,621,5/16/2004,St. Martin's Paperbacks +7208,Under The Tuscan Sun - At Home In Italy,Frances Mayes,3.75,0767902807,9780767902809,en-US,291,1036,171,8/10/1998,Broadway Books +7214,Blue Like Jazz: Nonreligious Thoughts on Christian Spirituality,Donald Miller,3.90,0785263705,9780785263708,eng,243,96614,3718,7/15/2003,Thomas Nelson +7220,The Secret Life of Bees,Sue Monk Kidd,4.05,0143036408,9780143036401,eng,302,1284,169,10/4/2005,Penguin Books +7230,The Wounded Healer: Ministry in Contemporary Society,Henri J.M. Nouwen,4.26,0232521026,9780232521023,eng,100,8024,317,11/1/1994,Darton Longman & Todd +7231,The Dance of Life: Weaving Sorrows and Blessings Into One Joyful Step,Henri J.M. Nouwen/Michael Ford,4.20,1594710872,9781594710872,eng,219,122,11,4/1/2006,Ave Maria Press +7240,The Prodigal Son (Roger the Chapman #15),Kate Sedley,4.07,0727891626,9780727891624,en-GB,252,102,10,2/1/2007,Severn House Publishers +7244,The Poisonwood Bible,Barbara Kingsolver,4.06,0060786507,9780060786502,eng,546,613758,19846,7/5/2005,Harper Perennial Modern Classics +7246,The Poisonwood Bible,Barbara Kingsolver,4.06,057120175X,9780571201754,eng,616,1390,187,1/10/2000,Faber and Faber +7252,How to Make Love Like a Porn Star: A Cautionary Tale,Jenna Jameson/Neil Strauss,3.76,0060539097,9780060539092,eng,592,10537,806,8/17/2004,It Books +7260,Dominion: The Power of Man the Suffering of Animals and the Call to Mercy,Matthew Scully,4.16,0312319738,9780312319731,eng,448,1171,135,10/8/2003,St. Martin's Griffin +7263,No Dominion (Joe Pitt #2),Charlie Huston,3.99,0345478258,9780345478252,eng,251,4698,202,12/26/2006,Del Rey +7264,Dominion (Ollie Chandler #2),Randy Alcorn,4.22,1590525930,9781590525937,eng,603,4180,104,5/1/2006,Multnomah Books +7266,O Is for Old Dominion: A Virginia Alphabet,Pamela Duncan Edwards/Troy Howell,3.76,1585361615,9781585361618,eng,40,20,5,9/30/2005,Sleeping Bear Press +7268,Dominion,Masamune Shirow,3.75,1569714886,9781569714881,eng,225,298,8,5/2/2000,Dark Horse Manga +7269,Essentials of Conservation Biology,Richard B. Primack,3.92,087893720X,9780878937202,eng,585,37,1,6/21/2007,Sinauer Associates +7271,Marine Conservation Biology: The Science of Maintaining the Sea's Biodiversity,Elliott A. Norse/Larry B. Crowder/Michael E. Soulé,4.59,1559636629,9781559636629,eng,496,16,2,5/9/2005,Island Press +7277,Key Topics in Conservation Biology,David W. Macdonald/Alonzo C. Addison/Sandra Baker/Mark S. Boyce/David Brown/Stephen Cobb/N. Mark Collins/C. Patrick Doncaster/John E. Fa/Joshua Ginsberg/Susanna B. Hecht/Katrina Service/Steve Albon/Les Firbank/Eli Geffen/Lise Albrechtsen/Elizabeth J. Asteraki/Christian Bonacic/Marcel Cardillo/Chris R. Dickman/Stephen A. Ellwood/H. Resit Akcakaya/Ruth E. Feber,3.33,1405122498,9781405122498,en-GB,307,3,0,1/1/2006,Wiley-Blackwell +7286,The Sawtooth Wolves,Jim Dutcher/Eric Baker/Greg Simpson/Richard Ballantine,4.58,0964991500,9780964991507,eng,191,38,2,1/1/1996,Rufus Publications +7304,Rainforest Home Remedies: The Maya Way To Heal Your Body and Replenish Your Soul,Rosita Arvigo/Nadine Epstein,4.13,006251637X,9780062516374,eng,221,66,7,1/9/2001,HarperOne +7315,Zolar's Encyclopedia and Dictionary of Dreams: Fully Revised and Updated for the 21st Century,Zolar,3.68,0743222636,9780743222631,en-US,480,72,4,6/8/2004,Atria Books +7321,The Complete Dream Dictionary,Pamela Ball,3.68,0785812148,9780785812142,eng,390,36,0,4/1/2000,Booksales +7331,Letters from Father Christmas,J.R.R. Tolkien/Baillie Tolkien,4.25,0618512659,9780618512652,eng,111,7043,767,11/15/2004,Mariner Books +7332,The Silmarillion,J.R.R. Tolkien/Christopher Tolkien/Ted Nasmith,3.92,0618391118,9780618391110,eng,386,166136,4750,11/15/2004,Houghton Mifflin Company +7336,J.R.R. Tolkien: A Biography,Humphrey Carpenter,4.08,0618057021,9780618057023,eng,288,9057,312,6/6/2000,Mariner Books +7337,The Tolkien Reader,J.R.R. Tolkien/Peter S. Beagle,3.99,0345345061,9780345345066,eng,251,4200,145,11/12/1986,Del Rey +7338,Tolkien on Film: Essays on Peter Jackson's The Lord of the Rings,Janet Brennan Croft/Mark P. Shea/Amy H. Sturgis,3.79,1887726098,9781887726092,eng,323,39,2,5/9/2005,Mythopoeic Press +7339,The Monsters and the Critics and Other Essays,J.R.R. Tolkien/Christopher Tolkien,3.93,026110263X,9780261102637,eng,240,3441,78,5/2/2006,HarperCollins +7340,The Maps of Tolkien's Middle-earth,Brian Sibley/John Howe/J.R.R. Tolkien,4.14,061839110X,9780618391103,eng,80,7649,31,10/2/2003,Houghton Mifflin Harcourt +7341,The Gospel According to Tolkien: Visions of the Kingdom in Middle-Earth,Ralph C. Wood,4.09,0664226108,9780664226107,eng,169,577,67,10/31/2003,Westminster John Knox Press +7342,The Treason of Isengard: The History of The Lord of the Rings Part Two (The History of Middle-earth #7),J.R.R. Tolkien/Christopher Tolkien,4.17,0261102206,9780261102200,eng,465,102,5,2/4/2002,HarperCollins +7343,Tolkien and the Great War: The Threshold of Middle-earth,John Garth,3.71,0618574816,9780618574810,en-US,398,6230,109,6/1/2005,Mariner Books +7344,Tolkien and C.S. Lewis: The Gift of a Friendship,Colin Duriez,4.01,1587680262,9781587680267,eng,244,1354,53,10/8/2003,Paulist Press +7347,The Book of Lost Tales Part One (The History of Middle-Earth #1),J.R.R. Tolkien/Christopher Tolkien,3.83,0345375211,9780345375216,eng,367,10727,203,6/1/1992,Del Rey/Ballantine Books +7348,Tree and Leaf: Includes Mythopoeia and The Homecoming of Beorhtnoth,J.R.R. Tolkien,4.05,0007105045,9780007105045,eng,150,2357,97,2/5/2001,HarperCollins Publishers Ltd +7351,The Lord of the Rings: The Making of the Movie Trilogy,Brian Sibley/Ian McKellen,4.47,0618260226,9780618260225,eng,192,8051,34,11/6/2002,Mariner Books +7352,Tolkien: A Look Behind The Lord of the Rings,Lin Carter,3.76,0345215508,9780345215505,eng,211,13,0,8/12/1972,Ballantine Books (NY) +7353,The Lord of the Rings (The Lord of the Rings #1-3),J.R.R. Tolkien/Rob Inglis,4.50,1402516274,9781402516276,eng,56,151,16,2/22/2002,Recorded Books Inc. +7360,Midnight in the Garden of Good and Evil,John Berendt,3.92,0679643419,9780679643418,eng,388,983,79,9/27/2005,Modern Library +7361,Tom's Midnight Garden,Philippa Pearce,4.07,0140364544,9780140364545,eng,238,155,10,10/28/1993,Puffin Books +7366,Animals in Translation: Using the Mysteries of Autism to Decode Animal Behavior,Temple Grandin/Catherine Johnson,4.14,0156031442,9780156031448,eng,358,7633,975,1/2/2006,Harcourt +7370,God's Covenant with Animals: A Biblical Basis for the Humane Treatment of All Creatures,J.R. Hyland,4.00,1930051158,9781930051157,eng,128,15,4,6/1/2000,Lantern Books +7375,Lafayette,Harlow Giles Unger,4.37,0471468851,9780471468851,eng,452,660,92,11/1/2003,Wiley (TP) +7388,My Pride and Joy: An Autobiography,George Adamson,4.23,0671624970,9780671624972,en-US,304,134,12,12/31/1987,Simon & Schuster +7389,Runaways Vol. 1: Pride and Joy,Brian K. Vaughan/Adrian Alphona,3.97,0785113797,9780785113799,eng,144,24754,859,12/6/2006,Marvel +7393,Sky's Pride and Joy (Bachelor Gulch #8),Sandra Steffen,3.33,0373194862,9780373194865,eng,192,3,0,11/24/2000,Silhouette Romance +7400,The Baby Emergency (Tennengarrah Clinic #1),Carol Marinelli,3.60,0263181499,9780263181494,eng,285,0,0,6/1/2004,Mills & Boon +7415,The Shaping of America: A Geographical Perspective on 500 Years of History: Volume 2: Continental America 1800-1867,D.W. Meinig,4.19,0300062907,9780300062908,eng,636,26,2,2/22/1995,Yale University Press +7420,The Basic Bakunin,Mikhail Bakunin/Robert M. Cutler,3.77,0879757450,9780879757458,eng,248,100,3,5/1/1992,Prometheus Books +7422,Berlioz: Servitude and Greatness 1832-1869 (Volume 2),David Cairns,4.27,0520240588,9780520240582,en-US,907,3,0,10/1/2003,University of California Press +7430,The Nubian Prince,Juan Bonilla/Esther Allen,3.54,0805077812,9780805077810,en-US,258,61,10,6/27/2006,Metropolitan Books +7432,Pardonable Lies (Maisie Dobbs #3),Jacqueline Winspear,4.09,0312426216,9780312426217,eng,359,23318,1704,6/27/2006,Picador USA +7437,Naked Lunch,William S. Burroughs/James Grauerholz/Barry Miles,3.46,0802140181,9780802140180,eng,289,65998,2497,1/26/2004,Grove Press +7439,Naked Lunch: The Restored Text,William S. Burroughs,3.46,0007204442,9780007204441,eng,289,509,65,5/3/2005,HarperCollins Publishers +7444,The Electric Kool-aid Acid Test/The Kandy Kolored Tangerine Flake Streamline Baby/Radical Chic & Mau Mauing the Flak Catchers,Tom Wolfe,3.97,0965079929,9780965079921,eng,943,299,14,12/1/1990,Quality Paperback Book Club +7445,The Glass Castle,Jeannette Walls,4.27,074324754X,9780743247542,eng,288,808656,46176,1/17/2006,Scribner +7453,Same Sex in the City,Lauren Levin/Lauren Blitzer,3.62,1416916326,9781416916321,eng,250,389,37,6/1/2006,Gallery Books +7454,Sex and the City: Kiss and Tell,Amy Sohn/Sarah Jessica Parker,4.01,0743456815,9780743456814,en-US,160,86,6,10/15/2002,Pocket Books +7477,Human Traces,Sebastian Faulks,3.63,0375502262,9780375502262,en-US,563,39,12,9/30/2006,Random House (NY) +7480,The Girl at the Lion d'Or,Sebastian Faulks,3.58,0375704531,9780375704536,eng,246,4630,272,12/7/1999,Vintage +7482,Human Traces,Sebastian Faulks,3.63,0099458268,9780099458265,eng,793,3541,274,7/6/2006,Vintage +7493,Founding Brothers: The Revolutionary Generation,Joseph J. Ellis,3.93,0375705244,9780375705243,eng,290,37996,1631,2/5/2002,BALLANTINE BOOKS +7494,Suzanne's Diary for Nicholas,James Patterson,4.17,0446611085,9780446611084,eng,289,131662,4267,8/1/2003,Vision +7501,Hitler's Willing Executioners: Ordinary Germans and the Holocaust,Daniel Jonah Goldhagen,3.68,0349107866,9780349107868,en-GB,634,87,7,3/3/1997,Abacus +7503,Hitler's Willinge Vollstrecker: Ganz gewöhlnliche Deutsche und der Holocaust,Daniel Jonah Goldhagen,3.68,344275500X,9783442755004,ger,728,6,1,7/1/1999,Wilhelm Goldmann Verlag GmbH +7505,Beach Girls,Luanne Rice,4.06,0553587242,9780553587241,eng,448,8113,234,8/3/2004,Bantam +7510,The Beach House,James Patterson/Peter de Jonge,3.84,0446612545,9780446612548,eng,356,74386,1674,5/1/2003,Grand Central Publishing +7512,The Beach House (Beach House #1),Mary Alice Monroe,4.20,0778322947,9780778322948,eng,491,10716,1029,4/25/2006,Mira Books +7515,The Beach House,James Patterson/Peter de Jonge,3.84,0316969680,9780316969680,eng,358,717,57,6/10/2002,Little Brown and Company +7520,Path of the Assassin (Scot Harvath #2),Brad Thor,4.17,141651631X,9781416516316,eng,367,15270,485,7/1/2005,Pocket Books +7524,Presidential Assassins (History Makers),Patricia D. Netzley,3.60,1560066237,9781560066231,eng,112,5,1,9/1/1999,Lucent Books +7526,The Blind Side: Evolution of a Game,Michael Lewis,4.18,039306123X,9780393061239,eng,304,24677,1924,9/17/2006,W. W. Norton Company +7527,The Blind Watchmaker,Richard Dawkins,4.08,0393315703,9780393315707,eng,468,1093,77,9/17/1996,W. W. Norton Company +7529,I Love Everybody (and Other Atrocious Lies),Laurie Notaro,3.97,0812969006,9780812969009,en-US,228,9648,587,6/8/2004,Villard Books +7530,Autobiography of a Fat Bride: True Tales of a Pretend Adulthood,Laurie Notaro,3.98,037576092X,9780375760921,en-US,257,8009,455,7/8/2003,Villard +7531,The Idiot Girls' Action-Adventure Club: True Tales from a Magnificent and Clumsy Life,Laurie Notaro,3.88,0375760911,9780375760914,en-GB,225,16133,1099,7/2/2002,Villard +7533,We Thought You Would Be Prettier: True Tales of the Dorkiest Girl Alive,Laurie Notaro,3.92,0812969014,9780812969016,eng,223,10040,439,4/19/2005,Villard +7534,There's a (Slight) Chance I Might Be Going to Hell: A Novel of Sewer Pipes Pageant Queens and Big Trouble,Laurie Notaro,3.55,1400065011,9781400065011,eng,320,36,8,5/29/2007,Villard +7536,Anleitung zum Zickigsein,Laurie Notaro,3.88,3404149475,9783404149476,ger,254,2,1,8/1/2003,Lübbe +7543,The Psychology of Winning,Denis Waitley,4.21,0425099997,9780425099995,eng,176,1332,64,10/15/1986,Berkley +7549,Jimmy Corrigan: El Chico más Listo del Mundo,Chris Ware,4.09,1594972079,9781594972072,spa,380,12,1,7/25/2006,Public Square Books +7551,The Acme Novelty Library #17,Chris Ware,4.35,1897299028,9781897299029,eng,64,772,21,11/28/2006,Drawn and Quarterly +7552,The Acme Novelty Library,Chris Ware,4.31,0375422951,9780375422959,en-US,108,2786,77,9/20/2005,Pantheon Books +7554,The Acme Novelty Datebook Vol. 1 1986-1995,Chris Ware,4.17,1896597661,9781896597669,eng,208,504,23,11/26/2013,Drawn and Quarterly +7556,Quimby The Mouse,Chris Ware,4.09,022407265X,9780224072656,en-US,69,1411,32,11/20/2003,Jonathan Cape +7559,Candide: or Optimism,Voltaire/Chris Ware/Theo Cuffe/Michael Wood,3.77,0143039423,9780143039426,eng,155,1929,193,10/25/2005,Penguin Group +7572,Even Cowgirls Get the Blues,Tom Robbins,3.76,1842430246,9781842430248,eng,366,44664,1483,10/11/2001,No Exit Press +7577,Even Cowgirls Get the Blues & My Own Private Idaho,Gus Van Sant/Tom Robbins,3.76,0571169201,9780571169207,eng,199,97,2,2/21/1994,Faber Faber +7579,Awakening the Buddha Within: Eight Steps to Enlightenment,Surya Das,4.19,0767901576,9780767901574,en-US,432,12034,285,6/15/1998,Harmony +7580,Iran Awakening: A Memoir of Revolution and Hope,Shirin Ebadi,4.14,1400064708,9781400064700,eng,232,3187,267,5/2/2006,Random House (NY) +7581,The Book of Awakening: Having the Life You Want by Being Present to the Life You Have,Mark Nepo,4.31,1573241172,0645241001173,eng,438,5495,295,5/31/2000,Conari Press +7582,Awakening Intuition: Using Your Mind-Body Network for Insight and Healing,Mona Lisa Schulz/Christiane Northrup,3.93,0609804243,9780609804247,eng,397,317,32,4/20/1999,Three Rivers Press +7584,The Grace Awakening: Believing in Grace Is One Thing. Living it Is Another,Charles R. Swindoll,4.33,0849911885,9780849911880,eng,306,2068,63,11/19/2006,Thomas Nelson +7585,Spring's Awakening,Frank Wedekind/Eric Bentley,3.80,1557832455,9781557832450,eng,126,3378,137,4/1/2000,Applause Books +7586,Awakening at Midlife: A Guide to Reviving Your Spirit Recreating Your Life and Returning to Your Truest Self,Kathleen A. Brehony,3.99,1573226327,9781573226325,en-US,384,64,8,9/1/1997,Riverhead Books +7588,A Portrait of the Artist as a Young Man,James Joyce/Seamus Deane,3.61,0142437344,9780142437346,eng,329,108179,3536,3/25/2003,Penguin Classics +7590,A Portrait of the Artist As a Young Man,James Joyce/Walter Hettche/Hans Walter Gabler/John Paul Riquelme/John Mitchel/Michael Davitt/Canon Doyle/Pádraic Pearse/Ignatius of Loyola/Giovanni Pietro Pinamont/Walter Pater/Oscar Wilde/Douglas Hyde/Kenneth Burke/Umberto Eco/Hugh Kenner/Hélène Cixous/Karen Lawrence/Maud Ellmann/Bonnie Kime Scott/Joseph Valente/Marian Eide/Pericles Lewis/Jonathan Mulrooney/J.M. Synge,3.61,0393926796,9780393926798,eng,490,359,35,5/1/2007,W. W. Norton & Company +7591,A Portrait of the Artist as a Young Man,James Joyce/Jim Norton,3.61,9626343664,9789626343661,eng,368,27,8,8/1/2005,Naxos Audiobooks +7592,A Portrait of the Artist as a Young Man,James Joyce/Langdon Hammer,3.61,0451530152,9780451530158,eng,256,419,46,6/6/2006,Signet Classics +7596,Vincent Van Gogh: Portrait of an Artist,Jan Greenberg/Sandra Jordan,3.94,0440419174,9780440419174,eng,144,220,38,1/14/2003,Yearling +7598,A Study Guide to Gabriel Garcia Marquez' One Hundred Years of Solitude,Gabriel García Márquez/Brenda K. Marshall/F. Murray Abraham,4.11,1570421129,9781570421129,eng,0,75,2,4/1/2006,Warner Adult +7599,One Hundred Years of Solitude,Gabriel García Márquez/Gregory Rabassa,4.07,006112009X,9780061120091,eng,448,1608,212,5/30/2006,Harper Perennial Modern Classics +7600,One Hundred Years Of Solitude,Gabriel García Márquez,4.07,1857152239,9781857152234,eng,416,376,53,9/21/1995,Everyman +7603,Reading Lolita in Tehran: A Memoir in Books,Azar Nafisi,3.61,081297106X,9780812971064,eng,356,106493,6561,12/30/2003,Random House Trade Paperbacks +7606,The Annotated Lolita,Vladimir Nabokov/Alfred Appel,4.28,0679727299,9780679727293,eng,457,2965,358,4/23/1991,Vintage Books +7608,Lolita,Vladimir Nabokov/Jeremy Irons,3.89,0739322060,9780739322062,eng,12,787,239,4/26/2005,Random House Audio +7609,Nacho and Lolita,Pam Muñoz Ryan/Claudia Rueda,3.97,0439269687,9780439269681,eng,40,34,5,10/1/2005,Scholastic Press +7610,Reading Lolita in Tehran,Azar Nafisi,3.61,0007178484,9780007178483,eng,343,325,56,1/2/2004,Fourth Estate +7611,sex.lies.murder.fame.,Lolita Files,3.79,0060786809,9780060786809,eng,368,205,27,1/10/2006,Amistad +7613,Animal Farm,George Orwell/Boris Grabnar/Peter Škerl,3.93,0452284244,9780452284241,eng,122,2111750,29677,5/6/2003,NAL +7615,Farm Animals (A Chunky Book),Phoebe Dunn,3.86,0394862546,9780394862545,eng,28,35,4,2/12/1984,Random House Books for Young Readers +7624,Lord of the Flies,William Golding,3.68,0140283331,9780140283334,eng,182,2036679,26199,10/1/1999,Penguin Books +7633,Good Soldier Svejk And His Fortunes In The World,Jaroslav Hašek,4.11,0141184280,9780141184289,eng,752,91,10,10/3/2000,Penguin Classic +7637,The Good Soldier,Ford Madox Ford/Frank Kermode,3.72,1593082681,9781593082680,eng,256,264,35,3/28/2005,Barnes Noble Classics +7656,Fahrenheit 451,Ray Bradbury,3.99,8445074873,9788445074879,eng,186,5733,606,4/1/2004,Del Rey +7661,Next,Michael Crichton,3.50,0060872985,9780060872984,eng,431,59354,2540,11/28/2006,Harper +7662,Three Complete Novels: The Andromeda Strain / The Terminal Man / The Great Train Robbery,Michael Crichton,4.06,0517084791,9780517084793,eng,688,1004,31,3/1/1993,Wings +7663,A Case of Need,Jeffery Hudson/Michael Crichton,3.72,0451210638,9780451210630,eng,416,17135,654,8/5/2003,Signet +7664,A New Collection of Three Complete Novels: Congo / Sphere / Eaters of the Dead,Michael Crichton,3.99,0517101351,9780517101353,eng,720,960,27,3/6/1994,Wings Books +7665,Travels,Michael Crichton,3.95,0060509058,9780060509057,eng,400,7084,514,11/5/2002,Harpperen +7668,Rising Sun,Michael Crichton,3.63,0606298231,9780606298230,eng,399,42645,717,8/30/2004,Turtleback Books +7670,The Andromeda Strain (Andromeda #1),Michael Crichton,3.89,0060541814,9780060541811,eng,327,202043,2850,10/28/2003,Avon Books +7672,Congo,Michael Crichton,3.59,0060541830,9780060541835,eng,442,144636,1546,10/28/2003,Avon Books +7673,Eaters of the Dead,Michael Crichton,3.67,0060891564,9780060891565,eng,304,28367,1096,8/29/2006,Avon +7674,The Michael Crichton Collection: Airframe / The Lost World / Timeline,Michael Crichton/Stephen Lang/Anthony Heald/Blair Brown,4.16,0739340336,9780739340332,en-GB,0,267,7,8/29/2006,Random House Audio +7677,Jurassic Park (Jurassic Park #1),Michael Crichton,4.02,030734813X,9780307348135,spa,480,451443,3647,4/4/2006,Plaza y Janes +7679,The Terminal Man,Michael Crichton,3.36,0060092572,9780060092573,eng,266,21457,576,11/5/2002,Avon +7681,Five Patients,Michael Crichton,3.48,0345354648,9780345354648,eng,204,4828,97,1/13/1989,Ballantine Books +7684,Twister,Michael Crichton/Anne-Marie Martin,3.63,0345409701,9780345409706,eng,182,18,1,4/7/1999,Ballantine Books +7687,Peter Pan and Other Plays,J.M. Barrie/Peter Hollindale,3.97,0192839195,9780192839190,eng,384,366,21,7/15/1999,Oxford University Press +7694,Management Information Systems: Managing the Digital Firm,Kenneth C. Laudon/Jane P. Laudon,3.50,0131538411,9780131538412,en-US,736,231,16,3/1/2005,Prentice Hall +7695,Holy the Firm,Annie Dillard,4.22,0060915439,9780060915438,eng,76,3722,339,12/30/1998,Harper Perennial +7697,Persian Mirrors: The Elusive Face of Iran,Elaine Sciolino,3.82,0743284798,9780743284790,eng,432,546,53,10/3/2005,Free Press +7700,Plays: Mrs Warren's Profession/Man and Superman/Major Barbara/Pygmalion,George Bernard Shaw/Sandie Byrne,3.94,0393977536,9780393977530,eng,551,125,6,5/16/2002,W.W. Norton & Company +7707,Pygmalion & My Fair Lady,George Bernard Shaw/Alan Jay Lerner,4.26,0451530098,9780451530097,eng,240,14962,61,3/7/2006,Signet +7708,Saint Joan/Major Barbara/Androcles and the Lion,George Bernard Shaw,3.67,0394604806,9780394604800,eng,479,11,5,11/12/1979,Modern Library/Random House (NY) +7714,Pygmalion,George Bernard Shaw,3.90,0486282228,9780486282220,eng,82,76944,1636,10/20/1994,Dover Publications +7716,Plays Pleasant,George Bernard Shaw/Dan H. Laurence/W.J. McCormack,3.90,0140437940,9780140437942,eng,336,265,10,3/27/2003,Penguin Classics +7717,The Metamorphosis,Peter Kuper/Franz Kafka/Kerstin Hasenpusch,3.79,1400047951,9781400047956,eng,78,181,26,8/5/2003,Crown +7718,The Metamorphosis (Graphic Novel Adaptation),Peter Kuper/Franz Kafka/Kerstin Hasenpusch,3.79,1400052998,9781400052998,eng,80,3192,307,7/20/2004,Broadway Books +7721,The Metamorphosis,Franz Kafka/Stanley Corngold,3.81,0393967972,9780393967975,eng,232,663,48,2/17/1996,W. W. Norton & Company +7723,The Metamorphosis and Other Stories,Franz Kafka/Jason Baker/Donna Freed,4.03,1593080298,9781593080297,eng,224,38114,793,7/1/2003,Barnes Noble Classics +7724,The Metamorphosis and Other Stories,Franz Kafka/Stanley Appelbaum,4.03,0486290301,9780486290300,eng,88,2474,126,4/12/1996,Dover Publications +7731,Antigone's Claim: Kinship Between Life and Death,Judith Butler,3.76,0231118953,9780231118958,en-US,118,433,20,5/23/2002,Columbia University Press +7733,Gulliver's Travels,Jonathan Swift/Robert DeMaria Jr.,3.57,0141439491,9780141439495,eng,306,194738,3485,1/30/2003,Penguin +7734,Gulliver's Travels,Jonathan Swift/Claude Julien Rawson/Ian Higgins,3.57,0192805347,9780192805348,eng,422,258,21,3/10/2005,Oxford University Press +7737,Gulliver's Travels,Jonathan Swift/David Case,3.57,1400102723,9781400102723,eng,0,4,1,10/1/2006,Tantor Media +7739,Gulliver's Travels,Gill Harvey/Jonathan Swift,3.35,0794503292,9780794503291,eng,64,13,3,1/29/2008,Usborne Books +7740,Gulliver's Travels,Martin Woodside/Jamel Akib/Arthur Pober/Jonathan Swift,3.97,1402726627,9781402726620,eng,160,933,26,3/28/2006,Sterling +7741,Gulliver's Travels,Jonathan Swift/Robert Hardy,3.57,1844560341,9781844560349,eng,3,8,0,1/1/2001,Hodder Audio +7742,Ahab's Wife or The Star-Gazer,Sena Jeter Naslund,4.03,0060838744,9780060838744,eng,704,40049,2391,8/2/2005,William Morrow Paperbacks +7747,Fear and Loathing in Las Vegas,Hunter S. Thompson/Ralph Steadman,4.08,0007204493,9780007204496,eng,230,3472,251,4/4/2005,Harper Perennial +7748,Fear and Loathing on the Campaign Trail '72,Hunter S. Thompson,4.12,0446698229,9780446698221,eng,481,17227,662,10/1/2006,Warner Books (NY) +7749,Fear and Loathing in Las Vegas,Hunter S. Thompson/Ralph Steadman,4.08,0446313939,9780446313933,eng,208,274,28,12/1/1982,Warner Books +7752,Fear and Loathing in America: The Brutal Odyssey of an Outlaw Journalist 1968-1976,Hunter S. Thompson,4.08,0684873168,9780684873169,eng,784,3787,84,12/4/2001,Simon Schuster +7757,Cliffsnotes on Beckett's Waiting for Godot and Other Plays,James Lamar Roberts/Jeffrey Fisher,3.67,0822013541,9780822013549,eng,72,3,0,7/28/1980,Cliffs Notes +7763,The Joy Luck Club,Amy Tan,3.92,0143038095,9780143038092,eng,288,565524,7255,9/21/2006,Penguin Books +7769,Dr. Seuss's ABC,Dr. Seuss,4.08,0679882812,9780679882817,eng,21,27139,731,11/26/1996,Random House +7772,Dr. Seuss's Sleep Book,Dr. Seuss,4.17,0394800915,9780394800912,eng,58,8967,351,7/24/2012,New York: Random House +7775,Happy Birthday to You!,Dr. Seuss,4.13,0394800761,9780394800769,eng,64,4344,262,8/12/1959,Random House Books for Young Readers +7777,McElligot's Pool,Dr. Seuss,4.06,0394800834,9780394800837,eng,64,4560,253,9/12/1947,Random House Books for Young Readers +7778,The Cat in the Hat,Dr. Seuss,4.17,0679891110,9780679891116,eng,61,289,4,11/11/1997,Random House Books for Young Readers +7779,Horton Hears a Who!,Dr. Seuss,4.18,0679800034,9780679800033,eng,64,89920,1207,10/10/1990,Random House Books for Young Readers +7781,The 500 Hats of Bartholomew Cubbins,Dr. Seuss,4.04,039484484X,9780394844848,eng,56,13097,324,12/9/1989,Random House Books for Young Readers +7783,Oh Say Can You Say?,Dr. Seuss,4.01,0007175221,9780007175222,eng,36,5868,162,11/1/2005,London : Collins 2004. +7784,The Lorax,Dr. Seuss,4.35,0679889108,9780679889106,eng,72,260054,3532,2/24/1998,Random House Books for Young Readers +7785,I Can Read With My Eyes Shut!,Dr. Seuss,4.20,0007158513,9780007158515,eng,48,16917,444,5/6/2003,HarperCollinsChildren’sBooks +7786,¡Horton escucha a quién!,Dr. Seuss/Yanitzia Canetti,4.18,1930332351,9781930332355,spa,64,29,4,3/1/2003,Lectorum Publications +7788,The Cat in the Hat and Other Dr. Seuss Favorites,Dr. Seuss/Various,4.42,0807218731,9780807218730,eng,61,50844,160,10/14/2003,Listening Library (Audio) +7789,Daisy-Head Mayzie,Dr. Seuss,3.87,0679867120,9780679867128,eng,56,3196,137,1/11/1995,Random House Books for Young Readers +7791,Dr. Seuss Goes to War: The World War II Editorial Cartoons of Theodor Seuss Geisel,Richard H. Minear/Art Spiegelman/Dr. Seuss,4.16,1565847040,9781565847040,eng,272,1282,102,9/1/2001,The New Press +7793,Dr. Seuss's ABC (Book & CD),Dr. Seuss,4.08,0375834966,9780375834967,eng,64,8,0,1/5/2005,Random House Books for Young Readers +7796,Cattus Petasatus: The Cat in the Hat in Latin,Dr. Seuss/Jennifer Morrish Tunberg/Terence Tunberg/Terence O. Tunberg/Guenevera Tunberg/Terentio Tunberg,4.17,0865164711,9780865164710,lat,75,63,9,5/6/2005,Bolchazy-Carducci Publishers +7797,Ten Apples Up On Top!,Theo LeSieg/Dr. Seuss/Roy McKie,4.12,0007169973,9780007169979,eng,62,31251,494,8/4/2003,HarperCollinsChildren’sBooks +7803,The Legacy of Luna: The Story of a Tree a Woman and the Struggle to Save the Redwoods,Julia Butterfly Hill,3.95,0062516590,9780062516596,eng,262,1844,220,4/3/2001,HarperOne +7805,Pale Fire,Vladimir Nabokov,4.15,0141185260,9780141185262,eng,246,32544,1610,8/31/2000,Penguin Books Ltd +7806,Nabokov's Pale Fire: The Magic of Artistic Discovery,Brian Boyd,4.22,0691089574,9780691089577,eng,320,172,22,11/4/2001,Princeton University Press +7807,Novels 1955–1962: Lolita / Pnin / Pale Fire / Lolita: A Screenplay,Vladimir Nabokov/Brian Boyd,4.41,1883011191,9781883011192,eng,916,547,39,10/1/1996,Library of America +7811,A Friend of the Earth,T. Coraghessan Boyle,3.67,0747553467,9780747553465,eng,275,30,3,10/8/2001,Bloomsbury Paperbacks +7815,The Year of Magical Thinking,Joan Didion,3.89,1400078431,9781400078431,eng,227,120758,8711,2/13/2007,Vintage +7821,Seduction and Betrayal: Women and Literature,Elizabeth Hardwick/Joan Didion,4.01,0940322781,9780940322783,eng,224,269,26,8/31/2001,NYRB Classics +7830,After Henry,Joan Didion,3.83,0679745394,9780679745396,eng,320,1205,100,4/27/1993,Vintage +7838,O Ano do Pensamento Mágico,Joan Didion,3.89,8520918867,9788520918869,por,224,82,9,5/24/2006,Nova Fronteira +7841,Another Day in Paradise: The Fourth Sherman's Lagoon Collection,Jim Toomey,4.35,0740720120,9780740720123,eng,130,68,1,9/6/2001,Andrews McMeel Publishing +7842,Another Day in Cubicle Paradise,Scott Adams,4.01,0740721941,9780740721946,eng,128,416,11,3/1/2002,Andrews McMeel Publishing +7845,Moby Dick,Herman Melville,3.50,0140620621,9780140620627,eng,536,701,78,1/1/1994,Penguin Books/Penguin Popular Classics +7847,Moby-Dick,Herman Melville/Nathaniel Philbrick,3.50,0142000086,9780142000083,en-US,625,1022,165,9/1/2001,Penguin Books +7848,Moby-Dick; or The Whale,Herman Melville/Rockwell Kent/Elizabeth Hardwick,3.50,067978327X,9780679783275,eng,896,557,87,10/10/2000,Modern Library +7849,Moby Dick or The Whale,Herman Melville/Harrison Hayford/Hershel Parker,3.50,0810119110,9780810119116,en-US,573,106,19,9/19/2001,Northwestern University Press +7850,The Girl in the Flammable Skirt,Aimee Bender,3.88,0385492162,9780385492164,eng,192,6591,661,8/17/1999,Anchor +7855,Planet of Slums,Mike Davis,3.92,1844670228,9781844670222,eng,228,1727,173,3/1/2006,Verso +7859,Late Victorian Holocausts: El Niño Famines and the Making of the Third World,Mike Davis,4.11,1859843824,9781859843826,eng,474,1021,101,6/17/2002,Verso +7861,No One Is Illegal: Fighting Racism and State Violence on the U.S.-Mexico Border,Justin Akers Chacón/Mike Davis,4.08,1931859353,9781931859356,eng,240,237,22,4/1/2006,Haymarket Books +7865,Days Between Stations,Steve Erickson,4.00,0743265696,9780743265690,eng,256,709,49,2/9/2005,Simon & Schuster +7869,The Bourne Identity (Jason Bourne #1),Robert Ludlum,4.02,0752864327,9780752864327,eng,566,368195,3556,3/24/2005,Orion +7881,Little Plum,Rumer Godden/Jean Primrose,4.22,0140307370,9780140307375,eng,144,11,1,8/1/1987,Puffin Books +7890,Betsy's Wedding (Betsy-Tacy #10),Maud Hart Lovelace/Vera Neville,4.31,0064405443,9780064405447,en-US,260,4169,155,3/31/1996,HarperTrophy +7891,Betsy and the Great World (Betsy-Tacy #9),Maud Hart Lovelace/Vera Neville,4.14,0064405451,9780064405454,eng,321,4747,148,3/31/1996,HarperTrophy +7894,Betsy and Tacy Go Over the Big Hill (Betsy-Tacy #3),Maud Hart Lovelace/Lois Lenski,4.18,0064400999,9780064400992,en-US,192,7809,186,4/5/2000,HarperCollins +7895,Maud Hart Lovelace's Deep Valley: A Guidebook of Mankato Places in the Betsy-Tacy Series,Julie A. Schrader,4.29,0971316821,9780971316829,eng,325,58,8,12/31/2002,Minnesota Heritage Publishing +7896,Early Candlelight,Maud Hart Lovelace/Rhoda R. Gilman,3.69,0873512693,9780873512695,eng,342,184,30,8/15/1992,Minnesota Historical Society Press +7898,Betsy and Joe (Betsy-Tacy #8),Maud Hart Lovelace/Vera Neville,4.31,006440546X,9780064405461,eng,336,4586,119,3/31/1995,HarperTrophy +7901,Betsy Was a Junior (Betsy-Tacy #7),Maud Hart Lovelace/Vera Neville,4.17,0064405478,9780064405478,en-US,320,4839,126,3/31/1995,HarperTrophy +7905,Betsy and Tacy Go Downtown (Betsy-Tacy #4),Maud Hart Lovelace/Lois Lenski,4.21,0690134495,9780690134490,eng,180,70,7,1/1/1943,Thomas Y. Crowell Company +7906,Emily of Deep Valley (Deep Valley #2),Maud Hart Lovelace/Vera Neville,4.23,0064408582,9780064408585,eng,304,2722,151,12/31/2000,HarperTrophy +7909,Betsy-Tacy (Betsy-Tacy #1),Maud Hart Lovelace/Lois Lenski,4.07,0064400964,9780064400961,en-US,144,20976,935,8/14/2007,HarperCollins +7911,Five Little Peppers and How They Grew (Five Little Peppers #1),Margaret Sidney,4.03,1416916172,9781416916178,eng,352,22023,395,6/1/2006,Aladdin +7914,Five Little Peppers at School,Margaret Sidney/Barbara Cooney,3.92,044040035X,9780440400356,eng,320,243,7,1/1/1988,Yearling +7924,All-of-a-Kind Family Uptown (All-of-a-Kind-Family #4),Sydney Taylor,4.28,0929093097,9780929093093,eng,160,5702,65,4/1/2001,Taylor Productions Ltd +7926,All-of-a-Kind Family (All-of-a-Kind-Family #1),Sydney Taylor,4.22,0385732953,9780385732956,eng,188,21620,836,8/23/2005,Delacorte Press +7938,Winter Cottage,Carol Ryrie Brink,4.15,0020419708,9780020419709,eng,178,182,37,6/1/1974,Atheneum +7946,Eddie's Valuable Property,Carolyn Haywood,4.09,0688320147,9780688320140,eng,192,43,3,3/1/1975,William Morrow & Company +7955,Empire (Empire #1),Orson Scott Card,3.43,0765316110,9780765316110,en-US,352,8577,756,11/28/2006,Tor Books +7956,Treason,Orson Scott Card,3.90,0765309041,9780765309044,eng,288,6234,337,1/24/2006,Orb Books +7957,First Meetings in Ender's Universe (Ender's Saga #0.5),Orson Scott Card,3.84,0765347989,9780765347985,eng,212,10475,496,9/1/2004,Tor +7958,Sarah (Women of Genesis #1),Orson Scott Card,3.88,0765341174,9780765341174,eng,341,9828,1004,9/17/2001,Forge +7959,Rachel & Leah (Women of Genesis #3),Orson Scott Card,3.85,0765341298,9780765341297,en-GB,368,5618,514,11/29/2005,Forge Books +7960,How to Write Science Fiction and Fantasy,Orson Scott Card,3.90,0898794161,9780898794168,eng,140,475,66,7/15/1990,F & W Publications Inc. +7961,Saints,Orson Scott Card,3.54,0312876068,9780312876067,eng,608,2436,268,3/14/2001,Forge Books +7965,Homebody,Orson Scott Card,3.39,0061093998,9780061093999,eng,430,2707,167,1/25/1999,HarperTorch +7966,Rebekah (Women of Genesis #2),Orson Scott Card,3.84,076534128X,9780765341280,eng,416,7487,617,3/27/2012,Forge +7967,Speaker for the Dead (Ender's Saga #2),Orson Scott Card,4.07,0812550757,9780812550757,eng,382,190379,6637,8/15/1994,Tor Books +7968,Red Prophet (Tales of Alvin Maker #2),Orson Scott Card,3.79,0812524268,9780812524260,en-US,311,18228,427,7/15/1992,Tor Fantasy +7971,The Call of Earth (Homecoming #2),Orson Scott Card,3.58,0812532619,9780812532616,eng,352,10268,164,1/15/1994,Tor Books +7972,Shadow of the Hegemon (Shadow #2),Orson Scott Card/David Birney/Scott Brick/Gabrielle de Cuir/Scott Sowers,3.95,1593974809,9781593974800,eng,13,109,19,9/5/2006,Macmillan Audio +7973,Enchantment,Orson Scott Card,3.90,0345482409,9780345482402,eng,422,23534,2199,5/31/2005,Del Rey +7974,Voyage of Slaves (Flying Dutchman #3),Brian Jacques/David Elliot,4.13,0399245499,9780399245497,en-US,356,2288,69,9/14/2006,Philomel Books +7975,High Rhulain (Redwall #18),Brian Jacques/David Elliot,4.12,0399242082,9780399242083,eng,341,134,11,9/22/2005,Philomel Books +7983,Salamandastron (Redwall #5),Brian Jacques/Gary Chalk,4.07,0142501522,9780142501528,en-US,400,26237,240,9/15/2003,Firebird +7987,The Legend of Luke (Redwall #12),Brian Jacques,4.00,0142501093,9780142501092,eng,374,14205,144,6/2/2005,Firebird +7996,Redwall (Redwall #1),Brian Jacques,4.12,1862301387,9781862301382,eng,352,88167,2604,9/4/2006,Red Fox +7997,Castaways of the Flying Dutchman (Flying Dutchman #1),Brian Jacques/Ian Schoenherr,3.98,0142501182,9780142501184,eng,356,8025,261,3/31/2003,Firebird +7998,Outcast of Redwall (Redwall #8),Brian Jacques,3.92,0142401420,9780142401422,en-US,368,17597,188,5/24/2004,Firebird +8001,Triss (Redwall #15),Brian Jacques/Allan Curless,3.99,0142402486,9780142402481,eng,389,10830,119,9/9/2004,Firebird +8004,A Redwall Winter's Tale,Brian Jacques/Christopher Denise,4.13,0142401986,9780142401989,en-US,72,2353,43,10/21/2004,Puffin +8012,Mr. Impossible,Roger Hargreaves,3.95,084317420X,9780843174205,eng,32,614,29,8/24/1998,Price Stern Sloan +8013,Mr. Christmas,Roger Hargreaves/Adam Hargreaves,3.65,0843121106,9780843121100,eng,40,202,17,9/14/2006,Price Stern Sloan +8014,Mr. Bump,Roger Hargreaves,4.03,0843178388,9780843178388,eng,32,1701,74,3/23/1998,Price Stern Sloan +8019,Little Miss Birthday,Roger Hargreaves/Adam Hargreaves,4.02,0843121319,9780843121315,eng,32,207,11,1/11/2007,Price Stern Sloan +8021,Little Miss Lucky,Roger Hargreaves,3.82,0843175044,9780843175042,eng,32,291,21,11/22/1999,Price Stern Sloan +8023,Mr. Happy,Roger Hargreaves,3.98,1405211997,9781405211994,eng,36,1,0,4/30/2004,Egmont Children's Books +8032,Mr. Jelly and the Pirates,Roger Hargreaves/Adam Hargreaves,3.82,084312492X,9780843124927,eng,32,87,12,5/10/2007,Price Stern Sloan +8044,Grandma Baa (Easy Peasy People),Roger Hargreaves/Gray Jolliffe,4.12,0679801243,9780679801245,eng,32,6,0,10/14/1989,Random House for Young Readers +8048,Bill Buzz,Roger Hargreaves/Gray Jolliffe,4.67,0679801154,9780679801153,eng,32,2,0,10/14/1989,Random House for Young Readers +8051,Gary Grizzle,Roger Hargreaves/Gray Jolliffe,4.33,0679801251,9780679801252,eng,32,3,0,10/14/1989,Random House for Young Readers +8053,Charlie Oink,Roger Hargreaves/Gray Jolliffe,4.33,067980126X,9780679801269,eng,32,3,0,10/14/1989,Random House for Young Readers +8060,Madame Je-Sais-Tout,Roger Hargreaves,3.77,2010189140,9782010189142,fre,36,1,0,5/31/1997,Hachette +8062,The Poppy Seed Cakes,Margery Clark/Maud Petersham/Miska Petersham,4.37,0385074573,9780385074575,eng,158,57,9,10/1/1964,Doubleday Books +8073,Cloudy With a Chance of Meatballs (Cloudy with a Chance of Meatballs #1),Judi Barrett/Ron Barrett,4.16,0689707495,9780689707490,eng,32,124141,2038,4/1/1982,Atheneum Books for Young Readers +8074,The Wind Thief,Judi Barrett/Diane Dawson Hearn,3.80,0689305648,9780689305641,eng,32,4,1,1/1/1977,Atheneum Books +8077,Animales No Se Visten Los (Animals Should Definitely Not Wear Clothing) with CD,Judi Barrett/Ron Barrett,4.11,1595191356,9781595191359,eng,32,0,0,10/30/1991,Live Oak Media +8084,Beauty,Robin McKinley,4.05,0060753102,9780060753108,eng,325,3258,478,7/26/2005,HarperCollins +8086,A Robin McKinley Collection: Spindle's End The Hero and the Crown and The Blue Sword (Folktales #1-3),Robin McKinley,4.39,0142302333,9780142302330,eng,1008,527,12,9/16/2002,Puffin +8087,Deerskin,Robin McKinley,3.89,0441012396,9780441012398,en-US,384,17485,1021,5/1/2005,Ace Books +8088,Sunshine,Robin McKinley,3.85,0515138819,9780515138818,eng,405,31047,3519,11/30/2004,Jove +8089,Rose Daughter,Robin McKinley,3.77,0441005837,9780441005833,eng,304,17168,997,12/1/1998,Ace +8091,The Door in the Hedge,Robin McKinley,3.68,0698119606,9780698119604,eng,224,7941,419,10/13/2003,Firebird +8093,The Stone Fey,Robin McKinley/John Clapp,3.36,0152000178,9780152000172,eng,64,1036,78,9/1/1998,HMH Books for Young Readers +8127,Anne of Green Gables (Anne of Green Gables #1),L.M. Montgomery,4.25,0451528824,9780451528827,eng,320,625759,13883,5/6/2003,Signet Book +8134,Anne of Green Gables,L.M. Montgomery/Barbara Caruso,4.25,1419326961,9781419326967,en-US,9,69,17,1/1/2005,Recorded Books Inc. +8137,The Road to Yesterday (Anne of Green Gables #9),L.M. Montgomery,3.84,0553560689,9780553560688,eng,403,3106,115,2/1/1993,Bantam Books +8141,Anne of Avonlea,L.M. Montgomery/Clare Sieffert,4.23,0448400634,9780448400631,eng,315,85,12,11/1/1990,Grosset & Dunlap +8146,The Stories of Vladimir Nabokov,Vladimir Nabokov,4.30,0679729976,9780679729976,eng,685,5889,183,12/9/1996,Vintage +8147,The Gift,Vladimir Nabokov/Michael Scammell/Dmitri Nabokov,4.00,0141185872,9780141185873,eng,406,2334,109,4/5/2001,Penguin Books +8148,Lectures on Literature,Vladimir Nabokov/Fredson Bowers/John Updike,4.34,0156027755,9780156027755,eng,385,1606,83,12/16/2002,Mariner Books +8149,Novels & Memoirs 1941–1951: The Real Life of Sebastian Knight / Bend Sinister / Speak Memory,Vladimir Nabokov/Brian Boyd,4.36,1883011183,9781883011185,eng,734,119,10,10/1/1996,Library of America +8150,The American Years,Brian Boyd,4.33,0691024715,9780691024714,eng,800,256,22,1/31/1993,Princeton University Press +8151,Laughter in the Dark,Vladimir Nabokov,3.97,0811216748,9780811216746,eng,292,8717,477,9/17/2006,New Directions +8153,The Luzhin Defense,Vladimir Nabokov/Michael Scammell,3.95,0679727221,9780679727224,eng,256,7305,277,8/11/1990,Vintage +8155,A Woman of Substance (Emma Harte Saga #1),Barbara Taylor Bradford,4.18,031235326X,9780312353261,eng,928,34366,573,12/1/2005,Griffin +8162,The Ravenscar Dynasty (Ravenscar #1),Barbara Taylor Bradford,3.63,0312354606,9780312354602,en-US,484,1287,104,12/26/2006,St. Martin's Press +8174,Dark Birthright,Jeanne Treat/Jane Starr Weils,3.63,097216748X,9780972167482,eng,429,132,27,10/1/2006,Treat Enterprises +8178,Birthright (Diablo: The Sin War #1),Richard A. Knaak,3.74,0743471229,9780743471220,eng,326,1246,69,10/1/2006,Pocket Star +8196,Laura's Album: A Remembrance Scrapbook of Laura Ingalls Wilder,William Anderson/Laura Ingalls Wilder,4.30,0060278420,9780060278427,eng,80,746,48,10/13/1998,HarperCollins +8197,Writings to Young Women from Laura Ingalls Wilder: On Wisdom and Virtues (Writings to Young Women on Laura Ingalls Wilder #1),Laura Ingalls Wilder/Stephen W. Hines,3.99,1400307848,9781400307845,eng,113,108,11,5/10/2006,Tommy Nelson +8199,Writings to Young Women from Laura Ingalls Wilder: On Life as a Pioneer Woman (Writings to Young Women from Laura Ingalls Wilder #2),Laura Ingalls Wilder/Stephen W. Hines,3.92,1400307856,9781400307852,eng,116,94,10,5/10/2006,Tommy Nelson +8200,A Little House Traveler: Writings from Laura Ingalls Wilder's Journeys Across America,Laura Ingalls Wilder,4.13,0060724919,9780060724917,eng,352,686,52,2/7/2006,HarperCollins +8202,Laura Ingalls Wilder: A Biography,William Anderson,4.20,0060885521,9780060885526,eng,256,4144,98,1/2/2007,HarperCollins +8203,West from Home: Letters of Laura Ingalls Wilder San Francisco 1915 (Little House #11),Laura Ingalls Wilder/Roger Lea MacBride/Margot Patterson Doss,3.84,0064400816,9780064400817,eng,124,3926,119,10/20/1976,Harper & Row +8204,The Laura Ingalls Wilder Country Cookbook,Laura Ingalls Wilder/William Anderson,4.09,0064461963,9780064461962,eng,160,234,18,10/1/1997,HarperCollins Publishers +8205,Writings to Young Women on Laura Ingalls Wilder: As Told By Her Family Friends and Neighbors (Writings to Young Women on Laura Ingalls Wilder #3),Laura Ingalls Wilder/Stephen W. Hines,3.98,1400307864,9781400307869,eng,128,41,2,5/8/2006,Thomas Nelson +8206,The Laughing Jesus: Religious Lies and Gnostic Wisdom,Tim Freke/Peter Gandy,3.96,140008279X,9781400082797,en-US,276,346,31,6/27/2006,Harmony +8213,The Erotic Phenomenon,Jean-Luc Marion/Stephen E. Lewis,4.03,0226505367,9780226505367,eng,248,75,12,11/15/2006,University of Chicago Press +8214,The Phenomenon of Life: Toward a Philosophical Biology,Hans Jonas/Lawrence Vogel/Eleonore Jonas,4.24,0810117495,9780810117495,eng,304,92,9,2/28/2001,Northwestern University Press +8218,Down to the Bonny Glen (Little House: The Martha Years #3),Melissa Wiley/Renée Graef,4.15,0064407144,9780064407144,eng,321,1480,39,5/8/2001,HarperTrophy +8221,Laura: The Life of Laura Ingalls Wilder,Donald Zochert,4.12,0380016362,9780380016365,en-GB,241,5628,125,5/1/1977,Avon +8227,Winter Days in the Big Woods,Laura Ingalls Wilder/Renée Graef,4.28,0064433730,9780064433730,eng,32,1538,59,9/15/1995,HarperCollins +8228,The First Four Years (Little House #9),Laura Ingalls Wilder/Cherry Jones,3.89,0060565098,9780060565091,eng,3,91,13,6/13/2006,HarperFestival +8230,Winter on the Farm,Laura Ingalls Wilder/Renée Graef/Jody Wheeler,4.15,006440692X,9780064406925,eng,32,424,25,9/6/1997,Winter on the Farm (My First Little House) +8233,Summertime in the Big Woods,Laura Ingalls Wilder/Renée Graef,4.18,0064434974,9780064434973,eng,40,867,31,2/2/2000,HarperCollins +8244,Old Town in the Green Groves: Laura Ingalls Wilder's Lost Little House Years,Cynthia Rylant/Jim LaMarche,4.05,0064409902,9780064409902,eng,176,4799,88,6/1/2004,Harper Trophy +8246,Laura Ingalls Wilder's Fairy Poems,Laura Ingalls Wilder/Richard Hull,3.99,0385325339,9780385325332,eng,39,143,18,10/13/1998,Doubleday Books for Young Readers +8247,Constructing the Little House: Gender Culture and Laura Ingalls Wilder,Ann Romines,3.70,1558491228,9781558491229,eng,304,35,5,11/21/1997,University of Massachusetts Press +8249,These Happy Golden Years (Little House #8),Laura Ingalls Wilder/Cherry Jones/Paul Woodiel,4.19,006056508X,9780060565084,eng,7,105,12,3/28/2006,HarperFestival +8252,Farmer Boy (Little House #2),Laura Ingalls Wilder/Garth Williams,4.07,0060885386,9780060885380,eng,357,45778,1286,1/1/2007,HarperTrophy +8253,Little Town on the Prairie (Little House #7),Laura Ingalls Wilder/Garth Williams,4.19,0060885432,9780060885434,eng,374,71853,646,1/1/2007,HarperTrophy +8254,Christmas Stories (Little House Chapter Books: Laura #10),Laura Ingalls Wilder/Renée Graef/Heather Henson,4.21,0064420817,9780064420815,eng,80,66,7,10/6/1999,HarperCollins +8255,My Little House Crafts Book: 18 Projects from Laura Ingalls Wilder's,Carolyn Strom Collins/Christina Wyss Eriksson/Mary Collier,4.03,0064462048,9780064462044,eng,64,59,6,3/21/1998,HarperCollins +8256,Christmas in the Big Woods,Laura Ingalls Wilder/Renée Graef,4.20,0064434877,9780064434874,eng,32,2142,72,9/20/1997,HarperCollins +8282,The Long Winter (Little House #6),Laura Ingalls Wilder/Garth Williams,4.14,0060885424,9780060885427,eng,422,67427,1048,1/1/2007,HarperTrophy +8285,A Little House Birthday,Laura Ingalls Wilder/Doris Ettlinger,4.14,006443494X,9780064434942,eng,40,453,17,9/5/1998,HarperCollins +8290,The Deer in the Wood,Laura Ingalls Wilder/Renée Graef,4.17,0064434982,9780064434980,eng,32,324,23,1/16/1999,HarperCollins +8296,The First Four Years (Little House #9),Laura Ingalls Wilder/Garth Williams,3.89,0060885459,9780060885458,eng,126,28259,533,1/2/2007,HarperTrophy +8298,The Little House Cookbook: Frontier Foods from Laura Ingalls Wilder's Classic Stories,Barbara M. Walker/Garth Williams,4.15,0064460908,9780064460903,eng,256,3375,91,9/7/1989,HarperCollins +8322,Little House on the Prairie (Little House #3),Laura Ingalls Wilder/Garth Williams,4.19,0060885394,9780060885397,eng,309,635,30,1/1/2007,HarperTrophy +8335,Let the Hurricane Roar,Rose Wilder Lane,3.96,0064401588,9780064401586,en-US,118,192,32,10/1/1985,HarperTrophy +8337,Little House in the Big Woods (Little House #1),Laura Ingalls Wilder/Garth Williams,4.18,0060885378,9780060885373,eng,198,201840,3463,1/1/2007,HarperTrophy +8359,Flowers (Eyewitness Explorers),David Burnie,3.85,0789422131,9780789422132,eng,64,8,2,9/15/1997,Dorling Kindersley Children +8362,Animal: The Definitive Visual Guide to the World's Wildlife,David Burnie/Don E. Wilson,4.51,0756616344,9780756616342,eng,624,570,17,9/19/2005,DK +8370,The Making Of Disney's Animal Kingdom Theme Park,Melody Malmberg/Walt Disney Company,4.32,0786864028,9780786864027,eng,192,34,2,5/1/1998,Disney Enterprises +8373,El Reino Animal,Sergio Ramírez,3.69,9707705736,9789707705739,spa,256,16,4,7/1/2006,Alfaguara +8417,Tree (Eyewitness Books),David Burnie/Peter K. Chadwick,4.02,0789458209,9780789458209,eng,64,5,0,6/14/2000,DK Children +8428,Insects & Spiders,David Burnie,4.50,0783548818,9780783548814,eng,64,4,0,5/24/1999,Time Life Medical +8486,The Prophet of Yonwood,Jeanne DuPrau,3.27,0375875263,9780375875267,eng,289,621,82,4/1/2006,Random House Books for Young Readers +8489,Muhammad: A Prophet for Our Time,Karen Armstrong,4.08,0060598972,9780060598976,eng,256,1896,202,10/17/2006,Eminent Lives +8492,Prophet,Frank E. Peretti,3.94,1581345267,9781581345261,en-US,416,12789,221,3/11/2004,Crossway Books +8494,Access the Power of Your Higher Self: Your Source of Inner Guidance and Spiritual Transformation (Pocket Guides to Practical Spirituality),Elizabeth Clare Prophet,4.21,0922729360,9780922729364,en-GB,100,55,6,9/21/2017,Summit University Press +8495,Hailstones and Halibut Bones,Mary O'Neill/John Wallner,4.31,0385410786,9780385410786,en-US,64,125,22,4/1/1990,Doubleday Books for Young Readers +8499,The Second Sex,Simone de Beauvoir/H.M. Parshley/Margaret Crosland,4.12,1857151372,9781857151374,eng,848,47,6,3/18/1993,Everyman's Library +8500,The Second Sex,Simone de Beauvoir/H.M. Parshley,4.12,009974421X,9780099744214,eng,880,333,27,8/7/1997,Vintage Classics +8501,The Church and the Second Sex,Mary Daly,3.84,0807011010,9780807011010,eng,231,129,7,1/3/1986,Beacon Press +8506,Thomas Jefferson (Oxford Portraits),R.B. Bernstein,4.01,0195181301,9780195181302,eng,253,4245,133,9/15/2005,Oxford University Press USA +8508,The Jefferson Bible: The Life and Morals of Jesus of Nazareth,Thomas Jefferson,3.82,1557091846,9781557091840,eng,103,1038,100,8/1/2006,Applewood Books +8510,Who Was Thomas Jefferson?,Dennis Brindell Fradin/Nancy Harrison/John O'Brien,4.07,0448431459,9780448431451,eng,103,692,80,7/28/2003,Penguin Workshop +8515,The Man Who Listens to Horses,Monty Roberts/Lucy Grealy/Lawrence Scanlan,4.12,034542705X,9780345427052,en-US,352,9963,206,11/28/1998,Ballantine Books +8520,Under Orders (Sid Halley #4),Dick Francis,3.87,0399154000,9780399154003,eng,308,4119,252,10/1/2006,Putnam Publishing Group +8522,For Kicks,Dick Francis,4.00,0425194981,9780425194980,eng,292,3062,94,2/3/2004,G.P. Putnam's Sons +8523,Forfeit,Dick Francis,3.94,0425201910,9780425201916,eng,256,2538,63,4/5/2005,G.P. Putnam's Sons +8525,Dead Cert,Dick Francis,3.97,0425194973,9780425194973,eng,277,4964,124,1/6/2004,G.P. Putnam's Sons +8528,Rat Race,Dick Francis,3.98,0425210766,9780425210765,eng,304,2400,93,7/5/2006,G.P. Putnam's Sons +8529,Reflex,Dick Francis,4.07,0425206955,9780425206959,eng,304,4675,129,10/4/2005,G.P. Putnam's Sons +8532,Decider,Dick Francis,3.99,042519938X,9780425199381,eng,341,3461,133,12/7/2004,G.P. Putnam's Sons +8533,Slay Ride,Dick Francis,3.82,0425196739,9780425196731,en-US,288,2215,60,4/6/2004,G.P. Putnam's Sons +8536,Bonecrack,Dick Francis,4.00,0425208850,9780425208854,eng,304,2910,84,6/6/2006,G.P. Putnam's Sons +8537,Nerve,Dick Francis,4.04,0515123463,9780515123463,eng,320,3581,113,9/1/1998,Jove +8538,Break In (Kit Fielding #1),Dick Francis,4.05,0425199932,9780425199930,eng,320,3758,128,1/4/2005,G.P. Putnam's Sons +8540,Blood Sport,Dick Francis,3.89,0425199169,9780425199169,eng,288,4600,113,11/2/2004,G.P. Putnam's Sons +8541,Straight,Dick Francis,4.05,042520846X,9780425208465,eng,320,3513,143,2/7/2006,G.P. Putnam's Sons +8542,10 lb Penalty,Dick Francis,3.90,042519745X,9780425197455,eng,320,3490,177,8/3/2004,G.P. Putnam's Sons +8544,Trial Run,Dick Francis,3.83,0425199835,9780425199831,eng,272,2004,54,9/7/2004,G.P. Putnam's Sons +8545,Wild Horses,Dick Francis,3.91,0425196747,9780425196748,eng,352,2935,154,5/4/2004,G.P. Putnam's Sons +8546,Field of Thirteen,Dick Francis,3.73,042519499X,9780425194997,eng,304,2053,85,3/2/2004,G.P. Putnam's Sons +8548,Driving Force,Dick Francis,3.96,0449221393,9780449221396,eng,384,2635,107,12/29/1993,Fawcett Books +8551,Flying Finish,Dick Francis,3.97,0515125601,9780515125603,eng,276,2587,89,8/1/1999,Jove +8552,Bolt (Kit Fielding #2),Dick Francis,4.04,0425202887,9780425202883,eng,288,5043,121,5/3/2005,G.P. Putnam's Sons +8557,Come to Grief (Sid Halley #3),Dick Francis,4.01,0425207188,9780425207185,eng,384,3786,134,12/6/2005,G.P. Putnam's Sons +8559,Enquiry,Dick Francis,3.96,0425197050,9780425197059,en-US,272,96,4,7/6/2004,G.P. Putnam's Sons +8568,Odds Against (Sid Halley #1),Dick Francis,4.06,0425198006,9780425198001,eng,288,3749,130,2/1/2005,G.P. Putnam's Sons +8572,Banker,Dick Francis,4.06,0718132386,9780718132385,eng,288,3092,132,10/3/2000,Michael Joseph +8574,Whip Hand (Sid Halley #2),Dick Francis,4.10,0425203549,9780425203545,eng,304,5108,143,6/7/2005,G.P. Putnam's Sons +8581,A Jockey's Life: The Biography of Lester Piggott,Dick Francis,3.59,0449213307,9780449213308,eng,468,82,2,7/12/1987,Fawcett +8582,The Dick Francis Treasury of Great Racing Stories,Dick Francis/John Welcome,3.79,0449220494,9780449220498,eng,221,64,3,3/22/1992,Fawcett +8583,Come to Grief / Decider / Wild Horses,Dick Francis,4.09,0399143068,9780399143069,eng,707,32,0,11/10/1997,Putnam Adult +8586,Odds Against,Dick Francis,4.06,0515125512,9780515125511,eng,277,56,4,4/1/2000,Jove +8598,Eats Shoots & Leaves: Why Commas Really Do Make a Difference!,Lynne Truss/Bonnie Timmons,4.15,0399244913,9780399244919,eng,32,1371,205,7/25/2006,G.P. Putnam's Sons Books for Young Readers +8601,Talk to the Hand: The Utter Bloody Rudeness of Everyday Life,Lynne Truss,3.33,1861979339,9781861979339,eng,214,204,30,10/24/2005,Profile Books +8614,The Spice and Herb Bible,Ian Hemphill/Kate Hemphill,4.25,0778801462,9780778801467,eng,606,155,16,9/14/2006,Robert Rose +8627,Master and Commander (Aubrey/Maturin #1),Patrick O'Brian,4.10,0393325172,9780393325171,en-US,459,541,95,10/17/2003,W. W. Norton Company +8628,The Making of Master and Commander: The Far Side of the World,Tom McGregor,3.97,0393325539,9780393325539,eng,168,96,13,10/17/2003,W. W. Norton Company +8630,The Ionian Mission (Aubrey/Maturin #8),Patrick O'Brian/Simon Vance,4.32,0786177837,9780786177837,eng,10,3659,80,10/1/2005,Blackstone Audiobooks +8632,Her Master and Commander (Just Ask Reeves #1),Karen Hawkins,3.80,0060584084,9780060584085,eng,372,799,31,2/28/2006,Avon +8643,Strange Sounds: Music Technology & Culture,Timothy D. Taylor,3.77,0415936845,9780415936842,eng,278,26,0,10/14/2001,Routledge +8645,Stanley Park,Timothy Taylor,3.57,1582432902,9781582432908,eng,436,1818,89,9/25/2003,Counterpoint LLC +8646,Crow Lake,Mary Lawson,3.88,0385337639,9780385337632,eng,324,14109,1591,1/13/2003,Dial Press Trade Paperback +8648,Xenocide (Ender's Saga #3),Orson Scott Card/Piotr W. Cholewa,3.79,0312861877,9780312861872,eng,592,119937,3139,7/15/1996,Tor Books +8656,The Life of Sir Arthur Conan Doyle,John Dickson Carr/Daniel Stashower,4.01,0786712341,9780786712342,eng,320,148,6,11/11/2003,Da Capo Press +8660,The Lost World (TV Tie-in),Arthur Conan Doyle/Philip Gooden,3.92,0142002720,9780142002728,eng,224,18,4,9/3/2002,Penguin Books +8661,Las aventuras de Sherlock Holmes,Arthur Conan Doyle/Javier Gomez Rea,4.33,8497643658,9788497643658,eng,192,116,11,4/1/2005,Edimat Libros +8675,Wild Ducks Flying Backward,Tom Robbins,3.55,0553383531,9780553383539,eng,272,5768,262,8/29/2006,Bantam +8676,Unlimited Power: The New Science Of Personal Achievement,Anthony Robbins/Kenneth H. Blanchard/Jason Winters,4.23,0684845776,9780684845777,eng,448,25135,420,12/22/1997,Free Press +8677,Robbins and Cotran Review of Pathology,Edward C. Klatt/Vinay Kumar,4.33,0721601944,9780721601946,en-US,432,55,6,11/12/2004,Saunders +8680,Fierce Invalids Home from Hot Climates,Tom Robbins,4.03,055337933X,9780553379334,en-US,445,24792,1139,5/29/2001,Bantam +8682,Jitterbug Perfume,Tom Robbins,4.25,1842430351,9781842430354,eng,342,54516,2721,4/9/2001,No Exit Press +8694,Life the Universe and Everything (Hitchhiker's Guide to the Galaxy #3),Douglas Adams,4.20,0345418905,9780345418906,eng,224,166574,2192,4/26/2005,Del Rey +8698,So Long and Thanks for All the Fish (Hitchhiker's Guide to the Galaxy #4),Douglas Adams,4.09,0330491237,9780330491235,eng,167,93997,1394,3/8/2002,Picador USA +8703,The Restaurant at the End of the Universe (The Hitchhiker's Guide to the Galaxy #2),Douglas Adams/Martin Freeman,4.22,0739332074,9780739332078,eng,6,493,95,6/1/2006,Random House Audio Publishing Group +8704,Starship Titanic,Terry Jones/Marie-Catherine Caillava,3.60,2290053651,9782290053652,fre,189,8790,152,11/30/2001,J'ai Lu +8706,The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1),Douglas Adams,4.22,0330491199,9780330491198,eng,180,3115,306,3/8/2002,Picador USA +8710,The Illustrated Hitchhiker's Guide To The Galaxy,Douglas Adams,4.35,0517599244,9780517599242,eng,96,294,19,10/11/1994,Harmony +8712,Margaret Atwood: The Handmaid's Tale,Hélène Greven-Borde,4.27,2864603497,9782864603498,fre,108,2122,86,11/1/1998,Klincksieck +8713,Point to Point Navigation,Gore Vidal,3.70,0385517211,9780385517218,eng,277,621,90,11/7/2006,Doubleday Books +8714,An Inconvenient Truth: The Planetary Emergency of Global Warming and What We Can Do About It,Al Gore,3.77,1594865671,9781594865671,eng,328,5783,433,5/24/2006,Rodale Books +8715,Palimpsest,Gore Vidal,3.99,0140260897,9780140260892,en-US,448,1485,94,9/1/1996,Penguin Books +8716,Lincoln,Gore Vidal,4.21,0375708766,9780375708763,eng,672,7326,430,2/15/2000,Vintage +8722,Burr,Gore Vidal,4.07,0375708731,9780375708732,eng,430,7265,526,2/15/2000,Vintage +8725,Comfort Me with Apples: More Adventures at the Table,Ruth Reichl,4.04,0375758739,9780375758737,eng,302,17939,947,4/9/2002,Random House Trade +8726,Comfort Me With Apples,Ruth Reichl,4.04,0965193772,9780965193771,eng,299,15,3,1/1/2001,Random house +8737,The Last Temptation of Christ,Nikos Kazantzakis/Peter A. Bien,4.16,068485256X,9780684852560,eng,506,8966,454,3/1/1998,Simon Schuster +8738,Her Last Temptation,Leslie Kelly,3.59,0373692285,9780373692286,eng,207,112,5,5/31/2005,Harlequin Temptation +8741,The Last Temptation (Tony Hill & Carol Jordan #3),Val McDermid,4.01,0312936915,9780312936914,eng,496,4991,271,3/1/2005,St. Martin's Paperbacks +8742,The Last Temptation,Nikos Kazantzakis/Peter A. Bien,4.16,0571178561,9780571178568,eng,589,114,14,11/10/1995,Faber Faber +8744,Desert Dawn,Waris Dirie/Jeanne D'Haem,3.83,1844080080,9781844080083,en-GB,240,2011,84,6/1/2004,Virago UK +8745,Desert Flower,Waris Dirie/Cathleen Miller,4.15,0688172377,9780688172374,eng,240,11981,735,3/15/2011,William Morrow Paperbacks +8746,Desert Children,Waris Dirie/Corinna Milborn/Sheelagh Alabaster,3.71,1844082520,9781844082520,en-US,240,509,25,11/1/2005,Virago UK +8750,L'Aube du désert,Waris Dirie/Jeanne d' Haem,3.83,2226135510,9782226135513,fre,288,1,0,11/1/2002,Albin Michel +8758,The Beach,Joanna Strange,3.84,0582435676,9780582435674,eng,112,68,9,2/19/2001,Longman +8761,The Weekenders: Travels in the Heart of Africa,W.F. Deedes/Sue Ryan/Alex Garland/Tony Hawks/Andrew O'Hagan/Irvine Welsh/Giles Foden/Victoria Glendinning,3.16,0091881803,9780091881801,eng,340,123,12,11/8/2001,Ebury Press +8765,I Feel Bad About My Neck: And Other Thoughts on Being a Woman,Nora Ephron,3.69,0307264556,9780307264558,eng,137,38506,4719,8/1/2006,Knopf Publishing Group +8766,Feel the Fear . . . and Do It Anyway,Susan Jeffers,4.03,0345487427,9780345487421,eng,217,506,53,12/26/2006,Ballantine Books +8767,Touch & Feel: Animals Boxed Set,Jennifer Quasha/Deni Brown/Dawn Sirett,4.04,0789488779,9780789488770,eng,36,24,3,2/15/2003,DK Publishing +8768,Today I Feel Silly Other Moods That Make My Day,Jamie Lee Curtis/Laura Cornell,4.16,0060245603,9780060245603,en-US,40,4171,518,7/31/2007,HarperCollins +8770,My First Word Touch and Feel,Anne Millard,3.79,0789479311,9780789479310,eng,12,24,6,9/19/2001,DK Children +8771,When I Feel Angry,Nancy Cote/Cornelia Maude Spelman,3.98,0807588970,9780807588970,eng,24,113,4,1/1/2000,Albert Whitman Company +8773,Violet's House: A Giant Touch-and-Feel Book (Baby Einstein),Julie Aigner-Clark/Nadeem Zaidi,4.00,0786818727,9780786818723,eng,10,39,7,11/1/2003,Disney Press +8787,The White Masai,Corinne Hofmann/Peter Millar,3.45,0061131520,9780061131523,eng,320,4504,491,10/10/2006,Amistad +8797,The Story of a Seagull and the Cat Who Taught Her to Fly,Luis Sepúlveda/Chris Sheban/Margaret Sayers Peden,4.14,0439401879,9780439401876,eng,128,5097,219,8/1/2006,Scholastic Paperbacks +8799,Ahora sabréis lo que es correr,Dave Eggers/María Victoria Alonso Blanco,3.63,8439710097,9788439710097,spa,400,3,1,3/31/2004,Mondadori +8801,The Burgess Bird Book for Children,Thornton W. Burgess/Louis Agassiz Fuertes,4.31,0486428400,9780486428406,eng,260,1253,54,4/23/2003,Dover Publications +8804,The Burgess Animal Book for Children,Thornton W. Burgess/Louis Agassiz Fuertes,4.26,0486437450,9780486437453,eng,275,478,30,9/10/2004,Dover Publications +8808,The Adventures of Jimmy Skunk,Thornton W. Burgess/Thea Kliros/Harrison Cady,4.14,0486280233,9780486280233,eng,96,275,19,5/20/1994,Dover Publications +8809,The Wanting Seed,Anthony Burgess,3.71,0393315088,9780393315080,en-US,288,5423,293,12/17/1996,W. W. Norton Company +8810,A Clockwork Orange,Anthony Burgess/Blake Morrison,3.99,0141182601,9780141182605,eng,159,5366,524,2/24/2000,Penguin Classics +8811,A Clockwork Orange,Anthony Burgess,3.99,014027409X,9780140274097,eng,149,1422,124,9/3/1998,Penguin Books +8813,Clockwork Orange,Anthony Burgess,3.99,345316413X,9783453164130,ger,235,65,7,3/1/2000,Heyne +8814,A Clockwork Orange (Stage Play),Anthony Burgess,3.84,0413735907,9780413735904,eng,51,28,2,3/10/2017,Methuen Drama +8818,One Hand Clapping,Anthony Burgess,3.82,0786706317,9780786706310,eng,224,1008,51,7/15/1999,Da Capo Press +8820,The Doctor is Sick,Anthony Burgess,3.62,0393316025,9780393316025,eng,260,966,39,8/17/1997,W.W. Norton Company +8822,Earthly Powers,Anthony Burgess,4.16,0099468646,9780099468646,eng,649,2116,157,5/6/2004,Vintage Classics +8829,Past Mortem,Ben Elton,3.75,0552771236,9780552771238,eng,460,4422,211,5/2/2005,Black Swan +8834,This Other Eden,Ben Elton,3.72,055277183X,9780552771832,eng,400,2292,69,7/1/2003,Black Swan +8840,Saint-Exupéry,Stacy Schiff/Antoine de Saint-Exupéry,4.02,0805079130,9780805079135,eng,560,208,27,2/7/2006,Holt Paperbacks +8848,Le Petit Prince,Antoine de Saint-Exupéry,4.31,2070513289,9782070513284,fre,123,366,19,2/1/2004,Gallimard Jeunesse +8852,Macbeth,William Shakespeare,3.90,0743477103,9780743477109,eng,249,592315,7791,7/1/2013,Simon Schuster +8853,Macbeth,William Shakespeare/Alan Durband,3.90,0812035712,9780812035711,eng,224,296,20,4/1/1985,Barrons Educational Series +8856,Death of a Scriptwriter (Hamish Macbeth #14),M.C. Beaton,3.79,0446606987,9780446606981,eng,198,3280,188,6/1/1999,Warner Books +8858,Death of a Poison Pen (Hamish Macbeth #19),M.C. Beaton,3.83,0446614890,9780446614894,en-US,227,3318,204,1/1/2005,Warner Books +8859,Death of an Outsider (Hamish Macbeth #3),M.C. Beaton,3.83,0446614726,9780446614726,eng,194,5757,321,7/1/2005,Warner Books +8860,Cliffs Notes on Shakespeare's Macbeth,Alex Went,3.59,0764586025,9780764586026,en-US,112,25,2,5/30/2000,Cliffs Notes +8861,Death of an Addict (Hamish Macbeth #15),M.C. Beaton,3.80,0446608289,9780446608282,eng,214,3015,167,3/1/2001,Warner Books +8862,A Year in the Life of William Shakespeare: 1599,James Shapiro,4.09,0060088745,9780060088743,eng,333,2330,252,6/13/2006,Harper Perennial +8865,Who Was William Shakespeare?,Celeste Davidson Mannis/John O'Brien,4.05,0448439042,9780448439044,eng,105,755,94,12/28/2006,Grosset & Dunlap +8875,Planet of the Apes,Pierre Boulle/Xan Fielding,3.95,0517209489,9780517209486,en-US,192,88,14,6/6/2000,Wings +8879,Planet of the Apes: Colony,William T. Quick,3.62,0060086211,9780060086213,eng,288,24,1,3/25/2003,HarperEntertainment +8880,Planet of the Apes Volume 1: Old Gods,Ian Edginton,2.62,1569716684,9781569716687,eng,80,8,2,3/5/2002,Dark Horse Comics +8881,Planet of the Apes: The Fall,William T. Quick,2.92,0060086203,9780060086206,eng,288,53,2,6/4/2002,HarperEntertainment +8889,Return to the Planet of the Apes #2: Escape from Terror Lagoon,William Arrow,3.00,0345251679,9780345251671,eng,0,10,2,4/12/1976,Ballantine Books +8891,Return to the Planet of the Apes: Visions from Nowhere,William Arrow,3.33,0345251229,9780345251220,eng,183,12,1,6/1/1976,Ballantine Books +8895,Planet of the Apes: The Human War,Ian Edginton,3.28,184023380X,9781840233803,eng,72,1,1,7/27/2001,Titan Books Ltd +8901,Battle for the Planet of the Apes,David Gerrold/John William Corrington/Joyce Hooper Corrington,3.66,0891901639,9780891901631,eng,158,461,10,6/1/1973,Award Books +8908,World War Z: An Oral History of the Zombie War,Max Brooks,4.01,0307346609,9780307346605,eng,342,370331,20582,9/12/2006,Crown +8909,The War of the Worlds,H.G. Wells/Arthur C. Clarke,3.82,0375759239,9780375759239,eng,192,196425,4549,3/12/2002,Modern Library +8910,The Second World War: A Complete History,Martin Gilbert,4.20,0805076239,9780805076233,eng,928,919,44,6/1/2004,Holt McDougal +8915,A Short History of World War II,James L. Stokesbury,3.95,0688085873,9780688085872,eng,416,472,41,1/1/1980,William Morrow Paperbacks +8916,The Complete Science Fiction Treasury of H.G. Wells,H.G. Wells,4.14,0517052253,9780517052259,eng,0,45,1,6/24/1987,Random House Value Publishing +8917,Best Science Fiction Stories of H. G. Wells,H.G. Wells,3.84,0486215318,9780486215310,eng,320,60,4,11/24/2011,Dover Publications +8919,The Invisible Man,H.G. Wells,3.64,0439574277,9780439574273,eng,208,333,23,9/1/2004,Scholastic Paperbacks +8921,The Hound of the Baskervilles,Arthur Conan Doyle/Anne Perry/Sidney Paget,4.11,0451528018,9780451528018,eng,256,191128,4802,7/1/2001,Signet +8922,The Hound of the Baskervilles (Sherlock Holmes #5),Arthur Conan Doyle/David Timson,4.11,9626343346,9789626343340,eng,5,135,20,3/30/2005,Naxos Audiobooks +8924,The Hound of the Baskervilles,Arthur Conan Doyle/Pam Smy,4.11,0763630640,9780763630645,eng,272,66,7,8/22/2006,Candlewick Press +8927,Sherlock Holmes and the Case of the Hound of the Baskervilles (Great Illustrated Classics),Malvina G. Vogel/Arthur Conan Doyle,4.51,1596792507,9781596792500,en-US,237,33,1,1/1/2005,Abdo Publishing Company +8930,Jamie's Italy,Jamie Oliver/David Loftus/Chris Terry,4.01,1401301959,9781401301958,eng,320,7653,90,11/14/2006,Hachette Books +8931,Jamie's Dinners: The Essential Family Cookbook,Jamie Oliver/Marion Deuchars/David Loftus/Chris Terry,4.07,1401301940,9781401301941,eng,336,4296,51,11/3/2004,Hachette Books +8951,The Lake of Souls (Cirque du Freak #10),Darren Shan,4.18,0316016659,9780316016650,eng,272,18536,350,9/6/2006,Little Brown Books for Young Readers +8953,Freak the Mighty (Freak The Mighty #1),Rodman Philbrick,4.01,0439286069,9780439286060,eng,169,41589,4153,6/1/2001,Scholastic Paperbacks +8954,Word Freak: Heartbreak Triumph Genius and Obsession in the World of Competitive Scrabble Players,Stefan Fatsis,3.82,0142002267,9780142002261,eng,372,4748,597,7/30/2002,Penguin Books +8960,Vampire Mountain (Cirque Du Freak #4),Darren Shan,4.16,0316905747,9780316905749,eng,208,26461,587,9/1/2003,Little Brown Young Readers +8964,Jesus Freaks: Stories of Those Who Stood for Jesus the Ultimate Jesus Freaks (Jesus Freaks #1),D.C. Talk/The Voice of the Martyrs,4.21,1577780728,9781577780724,eng,383,19217,271,1/15/1999,Albury Publishing +8967,Trials of Death (Cirque Du Freak #5),Darren Shan,4.25,0316000957,9780316000956,eng,202,24590,525,1/18/2008,Little Brown Books for Young Readers +8969,Sister Freaks: Stories of Women Who Gave Up Everything for God,Rebecca St. James/Mary E. DeMuth/Tracey Lawrence/Elizabeth Jusino,4.12,0446695602,9780446695602,en-US,320,492,32,10/5/2005,FaithWords +8971,Freaks of the Storm: From Flying Cows to Stealing Thunder: The World's Strangest True Weather Stories,Randy Cerveny,3.17,1560258012,9781560258018,eng,371,139,25,12/29/2006,Thunder's Mouth Press Books +8974,Freak Show: Presenting Human Oddities for Amusement and Profit,Robert Bogdan,3.88,0226063127,9780226063126,eng,336,210,18,5/15/1990,University of Chicago Press +8976,Live Like a Jesus Freak: Spend Today as If It Were Your Last,D.C. Talk,4.06,1577782089,9781577782087,eng,184,591,29,11/1/2001,Bethany House Publishers +8978,Freaks!: How to Draw Fantastic Fantasy Creatures,Steve Miller,4.06,0823016625,9780823016624,eng,144,31,1,6/1/2004,Watson-Guptill Publications +8988,Jesus Freaks,Andre Duza,3.69,0976249871,9780976249870,eng,390,55,7,4/20/2006,Deadite Press (Eraserhead Press) +8991,Category: Freaks Vol. 1 (Category: Freaks #1),Sakurako Gokurakuin/Lindsey Johnston,3.55,1588993000,9781588993007,eng,184,112,9,7/1/2005,Dr. Master Productions Inc. +9005,Hello Cruel World: 101 Alternatives to Suicide for Teens Freaks and Other Outlaws,Kate Bornstein/Sara Quin,4.03,1583227202,9781583227206,eng,234,1458,175,5/2/2006,Seven Stories Press +9006,Don't Get Too Comfortable: The Indignities of Coach Class The Torments of Low Thread Count The Never-Ending Quest for Artisanal Olive Oil and Other First World Problems,David Rakoff,3.72,0767916034,9780767916035,eng,222,8410,751,9/12/2006,Anchor Books +9010,I Hope They Serve Beer in Hell (Tucker Max #1),Tucker Max,3.51,0806527285,9780806527284,eng,288,49042,4140,1/1/2006,Citadel +9012,Holidays on Ice,David Sedaris,3.92,0316779237,9780316779234,eng,134,3590,251,11/1/1998,Back Bay +9013,The Long Walk: The True Story of a Trek to Freedom,Sławomir Rawicz,4.21,1592289444,9781592289448,eng,256,11841,1766,4/1/2006,Lyons Press +9014,The Long Walk,Richard Bachman/Stephen King,4.11,0451196716,9780451196712,eng,370,94303,4453,4/1/1999,Signet +9018,Long Walk to Freedom: Autobiography of Nelson Mandela,Nelson Mandela/Kofi Annan/Danny Glover,4.33,1586216880,9781586216887,eng,6,79,16,12/1/2004,Little Brown & Company +9019,Navajo Long Walk,Nancy M. Armstrong/Paulette Livers-Lambert,3.45,1879373564,9781879373563,eng,128,56,11,7/1/1994,Roberts Rinehart Publishers +9030,The Devil in the White City: Murder Magic and Madness at the Fair that Changed America,Erik Larson,3.99,0553813536,9780553813531,eng,496,1278,207,4/1/2004,Bantam Press +9031,The Devil in the White City Murder Magic and Madness at the Fair That Changed America,Erik Larson,3.99,0385602731,9780385602730,eng,447,283,37,3/3/2003,Doubleday +9051,The Historian's Craft: Reflections on the Nature and Uses of History and the Techniques and Methods of Those Who Write It.,Marc Bloch/Peter Putnam/Joseph Reese Strayer,4.05,0394705122,9780394705125,eng,224,977,71,3/12/1964,Vintage +9058,Charles Dickens as a Legal Historian,William Holdsworth,4.00,1886363064,9781886363069,eng,166,4,2,2/1/2010,Lawbook Exchange Ltd. +9060,The Progressive Historians: Turner Beard Parrington (Phoenix Book),Richard Hofstadter,3.89,0226348180,9780226348186,eng,498,37,5,11/19/1979,University of Chicago Press +9066,What Did the Constitution Mean to Early Americans? (Historians at Work),Edward Countryman,3.29,0312182627,9780312182625,eng,169,24,2,1/1/1999,Bedford Books +9072,The Historian,Elizabeth Kostova/Paul Michael/Justine Eyre,3.78,1415929017,9781415929018,eng,26,354,135,12/13/2005,Books on Tape +9073,See No Evil: The True Story of a Ground Soldier in the CIA's War on Terrorism,Robert B. Baer,3.93,140004684X,9781400046843,eng,320,4040,259,1/7/2003,Broadway Books +9082,In a Dry Season (Inspector Banks #10),Peter Robinson,4.13,0380794772,9780380794775,eng,480,6193,355,7/3/2000,Avon +9083,Plants and Landscapes for Summer-Dry Climates of the San Francisco Bay Region,East Bay M. U. D. Staff/Nora Harlow/Jill M. Singleton/Barrie D. Coate/Kristine Sandoe,4.30,0975323113,9780975323113,en-US,336,47,8,5/1/2004,East Bay Municipal Utility District +9099,In Focus: National Geographic Greatest Portraits,Leah Bendavid-Val/National Geographic Society,4.24,079227363X,9780792273639,eng,504,819,31,10/1/2004,National Geographic Society +9100,Portrait Photographer's Handbook,Bill Hurter,3.62,1584281405,9781584281405,eng,128,16,1,9/28/2004,Amherst Media Inc. +9106,Portrait in Death (In Death #16),J.D. Robb,4.39,0749934425,9780749934422,en-US,354,142,9,12/1/2005,Piatkus Books +9107,Posing for Portrait Photography: A Head-To-Toe Guide,Jeff Smith,3.38,1584281340,9781584281344,eng,124,51,0,7/1/2004,Amherst Media +9118,Le Portrait de Dorian Gray,Oscar Wilde/Michel Etienne/Daniel Mortier,4.08,2266082655,9782266082655,fre,345,47,3,6/4/1998,Pocket +9121,The Portrait of Dorian Gray,Oscar Wilde/Elizabeth Gray,4.08,1842161903,9781842161906,eng,51,85,2,10/10/1999,Express Publishing +9122,The Picture of Dorian Gray,Oscar Wilde/Donald L. Lawler,4.08,0393955680,9780393955682,eng,462,171,13,1/1/1988,W. W. Norton & Company +9124,The Picture of Dorian Gray,Oscar Wilde/Michael Gillespie,4.08,0393927547,9780393927542,en-US,517,663,52,8/1/2006,W. W. Norton & Company +9125,The Picture of Dorian Gray,Oscar Wilde/Joseph Bristow,4.08,0192807293,9780192807298,eng,229,1089,78,11/1/2006,Oxford University Press USA +9132,An Arab-Syrian Gentleman and Warrior in the Period of the Crusades: Memoirs of Usamah Ibn-Munqidh,Usamah ibn Munqidh/Philip Khuri Hitti/Richard W. Bulliet,3.95,0231121253,9780231121255,eng,265,68,6,6/22/2000,Columbia University Press +9140,Technical Manual and Dictionary of Classical Ballet,Gail Grant,4.38,0486218430,9780486218434,eng,176,393,27,6/1/1982,Dover Publications +9141,The Ballet Companion: A Dancer's Guide to the Technique Traditions and Joys of Ballet,Eliza Gaynor Minden,4.35,074326407X,9780743264075,eng,333,524,40,10/11/2005,Touchstone +9143,Ballet Class,John Green/Caroline Denzler,3.77,0486296385,9780486296388,en-US,48,13,0,7/2/1997,Dover Publications +9144,NYC Ballet Workout,Peter Martins/Paul Kolnik/Richard Corman/Howard Kaplan,4.01,0688152023,9780688152024,eng,208,238,10,1/13/1997,William Morrow Paperbacks +9148,The Illustrated Book of Ballet Stories (with CD),Barbara Newman/Gill Tomblin/Darcey Bussell,4.18,0789460971,9780789460974,eng,64,64,5,6/14/2000,DK Children +9149,Lara's Leap of Faith (The Royal Ballet School Diaries #2),Alexandra Moss/Veronica Bennett,4.07,0448435365,9780448435367,eng,144,155,14,1/13/2005,Grosset & Dunlap +9151,Isabelle's Perfect Performance (The Royal Ballet School Diaries #3),Alexandra Moss,4.06,0448437694,9780448437699,eng,144,130,4,5/5/2005,Grosset & Dunlap +9153,The Barefoot Book Of Ballet Stories,Jane Yolen,4.21,1841482641,9781841482644,eng,96,1,0,9/1/2004,Barefoot Books +9155,Boys or Ballet? (Royal Ballet School Diaries #8),Alexandra Moss,3.92,0448442515,9780448442518,eng,144,93,8,8/3/2006,Grosset & Dunlap +9156,101 Stories of the Great Ballets: The Scene-by-Scene Stories of the Most Popular Ballets Old and New,George Balanchine/Francis Mason,4.00,0385033982,9780385033985,en-US,560,203,12,5/20/1975,Anchor +9164,Ballet for Dummies,Scott Speck/Evelyn Cisneros,4.01,0764525689,9780764525681,eng,348,78,6,10/3/2003,For Dummies +9171,Time for Ballet,Adèle Geras/Shelagh McNicholas/Adèle Geras,3.72,0803729782,9780803729780,eng,32,69,13,3/30/2004,Dial +9184,Ballet in Western Culture: A History of Its Origins and Evolution,Carol Lee,3.53,0415942578,9780415942577,eng,368,17,0,8/11/2002,Routledge +9186,Angelina's Ballet Class,Katharine Holabird/Helen Craig,3.88,044844013X,9780448440132,eng,24,73,1,1/19/2006,Grosset & Dunlap +9203,San Francisco Ballet at Seventy-Five,Janice Ross/Allan Ulrich/Brigitte Lefevre,4.33,0811856984,9780811856980,en-US,188,6,1,11/12/2007,Chronicle Books +9216,Ballet and Modern Dance,Susan Au,3.74,0500203520,9780500203521,eng,224,53,6,6/17/2002,Thames Hudson +9223,Teaching Classical Ballet,John White,4.47,081301395X,9780813013954,eng,200,15,1,4/20/1996,University Press of Florida +9236,Drat! We're Rats! (Scrambled Legs #1),Jahnna N. Malcolm,3.69,0970016409,9780970016409,eng,160,41,2,9/1/2000,Starcatcher Press +9245,Battle of the Bunheads (Scrambled Legs #2),Jahnna N. Malcolm,3.50,0970016417,9780970016416,eng,160,44,3,9/1/2000,Starcatcher Press +9253,Blubberina (Scrambled Legs #5),Jahnna N. Malcolm,3.29,0590428888,9780590428880,eng,135,13,0,10/1/1989,Scholastic +9262,The Books in My Life,Henry Miller,3.81,0811201082,9780811201087,eng,327,709,29,1/17/1969,New Directions +9282,The Smoke Jumper,Nicholas Evans,4.06,0440235162,9780440235163,eng,576,28769,694,7/30/2002,Dell +9288,La casa de los espíritus,Isabel Allende,4.23,9500717638,9789500717632,spa,456,198,18,9/1/2000,Sudamericana +9298,Last Chance Saloon,Marian Keyes,3.81,0060086246,9780060086244,en-US,528,35784,686,5/27/2003,HarperCollins Publishers +9299,Anybody Out There? (Walsh Family #4),Marian Keyes,3.92,0060731303,9780060731304,eng,456,348,45,5/9/2006,William Morrow +9300,Watermelon (Walsh Family #1),Marian Keyes,3.78,0099489988,9780099489986,eng,520,65441,1233,7/7/2005,Arrow +9301,Rachel's Holiday (Walsh Family #2),Marian Keyes,3.95,0060090383,9780060090388,eng,578,55525,1223,1/23/2007,William Morrow Paperbacks +9303,Lucy Sullivan Is Getting Married,Marian Keyes,3.77,0060090375,9780060090371,en-US,640,43077,690,1/23/2007,William Morrow Paperbacks +9304,Essays and Stories by Marian Keyes: Bags Trips Make-up Tips Charity Glory and the Darker Side of the Story,Marian Keyes,3.82,0060787031,9780060787035,eng,368,1625,42,9/6/2005,William Morrow Paperbacks +9305,No Dress Rehearsal,Marian Keyes,3.29,1902602323,9781902602325,eng,79,780,52,12/1/2000,New Island Books +9325,Fullmetal Alchemist Vol. 10,Hiromu Arakawa/Akira Watanabe,4.60,1421504618,9781421504612,eng,200,8989,151,11/21/2006,VIZ Media LLC +9326,Fullmetal Alchemist Vol. 5 (Fullmetal Alchemist #5),Hiromu Arakawa/Akira Watanabe,4.56,1421501759,9781421501758,eng,200,12885,208,1/10/2006,VIZ Media LLC +9327,The House of the Spirits,Isabel Allende/Magda Botin,4.23,0552995886,9780552995887,eng,491,1021,112,8/8/1986,Black Swan +9330,The House of the Spirits,Isabel Allende/Madga Bogin/Christopher Hitchens,4.23,1400043182,9781400043187,eng,488,270,49,4/19/2005,Everyman's Library +9337,How To Meditate: An Anthology Of Talks On Meditation And "Meditation: The Bridge Is Flowing But The River Is Not",Frederick P. Lenz,0.00,1932206108,9781932206104,eng,228,0,0,1/1/2004,Frederick P. Lenz Foundation for American Buddhism +9338,Insights: Talks On The Nature Of Existence,Frederick P. Lenz,0.00,1932206086,9781932206081,eng,304,0,0,1/1/2003,Frederick P. Lenz Foundation for American Buddhism +9345,Palestine: Peace Not Apartheid,Jimmy Carter,3.82,0743285026,9780743285025,eng,288,2864,349,11/30/2006,Simon & Schuster +9346,Our Endangered Values: America's Moral Crisis,Jimmy Carter,3.88,0743285018,9780743285018,eng,224,3193,236,9/26/2006,Simon Schuster +9347,An Hour Before Daylight: Memories of a Rural Boyhood,Jimmy Carter,3.91,0743211995,9780743211994,eng,288,1935,229,10/16/2001,Simon Schuster +9349,The Real Jimmy Carter: How Our Worst Ex-President Undermines American Foreign Policy Coddles Dictators and Created the Party of Clinton and Kerry,Steven F. Hayward,3.32,0895260905,9780895260901,eng,272,33,4,3/19/2004,Regnery Publishing +9350,The Virtues of Aging,Jimmy Carter,3.55,0345425928,9780345425928,eng,160,221,36,10/13/1998,Ballantine Books +9351,Living Faith,Jimmy Carter,3.80,0812930347,9780812930344,eng,288,481,33,9/14/1998,Three Rivers Press (CA) +9352,Sharing Good Times,Jimmy Carter,3.47,0743270681,9780743270687,eng,192,238,35,11/7/2005,Simon Schuster +9355,Until I Find You,John Irving,3.63,0345479726,9780345479723,eng,820,22547,1371,5/30/2006,Ballantine Books +9361,Atlas Shrugged,Ayn Rand,3.69,0525948929,9780525948926,eng,1176,941,136,4/21/2005,Dutton +9362,Atlas Shrugged,Ayn Rand/Leonard Peikoff,3.69,0452286360,9780452286368,eng,1192,340,51,12/28/2004,NAL +9363,Atlas Shrugged,Ayn Rand,3.69,0451171926,9780451171924,eng,1074,912,128,3/3/1992,Signet +9365,Atlas Shrugged,Ayn Rand,3.69,0394415760,9780394415765,en-US,1168,86,12,10/12/1957,Random House +9370,Skinny Legs and All,Tom Robbins,4.04,1842430343,9781842430347,eng,422,35517,1014,3/10/2002,No Exit Press +9376,Fannie Flagg's Original Whistle Stop Cafe Cookbook,Fannie Flagg,4.19,0449910288,9780449910283,eng,224,911,42,9/11/1995,Ballantine Books +9386,Free Play: Improvisation in Life and Art,Stephen Nachmanovitch,4.14,0874776317,9780874776317,eng,224,1675,124,5/1/1991,Tarcherperigee +9409,The Sari Shop,Rupa Bajwa,3.44,039332690X,9780393326901,eng,224,1858,153,6/17/2005,W. W. Norton Company +9416,Confessions of a Shopaholic (Shopaholic #1),Sophie Kinsella,3.64,0440241413,9780440241416,eng,368,603675,10079,11/4/2003,Dell Publishing Company +9417,Shopaholic and Sister (Shopaholic #4),Sophie Kinsella,3.66,044024191X,9780440241911,eng,388,76205,1867,11/28/2006,Dell Publishing Company +9418,Shopaholic Takes Manhattan (Shopaholic #2),Sophie Kinsella,3.76,0440241812,9780440241812,eng,387,100796,2382,12/27/2004,Dell Publishing Company +9419,Shopaholic Ties the Knot (Shopaholic #3),Sophie Kinsella,3.78,0440241898,9780440241898,eng,407,94917,2089,8/31/2004,Dell Publishing Company +9420,Shopaholic & Baby (Shopaholic #5),Sophie Kinsella,3.79,0385338708,9780385338707,eng,359,110706,2070,2/27/2007,Dial Press +9423,The Secret Dreamworld of a Shopaholic (Shopaholic #1),Sophie Kinsella,3.64,0552998877,9780552998871,eng,320,2214,249,9/14/2000,Transworld Publishers +9427,The Story of Chicago May,Nuala O'Faolain,3.24,1573223204,9781573223201,en-US,307,344,59,10/1/2005,Riverhead Books +9431,Chicago Stories,James T. Farrell/Charles Fanning,3.89,0252019814,9780252019814,en-US,296,38,5,6/1/1998,University of Illinois Press +9435,Chicago Stories: Tales of the City,John Miller/Stuart Dybek,3.60,0811839745,9780811839747,eng,224,49,9,2/1/2003,Chronicle Books +9438,The Basic Works of Aristotle,Aristotle/Richard Peter McKeon/C.D.C. Reeve,4.24,0375757996,9780375757990,eng,1487,2174,51,8/19/2009,Modern Library/Random House (NY) +9439,Fear and Trembling and The Sickness Unto Death,Søren Kierkegaard/Walter Lowrie,4.10,0691019622,9780691019628,eng,420,519,36,11/21/1968,Princeton University Press +9442,Selections from Don Quixote - Selecciones de Don Quijote de la Mancha,Miguel de Cervantes Saavedra/Stanley Appelbaum,3.34,0486406660,9780486406664,mul,288,26,0,12/23/1998,Dover Publications +9444,The Complete Collected Poems,Maya Angelou,4.42,067942895X,9780679428954,eng,273,7983,245,9/13/1994,Random House +9454,Hegel's Phenomenology of Spirit,Georg Wilhelm Friedrich Hegel/A.V. Miller/John Niemeyer Findlay,3.93,0198245971,9780198245971,eng,640,13920,248,11/30/1976,Oxford University Press +9456,Preface to the Phenomenology of Spirit,Georg Wilhelm Friedrich Hegel/Yirmiyahu Yovel,4.06,0691120528,9780691120522,eng,223,110,16,1/17/2005,Princeton University Press +9457,Hegel's Phenomenology of Spirit,Martin Heidegger/Kenneth Maly/Parvis Emad,4.18,0253209102,9780253209108,eng,176,117,3,8/1/1988,Indiana University Press +9462,Plato: Complete Works,Plato/John M. Cooper/Benjamin Jowett/Dorothea Frede/Alexander Nehamas/Paul Woodruff/Anthony Kenny/Rosamond Kent Sprague/Nicholas D. Smith/Karen Bell/D.S. Hutchinson/Donald J. Zeyl/Francisco J. González/Diskin Clay/Malcolm Schofield/Glenn R. Morrow/Jonathan Barnes/G.M.A. Grube/Brad Inwood/Mark Joyal/Jackson P. Hershbell/J.M. Edmonds/C.D.C. Reeve/Myles Burnyeat/Nicholas P. White/Mary Louise Gill/C.J. Rowe/Stanley Lombardo/David Gallop/Jeffrey Mitscherling/Richard D. McKiharan Jr./Andrew S. Becker/Mark Reuter/M.J. Levett/Paul Ryan,4.35,0872203492,9780872203495,eng,1838,9284,133,5/1/1997,Hackett Publishing Company Inc. +9464,A Guided Tour of 5 Works by Plato: Euthyphro/Apology/Crito/Phaedo/Cave,Christopher Biffle/Plato,4.33,1559343567,9781559343565,eng,125,9,1,12/28/1995,Mayfield Publishing Company (NY) +9475,Midnight for Charlie Bone (The Children of the Red King #1),Jenny Nimmo,3.82,0439474299,9780439474290,eng,401,36853,1725,3/1/2003,Orchard Books +9479,The Midnight Mystery (The Boxcar Children #95),Gertrude Chandler Warner,3.90,080755538X,9780807555385,eng,128,312,9,1/1/2003,Albert Whitman Company +9484,Within a Budding Grove (In Search of Lost Time #2),Marcel Proust/C.K. Scott Moncrieff/Terence Kilmartin/D.J. Enright,4.40,0375752196,9780375752193,eng,749,1032,162,11/3/1998,Modern Library +9486,Exclusion & Embrace: A Theological Exploration of Identity Otherness and Reconciliation,Miroslav Volf,4.27,0687002826,9780687002825,eng,306,1967,131,12/1/1996,Abingdon Press +9487,A Time to Embrace (Timeless Love #2),Karen Kingsbury,4.35,1595542329,9781595542328,eng,400,3728,141,10/29/2006,Thomas Nelson +9489,Devil's Embrace (Devil #1),Catherine Coulter,3.80,0451200268,9780451200266,eng,397,3381,116,5/1/2000,Signet +9490,The Book of Embraces,Eduardo Galeano/Cedric Belfrage/Mark Schafer,4.30,0393308553,9780393308556,eng,288,2221,165,4/17/1992,W.W. Norton & Company +9491,Experiencing Father's Embrace,Jack Frost,4.33,0768423481,9780768423488,eng,256,545,44,4/1/2006,Destiny Image Incorporated +9493,A Time to Embrace: Same-Gender Relationships in Religion Law and Politics,William Stacy Johnson,4.21,080282966X,9780802829665,en-US,330,44,10,11/1/2006,William B. Eerdmans Publishing Company +9497,Memory's Embrace (Corbins #3),Linda Lael Miller,4.19,0671737694,9780671737696,eng,320,407,18,6/1/1991,Pocket Books +9498,Beauty: The Invisible Embrace,John O'Donohue,4.47,0060957263,9780060957261,en-US,261,678,78,3/1/2005,Harper Perennial +9501,Embrace,Mark Behr,3.80,0349113009,9780349113005,eng,726,72,5,2/1/2001,Little Brown Book Group +9503,Saving Fish from Drowning,Amy Tan,3.43,034546401X,9780345464019,eng,472,26762,2524,9/26/2006,Ballantine Books +9506,Un Lugar Llamado Nada,Amy Tan/Claudia Conde,3.43,840806701X,9788408067016,spa,475,98,6,8/30/2006,Planeta Publishing +9507,Virginia Woolf: An Inner Life,Julia Briggs,4.15,0156032295,9780156032292,eng,544,635,21,11/6/2006,Mariner Books +9512,Measure for Measure,William Shakespeare,3.68,014101380X,9780141013800,eng,224,58,5,10/27/2005,Penguin Group(CA) +9515,Henry Adams and the Making of America,Garry Wills,3.79,0618134301,9780618134304,en-US,480,95,20,9/14/2005,Houghton Mifflin Harcourt +9516,Persepolis: The Story of a Childhood (Persepolis #1),Marjane Satrapi/Mattias Ripa,4.25,037571457X,9780375714573,eng,153,144121,8131,6/1/2004,Pantheon +9517,Persepolis 2: The Story of a Return (Persepolis #2),Marjane Satrapi/Anjali Singh,4.24,0375714669,9780375714665,eng,187,57309,2308,8/2/2005,Pantheon Books +9525,Chicken with Plums,Marjane Satrapi,3.86,0375424156,9780375424151,en-US,84,8539,667,10/3/2006,Pantheon Books +9526,Embroideries,Marjane Satrapi/Anjali Singh,3.86,0375714677,9780375714672,eng,144,14654,1121,4/18/2006,Pantheon +9529,The Shadow of the Wind (The Cemetery of Forgotten Books #1),Carlos Ruiz Zafón/Lucia Graves,4.26,0753820250,9780753820254,eng,520,6726,1018,10/5/2005,Phoenix Press +9531,Peter and the Shadow Thieves (Peter and the Starcatchers #2),Dave Barry/Ridley Pearson/Greg Call,4.16,078683787X,9780786837878,eng,557,32307,1224,7/15/2006,Hyperion Books +9532,Ender's Shadow (The Shadow Series #1),Orson Scott Card,4.31,0765342405,9780765342409,eng,469,133114,4243,5/19/2002,Starscape +9534,Shadow of the Hegemon (The Shadow Series #2),Orson Scott Card,3.95,0812565959,9780812565959,eng,451,65344,1419,12/9/2001,Tor Books +9538,Shadow Dance (Buchanan-Renard #6),Julie Garwood,4.00,0345453867,9780345453860,eng,336,11205,431,12/26/2006,Ballantine Books +9539,The Shadow Rising (The Wheel of Time #4),Robert Jordan,4.24,0812513738,9780812513738,eng,1007,148074,2471,10/15/1993,Tom Doherty Tor Fantasy +9540,The Shadow Party: How George Soros Hillary Clinton and Sixties Radicals Seized Control of the Democratic Party,David Horowitz/Richard Poe,4.20,1595550445,9781595550446,en-US,304,227,32,8/6/2006,Thomas Nelson +9542,Cast in Shadow (Chronicles of Elantra #1),Michelle Sagara/Michelle Sagara West,3.79,0373802544,9780373802548,eng,507,14477,868,7/1/2005,Luna +9544,Owning Your Own Shadow: Understanding the Dark Side of the Psyche,Robert A. Johnson,4.04,0062507540,9780062507549,eng,118,2685,182,6/9/2009,HarperOne +9550,In Praise of Shadows,Jun'ichirō Tanizaki/Thomas J. Harper/Edward G. Seidensticker,4.09,0099283573,9780099283577,eng,73,467,32,5/3/2001,Vintage Classics +9551,Shadow of the Almighty: The Life and Testament of Jim Elliot,Elisabeth Elliot,4.40,006062213X,9780060622138,eng,272,6946,182,9/29/2009,HarperOne +9553,Shadow Game (GhostWalkers #1),Christine Feehan,4.12,0515135968,9780515135961,eng,323,15827,616,8/26/2003,Berkley Books +9556,The Elephant Vanishes,Haruki Murakami/Alfred Birnbaum/Jay Rubin,3.86,0099448750,9780099448754,eng,327,1299,128,12/1/2003,Vintage Books +9557,Sputnik Sweetheart,Haruki Murakami/Philip Gabriel,3.83,0099448475,9780099448471,eng,229,78434,3464,10/3/2002,Vintage +9558,Back to Wando Passo,David Payne,3.25,0060851899,9780060851897,en-US,448,202,26,5/23/2006,William Morrow +9566,Still Life with Woodpecker,Tom Robbins,4.05,184243022X,9781842430224,eng,288,63155,2286,4/9/2001,No Exit Press +9567,Half Asleep in Frog Pajamas,Tom Robbins,3.74,184243036X,9781842430361,eng,389,18417,542,1/5/2002,No Exit Press +9571,Fierce Invalids Home from Hot Climates,Tom Robbins,4.03,0553107755,9780553107753,en-US,415,335,38,5/2/2000,Bantam Books +9577,PanAroma: Jitterbug Perfume,Tom Robbins/Nikolaus Hansen,4.25,3499156717,9783499156717,ger,556,59,4,12/5/1985,Rowohlt Verlag +9582,Ein Platz für Hot Dogs: Another Roadside Attraction,Tom Robbins/Pociao/Roberto de Hollanda,3.98,3499154293,9783499154294,ger,376,3,0,6/1/1997,Rowohlt Verlag +9585,Halbschlaf im Froschpyjama,Tom Robbins/Pociao/Walter Hartmann,3.74,3499224429,9783499224423,ger,459,22,2,11/2/1998,Rowohlt Verlag +9590,God Bless You Mr. Rosewater,Kurt Vonnegut Jr.,3.96,0385333471,9780385333474,eng,288,40599,1127,9/8/1998,Dial Press +9591,Wampeters Foma and Granfalloons,Kurt Vonnegut Jr.,3.79,0385333811,9780385333818,en-US,318,7213,139,1/12/1999,Dial Press Trade Paperback +9592,Mother Night,Kurt Vonnegut Jr.,4.22,0385334141,9780385334143,eng,282,64096,2316,5/11/1999,Dial Press +9593,Galápagos,Kurt Vonnegut Jr.,3.88,0385333870,9780385333870,eng,324,55850,1990,1/12/1999,Dial Press +9594,Timequake,Kurt Vonnegut Jr.,3.72,0099267543,9780099267546,eng,219,23527,822,8/6/1998,Vintage Classics +9595,Slapstick or Lonesome No More!,Kurt Vonnegut Jr.,3.87,0385334230,9780385334235,eng,288,31084,1062,5/11/1999,Dial Press +9599,Like Shaking Hands with God: A Conversation About Writing,Kurt Vonnegut Jr./Lee Stringer,3.72,0743410580,9780743410588,en-US,80,866,52,12/1/2000,Washington Square Press +9602,Palm Sunday: An Autobiographical Collage,Kurt Vonnegut Jr.,3.77,0385334265,9780385334266,eng,300,5135,192,5/11/1999,Dial Press +9603,Sun Moon Star,Kurt Vonnegut Jr./Ivan Chermayeff,3.78,0060263199,9780060263195,eng,62,420,40,1/1/1980,HarperCollins Publishers +9605,Cat's Cradle/God Bless You Mr. Rosewater/Breakfast of Champions,Kurt Vonnegut Jr.,4.36,051712436X,9780517124369,eng,527,914,8,5/28/1995,Wings Books +9619,Bradbury Stories: 100 of His Most Celebrated Tales,Ray Bradbury,4.41,0060544880,9780060544881,eng,912,5161,184,4/5/2005,William Morrow Paperbacks +9620,Farewell Summer (Green Town #3),Ray Bradbury,3.72,0061131547,9780061131547,eng,211,3405,338,10/17/2006,William Morrow +9622,Classic Stories 1: The Golden Apples of the Sun/R is for Rocket,Ray Bradbury,4.21,0553286374,9780553286373,eng,348,847,60,4/7/1990,Bantam Books +9623,Dandelion Wine,Ray Bradbury,4.09,0380977265,9780380977260,en-US,267,676,119,2/1/1999,William Morrow +9626,The Homecoming,Ray Bradbury/Dave McKean,4.08,0060859628,9780060859626,en-US,56,806,98,8/30/2006,Collins Design +9629,Zen in the Art of Writing: Essays on Creativity,Ray Bradbury,4.10,1877741094,9781877741098,en-US,176,909,135,8/1/1993,Joshua Odell Editions +9632,Switch on the Night,Ray Bradbury/Leo Dillon/Diane Dillon,4.13,0553112449,9780553112443,en-US,40,198,12,9/14/2004,Dragonfly Books +9633,The Best of Ray Bradbury,Ray Bradbury/Dave Gibbons/Richard Corben/Mike Mignola,4.07,0743474767,9780743474764,eng,162,308,28,6/21/2012,iBooks +9635,The Bradbury Chronicles: The Life of Ray Bradbury,Sam Weller,4.24,0060545844,9780060545840,en-US,384,372,45,2/21/2006,Harper Perennial +9638,The Cat's Pajamas,Ray Bradbury,3.73,0060777338,9780060777333,eng,234,1370,122,7/26/2005,William Morrow Paperbacks +9639,Essays,George Orwell/John Carey,4.33,0375415033,9780375415036,eng,1369,607,48,10/15/2002,Everyman's Library Classics +9644,Why I Write,George Orwell,4.03,0143036351,9780143036357,eng,120,6389,541,9/6/2005,Penguin Books +9646,Homage to Catalonia,George Orwell/Lionel Trilling,4.14,0156421178,9780156421171,eng,232,30358,1629,10/22/1980,Harcourt Inc.(Harvest Book) +9648,Keep the Aspidistra Flying,George Orwell,3.88,0141183721,9780141183725,eng,277,11970,688,10/26/2000,Penguin Books Ltd +9652,The Orwell Reader: Fiction Essays and Reportage,George Orwell/Richard H. Rovere,4.38,0156701766,9780156701761,eng,480,274,22,3/8/1961,Mariner Books +9653,If on a Winter's Night a Traveler,Italo Calvino/William Weaver/Peter Washington,4.05,0679420258,9780679420255,eng,254,1444,180,6/1/1993,Everyman's Library +9657,Parachutes & Kisses,Erica Jong,3.46,1585425001,9781585425006,eng,405,577,26,8/3/2006,Tarcherperigee +9659,Fear of Fifty: A Midlife Memoir,Erica Jong,3.55,1585425249,9781585425242,eng,329,455,31,9/7/2006,Tarcherperigee +9660,How to Save Your Own Life: An Isadora Wing Novel,Erica Jong/Anthony Burgess,3.60,1585424994,9781585424993,eng,313,1316,80,7/6/2006,Tarcherperigee +9666,Any Woman's Blues,Erica Jong,3.51,1585425494,9781585425495,eng,362,425,28,1/1/2007,Tarcherperigee +9669,What Do Women Want?: Essays by Erica Jong,Erica Jong,3.69,1585425540,9781585425549,eng,309,164,9,5/10/2007,Tarcherperigee +9677,Fanny: Being the True History of the Adventures of Fanny Hackabout-Jones,Erica Jong,3.79,0393324354,9780393324358,eng,512,971,71,5/17/2003,W. W. Norton Company +9681,Serenissima aka Shylock's Daughter,Erica Jong,3.29,0440201047,9780440201045,eng,384,282,17,3/1/1988,Dell +9696,Dogeaters,Jessica Hagedorn,3.59,1559362154,9781559362153,eng,96,90,8,12/1/2002,Theatre Communications Group +9704,Crescent and Star: Turkey Between Two Worlds,Stephen Kinzer,3.84,0374528667,9780374528669,eng,272,797,116,9/4/2002,Farrar Straus and Giroux +9712,Love in the Time of Cholera,Gabriel García Márquez/Edith Grossman,3.91,140003468X,9781400034680,eng,348,324487,13070,10/5/2003,Vintage International +9713,El amor en los tiempos del cólera,Gabriel García Márquez,3.91,9500703203,9789500703208,spa,451,663,46,1/1/1992,Sudamericana +9714,Gabriel Garcia Marquez's Love in the Time of Cholera: A Reader's Guide,Thomas Fahy,4.24,0826414753,9780826414755,eng,188,1953,84,4/10/2003,Bloomsbury Academic +9717,The Unbearable Lightness of Being,Milan Kundera/Michael Henry Heim,4.10,0571224385,9780571224388,eng,320,248686,8251,10/27/2009,Harper Perennial +9723,Obasan,Joy Kogawa,3.64,0385468865,9780385468862,eng,320,5407,368,12/27/1993,Anchor Books +9735,Ender's Game Boxed Set: Ender's Game Ender's Shadow Shadow of the Hegemon,Orson Scott Card,4.49,0765344955,9780765344953,en-US,1296,1795,60,9/16/2002,Tor Books +9739,Speaker for the Dead (Ender's Saga #2),Orson Scott Card,4.07,0812532570,9780812532579,eng,432,317,31,2/15/1987,Tor Books +9742,The Audacity of Hope: Thoughts on Reclaiming the American Dream,Barack Obama,3.75,0307237699,9780307237699,eng,375,127324,4496,10/17/2006,Crown +9746,Mao: The Unknown Story,Jung Chang/Jon Halliday,3.83,0679746323,9780679746324,eng,801,8035,640,11/14/2006,Anchor Books +9754,The Art of War,Mao Zedong,4.20,097607267X,9780976072676,eng,328,62,0,4/1/2005,El Paso Norte Press +9755,Oracle Bones: A Journey Between China's Past and Present,Peter Hessler,4.18,0060826584,9780060826581,eng,512,5247,491,4/25/2006,Harper +9763,Wild Swans: Three Daughters of China,Jung Chang,4.26,0007176155,9780007176151,eng,666,1832,214,4/5/2004,Harper Perennial +9767,The Wild Swans,Peg Kerr,3.67,0446608475,9780446608473,eng,464,352,37,11/1/2001,Aspect +9784,Women in Love,D.H. Lawrence,3.67,0486424588,9780486424583,eng,416,25059,702,1/15/2003,Dover Publications +9786,Women Who Love Too Much,Robin Norwood,4.02,0099474123,9780099474128,eng,314,267,32,9/2/2004,Arrow +9787,Men Who Hate Women and the Women Who Love Them: When Loving Hurts and You Don't Know Why,Susan Forward/Joan Torres,4.09,0553381415,9780553381412,eng,304,1570,64,1/2/2002,Bantam +9789,A Walk in the Woods: Rediscovering America on the Appalachian Trail,Bill Bryson,4.06,0767902521,9780767902526,eng,284,4315,532,5/4/1999,Broadway Books +9791,A Walk in the Woods: Rediscovering America on the Appalachian Trail,Bill Bryson,4.06,0307279464,9780307279460,eng,397,308840,14993,12/26/2006,Anchor Books +9796,A Walk in the Woods (Stickerific),Walt Disney Company,3.50,0736411038,9780736411035,eng,16,8,0,1/23/2001,Golden/Disney +9799,The Fortress of Solitude,Jonathan Lethem,3.88,0571219357,9780571219353,eng,528,16714,1010,1/6/2005,Faber and Faber +9802,Fortress of Solitude / The Devil Genghis,Kenneth Robeson/Lester Dent,3.99,1932806490,9781932806496,eng,128,95,11,12/1/2006,Nostalgia Ventures +9806,Our Ancestors: The Cloven Viscount The Baron in the Trees The Non-Existent Knight,Italo Calvino,4.27,0330261568,9780330261562,eng,393,958,57,12/31/1980,Picador +9811,Difficult Loves,Italo Calvino,3.94,0156260557,9780156260558,en-US,300,4084,205,9/23/1985,Mariner Books +9813,The Nonexistent Knight & The Cloven Viscount,Italo Calvino,4.03,0156659751,9780156659758,en-US,272,4701,181,3/28/1977,Mariner Books +9815,The View from Castle Rock,Alice Munro,3.68,1400042828,9781400042821,eng,349,3459,423,11/7/2006,Alfred A. Knopf +9816,The View From Castle Rock,Alice Munro,3.68,0771065264,9780771065262,eng,368,53,12,11/19/2008,McClelland and Stewart +9820,Crossing to Safety,Wallace Stegner/Terry Tempest Williams/T.H. Watkins,4.16,037575931X,9780375759314,eng,368,31394,4262,4/9/2002,Modern Library +9826,Oh Rats! The Story of Rats and People,Albert Marrin/C.B. Mordan,3.77,0525477624,9780525477624,eng,48,432,90,8/17/2006,Dutton Books for Young Readers +9827,King Rat (Asian Saga #4),James Clavell,4.14,0385333765,9780385333764,eng,368,28103,643,5/19/2009,Delta +9828,Rat Bastards: The Life and Times of South Boston's Most Honorable Irish Mobster,John "Red" Shea/Mark Wahlberg,3.51,0060837160,9780060837167,eng,304,34,3,3/14/2006,William Morrow +9831,Julius Knipl Real Estate Photographer: The Beauty Supply District,Ben Katchor,4.35,0375700986,9780375700989,eng,120,174,16,8/12/2003,Pantheon +9832,Blind Willow Sleeping Woman: 24 Stories,Haruki Murakami/Ellen Archer/Patrick Lawlor,3.84,1400102952,9781400102952,eng,0,28,3,10/15/2006,Tantor Media +9833,Blind Willow Sleeping Woman,Haruki Murakami/Philip Gabriel/Jay Rubin,3.84,1400044618,9781400044610,eng,333,22847,1280,8/29/2006,Alfred A. Knopf +9838,The Bookseller of Kabul,Åsne Seierstad/Ingrid Christopherson,3.77,0316159417,9780316159418,en-US,288,34941,2473,10/26/2004,Little Brown and Company +9840,Jasmine and Stars: Reading More Than Lolita in Tehran,Fatemeh Keshavarz,3.63,0807831093,9780807831090,en-US,174,258,46,3/5/2007,University of North Carolina Press +9841,Making Globalization Work,Joseph E. Stiglitz,3.85,0393061221,9780393061222,eng,384,1718,88,9/17/2006,W. W. Norton Company +9844,Prep : A Novel,Curtis Sittenfeld,3.38,081297235X,9780812972351,eng,420,55304,4450,11/22/2005,Random House Trade Paperbacks +9862,Tan fuerte tan cerca,Jonathan Safran Foer,3.98,8426415164,9788426415165,eng,457,47,1,9/30/2005,Lumen +9863,The Wizard of Oz,Salman Rushdie/Richard Maltby/Melvyn Bragg,4.00,0851703003,9780851703008,eng,69,749,54,5/27/1992,British Film Institute +9864,The Ground Beneath Her Feet,Salman Rushdie,3.79,0312254997,9780312254995,eng,576,9445,476,3/16/2000,Picador +9865,The Moor's Last Sigh,Salman Rushdie,3.93,009959241X,9780099592419,eng,434,10414,445,7/4/1996,Vintage +9866,Los Versos Satánicos,Salman Rushdie,3.71,8497598369,9788497598361,spa,679,1,0,8/30/2003,Debolsillo +9873,Dangling Man,Saul Bellow/Salman Rushdie,3.54,0140189351,9780140189353,eng,191,1718,103,10/1/1996,Penguin Classics +9875,Grimus,Salman Rushdie,3.41,0812969995,9780812969993,eng,320,2560,150,9/30/2003,Random House Trade +9888,Breakfast at Tiffany's,Truman Capote,3.89,0140274111,9780140274110,eng,157,2107,238,9/3/1998,Penguin Books +9897,Jesus' Son,Denis Johnson,4.09,041377242X,9780413772428,eng,192,321,30,1/23/2007,Methuen Publishing +9903,Angels,Denis Johnson,3.72,0099440830,9780099440833,eng,209,4263,227,3/6/2003,Vintage +9904,The Throne of the Third Heaven of the Nations Millennium General Assembly: Poems Collected and New,Denis Johnson,4.15,0060926961,9780060926960,eng,225,562,33,1/1/1996,Harper Perennial +9908,The Stars at Noon,Denis Johnson,3.58,0060976101,9780060976101,eng,192,597,40,5/30/2000,Harper Perennial +9912,The Rules of Attraction,Bret Easton Ellis,3.68,067978148X,9780679781486,eng,283,35311,974,6/30/1998,Vintage Contemporaries +9913,Glamorama,Bret Easton Ellis,3.46,0375703845,9780375703843,eng,546,18181,669,3/21/2000,Vintage +9915,Less Than Zero,Bret Easton Ellis,3.58,0679781498,9780679781493,eng,208,55900,2543,6/9/2010,Vintage Books +9919,A Christmas Memory,Truman Capote,4.24,0375837892,9780375837890,eng,48,9982,849,10/10/2006,Knopf Books for Young Readers +9920,In Cold Blood,Truman Capote/Bob Colacello,4.07,0375507906,9780375507908,eng,343,3266,332,3/5/2002,Modern Library +9921,The Southern Haunting of Truman Capote,James C. Simmons/Marie Rudisill,3.90,1581821360,9781581821369,eng,135,29,3,10/1/2000,Cumberland House Publishing +9922,Summer Crossing,Truman Capote,3.44,0812975936,9780812975932,eng,142,5274,428,9/28/2006,Modern Library +9923,Answered Prayers,Truman Capote,3.49,0141185937,9780141185934,eng,192,102,17,10/25/2001,Penguin Classics +9924,The Grass Harp Including A Tree of Night and Other Stories,Truman Capote,4.01,0679745572,9780679745570,eng,272,4533,188,9/28/1993,Vintage +9929,From Babylon to Timbuktu: A History of the Ancient Black Races Including the Black Hebrews,Rudolph R. Windsor/El Hagahn,4.31,0962088110,9780962088117,eng,151,406,30,8/25/2006,Windsor Golden Series +9931,Cruelest Journey: Six Hundred Miles To Timbuktu,Kira Salak,3.93,0792274571,9780792274575,eng,320,542,65,11/1/2004,National Geographic Society +9936,Between Time and Timbuktu or Prometheus-5,Kurt Vonnegut Jr.,3.46,0385280793,9780385280792,eng,304,727,23,7/15/1972,Delta +9950,Murder in Amsterdam: The Death of Theo van Gogh and the Limits of Tolerance,Ian Buruma,3.72,1594201080,9781594201080,eng,288,996,98,9/7/2006,Penguin Press HC The +9957,The Cement Garden,Ian McEwan,3.54,0099468387,9780099468387,eng,144,18376,1022,8/5/2004,Vintage +9961,Atonement,Ian McEwan,3.90,0099429799,9780099429791,eng,372,4844,506,5/2/2002,Vintage +9974,Gertrud The Great Of Helfta: Spiritual Exercises,Gertrude the Great/Gertrud Jaron Lewis,3.43,0879074493,9780879074494,eng,165,7,1,11/1/1989,Cistercian Publications +9975,Gertrud,Hermann Hesse,3.85,3518373900,9783518373903,ger,180,134,5,1/1/1983,Suhrkamp +9981,Der Prozess,Franz Kafka,3.98,0805232117,9780805232110,ger,0,2,0,5/5/1988,Schocken +9987,Naokos Lächeln,Haruki Murakami/Ursula Gräfe,4.03,3442730503,9783442730506,ger,416,1254,63,2/1/2003,btb +9997,The Ruined Map,Kōbō Abe/E. Dale Saunders,3.55,0375726527,9780375726521,eng,304,1398,105,12/4/2001,Vintage +10000,The Face of Another,Kōbō Abe/E. Dale Saunders,3.78,0375726535,9780375726538,eng,238,2584,153,2/4/2003,Vintage +10002,Three Plays: Involuntary Homicide / The Green Stockings / The Ghost is Here,Kōbō Abe/Donald Keene,3.91,0231082819,9780231082815,eng,233,83,4,3/1/1997,Columbia University Press +10004,Secret Rendezvous,Kōbō Abe/Juliet Winters Carpenter,3.61,0375726543,9780375726545,eng,192,989,82,7/9/2002,Vintage +10006,Oracle Night,Paul Auster,3.78,0965913228,9780965913225,eng,245,9941,462,12/2/2003,Henry Holt +10008,Eleanor Rigby,Douglas Coupland,3.65,1582346437,9781582346434,eng,272,8517,372,5/30/2006,Bloomsbury USA +10009,Homo Faber,Max Frisch,3.74,0156421356,9780156421355,eng,228,12491,267,5/1/1994,Mariner Books +10013,Erläuterungen Zu Max Frisch Homo Faber,Bernd Matzkowski,3.60,3804417833,9783804417830,ger,104,4,0,5/11/2002,C. Bange +10023,Homo faber: Ein Bericht.,Max Frisch,3.74,3458340440,9783458340447,ger,298,37,5,1/1/1995,Insel +10029,The Philosophy of Jean-Paul Sartre,Jean-Paul Sartre,3.89,1400076323,9781400076321,eng,512,190,8,5/27/2003,Vintage +10033,Being and Nothingness,Jean-Paul Sartre/Hazel E. Barnes/Mary Warnock/Richard Eyre,3.96,0415278481,9780415278485,eng,688,23344,267,8/28/2003,Routledge +10034,The Age of Reason,Jean-Paul Sartre,3.98,0679738959,9780679738954,eng,408,9477,313,7/7/1992,Vintage International +10040,Die Entdeckung der Langsamkeit,Sten Nadolny,3.95,3492207006,9783492207003,ger,358,1806,27,3/28/1999,Piper Verlag +10050,Youth in Revolt: The Journals of Nick Twisp,C.D. Payne,4.02,0385481969,9780385481960,eng,512,8257,793,1/1/2001,Broadway Books +10055,And I Don't Want to Live This Life: A Mother's Story of Her Daughter's Murder,Deborah Spungen,4.10,0449911411,9780449911419,eng,408,4746,298,9/29/1996,Ballantine Books +10057,Sid and Nancy: Love Kills,Alex Cox/Abbe Wool,3.48,0571145450,9780571145454,eng,143,140,5,12/31/1986,Faber & Faber +10058,Flags of Our Fathers,James D. Bradley/Ron Powers,4.19,0553384155,9780553384154,eng,382,45954,1297,8/29/2006,Bantam +10061,Flags of Our Fathers: A Young People's Edition,Michael R. French/Ron Powers/James D. Bradley,4.17,0440229200,9780440229209,eng,224,255,28,8/1/2006,Laurel Leaf Library +10073,A Long Way Down,Nick Hornby,3.42,1594481938,9781594481932,eng,368,65202,3943,5/2/2006,Riverhead Books +10075,Clockwork (Cover to Cover),Philip Pullman,3.87,185549695X,9781855496958,eng,0,24,1,7/29/2002,BBC Audiobooks +10079,Mary Queen of Scots,Antonia Fraser,4.05,038531129X,9780385311298,eng,568,12235,306,9/1/1993,Delta +10080,Mary Queen of Scots and the Murder of Lord Darnley,Alison Weir,4.04,0712664564,9780712664561,eng,640,4947,119,2/5/2004,Pimlico +10083,On the Trail of Mary Queen of Scots,J. Keith Cheetham,3.25,0946487502,9780946487509,eng,192,12,1,6/1/1999,Luath Press Ltd +10084,River of Blue Fire (Otherland #2),Tad Williams,4.02,0886778441,9780886778446,eng,675,13383,235,9/1/1999,Daw Books +10089,Mary Queen of Scots: Queen Without a Country,Kathryn Lasky,3.83,0439194040,9780439194044,eng,202,4825,148,5/1/2002,Scholastic +10090,Mountain of Black Glass (Otherland #3),Tad Williams,4.05,0886779065,9780886779061,eng,749,13265,163,9/12/2000,Daw Books +10096,Mary Queen of Scots: Pride Passion and a Kingdom Lost,Jenny Wormald,3.72,1860645887,9781860645884,eng,224,39,6,5/4/2001,Tauris Parke Paperbacks +10097,Queen of Scots: The True Life of Mary Stuart,John Guy,3.93,0618254110,9780618254118,eng,581,1882,155,4/7/2004,Houghton Mifflin +10105,The Last Wife of Henry VIII,Carolly Erickson,3.89,0312352182,9780312352189,en-US,326,10702,366,10/3/2006,St. Martin's Press +10106,The Children of Henry VIII,Alison Weir,4.05,0345407865,9780345407863,eng,385,11134,418,7/8/1997,Ballantine Books +10107,The Last Days of Henry VIII,Robert Hutchinson,4.14,0060837330,9780060837334,eng,368,1523,23,9/20/2005,William Morrow +10108,The Autobiography of Henry VIII: With Notes by His Fool Will Somers,Margaret George,4.26,0312194390,9780312194390,eng,939,24108,822,9/15/1998,Griffin +10112,Henry VIII (Shakespeare Pelican),William Shakespeare/Stephen Orgel,3.54,0140714758,9780140714753,eng,126,93,14,8/1/2001,Penguin Classics +10115,The Memoirs of Cleopatra,Margaret George,4.18,0330353829,9780330353823,eng,1139,15616,913,1/10/1998,MacMillan General Books +10118,Saint George and the Dragon,Margaret Hodges/Trina Schart Hyman,4.18,0316367958,9780316367950,eng,32,6935,389,9/4/1990,Little Brown Books for Young Readers +10126,Kiss Me Like a Stranger: My Search for Love and Art,Gene Wilder,3.90,0312337078,9780312337070,eng,261,3668,419,3/7/2006,St. Martin's Griffin +10134,Wie ich eines schönen Morgens im April das 100%ige Mädchen sah,Haruki Murakami/Nora Bierich,3.80,3499222507,9783499222504,ger,218,44,2,8/1/1998,Rowohlt Tb +10147,The Complete Sherlock Holmes Volume I,Arthur Conan Doyle/Kyle Freeman,4.49,1593080344,9781593080341,eng,709,26794,278,9/1/2003,Barnes Noble Classics +10148,The Complete Sherlock Holmes Volume II,Arthur Conan Doyle/Kyle Freeman,4.47,1593080409,9781593080402,eng,709,874,57,10/1/2003,Barnes Noble Classics +10156,The Last of Her Kind,Sigrid Nunez,3.72,0312425945,9780312425944,eng,391,1459,242,12/12/2006,Picador USA +10165,Anatomy of Love: A Natural History of Mating Marriage and Why We Stray,Helen Fisher,3.94,0449908976,9780449908976,en-US,432,501,36,1/3/1994,Ballantine Books +10170,The Devil's in the Details (A Camilla MacPhee Mystery #4),Mary Jane Maffini,4.00,189491712X,9781894917124,eng,320,63,11,10/1/2004,Napoleon and Co +10172,Wigfield: The Can-Do Town That Just May Not,Amy Sedaris/Stephen Colbert/Paul Dinello,3.58,1565117727,9781565117723,eng,5,81,19,5/19/2004,Highbridge Audio +10173,The SantaLand Diaries and Season's Greetings,David Sedaris/Joe Mantello,4.18,0822216310,9780822216315,eng,54,584,34,12/1/1998,Dramatists Play Service +10174,Jenny and the Jaws of Life: Short Stories,Jincy Willett/David Sedaris,3.74,0312306180,9780312306182,en-US,272,1307,178,9/14/2002,St. Martin's Griffin +10200,Venac sonetnih venaca; Puževa srma,Dobrica Erić,0.00,8644101277,9788644101277,srp,222,0,0,1/1/1996,Izdavačka agencija "Draganić" +10203,View With a Grain of Sand: Selected Poems,Wisława Szymborska/Stanisław Barańczak/Clare Cavanagh,4.33,0156002167,9780156002165,eng,214,3479,211,5/26/1995,Mariner Books +10204,View with a Grain of Sand: Selected Poems,Wisława Szymborska,4.33,0571191630,9780571191635,eng,214,33,7,10/23/1996,Faber Faber +10205,Poems New and Collected,Wisława Szymborska/Clare Cavanagh,4.43,0156011468,9780156011464,eng,296,2561,120,11/16/2000,Mariner Books +10206,Sounds Feelings Thoughts: Seventy Poems by Wislawa Szymborska,Wisława Szymborska/Magnus J. Kruyski,4.36,0691013802,9780691013800,eng,232,229,22,8/21/1981,Princeton University Press +10208,Miracle Fair: Selected Poems,Wisława Szymborska/Joanna Trzeciak/Czesław Miłosz,4.42,0393323854,9780393323856,eng,159,482,47,11/17/2002,W. W. Norton Company +10210,Jane Eyre,Charlotte Brontë/Michael Mason,4.12,0142437204,9780142437209,eng,532,1409369,27884,2/4/2003,Penguin +10215,The Far Pavilions,M.M. Kaye,4.21,0517333414,9780517333419,eng,0,19,4,12/12/1988,Random House Value Publishing +10217,Death in Kashmir,M.M. Kaye,3.95,0312263104,9780312263102,eng,256,1511,104,12/1/2000,St. Martins Press-3PL +10219,The Sun in the Morning: My Early Years in India and England,M.M. Kaye,4.22,0312049994,9780312049997,en-US,454,249,39,9/1/1990,St. Martin's Press +10220,Death in the Andamans,M.M. Kaye,3.93,0312252811,9780312252816,eng,272,845,57,2/11/2000,Minotaur Books +10221,Death in Berlin,M.M. Kaye,3.89,0312263082,9780312263089,eng,272,889,62,6/8/2000,Minotaur Books +10222,The Far Pavilions,M.M. Kaye,4.21,031215125X,9780312151256,en-US,958,37064,1028,1/15/1997,St. Martin's Griffin +10224,Enchanted Evening,M.M. Kaye,4.38,0312265816,9780312265816,eng,368,99,11,12/5/2000,St. Martin's Press +10232,Pathologies of Power: Health Human Rights and the New War on the Poor,Paul Farmer/Amartya Sen,4.25,0520243269,9780520243262,eng,438,3994,212,11/22/2004,University of California Press +10233,Infections and Inequalities: The Modern Plagues,Paul Farmer,4.09,0520229134,9780520229136,eng,424,2534,80,2/23/2001,University of California Press +10235,Mountains Beyond Mountains: The Quest of Dr. Paul Farmer a Man Who Would Cure the World,Tracy Kidder,4.21,0812973011,9780812973013,eng,333,63813,4347,8/31/2004,Random House Trade +10238,The Tao of Physics: An Exploration of the Parallels between Modern Physics and Eastern Mysticism,Fritjof Capra,3.97,1570625190,9781570625190,eng,366,14183,398,1/4/2000,Shambhala +10255,Dr. Mary's Monkey: How the Unsolved Murder of a Doctor a Secret Laboratory in New Orleans and Cancer-Causing Monkey Viruses are Linked to Lee Harvey Oswald the JFK Assassination and Emerging Global Epidemics,Edward T. Haslam/Jim Marrs,3.92,0977795306,9780977795306,eng,374,1023,164,4/1/2007,Trine Day +10261,The Art of Richard P. Feynman,Michelle Feynman,4.31,2884490477,9782884490474,en-US,174,13,2,7/1/1995,Routledge +10263,The Early History of God: Yahweh and the Other Deities in Ancient Israel,Mark S. Smith/Patrick D. Miller,4.03,080283972X,9780802839725,eng,243,238,29,8/28/2002,Eerdmans +10269,Haiti History and the Gods,Joan Dayan/Colin Dayan,3.95,0520213688,9780520213685,eng,362,37,1,3/10/1998,University of California Press +10270,Acts of God: The Unnatural History of Natural Disaster in America,Ted Steinberg,3.72,0195309685,9780195309683,eng,309,104,8,6/1/2006,Oxford University Press USA +10285,The World's Religions,Huston Smith,4.07,0062508113,9780062508119,eng,416,8741,306,9/13/1991,HarperOne +10289,Introduction to World Religions,Christopher Partridge,3.78,0800637143,9780800637149,eng,495,44,4,3/24/2005,Augsburg Fortress Publishing +10303,FDR's Folly: How Roosevelt and His New Deal Prolonged the Great Depression,Jim Powell,4.00,140005477X,9781400054770,eng,352,481,45,9/28/2004,Crown Forum +10308,Folly and Glory (The Berrybender Narratives #4),Larry McMurtry,3.87,0743262727,9780743262729,en-US,358,1341,88,8/8/2005,Simon Schuster +10310,The Argumentative Indian: Writings on Indian History Culture and Identity,Amartya Sen,3.80,031242602X,9780312426026,eng,432,6550,337,9/5/2006,Picador +10311,Argumentative Indian: Writings On Indian History Culture And Identity,Amartya Sen,3.80,0713996870,9780713996876,eng,391,29,7,6/28/2005,Allen Lane +10324,Things to Bring S#!t to Do: And Other Inventories of Anxiety: My Life in Lists,Karen Rizzo,3.67,1584795425,9781584795421,eng,160,48,12,10/1/2006,Stewart Tabori and Chang +10329,Dumpy's Valentine,Julie Andrews Edwards/Emma Walton Hamilton/Tony Walton/Ruby Randig,3.31,0060885734,9780060885731,eng,24,22,4,12/12/2006,Julie Andrews Collection +10332,Mandy,Julie Andrews Edwards/Johanna Westerman,4.24,0061131628,9780061131622,eng,320,9944,846,8/15/2006,HarperCollins +10340,Giraffes Can't Dance,Giles Andreae/Guy Parker-Rees/Hugh Laurie,4.30,1846162661,9781846162664,eng,32,15,3,6/1/2006,Orchard Books +10346,The Medici Giraffe and Other Tales of Exotic Animals and Power,Marina Belozerskaya,3.53,0316525650,9780316525657,eng,414,224,37,8/21/2006,Little Brown and Company +10347,The Giraffe Who Was Afraid of Heights (Physical & Behavioral Adaptation),David A. Ufer/Kirsten Carlson,3.87,0976882302,9780976882305,eng,32,37,9,6/1/2006,Arbordale Publishing +10370,Where the Red Fern Grows with Connections,Wilson Rawls/Rafe Martin/Borden Deal/Kemp P. Battle/Robert Bethke/Harold Courlander/Maya Angelou/Nicholasa Mohr/Dick Perry/John R. Erickson,4.37,0030547741,9780030547744,eng,288,121,5,9/1/1998,Holt McDougal +10372,Summer of the Monkeys,Wilson Rawls,4.03,0440415802,9780440415800,eng,288,11150,794,12/29/1998,Yearling +10382,Dreams from My Father: A Story of Race and Inheritance,Barack Obama,3.88,0307383415,9780307383419,en-US,442,1225,181,1/9/2007,Crown +10403,Doctor Who: Cat's Cradle-Time's Crucible,Marc Platt,3.22,0426203658,9780426203650,eng,275,589,40,2/20/1992,Virgin Publishing +10404,Doctor Who: Cat's Cradle-Witch Mark,Andrew Hunt,3.22,0426203682,9780426203681,eng,256,399,25,6/18/1992,Virgin Publishing +10405,Doctor Who: Cat's Cradle-Warhead,Andrew Cartmel,3.51,0426203674,9780426203674,eng,262,410,34,4/16/1992,Virgin Publishing +10412,He's Just Not That Into You: The No-Excuses Truth to Understanding Guys,Greg Behrendt/Liz Tuccillo,3.66,141694740X,9781416947400,eng,208,52688,2463,12/26/2006,Gallery Books +10414,Do Not Open This Book,Michaela Muntean/Pascal Lemaître,3.90,0439698391,9780439698399,eng,40,547,185,3/1/2006,Scholastic Press +10416,Not Your Mother's Slow Cooker Cookbook,Beth Hensperger/Julie Kaufmann,3.78,1558322450,9781558322455,en-US,520,5695,87,12/21/2004,Harvard Common Press +10417,Hands Are Not for Hitting (Ages 4-7),Martine Agassi/Marieka Heinlen,4.04,1575420775,9781575420776,eng,35,309,45,2/1/2001,Free Spirit Publishing +10420,Not So Big House,Sarah Susanka/Kira Obolensky,4.07,1561583766,9781561583768,eng,208,1327,149,4/20/2001,Taunton Press +10421,Rodinsky's Room,Rachel Lichtenstein/Iain Sinclair,3.85,1862073295,9781862073296,eng,362,199,19,2/1/2000,Granta UK +10427,The Rough Guide to Cuba 3,Fiona McAuslan/Matthew Norman,3.82,1843534096,9781843534099,eng,640,7,1,6/20/2005,Rough Guides +10429,Cuba: A New History,Richard Gott,4.06,0300111142,9780300111149,en-GB,384,311,39,11/11/2005,Yale University Press +10431,Cuba 15,Nancy Osa,3.45,0385732333,9780385732338,eng,304,1054,145,3/8/2005,Ember +10433,Cuba (Jake Grafton #7),Stephen Coonts,3.82,0312971397,9780312971397,eng,461,1452,63,5/15/2000,St. Martin's Paperbacks +10441,The Memory Keeper's Daughter,Kim Edwards,3.67,0143037145,9780143037149,eng,401,535636,17550,5/30/2006,Penguin Books +10445,Too Far to Go: The Maples Stories,John Updike,4.02,0449200167,9780449200162,eng,256,361,35,6/12/1982,Fawcett Books +10456,Far to Go (Margaret Thursday #2),Noel Streatfeild,3.81,0440424941,9780440424949,eng,161,167,9,2/1/1986,Yearling +10460,The Children on the Top Floor,Noel Streatfeild,3.79,0440412242,9780440412243,en-GB,180,148,17,7/1/1985,Yearling +10461,Desolation Angels,Jack Kerouac/Joyce Johnson,3.93,1573225053,9781573225052,eng,432,9646,273,9/1/1995,Riverhead Books +10464,Healing With Whole Foods: Asian Traditions and Modern Nutrition,Paul Pitchford,4.41,1556434308,9781556434303,en-US,784,2948,144,11/5/2002,North Atlantic Books +10471,The New Whole Foods Encyclopedia: A Comprehensive Resource for Healthy Eating,Rebecca Wood/Paul Pitchford,4.20,0140250328,9780140250329,eng,464,212,18,7/1/1999,Penguin Books +10474,The Discomfort Zone: A Personal Journey,Jonathan Franzen,3.40,1598870548,9781598870541,en-US,6,43,15,8/28/2006,HighBridge Company +10476,The Parrot's Lament and Other True Tales of Animal Intrigue Intelligence and Ingenuity,Eugene Linden,3.93,0452280680,9780452280687,eng,224,363,50,8/1/2000,Plume +10490,Postscript to the Name of the Rose,Umberto Eco,4.05,015173156X,9780151731565,eng,84,661,34,1/1/1984,Houghton Mifflin Harcourt P +10495,El nombre de la rosa,Umberto Eco,4.12,8497592581,9788497592581,spa,782,158,11,2/28/2006,DeBolsillo +10500,Baby Names for Dummies,Margaret Rose/Heather Rose Jones,3.32,0764543407,9780764543401,eng,364,13,7,5/1/2005,For Dummies +10503,The Mysterious Flame of Queen Loana,Umberto Eco/Geoffrey Brock,3.35,0156030438,9780156030434,eng,480,8263,624,6/5/2006,Mariner Books +10505,History of Beauty,Umberto Eco/Girolamo De Michele/Alastair McEwen/Agnolo di Cosimo Bronzino,3.78,0847826465,9780847826469,eng,432,47625,186,11/13/2004,Rizzoli +10507,Baudolino,Umberto Eco/William Weaver/R.C.S. Libri,3.74,0156029065,9780156029063,eng,527,16116,698,10/6/2003,Harcourt +10514,Travels in Hyperreality,Umberto Eco/John Radziewicz/William Weaver,3.89,0156913216,9780156913218,eng,324,2021,78,5/27/1990,Mariner Books +10517,How to Travel with a Salmon and Other Essays,Umberto Eco/William Weaver,3.85,015600125X,9780156001250,eng,256,218,26,9/15/1995,Mariner Books +10518,A Theory of Semiotics,Umberto Eco,4.01,0253202175,9780253202178,eng,368,1035,34,2/1/1978,Indiana University Press +10519,Art and Beauty in the Middle Ages,Umberto Eco/Hugh Bredin,3.99,0300093047,9780300093049,en-US,144,994,35,2/8/2002,Yale University Press +10525,Mouse or Rat?: Translation as Negotiation,Umberto Eco,3.80,0753817985,9780753817988,eng,208,311,27,9/28/2004,Orion Publishing Co. +10528,The Role of the Reader: Explorations in the Semiotics of Texts,Umberto Eco,4.06,025320318X,9780253203182,eng,288,224,5,7/22/1979,Indiana University Press +10529,Libraries,Candida Höfer/Umberto Eco,4.28,3829601867,9783829601863,eng,271,303,44,8/20/2014,Schirmer/Mosel +10534,The Art of War,Sun Tzu/Thomas Cleary/Pulat Otkan/Giray Fidan,3.97,1590302257,9781590302255,eng,273,235924,5869,1/11/2005,Shambhala +10536,Sun Tzu: The Art of War for Managers; 50 Strategic Rules,Sun Tzu/Gerald A. Michaelson,3.80,1580624596,9781580624596,eng,224,316,12,1/1/2001,Adams Media +10537,The Art of War,Sun Tzu/Ralph D. Sawyer,3.97,1402561016,9781402561016,eng,5,72,22,6/1/2003,Recorded Books Inc. +10539,The Lost Continent: Travels in Small-town America,Bill Bryson,3.83,0552998087,9780552998086,eng,379,729,78,1/2/1999,Black Swan +10541,Made in America: An Informal History of the English Language in the United States,Bill Bryson,3.91,0380713810,9780380713813,eng,364,10836,613,10/23/2001,Avon Books +10545,Ulysses,James Joyce/Declan Kiberd,3.73,0141182806,9780141182803,en-US,933,1517,235,3/30/2000,Penguin Books Ltd +10546,The Long-Lost Map (Ulysses Moore #2),Pierdomenico Baccalario/Iacopo Bruno/Leah D. Janeczko,4.00,043977439X,9780439774390,eng,272,1693,76,7/1/2006,Scholastic Inc. +10552,The Wicked Wit of Charles Dickens,Shelley Klein/Charles Dickens,3.55,1854790471,9781854790477,eng,162,30,6,9/1/2002,Michael O'Mara +10559,The Three Musketeers,Alexandre Dumas/Barbara T. Cooper,4.07,1593081480,9781593081485,eng,761,1149,147,11/25/2004,Barnes Noble Classics +10561,The Three Musketeers,Alexandre Dumas/Michael Page,4.07,1596009705,9781596009707,eng,24,54,11,7/25/2005,Brilliance Audio +10562,The Three Musketeers (Great Illustrated Classics),Malvina G. Vogel/Alexandre Dumas,4.08,1577658035,9781577658030,eng,236,1379,56,12/3/2005,Baronet Books +10563,The Three Musketeers (The d'Artagnan Romances. #1),Alexandre Dumas/Keith Wren,4.07,1853260401,9781853260407,eng,592,820,92,5/5/2001,Wordsworth Editions +10566,Lisey's Story,Stephen King,3.68,0743289412,9780743289412,eng,513,59097,2709,10/24/2006,Scribner +10568,King Arthur Flour Whole Grain Baking: Delicious Recipes Using Nutritious Whole Grains,King Arthur Flour,4.13,0881507199,9780881507195,eng,544,4866,78,10/9/2006,Countryman Press +10570,King Dork (King Dork #1),Frank Portman,3.56,0385732910,9780385732918,eng,344,6352,861,4/11/2006,Delacorte Press +10572,A Clash of Kings (A Song of Ice and Fire #2),George R.R. Martin,4.41,0553381695,9780553381696,eng,969,638766,16535,5/28/2002,Bantam +10574,The Colorado Kid,Stephen King,3.32,0843955848,9780843955842,eng,178,24611,1970,2/20/2006,Hard Crime Case +10575,Stationary Bike,Stephen King/Ron McLarty,3.54,0743555619,9780743555616,eng,44,3035,167,7/1/2006,Simon & Schuster Audio +10579,Everything's Eventual: 14 Dark Tales,Stephen King,3.97,1416524355,9781416524359,eng,605,73145,1519,11/1/2005,Pocket Books +10581,The Mist,Stephen King/ZBS Foundation,3.95,0671874756,9780671874759,eng,2,168,10,9/1/1993,Simon & Schuster Audio +10583,Pet Sematary,Stephen King,3.98,1416524347,9781416524342,eng,576,257466,3768,11/1/2005,Pocket Books +10585,Insomnia,Stephen King/Bettina Blanch Tyroller,3.82,8497597729,9788497597722,spa,890,117901,2028,2/28/2005,Debolsillo +10586,The Stephen King Collection: Stories from Night Shift,Stephen King/John Glover,4.00,0739317369,9780739317365,eng,11,56,9,2/8/2005,Random House Audio +10587,The Man in the Black Suit: 4 Dark Tales,Stephen King/Ana Juan/John Cullum/Becky Ann Baker/Íñigo Jáuregui/Peter Gerety/Arliss Howard,3.78,074352585X,9780743525855,eng,128,1369,101,11/1/2002,Simon Schuster Audio +10593,The Shining,Stephen King/Campbell Scott,4.22,0743537009,9780743537001,eng,16,357,107,8/2/2005,Simon & Schuster Audio +10594,Stephen King: America's Best-Loved Boogeyman,George Beahm,3.78,0836254279,9780836254273,en-US,304,50,2,5/1/1998,Andrews McMeel Publishing +10597,The Illustrated Stephen King Trivia Book,Brian James Freeman/Bev Vincent/Glenn Chadbourne,4.23,1587671166,9781587671166,eng,404,22,5,5/1/2005,Cemetery Dance Publications +10599,Gray Matter and Other Stories from Night Shift,Stephen King/John Glover,3.93,055347183X,9780553471830,eng,0,156,9,8/1/1993,Random House Audio +10603,Cujo,Stephen King,3.71,0307348245,9780307348241,spa,432,197993,2816,6/6/2006,Plaza y Janés +10605,Thinner,Richard Bachman/Stephen King,3.71,0451190750,9780451190758,eng,320,155020,1513,9/1/1996,Signet +10606,Stephen King from A to Z: An Encyclopedia of His Life and Work,George Beahm,3.83,0836269144,9780836269147,eng,251,53,2,3/31/1999,Andrews McMeel Publishing +10607,Black House (The Talisman #2),Stephen King/Peter Straub,4.01,034547063X,9780345470638,eng,688,46428,1220,9/30/2003,Ballantine Books +10612,The Stephen King Universe: A Guide to the Worlds of the King of Horror,Stanley Wiater/Christopher Golden/Hank Wagner,4.15,1580631606,9781580631600,en-US,478,6471,44,5/21/2001,Renaissance Books +10613,Night Shift,Stephen King,4.00,0451170113,9780451170118,en-US,326,1290,84,2/1/1979,Signet +10614,Misery,Stephen King,4.16,0450417395,9780450417399,eng,370,429510,7051,11/1/1988,New English Library +10617,The Bachman Books,Richard Bachman/Stephen King,4.11,0452277752,9780452277755,eng,704,62529,494,10/1/1996,Plume +10620,Misery,Stephen King/María Mir,4.16,074323359X,9780743233590,spa,368,129,13,3/26/2002,Simon & Schuster Libros en Español +10622,Carrie,Stephen King,3.96,0671039725,9780671039721,eng,253,2707,192,10/1/1999,Pocket Books +10624,Four Past Midnight: Featuring "The Langoliers",Stephen King,3.93,0451185978,9780451185976,eng,761,308,20,5/1/1995,Signet +10629,Christine,Stephen King/Marie Milpois,3.77,2253147699,9782253147695,fre,411,178403,2088,6/13/2001,LGF +10631,Sam Walton: Made In America,Sam Walton/John Huey,4.15,0553562835,9780553562835,eng,346,14157,610,6/1/1993,Bantam +10638,The Road to Reality: A Complete Guide to the Laws of the Universe,Roger Penrose,4.11,0679776311,9780679776314,eng,1099,6164,142,1/9/2007,Vintage +10639,The Paradox of Choice: Why More Is Less,Barry Schwartz,3.85,0060005696,9780060005696,eng,265,25312,1223,1/18/2005,Harper Perennial +10654,Coach: Lessons on the Game of Life,Michael Lewis,3.82,0393060918,9780393060911,en-US,96,1502,167,4/17/2005,W. W. Norton Company +10655,Losers: The Road to Everyplace But the White House,Michael Lewis,3.87,0679768092,9780679768098,en-US,320,235,19,7/28/1998,Vintage +10656,Next: The Future Just Happened,Michael Lewis,3.67,0393323528,9780393323528,en-US,240,1317,106,5/17/2002,W. W. Norton Company +10662,The Ends of the Earth: A Journey to the Frontiers of Anarchy,Robert D. Kaplan,4.12,0679751238,9780679751236,eng,496,1278,74,1/28/1997,Vintage +10663,Salvation to the Ends of the Earth: A Biblical Theology of Mission (New Studies in Biblical Theology (InterVarsity Press) #11),Andreas J. Köstenberger/Peter T. O'Brien,3.93,0851115195,9780851115191,eng,351,93,8,1/1/2001,Inter Varsity Press +10666,The Ends Of The Earth: A Journey At The Dawn Of The 21st Century,Robert D. Kaplan,4.12,0679431489,9780679431480,eng,476,10,3,2/27/1996,Random House Inc. +10669,When Genius Failed: The Rise and Fall of Long-Term Capital Management,Roger Lowenstein,4.19,0375758259,9780375758256,eng,264,20145,530,10/9/2001,Random House Trade Paperbacks +10670,When Genius Failed: The Rise And Fall Of Long Term Capital Management,Roger Lowenstein,4.19,1841155047,9781841155043,eng,275,247,13,6/1/2009,Fourth Estate +10682,The Secret of Fantasy Forest (Sweet Valley Kids #67),Francine Pascal/Molly Mia Stewart/Ying-Hwa Hu,3.94,0553483323,9780553483321,eng,96,54,2,9/1/1996,Sweet Valley +10686,Pearl and Wagner: Three Secrets,Kate McMullan/Janet Allison Brown/R.W. Alley,3.84,0803725744,9780803725744,eng,48,60,7,5/24/2004,Dial +10687,A History of Britain: The Fate Of Empire 1776-2000 (A History of Britain #3),Simon Schama,4.06,0786868996,9780786868995,en-US,576,675,41,12/18/2002,Miramax Books +10689,The Devil in the White City Murder Magic and Madness at the Fair that Changed America,Erik Larson,3.99,0385602057,9780385602051,eng,464,22,6,3/3/2003,Doubleday +10691,O Historiador,Elizabeth Kostova,3.78,857302710X,9788573027105,por,544,43,3,8/19/2005,Suma de Letras Brasileiras +10698,Kim,Rudyard Kipling/Jeffrey Meyers,3.72,1593081928,9781593081928,eng,286,398,63,12/15/2003,Barnes Noble Classics +10701,Birds Without Wings,Louis de Bernières,4.16,0436205491,9780436205491,eng,640,48,8,7/1/2004,Secker +10711,God Knows,Joseph Heller,3.80,0684841258,9780684841250,eng,368,2992,163,11/12/1997,Simon Schuster +10712,Picture This,Joseph Heller,3.68,0684868199,9780684868196,en-US,352,1219,67,3/24/2000,Simon Schuster +10713,Closing Time,Joseph Heller,3.02,0743239806,9780743239806,eng,464,106,9,7/1/2003,Simon & Schuster (Trade Division) +10714,Good as Gold,Joseph Heller,3.36,0684839741,9780684839745,eng,445,2631,100,11/12/1997,Simon Schuster +10718,Something Happened,Joseph Heller,3.52,0684841215,9780684841212,eng,576,6166,399,11/12/1997,Simon Schuster +10732,Archie Americana Series: Best of the Eighties Vol. 1,George Gladir/John L. Goldwater/Steve Geppi/Michael I. Silberkleit,3.91,1879794063,9781879794061,eng,96,61,1,6/26/2001,Archie Comics +10739,The Moviegoer,Walker Percy,3.68,0375701966,9780375701962,eng,242,21634,1660,4/14/1998,Vintage Books USA +10750,Wicked: The Life and Times of the Wicked Witch of the West,Gregory Maguire/Douglas Smith,3.53,0060745908,9780060745905,en-US,409,2828,459,3/2/2004,William Morrow Paperbacks +10751,Wicked: Memorias de una bruja mala (Los años malvados #1),Gregory Maguire/Claudia Conde,3.53,0061351393,9780061351396,spa,508,47,10,5/1/2007,Rayo +10756,The Sword and the Shield: The Mitrokhin Archive & the Secret History of the KGB,Christopher M. Andrew/Vasili Mitrokhin,3.93,0465003125,9780465003129,en-US,736,1170,82,8/29/2000,Basic Books +10757,Lay Down My Sword And Shield (Hackberry Holland #1),James Lee Burke,3.89,0752842692,9780752842691,eng,320,1680,117,9/4/2003,Orion +10760,Sword and Shield,John Terra,4.00,1560764988,9781560764984,eng,16,5,1,9/1/1992,TSR Inc. +10765,A Year in the Merde,Stephen Clarke,3.54,1582346178,9781582346175,en-US,276,11429,979,5/2/2006,Bloomsbury Publishing PLC +10767,Merde!: The Real French You Were Never Taught at School,Geneviève/Michael Heath,3.96,0684854279,9780684854274,eng,112,155,13,12/9/1998,Gallery Books +10770,Merde Encore!: More of the Real French You Were Never Taught at School,Geneviève/Michael Heath,3.96,0684854287,9780684854281,eng,104,46,1,12/9/1998,Gallery Books +10772,Can't Wait to Get to Heaven,Fannie Flagg/Cassandra Campbell,3.91,1415930686,9781415930687,eng,384,326,66,7/18/2006,Books on Tape +10776,Green Hills of Africa,Ernest Hemingway/Edward Shenton,3.56,0099460955,9780099460954,eng,200,7290,387,3/4/2004,Vintage Classics +10778,Across the River and into the Trees,Ernest Hemingway,3.33,0684844648,9780684844640,eng,272,5546,342,4/15/1998,Scribner +10780,Hemingway: The Paris Years,Michael S. Reynolds,4.17,0393318796,9780393318791,eng,402,490,35,5/17/1999,W. W. Norton Company +10783,Adios Hemingway,Leonardo Padura/John King,3.72,184195795X,9781841957951,eng,229,659,85,3/10/2006,Canongate U.S. +10785,By-Line: Selected Articles and Dispatches of Four Decades,Ernest Hemingway/William M. White,3.96,0684839059,9780684839059,en-US,512,421,33,5/12/1998,Scribner +10787,The Hemingway Women: Those Who Love Him - The Wives And Others,Bernice Kert,4.17,0393318354,9780393318357,eng,556,279,32,12/17/1998,W. W. Norton Company +10789,Hemingway: A Biography,Jeffrey Meyers,4.00,0306808900,9780306808906,eng,644,197,15,5/7/1999,Da Capo Press +10792,The Sword of Straw (The Sangreal Trilogy #2),Amanda Hemingway,3.81,0345460804,9780345460806,eng,336,138,8,3/28/2006,Del Rey +10796,A Farewell to Arms,Ernest Hemingway/John Slattery,3.80,0743564375,9780743564373,eng,8,290,65,5/1/2006,Simon Schuster Audio +10797,A Farewell to Arms,Ernest Hemingway,3.80,0684174693,9780684174693,eng,336,174,30,2/1/1982,MacMillan Publishing Company +10801,The Big Rock Candy Mountain,Wallace Stegner,4.15,0140139397,9780140139396,eng,563,6187,669,3/1/1991,Penguin +10802,Beyond the Hundredth Meridian: John Wesley Powell and the Second Opening of the West,Wallace Stegner/Bernard DeVoto,4.07,0140159940,9780140159943,eng,438,3010,244,3/1/1992,Penguin Books +10804,Collected Stories,Wallace Stegner/Lynn Stegner,4.22,0143039792,9780143039792,eng,576,608,59,7/25/2006,Penguin Classics +10805,All the Little Live Things,Wallace Stegner,4.09,0140154418,9780140154412,eng,345,2595,350,12/1/1991,Penguin Books +10806,Where the Bluebird Sings to the Lemonade Springs,Wallace Stegner/T.H. Watkins,4.10,0375759328,9780375759321,eng,234,1553,113,4/9/2002,Modern Library +10808,Wallace Stegner: His Life and Work,Jackson J. Benson,4.19,0140247963,9780140247961,eng,496,88,8,11/1/1997,Penguin Books +10810,Letters of E.B. White,E.B. White/Dorothy Lobrano Guth/Martha White/John Updike,4.13,0060757086,9780060757083,eng,736,694,39,11/28/2006,Harper +10814,Here Is New York,E.B. White/Roger Angell/Barbara Cohen/Judith Stonehill,4.30,1892145022,9781892145024,eng,58,5379,544,1/1/2000,Little Bookroom +10826,Charlotte's Web,E.B. White/Garth Williams,4.17,0061228745,9780061228742,eng,179,7,1,11/1/2006,HarperEntertainment +10832,Charlotte's Web,E.B. White/Garth Williams,4.17,0140364498,9780140364491,eng,256,223,22,10/28/1993,Penguin Books Limited (UK) +10836,Che Guevara: A Revolutionary Life,Jon Lee Anderson/José Hernández/Leena Nivala,4.12,0802135587,9780802135582,eng,814,15468,548,3/9/1998,Grove Press (NYC) +10846,Gatsby's Girl,Caroline Preston,3.54,0618537252,9780618537259,en-US,312,863,121,5/1/2006,Houghton Mifflin Harcourt +10853,In Search of Captain Zero: A Surfer's Road Trip Beyond the End of the Road,Allan C. Weisbecker,3.89,1585421774,9781585421770,eng,352,2246,166,9/16/2002,TarcherPerigee +10863,Pipe Dream (Strivers Row),Solomon Jones,3.97,0375756604,9780375756603,eng,341,139,17,7/31/2001,Villard +10867,The Pleasure of My Company,Steve Martin,3.78,0786888016,9780786888016,eng,176,13257,1240,10/6/2004,Hachette Books +10873,Shopgirl,Steve Martin,3.43,0786891076,9780786891078,eng,130,30067,2166,1/1/2000,Hachette Books +10876,The Mutineer: Rants Ravings and Missives from the Mountaintop 1977-2005,Hunter S. Thompson,4.08,0684873176,9780684873176,eng,752,84,4,3/1/2013,Simon & Schuster +10877,Generation of Swine: Tales of Shame and Degradation in the '80's,Hunter S. Thompson,3.78,0743250443,9780743250443,eng,336,5980,171,11/6/2003,Simon Schuster +10879,The Gonzo Way: A Celebration of Dr. Hunter S. Thompson,Anita Thompson,3.96,1555916228,9781555916220,en-US,112,1052,36,7/1/2007,Fulcrum Publishing +10880,The Proud Highway: Saga of a Desperate Southern Gentleman 1955-1967,Hunter S. Thompson/Douglas Brinkley,4.14,0345377966,9780345377968,eng,720,2961,116,4/7/1998,Ballantine Books +10884,Einstein: His Life and Universe,Walter Isaacson,4.11,0743264738,9780743264730,eng,675,113315,2833,4/10/2007,Simon Schuster +10885,The Wise Men: Six Friends and the World They Made,Walter Isaacson/Evan Thomas,4.07,0684837714,9780684837710,eng,864,2664,78,6/4/1997,Simon & Schuster +10887,Kissinger,Walter Isaacson,3.94,0743286979,9780743286978,eng,896,2507,140,9/27/2005,Simon Schuster +10890,Traveling Mercies: Some Thoughts on Faith,Anne Lamott,4.16,0385496095,9780385496094,eng,275,39822,2297,2/15/2000,Anchor +10894,Where Rainbows End,Cecelia Ahern,3.94,0007189958,9780007189953,eng,454,652,109,11/8/2004,HarperCollins +10895,Irish Girls Are Back in Town,Cecelia Ahern/Patricia Scanlan/Gemma O'Connor/Sarah Webb/Maeve Binchy/Marian Keyes/Morag Prunty/Cathy Kelly/Colette Caddle/Marita Conlon-McKenna/Martina Devlin/Clare Dowling/Catherine Foley/Aine Greaney/Suzanne Higgins/Rosaleen Linehan/Joan O'Neill/Julie Parsons/Deirdre Purcell/Martina Reilly/Mary Ryan/Annie Sparrow/Una Brankin,3.74,0743499263,9780743499262,eng,384,805,36,3/1/2005,Gallery Books +10897,There's No Place Like Here,Cecelia Ahern,3.67,1401301886,9781401301880,eng,340,1926,314,9/4/2007,Hachette Books +10906,Final Rain (The Survivalist #19),Jerry Ahern,3.69,0821726846,9780821726846,eng,220,95,4,6/1/1989,Zebra +10907,The Pursuit of Happyness,Chris Gardner,4.19,0060744871,9780060744878,eng,320,21292,756,10/24/2006,Amistad +10908,Harvesting the Heart,Jodi Picoult,3.60,0140230270,9780140230277,eng,453,39611,2473,4/1/1995,Penguin Books +10909,The Tenth Circle,Jodi Picoult,3.50,074349671X,9780743496711,eng,416,108646,5039,10/24/2006,Allen & Ulwin +10910,Mercy,Jodi Picoult,3.58,0743422449,9780743422444,eng,400,42046,2564,4/1/2001,Washington Square Press +10912,Picture Perfect,Jodi Picoult,3.54,0425185508,9780425185506,eng,369,46383,2502,7/2/2002,Berkley +10914,Songs of the Humpback Whale,Jodi Picoult,3.20,0743431014,9780743431019,eng,346,27590,1838,10/1/2001,Washington Square Press +10915,Salem Falls,Jodi Picoult,3.82,0743418719,9780743418713,eng,434,67431,3066,8/1/2002,Washington Square Press +10916,The Pact,Jodi Picoult,4.01,0061150142,9780061150142,eng,512,244774,8841,8/29/2006,Avon +10917,My Sister's Keeper,Jodi Picoult,4.07,0743454537,9780743454537,eng,423,986711,29652,2/1/2005,Washington Square Press +10920,Cold Mountain,Charles Frazier,3.86,0802142842,9780802142849,eng,356,208001,4972,9/1/2006,Grove Press +10921,The Collected Songs of Cold Mountain,Hanshan/Red Pine/John Blofeld,4.41,1556591403,9781556591402,eng,320,685,36,6/1/2000,Copper Canyon Press +10929,For One More Day,Mitch Albom,4.10,1401303277,9781401303273,eng,197,113593,6830,9/26/2006,Hachette Books +10932,Just One More Day: A Memoir,Susan Lewis,3.98,0099486830,9780099486831,eng,340,180,25,1/5/2006,Arrow Books +10939,Ya Sé Que Te Quiero,Billy Crystal/Elizabeth Sayles,4.19,0060845988,9780060845988,spa,40,0,0,4/11/2006,Rayo +10943,Absolutely Mahvelous,Billy Crystal/Dick Schaap,3.79,0399512462,9780399512469,eng,128,24,2,7/18/1986,Perigee Trade +10951,The Last Innocent Man,Phillip Margolin,3.91,0060739681,9780060739683,eng,352,1667,57,1/25/2005,HarperTorch +10964,Outlander (Outlander #1),Diana Gabaldon,4.23,0440242940,9780440242949,eng,850,673350,34690,7/26/2005,Dell Publishing Company +10965,A Breath of Snow and Ashes (Outlander #6),Diana Gabaldon,4.44,0385340397,9780385340397,eng,980,105950,3992,8/29/2006,Delta +10966,Outlander - The Exile of Sharad Hett (Star Wars: Ongoing Volume 2),Timothy Truman/Rick Leonardi/Tom Raney/Al Rio,3.43,1569715149,9781569715147,eng,144,126,17,4/18/2001,Dark Horse +10967,The Fiery Cross (Outlander #5),Diana Gabaldon/Janos Farkas,4.27,0440221668,9780440221661,eng,1443,128901,5294,8/30/2005,Dell +10968,Refuge (Outlanders #36),James Axler,3.93,0373638493,9780373638499,eng,346,5,0,2/14/2006,Gold Eagle +10969,Dragonfly in Amber (Outlander #2),Diana Gabaldon,4.32,0385302312,9780385302319,eng,743,1088,118,7/1/1992,Delacorte Press +10970,Outlander,Matt Keefe,3.85,184416411X,9781844164110,eng,254,54,5,12/26/2006,Games Workshop(uk) +10971,Hydra's Ring (Outlanders #39),James Axler,3.88,0373638523,9780373638529,eng,348,25,2,11/1/2006,Gold Eagle +10972,Omega Path (Outlanders #4),James Axler,3.87,0373638175,9780373638178,en-US,352,80,2,1/23/1998,Gold Eagle +10973,Savage Sun (Outlanders #3),James Axler,3.84,0373638167,9780373638161,en-US,352,95,3,10/24/1997,Gold Eagle +10974,As I Lay Dying,William Faulkner/E.L. Doctorow,3.71,0375504524,9780375504525,eng,231,1003,101,1/25/2001,Modern Library +10976,Novels 1926-1929,William Faulkner/Noel Polk/Joseph Blotner,4.42,1931082898,9781931082891,eng,1180,199,13,4/6/2006,Library of America +10979,Light in August,William Faulkner,3.94,0679732268,9780679732266,eng,507,47794,1920,1/30/1991,Vintage +10980,Novels 1942–1954: Go Down Moses / Intruder in the Dust / Requiem for a Nun / A Fable,William Faulkner/Noel Polk/Joseph Blotner,4.44,0940450852,9780940450851,eng,1110,90,7,10/1/1994,Library of America +10982,Selected Short Stories,William Faulkner,4.09,0679424784,9780679424789,eng,320,1017,64,5/18/1993,Modern Library +10984,Three Famous Short Novels: Spotted Horses Old Man the Bear,William Faulkner,3.86,0394701496,9780394701493,eng,320,1457,117,2/12/1958,Vintage Books +10985,The Town,William Faulkner,4.10,0394701844,9780394701844,eng,371,1253,68,2/12/1961,Vintage Books +10987,Voyager (Outlander #3),Diana Gabaldon,4.39,0385335997,9780385335997,eng,870,198818,8130,8/7/2001,Delta +10988,Drums of Autumn (Outlander #4),Diana Gabaldon,4.35,0385335989,9780385335980,eng,880,141771,5455,8/7/2001,Delta +10989,The Outlandish Companion: Companion to Outlander Dragonfly in Amber Voyager and Drums of Autumn,Diana Gabaldon,4.08,0385324138,9780385324137,eng,577,11433,478,6/29/1999,Delacorte Press +10990,Lord John and the Private Matter (Lord John Grey #1),Diana Gabaldon,3.70,0770429459,9780770429454,eng,368,32446,1345,10/4/2005,Seal +10992,Cross Stitch (Outlander #1),Diana Gabaldon,4.23,0099911701,9780099911708,eng,864,2384,323,3/3/1994,Arrow Books +10993,The Eight,Katherine Neville,3.91,0345419081,9780345419088,eng,624,536,60,6/23/1997,Ballantine Books +10996,Your Eight Year Old: Lively and Outgoing,Louise Bates Ames/Frances L. Ilg/Carol C. Haber/Betty David,3.86,0440506816,9780440506812,eng,160,183,26,3/1/1990,Dell +11000,Eight Mindful Steps to Happiness: Walking the Buddha's Path,Henepola Gunaratana,4.30,0861711769,9780861711765,eng,288,1103,50,6/15/2001,Wisdom Publications +11002,Eight Men Out: The Black Sox and the 1919 World Series,Eliot Asinof/Stephen Jay Gould,4.03,0805065377,9780805065374,en-US,336,8614,242,5/1/2000,Holt Paperbacks +11003,Eleven on Top (Stephanie Plum #11),Janet Evanovich,4.16,0312985347,9780312985349,eng,321,91695,1731,6/20/2006,St. Martin's Press +11005,El Clan Del Oso Cavernario,Jean M. Auel/Leonor Tejada Conde-Pelayo,4.05,9684581149,9789684581142,spa,548,176,12,9/1/1981,Lasser Press +11006,The Portable James Joyce,James Joyce/Harry Levin,4.17,0517618877,9780517618875,eng,762,20,3,8/20/1986,Random House Value Publishing/TheViking Press +11012,Dubliners,James Joyce/Jeri Johnson/Thiên Lương,3.85,0192839993,9780192839992,eng,207,91755,3246,3/15/2001,Oxford University Press +11013,Finnegans Wake,James Joyce,3.67,0571217354,9780571217359,eng,628,9780,591,11/4/2002,Faber & Faber +11016,Jane Eyre,Charlotte Brontë/Stevie Davies,4.12,0141441143,9780141441146,eng,590,8333,874,6/29/2006,Penguin Classics +11019,Jane Eyre,Charlotte Brontë/Richard J. Dunn,4.12,0393975428,9780393975420,eng,534,1475,156,12/13/2000,W. W. Norton & Company +11021,Jane Eyre,Jane E. Gerver/Bill Dodge/Charlotte Brontë,4.06,0679886184,9780679886181,eng,112,140,8,6/17/1997,Random House Books for Young Readers +11022,Purity of Blood (Adventures of Captain Alatriste #2),Arturo Pérez-Reverte/Margaret Sayers Peden,3.75,0452287987,9780452287983,eng,268,3240,130,11/28/2006,Plume +11026,Barnaby Rudge,Charles Dickens/John Bowen/Hablot Knight Browne,3.81,0140437282,9780140437287,eng,744,8156,366,2/27/2003,Penguin Books +11027,No me cogeréis vivo: artículos 2001-2005,Arturo Pérez-Reverte,4.16,8420469432,9788420469430,spa,537,199,5,11/10/2005,Alfaguara +11031,The Flanders Panel,Arturo Pérez-Reverte/Margaret Jull Costa,3.79,0156029588,9780156029582,eng,295,12998,589,6/7/2004,Mariner Books +11033,The Seville Communion,Arturo Pérez-Reverte/Sonia Soto,3.68,0156029812,9780156029810,eng,400,3912,209,6/7/2004,Mariner Books +11036,Little Birds,Anaïs Nin,3.72,0156029049,9780156029049,eng,148,7888,366,2/2/2004,Mariner Books +11037,The Diary of Anaïs Nin Vol. 2: 1934-1939,Anaïs Nin/Gunther Stuhlmann,4.18,0156260263,9780156260268,eng,372,1775,47,3/25/1970,Mariner Books +11038,Henry and June: From "A Journal of Love": The Unexpurgated Diary of Anaïs Nin 1931-1932,Anaïs Nin,3.90,015640057X,9780156400572,eng,304,8311,449,10/29/1990,Mariner Books +11043,House of Incest,Anaïs Nin/Val Telberg,3.80,0804001480,9780804001489,eng,72,1843,143,2/1/1991,Swallow Press +11044,The Diary of Anaïs Nin Vol. 3: 1939-1944,Anaïs Nin/Gunther Stuhlmann,4.18,0156260271,9780156260275,eng,348,1392,40,3/24/1971,Mariner Books +11045,The Spectator Bird,Wallace Stegner,3.99,0140139400,9780140139402,eng,214,4808,550,11/1/1990,Penguin +11047,The Big Book of Boy Stuff,Bart King/Chris Sabatino,4.23,1586853333,9781586853334,eng,292,147,25,7/1/2004,Gibbs Smith Publishers +11048,The Boys of Everest: Chris Bonington and the Tragedy of Climbing's Greatest Generation,Clint Willis,3.86,0786715790,9780786715794,eng,535,452,36,9/14/2006,Carroll & Graf Publishers +11062,Roald Dahl: The Storyteller (Famous Lives),Jason Hook,4.06,0750244917,9780750244916,eng,48,0,0,8/12/2004,Hodder Wayland +11069,Les Nouvelles Recettes irrésistibles de Roald Dahl,Roald Dahl/Quentin Blake,4.14,2070536289,9782070536283,fre,64,0,0,9/18/2002,Gallimard Jeunesse +11071,Relatos de lo inesperado,Roald Dahl/Carmelina Payá/Antonio Samons,4.18,8433920863,9788433920867,spa,320,387,30,6/30/2016,Anagrama +11075,Konfetti Ungemütliches + Ungezogenes,Roald Dahl,3.59,3499158477,9783499158476,ger,123,27,1,1/2/1987,Rowohlt Taschenbuch Verlag GmbH +11077,The Sex Lives of Cannibals: Adrift in the Equatorial Pacific,J. Maarten Troost,3.87,0767915305,9780767915304,eng,272,19422,2077,6/8/2004,Broadway Books +11089,The Read-Aloud Handbook,Jim Trelease,4.41,0143037390,9780143037392,eng,432,4357,707,7/25/2006,Penguin Books +11095,The Working Poor: Invisible in America,David K. Shipler,4.03,0375708219,9780375708213,eng,352,4929,369,1/4/2005,Vintage +11101,First Comes Love (Hot Water California #1),Christie Ridgway,3.81,0380818957,9780380818952,en-US,384,1051,47,1/1/2002,Avon Books +11106,Eat Right 4 Your Type,Peter J. D'Adamo/Catherine Whitney,3.57,071267716X,9780712677165,en-US,375,186,16,4/2/1998,Century +11119,The Annotated Gulliver's Travels,Jonathan Swift/Isaac Asimov,3.57,0517539497,9780517539491,eng,298,57,9,10/29/1980,Random House Value Publishing +11121,Gulliver's Travels,Jonathan Swift/Robert A. Greenberg,3.57,0393099415,9780393099416,eng,432,174,9,3/1/1980,W. W. Norton & Company +11130,The Chronicles of Narnia CD Box Set,C.S. Lewis/Kenneth Branagh,4.26,0694524751,9780694524754,eng,31,202,24,10/26/2004,HarperFestival +11136,The Chronicles of Narnia (The Chronicles of Narnia #1-7),C.S. Lewis/Pauline Baynes,4.26,0060765453,9780060765453,eng,766,1131,53,10/15/2005,HarperEntertainment +11137,Mere Christianity,C.S. Lewis/Kathleen Norris,4.32,0060652926,9780060652920,eng,227,7665,664,4/21/2015,HarperOne +11138,Mere Christianity,C.S. Lewis,4.32,0684823780,9780684823782,eng,191,240060,5828,6/1/1996,Touchstone Books +11149,The Screwtape Letters,C.S. Lewis,4.22,0060652896,9780060652890,eng,224,116834,4746,3/6/2001,HarperCollins +11154,The Screwtape Letters/Book & Study Guide,C.S. Lewis,4.22,0800783360,9780800783365,en-US,172,96,12,1/1/1976,Fleming H Revell Co +11157,Four Mothers,Shifra Horn/Dalya Bilu,3.69,0312263236,9780312263232,eng,276,204,28,6/10/2000,Picador +11159,Four Mothers at Chautuaqua,Pansy/Isabella MacDonald Alden,4.04,0842331913,9780842331913,eng,265,28,1,4/30/1997,Living Books +11161,The Trial of God: (as it was held on February 25 1649 in Shamgorod),Elie Wiesel/Robert McAfee Brown/Matthew Fox,4.14,0805210539,9780805210538,eng,208,957,72,11/14/1995,Schocken +11162,Summer for the Gods: The Scopes Trial and America's Continuing Debate Over Science and Religion,Edward J. Larson/Brian Troxell,3.90,0674854292,9780674854291,eng,318,1458,108,11/15/1998,Harvard University Press +11166,Dawn (The Night Trilogy #2),Elie Wiesel/Frances Frenaye,3.87,0809037726,9780809037728,eng,81,12576,975,3/21/2006,Hill & Wang +11167,The Forgotten,Elie Wiesel/Stephen Becker,3.94,0805210199,9780805210194,eng,320,503,36,1/31/1995,Schocken Books Inc +11168,Day (The Night Trilogy #3),Elie Wiesel/Anne Borchardt,3.84,0809023091,9780809023097,eng,109,7332,465,3/21/2006,Hill and Wang +11174,All Rivers Run to the Sea,Elie Wiesel,4.15,0805210288,9780805210286,eng,464,954,63,10/22/1996,Schocken +11176,Father Hunger: Fathers Daughters and the Pursuit of Thinness,Margo Maine/Craig Johnson,3.57,0936077492,9780936077499,eng,288,15,1,9/30/2004,Gürze Books +11178,Father Hunger: Fathers Daughters & Food,Margo Maine/Craig L. Johnson,3.57,0936077093,9780936077093,eng,254,56,5,9/1/2003,Gurze Books +11184,Bold Land Bold Love (Australian Trilogy #1),Connie Mason,3.83,0505522748,9780505522740,eng,469,225,16,8/1/1998,Love Spell +11197,Leading with a Limp: Turning Your Struggles Into Strengths,Dan B. Allender,4.04,1578569508,9781578569502,eng,206,506,52,5/16/2006,Waterbrook Press +11204,Something to Declare,Julia Alvarez,3.99,0452280672,9780452280670,en-US,300,726,50,9/1/1999,Plume Books +11208,How the García Girls Lost Their Accents,Julia Alvarez,3.63,0452287073,9780452287075,eng,304,18032,1144,10/4/2005,Plume +11222,Kesey's One Flew Over the Cuckoo's Nest (Cliffs Notes),Bruce Edward Walker/Ken Kesey/CliffsNotes,4.17,0764586629,9780764586620,eng,112,22,3,12/11/2000,Cliffs Notes +11225,One Flew Over the Cuckoo's Nest,Ken Kesey,4.20,0451137094,9780451137098,eng,272,1120,104,2/1/1963,Signet +11226,One Flew over the Cuckoo's Nest,Ken Kesey,4.20,0451143426,9780451143426,eng,272,67,5,2/1/1963,Signet +11229,The Sea The Sea,Iris Murdoch/Mary Kinzie,3.92,014118616X,9780141186160,eng,528,13010,771,3/1/2001,Penguin Books Ltd +11231,Existentialists and Mystics: Writings on Philosophy and Literature,Iris Murdoch/George Steiner/Peter J. Conradi,4.10,0140264922,9780140264920,eng,576,184,18,7/1/1999,Penguin +11234,A Fairly Honourable Defeat,Iris Murdoch/Peter Reed,3.93,0141186178,9780141186177,eng,432,1417,115,3/1/2001,Penguin Classics +11235,The Unicorn,Iris Murdoch,3.63,014002476X,9780140024760,eng,270,1846,159,1/6/1987,Penguin Books +11240,Bruno's Dream,Iris Murdoch,3.76,0140031766,9780140031768,eng,320,604,48,11/18/1976,Penguin Books +11244,Mystical Paths (Starbridge #5),Susan Howatch,4.23,0006496873,9780006496878,eng,576,1045,38,7/1/1996,HarperCollins Publishers +11245,Glittering Images (Starbridge #1),Susan Howatch,4.07,000649689X,9780006496892,eng,512,2043,209,7/22/1996,Fontana +11247,Scandalous Risks,Susan Howatch,4.20,0006496903,9780006496908,eng,480,1114,43,7/22/2009,Harper +11251,Glamorous Powers (Starbridge #2),Susan Howatch,4.19,000649692X,9780006496922,en-GB,512,1493,69,7/22/1996,HarperCollins +11253,A Severed Head,Iris Murdoch,3.73,0140020039,9780140020038,eng,204,3682,319,11/18/1976,Penguin Books +11262,Absolute Truths (Starbridge #6),Susan Howatch,4.34,0517170779,9780517170779,eng,672,1066,52,8/14/1996,Random House Value Publishing +11263,The Shrouded Walls,Susan Howatch,3.40,0751533939,9780751533934,eng,224,305,31,12/31/2010,Sphere +11269,Waiting Sands,Susan Howatch,3.43,0751533114,9780751533118,eng,192,314,14,3/1/2003,Little Brown Book Group +11277,The Hollow Man,Dan Simmons,3.46,0553563505,9780553563504,en-US,342,2532,149,9/1/1993,Bantam Spectra +11278,Hardcase (Joe Kurtz #1),Dan Simmons,3.68,0312980167,9780312980160,en-US,291,1067,61,8/19/2002,Minotaur Books +11279,Summer of Night (Seasons of Horror #1),Dan Simmons,4.02,0446362662,9780446362665,eng,600,16116,894,3/1/1992,Warner Books +11285,Vengeance (Joe Kurtz #1),Dan Simmons,3.68,2268041042,9782268041049,fre,243,1,0,10/31/2001,Editions du Rocher +11286,Carrion Comfort,Dan Simmons,3.90,0446359203,9780446359207,eng,884,15742,714,10/1/1990,Warner Books +11289,The Rise of Endymion (Hyperion Cantos #4),Dan Simmons,4.18,0553572989,9780553572988,eng,709,36728,1229,7/1/1998,Spectra +11290,Children of the Night,Dan Simmons,3.71,0446364754,9780446364751,eng,464,5855,264,6/1/1993,Warner Books +11295,The Group,Mary McCarthy,3.66,0451025016,9780451025012,eng,397,61,17,9/1/1964,Signet +11296,Haruki Murakami and the Music of Words,Jay Rubin,3.83,0099455447,9780099455448,eng,462,1444,68,1/6/2005,Vintage +11297,Norwegian Wood,Haruki Murakami/Jay Rubin,4.03,0375704027,9780375704024,eng,296,248676,12203,9/12/2000,Vintage Books +11298,A Wild Sheep Chase (The Rat #3),Haruki Murakami/Alfred Birnbaum,3.95,037571894X,9780375718946,eng,353,68918,3022,4/9/2002,Vintage +11301,Horton Hatches the Egg,Dr. Seuss,4.16,0007175191,9780007175192,eng,64,37851,597,10/2/2004,Harpercollins Children's Books +11308,Seaward,Susan Cooper,3.97,0020421907,9780020421900,eng,167,1756,72,4/30/1987,Aladdin Paperbacks +11311,The Boggart,Susan Cooper/Omar Rayyan,3.75,1416905278,9781416905271,eng,196,4085,181,5/31/2005,Aladdin Paperbacks +11313,Silver on the Tree (The Dark is Rising #5),Susan Cooper,4.15,0689840330,9780689840333,eng,274,27802,507,12/1/2000,Margaret K. McElderry Books +11317,The Long Goodbye (Philip Marlowe #6),Raymond Chandler,4.22,0394239105,9780394239101,eng,379,34,4,8/1/1992,Black Lizard Books +11318,Trouble Is My Business,Raymond Chandler,4.06,0394757645,9780394757643,eng,224,9606,258,8/12/1988,Vintage Crime/Black Lizard +11320,The Captain's Verses,Pablo Neruda/Donald Devenish Walsh,4.25,0811215806,9780811215800,mul,151,4494,160,7/19/2004,New Directions Publishing Corporation +11323,Herbert the Timid Dragon,Mercer Mayer,4.62,0307114635,9780307114631,eng,48,23,4,7/1/1991,Western Publishing Company Golden Books +11324,Under the Net,Iris Murdoch,3.77,0140014454,9780140014457,eng,252,11174,465,10/27/1982,Penguin Books Ltd +11326,Love,Toni Morrison,3.75,1400078474,9781400078479,eng,224,7580,452,1/4/2005,Vintage +11333,Beloved,Toni Morrison/A.S. Byatt,3.83,0307264882,9780307264886,eng,360,660,58,10/17/2006,Everyman's Library +11334,Song of Solomon,Toni Morrison,4.06,140003342X,9781400033423,eng,337,73894,2763,6/8/2004,Vintage +11337,The Bluest Eye,Toni Morrison,4.03,0452287065,9780452287068,eng,216,132233,5507,9/6/2005,Plume +11339,100 Love Sonnets,Pablo Neruda/Stephen Tapscott,4.39,0292760280,9780292760288,eng,232,12613,392,1/1/1986,University of Texas Press +11340,Jazz,Toni Morrison,3.81,0679411674,9780679411673,eng,229,428,54,4/7/1992,Alfred A. Knopf +11341,Jazz,Toni Morrison,3.81,1400076218,9781400076215,eng,229,1338,128,6/8/2004,Vintage +11346,Sula,Toni Morrison,3.93,0452283868,9780452283862,eng,174,47998,2479,4/5/2002,Plume Books +11347,Sula,Toni Morrison,3.93,1400033438,9781400033430,eng,174,3552,361,6/8/2004,Vintage International +11349,Sula,Toni Morrison,3.93,0452263492,9780452263499,eng,174,457,49,9/1/1987,Plume +11352,Sula,Toni Morrison,3.93,0099760010,9780099760016,eng,189,709,94,5/7/2005,Vintage Books +11355,Tar baby,Toni Morrison,3.93,2264026219,9782264026217,fre,431,11,0,2/20/1997,Editions 10/18 +11359,Tar Baby,Toni Morrison,3.93,1400033446,9781400033447,eng,320,15795,447,6/8/2004,Vintage +11364,Pacific Northwest Hiking: The Complete Guide to More Than 1 000 of the Best Hikes in Washington and Oregon (Foghorn Outdoors),Scott Leonard/Megan McMorris,4.24,1566915902,9781566915908,eng,912,12,1,4/29/2005,Rick Steves +11366,The Guns of August,Barbara W. Tuchman/Robert K. Massie,4.17,0345476093,9780345476098,eng,606,40927,1671,8/3/2004,Ballantine Books +11371,It Can't Happen Here,Sinclair Lewis/Michael R. Meyer,3.77,045121658X,9780451216588,eng,400,9031,1555,10/4/2005,NAL Trade +11372,Babbitt,Sinclair Lewis,3.66,0486431673,9780486431673,en-US,320,249,29,9/22/2003,Dover Publications +11373,Main Street,Sinclair Lewis/Brooke Allen,3.77,1593080360,9781593080365,en-US,560,286,37,8/1/2003,Barnes Noble Classics +11376,Main Street,Sinclair Lewis,3.77,0375753141,9780375753145,eng,454,21451,778,11/1/2000,Modern Library +11377,Arrowsmith / Elmer Gantry / Dodsworth,Sinclair Lewis/Richard R. Lingeman,3.90,1931082081,9781931082082,en-US,1346,58,11,8/26/2002,Library of America +11378,Elmer Gantry,Sinclair Lewis,3.99,2859405461,9782859405465,fre,352,3840,318,10/1/1998,Phébus +11380,Die Geisha,Arthur Golden,4.11,3442726328,9783442726325,ger,573,314,14,2/1/2000,Wilhelm Goldmann Verlag GmbH +11383,Arthur Edward Waite's Quest of the Golden Stairs,Arthur Edward Waite,3.90,0766144739,9780766144736,eng,184,9,0,4/7/2003,Kessinger Publishing +11389,Arrowsmith,Sinclair Lewis/E.L. Doctorow,3.82,0451526910,9780451526915,eng,428,5889,300,6/1/1953,Harcourt Brace Jovanovich +11390,Something Wicked This Way Comes,Ray Bradbury,3.94,0965020452,9780965020459,eng,293,834,54,1/1/2001,Bookspan +11399,Living on the Ragged Edge: Finding Joy in a World Gone Mad: Workbook,Charles R. Swindoll,4.20,1418503460,9781418503468,en-US,268,3,0,4/6/2005,Nelson Reference & Electronic Publishing +11406,A Door of Hope,Jan Frank,3.97,0898401879,9780898401875,eng,197,28,3,4/1/1987,Here's Life Publishers +11413,Captivating: Unveiling the Mystery of a Woman's Soul,John Eldredge/Stasi Eldredge,3.91,0785264698,9780785264699,en-US,243,42509,738,4/5/2005,Nelson Books +11426,Family (Firstborn #4),Karen Kingsbury,4.42,0842387463,9780842387460,eng,345,8370,143,10/1/2006,Tyndale House Publishers +11427,Found (Firstborn #3),Karen Kingsbury,4.44,0842387455,9780842387453,eng,342,8874,174,8/1/2006,Tyndale House Publishers +11428,Forever (Firstborn #5),Karen Kingsbury,4.43,1414307640,9781414307640,eng,346,8158,146,2/22/2007,Tyndale House Publishers +11429,Ever After (Lost Love #2),Karen Kingsbury,4.32,031024756X,9780310247562,eng,337,10722,354,1/1/2007,Zondervan +11430,Return (Redemption #3),Karen Kingsbury/Gary Smalley,4.45,0842382895,9780842382892,eng,384,13180,288,9/1/2003,Tyndale House Publishers +11431,The Red Gloves Collection (Red Gloves #1-4),Karen Kingsbury,4.49,0446579629,9780446579629,eng,640,718,36,10/10/2006,FaithWords +11432,Reunion (Redemption #5),Karen Kingsbury/Gary Smalley,4.50,0842386882,9780842386883,en-US,400,12509,271,7/1/2004,Tyndale House Publishers +11433,Redemption (Redemption #1),Karen Kingsbury/Gary Smalley,4.38,0842356223,9780842356220,eng,384,25248,859,7/22/2002,Tyndale House Publishers +11434,Forgiven (Firstborn #2),Karen Kingsbury,4.41,0842387447,9780842387446,eng,358,9804,172,9/23/2005,Tyndale House Publishers +11436,Rejoice (Redemption #4),Karen Kingsbury/Gary Smalley,4.46,084386874,9780842386876,eng,344,12550,201,3/22/2004,Tyndale House Publishers +11437,Where I'm Calling From: New and Selected Stories,Raymond Carver,4.42,0679722319,9780679722311,eng,544,18280,772,9/12/2000,Vintage Contemporaries +11439,All of Us: The Collected Poems,Raymond Carver,4.30,0375703802,9780375703805,eng,416,1651,107,4/4/2000,Vintage +11441,Short Cuts: Selected Stories,Raymond Carver/Robert Altman,4.11,0679748644,9780679748649,eng,157,4455,232,9/14/1993,Vintage +11449,Cathedral,Raymond Carver,4.28,0679723692,9780679723691,eng,230,21895,894,6/18/1989,Vintage Contemporaries +11463,In Pharaoh's Army: Memories of the Lost War,Tobias Wolff/Luann Walther,4.08,0679760237,9780679760238,eng,240,2398,175,9/26/1995,Vintage +11464,Old School,Tobias Wolff,3.82,0747574650,9780747574651,eng,196,7772,826,2/7/2005,Bloomsbury +11466,This Boy's Life,Tobias Wolff,3.98,0802136680,9780802136688,eng,304,22828,1304,1/20/2000,Grove Press +11468,The Vintage Book of Contemporary American Short Stories,Tobias Wolff,4.11,0679745130,9780679745136,eng,576,1227,79,9/6/1994,Vintage +11472,We Wish to Inform You That Tomorrow We Will Be Killed with Our Families,Philip Gourevitch,4.24,0312243359,9780312243357,eng,356,24862,1443,9/4/1999,Picador USA +11473,The Paris Review Interviews I: 16 Celebrated Interviews,The Paris Review/Philip Gourevitch/Rebecca West/Elizabeth Bishop/Robert Stone/Robert Gottlieb/Richard Price/Billy Wilder/Jack Gilbert/Joan Didion/Dorothy Parker/Truman Capote/Ernest Hemingway/T.S. Eliot/Saul Bellow/Jorge Luis Borges/Kurt Vonnegut Jr./James M. Cain,4.37,0312361750,9780312361754,eng,510,866,103,10/17/2006,Picador USA +11478,The Living and the Dead: Robert McNamara and Five Lives of a Lost War,Paul Hendrickson,4.01,067978117X,9780679781172,eng,448,135,11,10/28/1997,Vintage +11481,Sons of Mississippi: A Story of Race and Its Legacy,Paul Hendrickson,3.81,0375704256,9780375704253,eng,368,170,31,1/6/2004,Vintage +11482,Looking for the Light: The Hidden Life and Art of Marion Post Wolcott,Paul Hendrickson/Marion Post Wolcott,4.07,0394577299,9780394577296,eng,297,14,3,4/21/1992,Alfred A. Knopf +11486,The Color Purple,Alice Walker,4.20,0671727796,9780671727796,eng,295,445206,9643,4/1/2004,Pocket +11492,Bright Purple: Color Me Confused (TrueColors #10),Melody Carlson,3.49,1576839508,9781576839508,eng,213,806,61,9/5/2006,Th1nk Books +11494,Humboldt's Gift,Saul Bellow,3.86,0140189440,9780140189445,eng,487,6995,378,6/1/1996,Penguin Classics +11499,The Promise,Chaim Potok,4.15,1400095417,9781400095414,eng,368,11255,499,11/8/2005,Anchor Books +11502,The Gift of Asher Lev,Chaim Potok,4.16,0449001156,9780449001158,eng,384,6224,339,9/10/1997,Ballantine Books +11503,In the Beginning,Chaim Potok,4.08,044900113X,9780449001134,eng,416,2222,120,9/10/1997,Ballantine Books +11507,My Name Is Asher Lev,Chaim Potok,4.21,1400031044,9781400031047,eng,369,32785,2398,3/11/2003,Anchor +11511,L'Échiquier du mal,Dan Simmons,3.90,2207254410,9782207254417,fre,999,63,7,6/8/2003,Denoël +11514,L'Éveil d'Endymion II,Dan Simmons,4.25,2266106341,9782266106344,fre,410,19,0,7/6/2000,Pocket +11516,Les Larmes d'Icare,Dan Simmons/Jean-Daniel Brèque,3.81,220724038X,9782207240380,fre,357,0,0,3/15/1994,Denoël +11518,L'Épée de Darwin,Dan Simmons/Guy Abadia,3.33,2268043185,9782268043180,fre,436,3,0,11/20/2002,Éditions du Rocher +11519,Les Fils des ténèbres,Dan Simmons,3.71,2226074740,9782226074744,fre,464,6,0,10/1/1994,Albin Michel +11520,Endymion: Pforten der Zeit,Dan Simmons,4.17,3442353920,9783442353927,ger,672,3,0,2/1/2001,Blanvalet Taschenbuch +11525,1 000 Places to See Before You Die,Patricia Schultz,3.85,0761104844,9780761104841,eng,992,36303,439,5/22/2003,Workman Publishing Company +11535,The Crook Factory,Dan Simmons,3.80,0380789175,9780380789177,eng,580,1108,89,8/1/2000,HarperTorch +11541,Swan Song,Robert R. McCammon,4.28,067162413X,9780671624132,eng,956,147,23,6/1/1987,Pocket Books +11548,Mine,Robert R. McCammon,3.90,0671739441,9780671739447,en-GB,496,9111,231,5/1/1991,Pocket Books +11549,Gone South,Robert R. McCammon,3.93,0671743074,9780671743079,eng,400,4849,228,8/1/1993,Pocket Books +11550,Usher's Passing,Robert R. McCammon,3.92,0671769928,9780671769925,eng,416,3226,143,10/1/1992,Pocket Books +11551,The Wolf's Hour,Robert R. McCammon,4.06,0671731424,9780671731427,eng,603,8741,326,8/15/1990,Pocket Books +11552,Mystery Walk,Robert R. McCammon,3.89,067176991X,9780671769918,eng,432,2242,96,10/1/1992,Pocket Books +11553,Boy's Life,Robert R. McCammon,4.35,0671743058,9780671743055,eng,580,17540,1740,5/1/1992,Pocket Books +11556,Stinger,Robert R. McCammon,3.87,0671737767,9780671737764,en-US,538,5725,147,4/1/1988,Pocket Books +11557,Swan Song,Robert R. McCammon,4.28,0671741039,9780671741037,eng,956,46244,2540,6/1/1987,Pocket Books +11563,Danse Macabre,Stephen King,3.64,042518160X,9780425181607,eng,400,21063,460,9/1/2001,Berkley +11565,The Secretary of Dreams Volume One,Stephen King/Glenn Chadbourne,4.47,1587671409,9781587671401,eng,281,291,7,10/30/2006,Cemetery Dance Publications +11566,The Green Mile,Stephen King,4.44,0451933028,9780451933027,eng,592,207869,4570,9/1/1996,Penguin Signet +11570,Dreamcatcher,Stephen King/William Olivier Desmond/Maria Teresa Marenco,3.63,2226131906,9782226131904,fre,688,136312,1617,3/1/2002,Albin Michel +11571,Storm of the Century: An Original Screenplay,Stephen King,3.92,0965796930,9780965796934,en-US,376,252,14,1/1/1999,Book of the Month Club +11574,The Body,Stephen King/Robin Waterfield,4.25,0582418178,9780582418172,eng,80,29670,974,12/20/1999,Penguin Books +11580,Creepshow,Stephen King/Bernie Wrightson/Michele Wrightson,4.07,0452253802,9780452253803,eng,66,34392,275,8/1/1982,Plume +11584,On Writing: A Memoir,Stephen King,4.33,0340820462,9780340820469,eng,384,1118,142,9/1/2001,New English Library +11588,The Shining,Stephen King,4.22,0450040186,9780450040184,eng,659,978535,15105,7/1/1980,New English Library (Hodder & Stoughton) +11594,La Torre Oscura VII - Tomo 2 of 2 (La Torre Oscura #7),Stephen King/Verónica Canales,4.24,9506440824,9789506440824,spa,496,192,9,4/28/2006,Plaza y Janés +11597,The Dark Half,Stephen King,3.77,045052468X,9780450524684,eng,469,110131,1282,10/7/1990,New English Library +11601,The Science of Stephen King: From 'Carrie' to 'Cell ' The Terrifying Truth Behind the Horror Master's Fiction,Lois H. Gresh/Robert E. Weinberg,3.42,0471782475,9780471782476,eng,272,62,9,8/1/2007,Wiley +11604,The Girl Who Loved Tom Gordon,Stephen King,3.59,0671042858,9780671042851,eng,264,1997,184,2/1/2000,Pocket Books +11605,Riding the Bullet,Stephen King/Josh Hamilton,3.63,0743525876,9780743525879,eng,66,11649,270,5/1/2002,Simon Schuster Audio +11606,The Bachman Books: Four Early Novels by Stephen King,Stephen King/Richard Bachman,4.11,0453005071,9780453005074,eng,692,1098,84,10/4/1985,NAL Books +11608,El umbral de la noche,Stephen King/Gregorio Vlastelica/Eduardo Goligorsky,4.00,060981088X,9780609810880,spa,424,737,119,9/4/2001,Plaza y Janés +11611,Stand by Me,Raynold Gideon,4.32,9998691567,9789998691568,eng,96,1436,24,6/1/1986,Columbia Pictures Pubns +11613,La danza de la muerte,Stephen King/Eduardo Goligorsky,4.34,8401321689,9788401321689,spa,613,64,3,7/10/1986,Plaza & Janes Editores Sa +11616,The Gardens of Emily Dickinson,Judith Farr/Louise Carter,3.84,067401829X,9780674018297,eng,350,54,13,10/1/2005,Harvard University Press +11617,The Life of Emily Dickinson,Richard B. Sewall,4.29,0674530802,9780674530805,eng,821,315,20,7/15/1998,Harvard University Press +11619,The Poems of Emily Dickinson,Emily Dickinson/R.W. Franklin,4.25,0674018249,9780674018242,eng,690,475,39,10/1/2005,Belknap Press +11621,Selected Poetry of Emily Dickinson,Emily Dickinson,4.17,0385487185,9780385487184,eng,299,77,3,4/14/1997,Doubleday Books +11623,The Unabridged Journals of Sylvia Plath,Sylvia Plath/Karen V. Kukil,4.31,0385720254,9780385720250,eng,732,14009,483,10/17/2000,Anchor +11625,Ariel: The Restored Edition,Sylvia Plath/Frieda Hughes,4.27,0060732601,9780060732608,eng,256,3737,283,3/6/2018,Harper Perennial Modern Classics +11627,The Colossus and Other Poems,Sylvia Plath,4.19,0375704469,9780375704468,eng,84,9140,224,5/19/1998,Vintage +11630,Rough Magic: A Biography of Sylvia Plath,Paul Alexander,3.92,0306812991,9780306812996,eng,402,1516,60,9/18/2003,Da Capo Press +11632,The Journals of Sylvia Plath,Sylvia Plath/Ted Hughes/Frances McCullough,4.17,0385493916,9780385493918,eng,384,1163,64,5/11/1998,Anchor +11635,The Death and Life of Sylvia Plath,Ronald Hayman,3.67,0750934220,9780750934220,eng,224,453,24,7/24/2003,Sutton +11643,Te Kaihau: The Windeater,Keri Hulme,3.72,0807611689,9780807611685,eng,239,165,16,2/1/1987,George Braziller +11648,Everyman,Philip Roth,3.58,061873516X,9780618735167,en-US,182,821,131,5/9/2006,Houghton Mifflin +11650,American Pastoral (The American Trilogy #1),Philip Roth,3.92,0099771810,9780099771814,eng,432,47156,3007,3/5/1998,Vintage +11653,I Married a Communist (The American Trilogy #2),Philip Roth,3.81,0375707212,9780375707216,eng,323,4996,325,11/2/1999,Vintage +11654,Sabbath's Theater,Philip Roth,3.85,0679772596,9780679772590,eng,451,6993,482,8/6/1996,Vintage +11655,The Counterlife,Philip Roth,3.91,0679749047,9780679749042,eng,336,3192,195,8/6/1996,Vintage +11656,Rabbit Angstrom: The Four Novels,John Updike,4.26,0679444599,9780679444596,eng,1520,1512,148,10/17/1995,Everyman's Library +11657,Terrorist,John Updike,3.17,0307264653,9780307264657,eng,320,3490,410,6/6/2006,Knopf +11663,Rabbit Novels: Rabbit Run and Rabbit Redux,John Updike,3.98,0345464567,9780345464569,eng,640,811,55,11/4/2003,Ballantine Books +11664,Brazil,John Updike,3.45,0449911632,9780449911631,eng,272,2001,150,8/27/1996,Random House Trade Paperbacks +11665,Conversations with John Updike,James Plath,3.57,0878057005,9780878057009,eng,302,14,2,10/21/2011,University Press of Mississippi +11666,Rabbit at Rest (Rabbit Angstrom #4),John Updike,3.97,0449911942,9780449911945,eng,608,13361,395,8/27/1996,Random House Trade +11668,Rest Rabbit Rest (Sweet Pickles #18),Jacquelyn Reinach/Richard Hefter,4.02,0030420563,9780030420566,eng,32,92,5,3/1/1978,Holt Rinehart and Winston Inc. +11669,The Mambo Kings Play Songs of Love,Oscar Hijuelos,3.68,0060845309,9780060845308,en-US,448,132,19,7/5/2005,Harper Perennial +11670,Mr. Ives' Christmas,Oscar Hijuelos,3.76,0060927542,9780060927547,eng,256,949,128,12/23/2003,Harper Perennial +11671,A Simple Habana Melody,Oscar Hijuelos,3.45,0060928697,9780060928698,eng,368,330,36,6/17/2003,Harper Perennial +11672,The Fourteen Sisters of Emilio Montez O'Brien,Oscar Hijuelos,3.69,0060975946,9780060975944,eng,496,467,31,12/23/2003,Harper Perennial +11684,The Known World,Edward P. Jones,3.83,0007195303,9780007195305,eng,388,449,83,10/1/2004,Harper Perennial +11686,The Stories of John Cheever,John Cheever/Pelle Fritz-Crone,4.27,0375724427,9780375724428,eng,693,12270,529,5/16/2000,Vintage International +11690,Istanbul: Memories and the City,Orhan Pamuk,3.79,1400033888,9781400033881,eng,356,11930,973,7/11/2006,Vintage International +11692,The Black Book,Orhan Pamuk/Maureen Freely/عین له غریب,3.91,1400078652,9781400078653,eng,466,6352,425,7/11/2006,Vintage +11693,The White Castle,Orhan Pamuk/Victoria Rowe Holbrook,3.46,0571164668,9780571164660,eng,161,6994,431,7/26/2000,Faber and Faber +11695,La Vida Nueva,Orhan Pamuk/Rafael Carpintero,3.56,9707707763,9789707707764,spa,282,7,0,10/1/2006,Alfaguara +11697,Granta 85: Hidden Histories,Ian Jack,3.83,1929001150,9781929001156,eng,254,34,4,5/7/2004,Grove Press Granta +11698,Me llamo rojo,Orhan Pamuk/Rafael Carpintero,3.85,8466368876,9788466368872,spa,687,413,45,1/1/2007,Punto de Lectura +11701,The Collected Poems 1957-1987,Octavio Paz/Eliot Weinberger/Elizabeth Bishop,4.30,0811211738,9780811211734,eng,669,2896,46,4/17/1991,New Directions Publishing Corporation +11702,The Labyrinth of Solitude and Other Writings,Octavio Paz/Lysander Kemp/Yara Milos,4.14,080215042X,9780802150424,eng,398,5170,154,1/12/1994,Grove Press +11704,Sor Juana: Or the Traps of Faith,Octavio Paz/Margaret Sayers Peden,4.22,0674821068,9780674821064,eng,547,44,6,1/2/1990,Belknap Press +11705,Selected Poems,Octavio Paz/Eliot Weinberger/Charles Tomlinson/William Carlos Williams/Monique Fong Wust/G. Aroul/Elizabeth Bishop/Paul Blackburn/Lysander Kemp/Denise Levertov/Muriel Rukeyser/Mark Strand,4.21,0811208990,9780811208994,eng,160,373,18,9/17/1984,New Directions +11707,The Double Flame: Love and Eroticism,Octavio Paz/Helen Lane,4.21,0156003651,9780156003650,eng,276,602,30,6/1/1996,Harcourt +11715,The English Patient: A Screenplay (Screen and Cinema),Anthony Minghella/Michael Ondaatje,3.86,0413715000,9780413715005,eng,224,25,1,2/24/1997,Bloomsbury Methuen Drama +11723,Angels & Insects,A.S. Byatt,3.65,0676503187,9780676503180,eng,292,7,0,3/29/1994,Vintage Books +11728,The Blue Flower,Penelope Fitzgerald,3.47,0395859972,9780395859971,eng,226,3334,514,4/15/1997,Mariner Books +11729,The Bookshop The Gate of Angels The Blue Flower,Penelope Fitzgerald/Frank Kermode,4.07,1400041260,9781400041268,en-US,472,32,7,9/23/2003,Everyman's Library +11734,The Human Stain (The American Trilogy #3),Philip Roth,3.88,0099282194,9780099282198,eng,384,25422,1410,4/5/2001,Vintage +11741,Housekeeping,Marilynne Robinson,3.82,0312424094,9780312424091,eng,219,34723,4489,11/1/2004,Picador USA +11751,All Aunt Hagar's Children: Stories,Edward P. Jones,3.78,0060557567,9780060557560,en-US,399,1614,212,8/29/2006,Amistad +11752,Lost in the City,Edward P. Jones,4.03,006079528X,9780060795283,eng,268,2228,241,11/30/2004,Amistad Press +11762,White Noise,Don DeLillo,3.87,0140283307,9780140283303,eng,320,55821,2523,6/1/1999,Penguin Books +11765,Americana,Don DeLillo,3.43,2868698220,9782868698223,eng,454,3683,238,8/10/1993,Actes Sud +11766,Love-Lies-Bleeding,Don DeLillo,3.41,0743273060,9780743273060,eng,112,300,24,1/10/2006,Scribner +11767,The Body Artist,Don DeLillo,3.24,0743203968,9780743203968,eng,128,7201,500,2/5/2002,Scribner +11768,The Hotel New Hampshire,John Irving,3.90,0552992097,9780552992091,eng,520,51267,1195,10/22/1982,Black Swan +11769,The Hotel New Hampshire,John Irving,3.90,0552120405,9780552120401,eng,428,217,26,12/31/1982,Corgi Books +11771,Das Hotel New Hampshire,John Irving/Hans Hermann,3.90,3257211945,9783257211948,ger,597,301,19,1/1/1984,Diogenes Verlag +11772,El Hotel New Hampshire,John Irving/Iris Menéndez,3.90,8472238660,9788472238664,spa,457,18,3,9/1/1995,TusQuets +11777,Black Girl/White Girl,Joyce Carol Oates,3.23,0061125644,9780061125645,eng,288,2662,290,10/17/2006,Ecco +11779,Them (Wonderland Quartet #3),Joyce Carol Oates/Elaine Showalter,3.71,0345484401,9780345484406,eng,576,2686,230,9/12/2006,Modern Library +11780,You Must Remember This,Joyce Carol Oates,3.76,0452280192,9780452280199,eng,436,2115,116,11/1/1998,Plume +11781,Wonderland (Wonderland Quartet #4),Joyce Carol Oates/Elaine Showalter,3.80,081297655X,9780812976557,eng,528,912,97,9/12/2006,Modern Library +11782,Missing Mom,Joyce Carol Oates,3.55,0060816228,9780060816223,eng,464,3510,357,8/22/2006,Ecco +11784,After the Wreck I Picked Myself Up Spread My Wings and Flew Away,Joyce Carol Oates,3.46,0060735252,9780060735258,eng,292,1168,129,9/1/2006,HarperCollins Publishers +11785,Zombie,Joyce Carol Oates,3.34,0452275008,9780452275003,eng,181,6028,821,9/1/1996,Plume +11796,Sabbath's Theater,Philip Roth,3.85,0099582015,9780099582014,eng,451,128,9,9/5/1996,Vintage +11801,The Stone Diaries,Carol Shields,3.87,0143036394,9780143036395,en-US,384,397,40,8/30/2005,Penguin Essential Editions +11809,Insurgent Collective Action and Civil War in El Salvador,Elisabeth Jean Wood,3.83,0521010500,9780521010504,eng,332,54,4,10/16/2003,Cambridge University Press +11824,The Whipping Boy,Sid Fleischman/Peter Sís,3.57,0060521228,9780060521226,eng,90,21191,1162,4/15/2003,Greenwillow Books +11831,Dicey's Song (Tillerman Cycle #2),Cynthia Voigt,3.96,0689863624,9780689863622,eng,359,16021,594,7/1/2003,Aladdin Paperbacks +11854,Puzzle Pack: The Witch of Blackbird Pond,Mary B. Collins,1.00,1583377824,9781583377826,eng,134,2,0,8/15/2005,Teacher's Pet Publications Inc. +11861,City on the Seine: Paris in the Time of Richelieu and Louis XIV 1614-1715,Andrew P. Trout,4.17,0333666380,9780333666388,eng,288,0,0,6/5/1996,Palgrave Macmillan +11862,Teach Them Diligently: How to Use the Scriptures in Child Training,Lou Priolo,4.25,1889032204,9781889032207,eng,162,317,40,9/1/2000,Timeless Texts +11873,The Confessions of Nat Turner,William Styron,3.97,0099285568,9780099285564,eng,480,86,5,7/1/2004,Vintage Classics +11876,Set This House On Fire,William Styron,3.69,009928555X,9780099285557,eng,567,566,33,4/5/2001,Vintage Classics +11878,Darkness Visible: A Memoir of Madness,William Styron,4.04,0679643524,9780679643524,eng,96,398,51,1/23/2007,Modern Library +11880,A Book of Blue Flowers,Robert L. Geneve,3.83,0881927694,9780881927696,eng,327,0,0,2/1/2006,Timber Press (OR) +11886,Falconer,John Cheever,3.66,0224014013,9780224014014,eng,224,7,0,7/7/1977,Random House UK Ltd (A Division of Random House Group) +11890,The Wapshot Chronicle,John Cheever/Rick Moody,3.76,0060528877,9780060528874,eng,352,6152,257,6/3/2003,Harper Perennial Modern Classics +11900,72 Hour Hold,Bebe Moore Campbell,3.81,1400033616,9781400033614,eng,336,1746,184,7/11/2006,Anchor +11901,The Witching Hour (Lives of the Mayfair Witches #1),Anne Rice,4.11,0099471426,9780099471424,eng,1207,87816,2577,11/4/2004,Arrow +11907,The Victim,Saul Bellow,3.53,0140189386,9780140189384,en-US,272,1481,118,3/1/1996,Penguin Classics +11908,The Adventures of Augie March,Saul Bellow/Christopher Hitchens,3.84,0143039571,9780143039570,eng,586,14789,756,10/3/2006,Penguin Classics +11910,Mr. Sammler's Planet,Saul Bellow/Stanley Crouch,3.76,0142437832,9780142437834,eng,288,2721,135,1/6/2004,Penguin Classics +11912,Novels 1956–1964: Seize the Day / Henderson the Rain King / Herzog,Saul Bellow/James Wood,4.19,159853002X,9781598530025,eng,793,96,10,1/11/2007,Library of America +11915,Broken (Women of the Otherworld #6),Kelley Armstrong,4.19,0553588184,9780553588187,eng,444,25866,637,4/25/2006,Bantam +11917,Exit Strategy (Nadia Stafford #1),Kelley Armstrong,3.89,0553588192,9780553588194,eng,480,6236,369,6/26/2007,Bantam +11918,Bitten (Otherworld #1),Kelley Armstrong,4.05,0452286034,9780452286030,eng,436,79710,3479,9/7/2004,Plume Books +11919,Haunted (Women of the Otherworld #5),Kelley Armstrong,4.09,0553587080,9780553587081,eng,495,21556,653,5/31/2005,Bantam Spectra +11920,Dime Store Magic (Women of the Otherworld #3),Kelley Armstrong,4.08,0553587064,9780553587067,eng,414,767,44,5/27/2004,Bantam Spectra +11921,Industrial Magic (Women of the Otherworld #4),Kelley Armstrong,4.13,0553587072,9780553587074,eng,528,777,48,10/26/2004,Bantam Spectra +11922,Stolen (Women of the Otherworld #2),Kelley Armstrong,4.15,0452285933,9780452285934,eng,468,37400,1136,9/28/2004,Plume +11926,Moderato cantabile,Marguerite Duras,3.51,3518376780,9783518376782,fre,122,2525,112,1/1/1985,Suhrkamp +11932,The Line Between,Peter S. Beagle,4.12,1892391368,9781892391360,eng,231,707,97,8/15/2006,Tachyon Publications +11933,Tamsin,Peter S. Beagle,4.02,0451457633,9780451457639,eng,288,3033,241,10/1/1999,Firebird +11934,The Fantasy Worlds of Peter Beagle,Peter S. Beagle,4.21,0345289676,9780345289674,eng,430,530,35,9/12/1979,Del Rey +11938,The Innkeeper's Song,Peter S. Beagle,3.89,0451452887,9780451452887,eng,346,2015,136,11/1/1993,Roc +11949,Uncle Setnakt's Essential Guide to the Left Hand Path,Don Webb,4.37,1885972105,9781885972101,eng,128,112,9,3/3/2011,Lodestar Books +11963,Les petits chevaux de Tarquinia,Marguerite Duras,3.75,207036187X,9782070361878,fre,220,267,14,5/1/1973,Gallimard Education +11970,The Humanoids (Humanoids #1),Jack Williamson,3.75,0312852533,9780312852535,eng,299,898,48,1/15/1996,Orb Books +11978,Terraforming Earth,Jack Williamson,3.46,0765344971,9780765344977,eng,352,17,3,2/17/2003,Tor Science Fiction +11980,Les jeux sont faits,Jean-Paul Sartre,3.96,2070394824,9782070394821,fre,165,1951,77,2/1/1996,Gallimard Education +11988,The Plague The Fall Exile and the Kingdom and Selected Essays,Albert Camus/Stuart Gilbert/Justin O'Brien/David Bellos,4.34,1400042550,9781400042555,eng,656,843,30,8/17/2004,Everyman's Library +11990,The Rebel,Albert Camus/Anthony Bower/Herbert Read,4.15,0679733841,9780679733843,eng,320,9227,256,1/1/1992,Vintage +11991,The Fall,Albert Camus/Justin O'Brien,4.04,0679720227,9780679720225,eng,147,53697,1772,5/7/1991,Vintage +11993,Camus at Combat: Writing 1944-1947,Albert Camus/Jacqueline Levi-Valensi/Arthur Goldhammer/David Carroll,4.19,0691120048,9780691120041,fre,334,134,5,1/16/2006,Princeton University Press +11995,Resistance Rebellion and Death: Essays,Albert Camus/Justin O'Brien,4.20,0679764011,9780679764014,en-US,288,2448,104,8/29/1995,Vintage +11996,I Who Have Never Known Men,Jacqueline Harpman/Ros Schwartz,4.09,0380731819,9780380731817,eng,206,516,71,7/1/1998,Harper Voyager +12000,Crime Novels: American Noir of the 1950s,Robert Polito/Jim Thompson/Patricia Highsmith/Charles Willeford/David Goodis/Chester Himes,4.37,1883011493,9781883011499,eng,892,420,34,9/1/1997,Library of America +12001,Raise High the Roof Beam Carpenters and Seymour: an Introduction,J.D. Salinger,4.11,0140237518,9780140237511,eng,134,251,19,10/3/1998,Hamish Hamilton +12009,The Algebraist,Iain M. Banks,4.02,1597800449,9781597800440,eng,434,15363,560,6/1/2006,Night Shade Books +12013,Excession (Culture #5),Iain M. Banks,4.21,0553575376,9780553575378,eng,499,20051,759,2/2/1998,Bantam Spectra (NY) +12016,Look to Windward (Culture #7),Iain M. Banks,4.20,0743421922,9780743421928,eng,496,17025,436,11/1/2002,Pocket Books/Simon & Schuster (NY) +12017,Inversions (Culture #6),Iain M. Banks,3.92,074341196X,9780743411967,eng,343,10878,342,5/1/2001,Pocket Books +12018,Exzession (Culture #5),Iain M. Banks/Irene Bonhorst,4.21,3453196791,9783453196797,ger,655,24,2,3/1/2002,Heyne +12019,Iain Banks' 'The Wasp Factory' 'The Crow Road' and 'Whit',Alan MacGillivray,3.92,0948877480,9780948877483,eng,80,59,3,4/19/2001,Association for Scottish Literary Studies +12022,A Song Of Stone,Iain Banks,3.17,0316640166,9780316640169,eng,280,78,10,1/1/2009,Little Brown +12034,Selected Poems,Herman Melville/Robert Faggen,3.77,0143039032,9780143039037,eng,384,31,2,6/27/2006,Penguin Classics +12035,Herman Melville: A Biography,Hershel Parker,4.22,0801881854,9780801881855,eng,928,3,0,8/15/2005,Johns Hopkins University Press +12036,The Confidence-Man,Herman Melville/Tony Tanner/John Dugdale,3.65,0192837621,9780192837622,eng,361,1876,161,11/11/1999,Oxford University Press +12043,The Italian Girl (Ackroyd and Thackeray #5),Patricia Hall,3.48,0312264895,9780312264895,eng,208,34,2,5/12/2000,St. Martin's Press +12045,An Unofficial Rose,Iris Murdoch,3.76,014002154X,9780140021547,en-US,288,14,0,1/6/1973,Penguin Books Ltd +12047,Days: A Tangier Diary,Paul Bowles,3.31,0061137367,9780061137365,eng,128,123,16,6/13/2006,Ecco +12048,The Sheltering Sky / Let It Come Down / The Spider's House,Paul Bowles/Daniel Halpern,4.19,1931082197,9781931082198,eng,940,264,21,8/26/2002,Library of America +12049,The Spider's House,Paul Bowles/Francine Prose,4.02,0061137030,9780061137037,eng,432,1123,99,10/31/2006,Ecco +12050,A Hundred Camels in the Courtyard,Paul Bowles,3.98,0872860027,9780872860025,eng,90,313,23,1/1/2001,City Lights Publishers +12052,Collected Stories and Later Writings,Paul Bowles/Daniel Halpern,4.41,1931082200,9781931082204,en-US,1050,128,11,8/26/2002,Library of America +12053,The Sheltering Sky,Paul Bowles,3.91,006083482X,9780060834821,eng,313,906,132,9/20/2005,Ecco Press +12055,Points in Time,Paul Bowles,3.67,0061139637,9780061139635,eng,96,181,26,10/31/2006,Ecco +12059,The Accidental Bodyguard (Accidental #2),Ann Major,3.25,0373760035,9780373760039,eng,192,18,0,4/24/1996,Silhouette Desire +12066,The Nice and the Good,Iris Murdoch,3.84,0140030344,9780140030341,eng,362,1539,90,12/14/1978,Penguin Books +12069,No More Christian Nice Guy: When Being Nice--Instead of Good--Hurts Men Women and Children,Paul Coughlin/Laura Schlessinger,3.77,0764200925,9780764200922,eng,224,284,33,12/31/2005,Bethany House Publishers +12070,Good Omens: The Nice and Accurate Prophecies of Agnes Nutter Witch,Terry Pratchett/Neil Gaiman,4.25,0060853972,9780060853976,eng,384,5036,582,8/7/2007,William Morrow / Harper +12071,Buenos Presagios: las buenas y ajustadas profecías de Agnes La Chalada,Terry Pratchett/Neil Gaiman,4.25,159497098X,9781594970986,spa,318,104,14,4/25/2005,Norma Editorial +12073,Philosophical Investigations,Ludwig Wittgenstein/G.E.M. Anscombe,4.23,0631231277,9780631231271,eng,464,11067,187,1/15/2001,Blackwell Publishing Inc. +12074,Wittgenstein's Poker: The Story of a Ten-Minute Argument Between Two Great Philosophers,David Edmonds/John Eidinow,3.76,0060936649,9780060936648,eng,368,2284,169,9/17/2002,Ecco +12075,Tractatus Logico-Philosophicus,Ludwig Wittgenstein/David Pears/Brian McGuinness/Bertrand Russell,4.07,0415254086,9780415254083,eng,142,13578,404,9/1/2001,Routledge Classics +12076,Philosophical Investigations,Ludwig Wittgenstein/G.E.M. Anscombe,4.23,0024288101,9780024288103,eng,256,224,35,3/11/1973,Pearson +12077,On Certainty,Ludwig Wittgenstein/G.E.M. Anscombe/George Henrik von Wright,4.16,0631169407,9780631169406,en-US,114,75,4,1/16/1991,Wiley-Blackwell +12078,Wittgenstein on Rules and Private Language: An Elementary Exposition,Saul A. Kripke,4.01,0674954017,9780674954014,eng,160,877,27,7/15/1984,Harvard University Press +12079,Ludwig Wittgenstein: The Duty of Genius,Ray Monk,4.36,0140159959,9780140159950,eng,704,3679,148,11/1/1991,Penguin Books +12080,Wittgenstein's Vienna,Allan Janik/Stephen Toulmin,4.06,1566631327,9781566631327,eng,315,285,26,9/1/1996,Ivan R. Dee Publisher +12081,The Blue and Brown Books,Ludwig Wittgenstein/Rush Rhees,4.14,0061312118,9780061312113,en-US,208,2027,38,1/1/1965,Harper & Row (NYC et al.) +12083,Long Day's Journey into Night,Eugene O'Neill/Harold Bloom,4.07,0300093055,9780300093056,eng,179,32178,734,2/8/2002,Yale University Press +12086,Long Day's Journey: The Steamboat & Stagecoach Era in the Northern West,Carlos A. Schwantes,4.00,0295976918,9780295976914,eng,408,4,0,9/1/1999,University of Washington Press +12090,En attendant Godot,Samuel Beckett,3.83,2707301485,9782707301482,fre,124,1751,74,7/3/1995,Éditions de Minuit +12091,The Coming of Godot: A Short History of a Masterpiece,Jonathan Croall/Peter Hall,4.00,1840025956,9781840025958,en-GB,128,3,0,4/1/2006,Oberon Books +12095,The Bald Soprano and Other Plays,Eugène Ionesco/Donald M. Allen,4.04,0802130798,9780802130792,eng,160,5524,106,1/12/1994,Grove Press +12099,Three Plays: Exit the King / The Killer / Macbett,Eugène Ionesco/Charles Marowitz/Donald Watson,4.11,0802151108,9780802151100,eng,105,175,9,1/13/1994,Grove Press +12108,The Discovery of New Worlds (Story of the World #2),Margaret Bertha Synge,3.50,159915014X,9781599150147,eng,252,17,3,1/8/2006,Yesterday's Classics +12113,Six Characters in Search of an Author and Other Plays,Luigi Pirandello/Mark Musa,3.95,014018922X,9780140189223,eng,224,2935,63,6/29/1995,Penguin Classics +12114,The Oil Jar and Other Stories,Luigi Pirandello/Stanley Appelbaum,3.85,048628459X,9780486284590,eng,96,214,18,4/3/1995,Dover Publications +12116,The Late Mattia Pascal,Luigi Pirandello/William Weaver/Charles Simic,4.03,1590171152,9781590171158,eng,272,6185,108,11/30/2004,NYRB Classics +12117,One No One and One Hundred Thousand,Luigi Pirandello/William Weaver/Samuel Putnam,4.10,0941419746,9780941419741,eng,176,3852,106,9/1/1992,Marsilio Publishers +12118,Henry IV,Luigi Pirandello/Tom Stoppard,3.91,0802141943,9780802141941,eng,80,650,21,7/11/2005,Grove/Atlantic Inc. +12120,Three Plays,Luigi Pirandello/Robert Rietty/Julian Mitchell/John Linstrum,3.74,0413575608,9780413575609,eng,200,7,0,6/1/1985,Methuen Publishing +12123,Sierra's Homecoming (McKettricks #5),Linda Lael Miller,4.09,0373247958,9780373247950,eng,248,1979,94,11/21/2006,Silhouette Desire +12125,Homecoming (Tillerman Cycle #1),Cynthia Voigt,3.94,0689851324,9780689851322,eng,416,18737,1081,8/1/2002,Simon Pulse +12137,Buried Child,Sam Shepard,3.91,0307274977,9780307274977,eng,120,6746,178,2/14/2006,Vintage +12142,Seven Plays,Sam Shepard/Richard Gilman,4.18,0553346113,9780553346114,eng,336,4967,105,5/1/1984,Dial Press Trade Paperback +12143,You Come Too: Favorite Poems for Readers of All Ages,Robert Frost/Noel Perrin,4.15,0805069852,9780805069853,en-US,92,79,6,4/1/2002,Owlet Paperbacks +12147,Watership Down,Richard Adams,4.06,0743277708,9780743277709,en-US,476,6115,752,11/1/2005,Charles Scribner's Sons +12148,Watership Down,Richard Adams,4.06,0060935456,9780060935450,eng,479,522,80,5/15/2001,HarperPerennial +12149,Tales from Watership Down,Richard Adams,3.79,0517289369,9780517289365,eng,267,33,3,12/15/1998,Random House +12155,The Bake Shop Ghost,Jacqueline K. Ogburn/Marjorie A. Priceman,4.27,0618445579,9780618445578,en-US,32,252,53,7/25/2005,HMH Books for Young Readers +12157,The Journey That Saved Curious George: The True Wartime Escape of Margret and H.A. Rey,Louise Borden/Allan Drummond,4.11,0618339248,9780618339242,eng,80,1136,224,9/26/2005,HMH Books for Young Readers +12169,All the Sad Young Men (Works of F. Scott Fitzgerald),F. Scott Fitzgerald/James L.W. West III,3.96,0521402409,9780521402408,eng,504,369,22,1/29/2007,Cambridge University Press +12172,Memoirs of Hadrian,Marguerite Yourcenar/Grace Frick,4.25,0374529264,9780374529260,eng,347,10455,660,5/18/2005,Farrar Straus and Giroux +12180,Every Book Its Reader: The Power of the Printed Word to Stir the World,Nicholas A. Basbanes,3.96,0060593245,9780060593247,eng,400,312,26,12/12/2006,Harper Perennial +12186,Invitation to a Beheading,Vladimir Nabokov,3.90,0141185600,9780141185606,eng,192,342,23,8/3/2015,Penguin Books Ltd +12187,Ada or Ardor: A Family Chronicle,Vladimir Nabokov/Fatih Özgüven,4.15,0679725229,9780679725220,eng,604,7927,543,2/19/1990,Vintage +12188,Strong Opinions,Vladimir Nabokov,4.00,0679726098,9780679726098,eng,368,767,59,3/17/1990,Vintage +12193,The Portable Conrad,Joseph Conrad/Morton Dauwen Zabel/Frederick R. Karl,4.28,0140150331,9780140150339,eng,762,97,7,12/9/1976,Penguin Books +12194,Lord Jim,Joseph Conrad,3.62,1551111721,9781551111728,eng,455,21925,838,11/7/2000,Broadview Press Inc +12195,Typhoon and Other Tales,Joseph Conrad/Cedric Watts,3.90,0192801732,9780192801739,eng,304,589,20,1/16/2003,Oxford University Press +12201,Stopping by Woods on a Snowy Evening,Robert Frost/Susan Jeffers,4.40,0525467343,9780525467342,eng,32,9205,322,9/24/2001,Dutton Children's Books +12202,The Poetry of Robert Frost: The Collected Poems Complete and Unabridged,Robert Frost/Edward Connery Lathem,4.25,0805069860,9780805069860,eng,607,1392,67,4/1/2002,Owl Books +12203,Frost,Thomas Bernhard/Michael Hofmann,3.88,1400040663,9781400040667,eng,342,731,69,10/17/2006,Alfred A. Knopf +12204,The Road Not Taken and Other Poems,Robert Frost,4.28,0486275507,9780486275505,eng,49,33928,251,4/19/1993,Dover Publications +12210,Collected Poems Prose and Plays,Robert Frost/Richard Poirier/Mark Richardson,4.32,188301106X,9781883011062,eng,1036,6188,51,10/1/1995,Library of America +12212,Robert Frost: A Life,Jay Parini,4.11,0805063412,9780805063417,eng,514,259,31,3/15/2000,Owl Books (NY) +12216,Three Plays: Desire Under the Elms / Strange Interlude / Mourning Becomes Electra,Eugene O'Neill/Luann Walther,4.08,0679763961,9780679763963,eng,424,1596,36,10/31/1995,Vintage +12220,A Streetcar Named Desire,Tennessee Williams,3.98,0822210894,9780822210894,eng,107,235224,2409,12/1/1952,Dramatists Play Service +12222,A Streetcar Named Desire,Tennessee Williams/Arthur Miller,3.98,0811216020,9780811216029,en-US,192,3458,337,9/17/2004,New Directions +12224,Streetcar Suburbs: The Process of Growth in Boston 1870-1900,Sam Bass Warner, Jr./Sam B. Warner,3.58,0674842111,9780674842113,en-US,236,61,6,4/20/2004,Harvard University Press +12225,A Streetcar Named Desire (SparkNotes Literature Guide),SparkNotes,3.29,1586634496,9781586634490,eng,96,0,0,7/15/2002,SparkNotes +12226,CliffNotes on Williams' Glass Menagerie & Streetcar Named Desire (Cliffs Notes),James Lamar Roberts/Tennessee Williams/CliffsNotes,3.70,0822005336,9780822005339,en-GB,88,10,0,1/5/1965,Cliffs Notes +12230,Pygmalion,George Bernard Shaw/Dan H. Laurence/Nicholas Grene,3.90,0141439505,9780141439501,eng,122,2085,179,1/30/2003,Penguin Books +12240,The Play Soldier,Chet Green,4.50,159113644X,9781591136446,eng,328,2,2,5/22/2011,Booklocker.com Inc. +12248,Return to Ithaca (Tales from the Odyssey #5),Mary Pope Osborne/Troy Howell,4.14,0786809930,9780786809936,eng,112,280,19,10/1/2004,Little Brown Books for Young Readers +12249,The New Testament,Richmond Lattimore,4.32,0865475245,9780865475243,eng,608,109,23,10/30/1997,North Point Press +12250,Greek Lyrics,Richmond Lattimore,3.98,0226469441,9780226469447,eng,82,234,21,9/15/1960,University of Chicago Press +12254,The Iliad,Homer/Robert Fagles/Derek Jacobi,3.86,0143059289,9780143059288,eng,8,42,7,6/15/2006,Penguin-HighBridge +12256,The Iliad Books 8-9 (Classical Texts Series),Homer/Charles H. Wilson,4.50,0856686271,9780856686276,grc,224,4,1,12/1/1996,Aris and Phillips +12263,The Gray-Eyed Goddess (Tales from the Odyssey #4),Mary Pope Osborne/Troy Howell/Homer,4.09,0786809310,9780786809318,en-US,128,316,22,9/30/2003,Little Brown Books for Young Readers +12268,Collected Stories,Tennessee Williams/Gore Vidal,4.31,0811212696,9780811212694,eng,608,642,46,4/17/1994,New Directions +12274,Saint Joan,George Bernard Shaw/Dan H. Laurence/Imogen Stubbs,3.80,0140437916,9780140437911,eng,160,5966,211,1/25/2001,Penguin Classics +12275,The Intelligent Woman's Guide to Socialism Capitalism Sovietism and Fascism,George Bernard Shaw/Susan Moller Okin,3.87,0887380050,9780887380051,eng,565,100,8,1/1/1984,Transaction Publishers +12279,Molloy Malone Dies The Unnamable (The Trilogy #1-3),Samuel Beckett,4.28,0375400702,9780375400704,eng,512,6775,217,9/16/1997,Everyman's Library +12288,The Adventures of Race Williams,Carroll John Daly,3.45,0892969598,9780892969593,eng,342,11,3,1/1/1989,Mysterious Press +12290,The Hidden Hand,Carroll John Daly/Drew Bishop,3.43,0060974362,9780060974367,eng,272,5,0,5/1/1992,Harper Perennial +12292,Murder from the East,Carroll John Daly,3.63,0930330013,9780930330019,eng,312,15,4,1/1/1935,International Polygonics +12293,Education as My Agenda: Gertrude Williams Race & the Baltimore Public Schools,Jo Ann Ooiman Robinson,4.25,031229543X,9780312295431,eng,336,4,1,10/14/2005,Palgrave Macmillan +12296,The Scarlet Letter,Nathaniel Hawthorne/Thomas E. Connolly/Nina Baym,3.40,0142437263,9780142437261,eng,279,609586,10402,2/27/2003,Penguin Books +12297,The Scarlet Letter,Nathaniel Hawthorne/Kathryn Harrison,3.40,0679783385,9780679783381,en-US,241,5503,220,9/19/2000,Modern Library +12299,The Scarlet Letter,Nathaniel Hawthorne,3.40,0743487567,9780743487566,eng,400,1373,68,5/1/2004,Simon & Schuster +12300,The Scarlet Letter,Nathaniel Hawthorne,3.40,1587263831,9781587263835,eng,224,109,8,7/14/2006,Ann Arbor Media +12301,The Scarlet Letter,Nathaniel Hawthorne,3.40,074326469X,9780743264693,eng,538,534,11,8/2/2005,Kaplan +12302,Nathaniel Hawthorne's The Scarlet Letter,Nathaniel Hawthorne/Karin Jacobson,3.40,0764587242,9780764587245,eng,240,10,0,4/29/2001,Cliffs Notes +12315,The Birth of Tragedy,Friedrich Nietzsche/Clifton Fadiman,3.98,0486285154,9780486285153,eng,92,210,20,6/1/1995,Dover Publications Inc. +12317,Human All Too Human (Complete Works 3),Friedrich Nietzsche/Gary Handwerk,4.21,0804741719,9780804741712,en-US,396,64,4,12/1/2000,Stanford University Press (Stanford CA) +12319,Basic Writings of Nietzsche,Friedrich Nietzsche/Walter Kaufmann/Peter Gay,4.11,0679783393,9780679783398,eng,862,3227,76,1/25/2001,Random House Inc. +12321,Beyond Good and Evil,Friedrich Nietzsche/R.J. Hollingdale/Michael Tanner,4.01,014044923X,9780140449235,eng,240,48651,1115,2/27/2003,Penguin Classics +12322,Daybreak: Thoughts on the Prejudices of Morality,Friedrich Nietzsche/R.J. Hollingdale,4.18,0521599636,9780521599634,eng,292,818,26,11/13/1997,Cambridge University Press +12328,How To Draw The Legend Of Zelda (troll),Michael Teitelbaum/Ron Zalme,4.21,0439635810,9780439635813,en-US,32,61,7,2/1/2004,Scholastic +12335,Savage Beauty: The Life of Edna St. Vincent Millay,Nancy Milford,4.01,0375760814,9780375760815,eng,608,6799,483,9/10/2002,Random House Trade +12346,Premières Histoires,João Guimarães Rosa,4.33,2864240157,9782864240150,fre,205,0,0,3/31/1995,Métailié +12349,My Year of Meats,Ruth Ozeki,3.96,0140280464,9780140280463,eng,366,12431,1330,3/1/1999,Penguin Books +12350,Beef,Ruth Ozeki,3.96,3492230024,9783492230025,ger,383,2,0,4/1/2000,Piper +12352,Mon épouse américaine,Ruth Ozeki/Florence Mortimer,3.96,2266104462,9782266104463,fre,445,3,0,4/19/2001,Pocket +12358,The Partly Cloudy Patriot,Sarah Vowell/Katherine Streeter,3.88,0743243803,9780743243803,eng,197,25608,1318,10/1/2003,Simon Schuster +12365,The Risk Pool,Richard Russo,4.04,0099276496,9780099276494,eng,479,5013,332,6/4/1998,Vintage +12366,The Whore's Child and Other Stories,Richard Russo,3.75,009943752X,9780099437529,eng,240,2738,252,11/1/2003,Vintage Books USA +12370,Supermob: How Sidney Korshak and His Criminal Associates Became America's Hidden Power Brokers,Gus Russo,3.88,1582343896,9781582343891,en-US,640,89,15,9/5/2006,Bloomsbury (NYC) +12372,The Lay of the Land,Richard Ford,3.90,0679454683,9780679454687,eng,485,3255,353,10/24/2006,Alfred A. Knopf +12375,Tom Ford,Graydon Carter/Tom Ford/Anna Wintour/Bridget Foley,4.47,0847826694,9780847826698,eng,416,182,11,11/4/2008,Rizzoli +12378,The People's Tycoon: Henry Ford and the American Century,Steven Watts,4.02,0375707255,9780375707254,eng,656,309,39,10/10/2006,Vintage +12381,Wilderness: The Lost Writings Vol. 1,Jim Morrison,3.96,0679726225,9780679726227,eng,214,2940,124,12/17/1989,Random House Vintage Books +12383,When Somebody Loves You Back (Soulmates Dissipate #6),Mary B. Morrison,4.38,0758207301,9780758207302,en-US,285,1763,20,8/1/2006,Dafina Books +12395,Journey to the End of the Night,Louis-Ferdinand Céline/Ralph Manheim/William T. Vollmann,4.23,0811216543,9780811216548,eng,453,21561,876,5/17/2006,New Directions +12398,Europe Central,William T. Vollmann,3.92,0143036599,9780143036593,en-US,811,2121,247,12/1/2005,Penguin +12401,Historical Atlas of Central Europe (History of East Central Europe Vol. 1),Paul Robert Magocsi,4.43,0295981466,9780295981468,en-US,288,24,4,8/1/2002,University of Washington Press +12408,Passing,Nella Larsen/Carla Kaplan,3.85,0393979164,9780393979169,eng,546,335,26,8/1/2007,W. W. Norton & Company +12412,The Complete Fiction of Nella Larsen: Passing Quicksand and the Stories,Nella Larsen/Charles Larson/Marita Golden,4.14,0385721005,9780385721004,eng,278,824,59,11/6/2001,Anchor Books +12417,The Poet of Tolstoy Park,Sonny Brewer,3.93,0345476328,9780345476326,eng,304,565,118,3/28/2006,Ballantine Books +12419,A Calendar of Wisdom: Daily Thoughts to Nourish the Soul,Leo Tolstoy/Peter Sekirin,4.07,0684837935,9780684837932,eng,384,502,43,10/14/1997,Scribner +12424,Safe Conduct: An Autobiography and Other Writings,Boris Pasternak/B. Deutsch,3.82,081120135X,9780811201353,eng,256,83,8,4/14/2009,New Directions +12427,Letters: Summer 1926,Boris Pasternak/Marina Tsvetaeva/Rainer Maria Rilke,4.26,0940322714,9780940322714,eng,380,179,16,10/31/2001,NYRB Classics +12441,Traveller,Richard Adams,3.92,0440204933,9780440204930,eng,355,884,74,11/5/1989,Dell Publishing +12442,The Plague Dogs,Richard Adams,3.85,0345494024,9780345494023,eng,390,5875,401,11/28/2006,Ballantine Books +12444,Maia (Beklan Empire #2),Richard Adams,4.01,0670800333,9780670800339,eng,1056,1719,133,9/27/1984,Viking Press +12445,The Girl in a Swing,Richard Adams,3.52,0517391732,9780517391730,eng,339,24,3,10/1/1982,Random House +12447,You Can't Go Home Again,Thomas Wolfe,4.04,0060930055,9780060930059,eng,711,4025,265,8/5/1998,Harper Perennial +12448,Look Homeward Angel,Thomas Wolfe,3.93,0743297318,9780743297318,eng,644,11131,751,10/10/2006,Scribner +12451,Of Time and the River: A Legend of Man's Hunger in His Youth,Thomas Wolfe/Pat Conroy,4.20,0684867850,9780684867854,eng,896,777,45,9/8/1999,Scribner +12457,Boys' Life & Search and Destroy,Howard Korder,3.76,0413712001,9780413712004,en-GB,160,17,0,12/1/2006,Methuen Publishing +12458,Complete Plays 1920–1931,Eugene O'Neill/Travis Bogard,4.18,0940450496,9780940450493,eng,1092,90,9,10/1/1988,Library of America +12461,Complete Plays 1913–1920,Eugene O'Neill/Travis Bogard,4.10,0940450488,9780940450486,eng,1107,87,5,10/1/1988,Library of America +12466,The Castle in the Forest,Norman Mailer,3.14,0394536495,9780394536491,en-US,477,2307,351,1/23/2007,Random House (NY) +12467,The Naked and the Dead,Norman Mailer,3.94,0312265050,9780312265052,eng,721,21004,620,8/28/2000,Picador +12468,The Executioner's Song,Norman Mailer,4.06,0375700811,9780375700811,eng,1056,15682,952,4/28/1998,Vintage Books USA +12473,The Big Empty: Dialogues on Politics Sex God Boxing Morality Myth Poker & Bad Conscience in America,Norman Mailer/John Buffalo Mailer,3.30,1560258241,9781560258247,en-US,218,67,10,1/24/2006,Nation Books +12474,The Armies of the Night: History as a Novel the Novel as History,Norman Mailer,3.66,0452272793,9780452272798,eng,304,2500,188,1/1/1995,Plume Books +12477,In Cold Blood,Truman Capote,4.07,0141182571,9780141182575,eng,316,3500,313,2/3/2000,Penguin Classics +12478,Cold Blood (Lorraine Page #2),Lynda La Plante,3.92,0515124796,9780515124798,eng,462,12,3,4/1/1999,Jove +12482,Amazing Disgrace (Gerald Samper #2),James Hamilton-Paterson,3.80,1933372192,9781933372198,eng,320,221,34,11/1/2006,Europa Editions +12488,Cry the Beloved Country,Alan Paton,3.90,0099766817,9780099766810,eng,240,767,85,8/1/2002,Vintage Classics +12495,You Don't Know Jack (NY Girlfriends #2),Erin McCarthy,3.72,075821409X,9780758214096,en-US,255,2757,119,10/1/2006,Brava +12496,The Sunset Limited,Cormac McCarthy,3.96,0307278360,9780307278364,eng,160,6494,562,10/24/2006,Vintage +12497,No Country for Old Men,Cormac McCarthy,4.14,0375706674,9780375706677,eng,309,120421,6140,7/11/2006,Vintage +12502,McCarthy's Bar: A Journey of Discovery in Ireland,Pete McCarthy,3.80,0312311338,9780312311339,eng,338,8819,394,3/3/2003,St. Martin's Griffin +12505,The Idiot,Fyodor Dostoyevsky/Anna Brailovsky/Joseph Frank/Constance Garnett/Alan Myers,4.18,0679642420,9780679642428,eng,667,94133,2760,4/8/2003,Modern Library +12511,The Complete Idiot's Guide to Calculus,W. Michael Kelley,4.11,1592574718,9781592574711,en-US,352,64,9,6/27/2006,Alpha +12513,True and False: Heresy and Common Sense for the Actor,David Mamet,3.95,0679772642,9780679772644,eng,144,1876,147,2/22/1999,Vintage +12517,On Directing Film,David Mamet,3.86,0140127224,9780140127225,eng,107,2448,146,1/1/1992,Penguin Books +12522,Book of Dreams,Jack Kerouac/Robert Creeley,3.44,0872863808,9780872863804,eng,250,924,25,5/1/2001,City Lights Publishers +12526,Three by Annie Dillard: Pilgrim at Tinker Creek An American Childhood The Writing Life,Annie Dillard,4.34,0060920645,9780060920647,en-US,617,562,42,11/21/1990,Harper Perennial +12527,Pilgrim at Tinker Creek,Annie Dillard,4.11,0072434171,9780072434170,eng,288,17681,1596,6/1/2000,Harper Perennial +12528,An American Childhood,Annie Dillard,3.91,0060915188,9780060915186,eng,255,7102,604,10/15/2013,Harper Perennial +12532,For the Time Being,Annie Dillard,4.16,0375703470,9780375703478,en-US,205,3172,380,2/8/2000,Vintage +12533,The Maytrees,Annie Dillard,3.57,0061239534,9780061239533,eng,216,4870,975,6/12/2007,Harper +12535,Plan B: Further Thoughts on Faith,Anne Lamott,4.05,1594481571,9781594481574,eng,352,18922,865,3/28/2006,Riverhead Books +12537,All New People,Anne Lamott,3.63,1582430543,9781582430546,eng,166,1562,111,12/17/1999,Counterpoint LLC +12540,Operating Instructions: A Journal of My Son's First Year,Anne Lamott,4.19,1400079098,9781400079094,eng,251,21507,1664,3/8/2005,Anchor +12545,Stiff: The Curious Lives of Human Cadavers,Mary Roach,4.06,0141007451,9780141007458,eng,304,1029,188,7/1/2004,Penguin +12546,A Working Stiff's Manifesto: A Memoir of Thirty Jobs I Quit Nine That Fired Me and Three I Can't Remember,Iain Levison,3.83,0812967941,9780812967944,eng,164,509,81,4/8/2003,Random House Trade +12550,Stiff Upper Lip Jeeves (Jeeves #13),P.G. Wodehouse,4.29,184159105X,9781841591056,eng,211,6970,310,12/17/2002,Everyman's Library +12555,The Bonesetter's Daughter,Amy Tan,3.99,0345457374,9780345457370,eng,387,108440,2689,2/4/2003,Ballantine Books +12557,The Kitchen God's Wife,Amy Tan,4.01,0143038109,9780143038108,en-US,416,66503,1661,9/21/2006,Penguin Books +12558,The Moon Lady,Amy Tan/Gretchen Schields,3.97,0689806167,9780689806162,eng,32,1388,64,11/1/1995,Aladdin +12560,The Short History of a Prince,Jane Hamilton,3.65,055299801X,9780552998017,eng,432,1799,121,4/1/1999,Black Swan +12561,The Guardian,Jane Hamilton,3.72,0785282092,9780785282099,eng,239,83,20,12/31/1994,Thomas Nelson Publishers +12564,Sometimes a Great Notion,Ken Kesey/Charles Bowden,4.17,0143039865,9780143039860,eng,715,577,80,8/29/2006,Penguin Classics +12568,Trout Fishing in America / The Pill vs. the Springhill Mine Disaster / In Watermelon Sugar,Richard Brautigan,4.15,0395500761,9780395500767,eng,400,8721,380,3/1/1989,Houghton Mifflin/Seymour Lawrence +12569,Revenge of the Lawn / The Abortion / So the Wind Won't Blow it All Away,Richard Brautigan,4.29,0395706742,9780395706749,eng,544,2076,95,2/21/1995,Mariner Books +12570,A Confederate General from Big Sur / Dreaming of Babylon / The Hawkline Monster,Richard Brautigan,4.25,0395547032,9780395547038,en-US,608,1724,103,2/4/1991,Mariner Books +12571,An Unfortunate Woman,Richard Brautigan/Taylan Taftaf,3.78,0312277105,9780312277109,eng,132,1349,77,7/10/2001,St. Martin's Griffin +12577,The Collected Stories,Eudora Welty,4.23,0156189216,9780156189217,eng,622,7084,202,2/1/1982,Mariner Books +12578,Complete Novels: The Robber Bridegroom Delta Wedding The Ponder Heart Losing Battles The Optimist's Daughter,Eudora Welty/Richard Ford/Michael Kreyling,4.17,188301154X,9781883011543,eng,1012,274,27,8/1/1998,Library of America +12579,Eudora Welty: Photographs,Eudora Welty/Reynolds Price,4.43,0878055290,9780878055296,eng,226,305,15,10/21/1993,University Press of Mississippi +12581,On Writing,Eudora Welty/Richard Bausch,4.04,0679642706,9780679642701,eng,106,484,56,9/24/2002,Modern Library +12582,Essential Welty: Why I Live at the P.O. A Memory Powerhouse and Petrified Man,Eudora Welty,3.94,0061124192,9780061124198,eng,1,92,28,6/27/2006,Caedmon +12583,Losing Battles,Eudora Welty,3.60,0679728821,9780679728825,eng,436,433,59,8/11/1990,Vintage +12586,The Eye of the Story: Selected Essays and Reviews,Eudora Welty,4.06,0679730044,9780679730040,eng,368,102,11,8/29/1990,Vintage +12589,The Golden Apples,Eudora Welty,3.88,015636090X,9780156360906,eng,288,830,76,9/14/1956,Mariner Books +12590,One Writer's Beginnings,Eudora Welty,4.06,0674639278,9780674639270,eng,104,2717,232,7/21/1998,Harvard University Press +12609,The Spirit Catches You and You Fall Down: A Hmong Child Her American Doctors and the Collision of Two Cultures,Anne Fadiman,4.17,0374525641,9780374525644,eng,341,60656,4194,9/30/1998,Noonday Press +12612,Hegemony or Survival: America's Quest for Global Dominance,Noam Chomsky,3.97,0805076883,9780805076882,eng,301,11173,345,9/1/2004,Holt McDougal +12614,The Chomsky-Foucault Debate: On Human Nature,Noam Chomsky/Michel Foucault/John Rajchman,3.94,1595581340,9781595581341,eng,213,1953,116,9/1/2006,The New Press +12615,Media Control: The Spectacular Achievements of Propaganda,Noam Chomsky,4.02,1583225366,9781583225363,eng,103,4332,320,9/3/2002,Seven Stories Press +12616,11 de Septiembre,Noam Chomsky,3.73,158322565X,9781583225653,spa,144,14,2,9/3/2002,Siete Cuentos +12618,On Anarchism,Noam Chomsky/Barry Pateman,3.93,1904859208,9781904859208,eng,256,4145,192,5/1/2005,AK Press +12620,The Chomsky Reader,Noam Chomsky,3.98,1852421177,9781852421175,eng,492,1643,38,6/1/1988,Serpent's Tail +12622,Language and Mind,Noam Chomsky,3.86,052167493X,9780521674935,eng,190,819,31,12/1/2006,Cambridge University Press +12623,Perilous Power: The Middle East & US Foreign Policy,Noam Chomsky/Gilbert Achcar/Stephan R. Shalom,4.05,1594513120,9781594513121,en-GB,242,270,16,9/15/2006,Routledge +12627,What Uncle Sam Really Wants,Noam Chomsky/Arthur Naiman/David Barsamian/Sandy Niemann,3.99,1878825011,9781878825018,eng,111,1679,133,1/1/1992,Odonian Press +12630,Imperial Ambitions: Conversations on the Post-9/11 World,Noam Chomsky/David Barsamian,3.97,080507967X,9780805079678,eng,226,1776,90,10/5/2005,Metropolitan Books/Henry Holt & Co. (NY) +12631,On MisEducation (Critical Perspectives),Noam Chomsky/Donaldo Macedo,3.76,0742529789,9780742529786,eng,199,282,20,2/23/2004,Rowman & Littlefield Publishers +12645,Aspects of the Theory of Syntax,Noam Chomsky,3.96,0262530074,9780262530071,eng,261,296,10,3/15/1969,MIT Press (Cambridge MA) +12646,On Democracy & Education (Social Theory Education & Cultural Change),Noam Chomsky/C.P. Otero,3.96,0415926327,9780415926324,en-US,480,84,5,11/22/2002,Routledge Falmer +12648,Cat Breaking Free (Joe Grey #11),Shirley Rousseau Murphy,4.22,0060578122,9780060578121,eng,375,225,20,10/1/2006,Avon +12649,Confessions,Jean-Jacques Rousseau/Patrick Coleman/Angela Scholar,3.62,0192822756,9780192822758,eng,676,4919,160,5/18/2000,Oxford University Press +12650,Cat Cross Their Graves (Joe Grey #10),Shirley Rousseau Murphy,4.32,0060578114,9780060578114,eng,385,504,28,9/27/2005,Avon +12651,The Social Contract,Jean-Jacques Rousseau/Maurice Cranston,3.77,0143037498,9780143037491,eng,168,29090,451,5/30/2006,Penguin +12652,Cat in the Dark (Joe Grey #4),Shirley Rousseau Murphy,4.25,0061059471,9780061059476,en-US,320,723,36,11/3/1999,Avon +12657,The Source,James A. Michener,4.30,0375760385,9780375760389,eng,1080,34972,1149,7/9/2002,Random House Trade Paperbacks +12658,Hawaii,James A. Michener,4.20,0375760377,9780375760372,eng,1136,66298,1383,7/9/2002,Dial Press Trade Paperback +12661,Chesapeake,James A. Michener,4.18,0812970438,9780812970432,eng,1024,19174,664,9/9/2003,Dial Press +12662,Caravans,James A. Michener,4.05,0812969820,9780812969825,eng,320,4753,400,9/9/2003,Dial Press Trade Paperback +12664,Iberia,James A. Michener/Robert Vavra,3.71,0449207331,9780449207338,eng,960,2153,152,10/12/1984,Fawcett Crest Books +12665,Centennial,James A. Michener,4.24,0449452697,9780449452691,eng,1086,95,13,7/1/1989,Fawcett Books +12676,Carrie (Biblioteca de Stephen King. 102 8),Stephen King/Gregorio Vlastelica,3.96,0609810901,9780609810903,spa,288,67,3,9/4/2001,Plaza y Janes +12678,Carrie,Stephen King,3.96,9685957002,9789685957007,spa,254,28,9,4/30/2005,Debolsillo +12682,The Shining,Stephen King,4.22,0743437497,9780743437493,eng,505,1316,134,10/1/2002,Gallery Books +12683,The Shining,Stephen King/Campbell Scott,4.22,0743536991,9780743536998,eng,0,13,0,8/2/2005,Simon & Schuster Audio +12684,The Shining,Stephen King,4.22,1417618256,9781417618255,eng,505,8,2,10/1/2002,Turtleback Books +12686,Marley & Me: Life and Love with the World's Worst Dog,John Grogan,4.13,0061238228,9780061238222,en-US,306,697,158,10/31/2006,William Morrow +12691,Marley and Me: Life and Love With the World's Worst Dog,John Grogan,4.13,0739461192,9780739461198,eng,291,414947,12116,10/18/2005,William Morrow; 1ST edition +12703,Wuthering Heights,Emily Brontë/Alice Hoffman,3.85,0451529251,9780451529251,eng,322,1898,201,3/2/2004,Signet Classics +12712,Brodie's notes on Aldous Huxley's brave new world,Graham Handley,0.00,0333581296,9780333581292,eng,71,0,0,8/20/1992,Macmillan +12722,The Moon Is Down,John Steinbeck,3.90,0141185538,9780141185538,eng,144,15806,996,11/30/2000,Penguin Classics +12723,Ride the Moon Down,Terry C. Johnston,4.15,0553572822,9780553572827,en-US,576,103,4,7/6/1999,Bantam +12724,Drawing Down the Moon: Witches Druids Goddess-Worshippers and Other Pagans in America,Margot Adler,4.02,0143038192,9780143038191,eng,672,6509,209,10/3/2006,Penguin Books +12725,Sing Down the Moon,Scott O'Dell,3.74,0440979757,9780440979753,eng,124,6548,356,3/26/1997,Laurel Leaf Library +12733,Light in August,William Faulkner,3.94,067964248X,9780679642480,eng,460,329,35,4/2/2002,Modern Library +12738,The Transit of Venus,Shirley Hazzard,3.89,1860491812,9781860491818,eng,352,1681,276,10/5/1995,Virago +12746,Kingsblood Royal,Sinclair Lewis/Charles R. Johnson,3.97,0375756868,9780375756863,en-US,352,77,11,4/10/2001,Modern Library +12749,Swann's Way (In Search of Lost Time #1),Marcel Proust/Lydia Davis,4.14,0142437964,9780142437964,eng,492,30493,1767,11/30/2004,Penguin Classics +12753,Swann's Way (Remembrance of Things Past #1),Marcel Proust/C.K. Scott Moncrieff/Elizabeth Dalton,4.14,1593083777,9781593083779,en-US,466,17,9,10/1/2005,Barnes & Noble Books +12754,Swann's Way (Remembrance of Things Past #1),Marcel Proust/C.K. Scott Moncrieff,4.14,1414243677,9781414243672,eng,380,1,0,1/1/2005,IndyPublish.com +12769,Lady of the Lake,Elizabeth Mayne,3.27,0373289804,9780373289806,eng,304,70,6,7/25/1997,Harlequin Historical +12770,A Kiss Before Dying,Ira Levin/Otto Penzler,3.94,0786711647,9780786711642,eng,242,6548,556,4/7/2003,Carroll & Graf Publishers +12771,A Kiss Before Dying (Sweet Valley High #122),Francine Pascal/Kate William,3.67,0553566407,9780553566406,eng,197,267,7,2/1/1996,Bantam +12783,The Satanic Verses,Salman Rushdie,3.71,014011890X,9780140118902,eng,560,11,0,9/26/1988,Penguin Books Ltd +12786,The City of Falling Angels,John Berendt,3.54,0143036939,9780143036937,eng,414,12741,1494,9/26/2006,Penguin Books +12787,Falling Angel,William Hjortsberg/Ridley Scott/James Crumley,3.92,1933618086,9781933618081,eng,302,2243,220,11/1/2006,Millipede Press +12789,Falling Angels (Luc Actar #1),Melissa M. Garcia,4.67,0595377106,9780595377107,eng,216,1,0,2/14/2006,iUniverse +12793,The Collaborator: The Trial and Execution of Robert Brasillach,Alice Kaplan,3.90,0226424154,9780226424156,eng,308,77,14,11/1/2001,University of Chicago Press +12803,Ulysses,James Joyce/Craig Raine,3.73,0679455132,9780679455134,eng,1084,250,38,10/28/1997,Everyman's Library +12807,The Crazed,Ha Jin,3.50,0434010537,9780434010530,eng,336,15,1,10/3/2002,Arrow (A Division of Random House Group) +12812,Chickenhawk: Back in the World Again: Life After Vietnam,Robert Mason,4.09,0140158766,9780140158762,eng,400,175,17,5/1/1994,Penguin Books +12817,Nuns and Soldiers,Iris Murdoch/Karen Armstrong,3.93,0142180092,9780142180099,eng,512,503,34,7/30/2002,Penguin Classics +12820,Sir Gawain And The Green Knight,Michael Morpurgo/Michael Foreman,3.94,0744586461,9780744586466,eng,120,21,5,11/1/2004,Walker +12822,Cliffs Notes on Wiesel's Night,Maryam Riess,3.40,0822008939,9780822008934,eng,80,5,1,8/22/1996,Cliffs Notes +12823,The Night Trilogy: Night Dawn the Accident,Elie Wiesel/Marion Wiesel,4.29,0374521409,9780374521400,eng,318,2439,255,9/1/1987,Hill and Wang +12827,Strong Motion,Jonathan Franzen,3.52,184115749X,9781841157498,eng,528,3996,278,6/1/2007,Fourth Estate (GB) +12828,How to Be Alone,Jonathan Franzen,3.59,0007153589,9780007153589,eng,306,336,33,7/2/2007,Harper Perennial +12829,The Twenty-Seventh City,Jonathan Franzen,3.12,0312420145,9780312420147,eng,528,3621,330,9/8/2001,Picador USA +12840,Second Ring of Power,Carlos Castañeda,4.03,0671732471,9780671732479,en-US,328,2779,33,4/1/1991,Washington Square Press +12841,The Active Side of Infinity,Carlos Castañeda,4.16,006092960X,9780060929602,eng,288,1952,70,12/22/1999,Harper Perennial +12842,Journey to Ixtlan,Carlos Castañeda,4.12,0671732463,9780671732462,eng,272,8541,257,2/1/1991,Washington Square Press +12843,The Wheel of Time: The Shamans of Mexico Their Thoughts About Life Death & the Universe,Carlos Castañeda,4.03,074341280X,9780743412803,eng,304,956,37,1/1/2001,Washington Square Press +12844,Power of Silence,Carlos Castañeda,4.22,067173248X,9780671732486,eng,288,2253,53,6/1/1991,Washington Square Press +12845,Tales of Power,Carlos Castañeda,4.13,0671732528,9780671732523,en-US,304,4657,89,1/1/1991,Washington Square Press +12846,Fire from Within,Carlos Castañeda,4.14,0671732501,9780671732509,en-US,304,2554,67,1/1/1991,Washington Square Press +12847,The Art of Dreaming,Carlos Castañeda,4.10,1855384272,9781855384279,eng,260,3618,97,2/16/2004,Element +12851,The Best Stories of Fyodor Dostoevsky,Fyodor Dostoyevsky/David Magarshack,4.26,0345481267,9780345481269,eng,352,110,6,7/26/2005,Modern Library +12852,The Best Short Stories,Fyodor Dostoyevsky/David Magarshack,4.26,0375756884,9780375756887,eng,320,2711,89,2/13/2001,Modern Library +12853,Demons,Fyodor Dostoyevsky/Richard Pevear/Larissa Volokhonsky,4.27,0375411224,9780375411229,eng,733,214,27,10/24/2000,Everyman's Library +12854,The Idiot,Fyodor Dostoyevsky/Richard Pevear/Larissa Volokhonsky,4.18,0375702245,9780375702242,eng,633,2710,294,7/8/2003,Vintage Classics +12855,Great Short Works of Fyodor Dostoevsky,Fyodor Dostoyevsky/Ronald Hingley,4.42,0060726466,9780060726461,eng,768,1330,29,7/6/2004,Harper Perennial Modern Classics +12856,The Idiot,Fyodor Dostoyevsky/Constance Garnett/Joseph Frank,4.18,1593080581,9781593080587,eng,578,442,52,1/16/2004,Barnes Noble Classics +12859,Celtic Tree Mysteries: Practical Druid Magic & Divination,Steve Blamires/Sandy Leuthner,3.92,1567180701,9781567180701,en-US,278,192,5,10/8/2002,Llewellyn Publications +12873,Rebecca,Daphne du Maurier/Sally Beauman,4.23,1844080382,9781844080380,en-US,441,179639,8119,12/1/2007,Virago Press (UK) +12876,Betraying Spinoza: The Renegade Jew Who Gave Us Modernity,Rebecca Goldstein,3.92,0805242090,9780805242096,en-US,304,536,79,5/30/2006,Schocken +12879,Shadow of the Moon (Moon #5),Rebecca York,3.79,042520961X,9780425209615,eng,336,534,25,6/6/2006,Berkley Sensation +12880,Black Lamb and Grey Falcon,Rebecca West/Christopher Hitchens,4.23,014310490X,9780143104902,eng,1181,1623,228,1/30/2007,Penguin Classics +12881,Operation Shylock: A Confession,Philip Roth,3.77,009930791X,9780099307914,eng,400,3115,188,6/16/1994,Vintage +12882,Operation Shylock. Ein Bekenntnis,Philip Roth,3.77,3446176934,9783446176935,ger,464,1,0,1/1/1994,Carl Hanser +12885,Lost in the Funhouse,John Barth,3.70,0385240872,9780385240871,eng,205,5052,305,3/1/1988,Anchor Books +12901,CliffsNotes on Faulkner's As I Lay Dying (Cliffs Notes),James Lamar Roberts/William Faulkner/CliffsNotes,3.73,0822002108,9780822002109,eng,72,10,3,3/13/1964,Cliffs Notes +12905,The Sound and the Fury As I Lay Dying Sanctuary Intruder in the Dust,William Faulkner,4.05,0706432088,9780706432084,eng,760,8,1,3/12/1988,Octopus Books +12906,CliffsNotes on Faulkner's Absalom Absalom!,James Lamar Roberts/CliffsNotes,3.12,0822001101,9780822001102,eng,64,8,1,2/28/1964,Cliffs Notes +12912,The Aeneid,Virgil/Robert Fagles/Bernard Knox,3.84,0670038032,9780670038039,eng,486,892,117,11/2/2006,Viking +12914,The Aeneid,Virgil/Robert Fitzgerald,3.84,0679729526,9780679729525,eng,442,87406,1182,6/16/1990,Vintage +12916,The Aeneid,Virgil/David West,3.84,0140449329,9780140449327,eng,290,996,96,3/27/2003,Penguin Books Ltd +12918,Aeneid,Virgil/Stanley Lombardo/W. R. Johnson,3.84,0872207315,9780872207318,eng,340,319,27,3/15/2005,Hackett Publishing Company Inc. +12919,Virgil Vol 2: Aeneid Books 7-12 Appendix Vergiliana,Virgil/G.P. Goold,4.40,0674995864,9780674995864,mul,590,583,5,1/1/2001,Harvard University Press +12922,The Castle of Otranto,Horace Walpole/E.F. Bleiler/Walter Scott,3.18,0486434125,9780486434124,eng,106,237,39,3/19/2004,Dover Publications +12923,The Castle of Otranto,Horace Walpole,3.18,0192834401,9780192834409,eng,125,16370,1211,7/16/1998,Oxford University Press +12930,Messenger (The Giver #3),Lois Lowry,3.91,0385732538,9780385732536,eng,169,93589,6654,8/22/2006,Ember +12931,Gossamer,Lois Lowry,3.90,0618685502,9780618685509,eng,144,13788,1554,4/24/2006,HMH Books for Young Readers +12932,Anastasia on Her Own (Anastasia Krupnik #5),Lois Lowry,3.90,0440402913,9780440402916,eng,160,1521,44,6/1/1986,Yearling Books +12933,Stay!: Keeper's Story,Lois Lowry/True Kelley,3.93,0440415241,9780440415244,eng,128,194,32,3/9/1999,Yearling +12936,Gathering Blue (The Giver #2),Lois Lowry,3.82,0385732562,9780385732567,eng,240,132584,9341,9/25/2000,Delacorte Press +12937,See You Around Sam! (Sam Krupnik #3),Lois Lowry/Diane deGroat,3.71,0440414008,9780440414001,eng,128,244,15,3/9/1998,Yearling +12938,King Lear,William Shakespeare,3.91,074348276X,9780743482769,eng,338,154195,2806,1/1/2004,Simon Schuster +12939,King Lear,William Shakespeare/Roma Gill,3.91,019832054X,9780198320548,eng,192,269,24,12/12/2002,Oxford University Press +12941,King Lear,William Shakespeare/R.A. Foakes,3.91,1903436591,9781903436592,eng,455,1796,98,5/9/1997,Bloomsbury Arden Shakespeare +12944,King Lear,William Shakespeare/Barbara A. Mowat/Paul Werstine,3.91,0743484959,9780743484954,eng,384,215,11,8/1/2005,Simon Schuster +12947,The Turn of the Screw (Norton Critical Edition),Henry James/Deborah Esch/Jonathan Warren,3.43,039395904X,9780393959048,eng,271,790,93,7/17/1999,W. W. Norton & Co. +12950,The Turn of the Screw and The Aspern Papers,Henry James/Anthony Curtis,3.79,0141439904,9780141439907,eng,272,6769,270,6/26/2003,Penguin Books +12951,The Turn of the Screw and Other Short Fiction,Henry James/R.W.B. Lewis,3.80,0553210599,9780553210590,eng,527,3083,134,11/1/2008,Bantam Classic +12954,The Turn of the Screw,Henry James/Peter G. Beidler,3.43,0312406916,9780312406912,eng,386,616,77,11/6/2003,Bedford Books +12958,Much Ado about Nothing,William Shakespeare/Mary Berry/Michael Clamp,4.07,052161872X,9780521618724,eng,196,128,12,9/1/2005,Cambridge University Press +12960,Much Ado About Nothing,William Shakespeare/David L. Stevenson,4.07,0451526813,9780451526816,eng,166,1230,62,7/1/1998,Signet Classic +12961,Much Ado about Nothing (Oxford School Shakespeare),William Shakespeare/Roma Gill,4.07,0198320566,9780198320562,eng,160,13,2,12/12/2002,Oxford University Press USA +12964,Much Ado about Nothing,William Shakespeare/Samuel West/Amanda Root/Arkangel Cast,4.07,1932219250,9781932219258,eng,18,38,7,11/30/2005,BBC Audiobooks America +12965,Much Ado about Nothing,William Shakespeare/F.H. Mares,4.07,0521532507,9780521532501,eng,188,73,12,4/21/2003,Cambridge University Press +12967,Winter's Tale,Mark Helprin,3.50,0156031191,9780156031196,eng,748,21851,3510,6/1/2005,Mariner Books +12969,Winter's Tales,Isak Dinesen/Karen Blixen,3.90,0679743340,9780679743347,eng,320,1464,100,6/1/1993,Vintage +12975,Twelfth Night,William Shakespeare/Alan Durband,3.98,0812036042,9780812036046,eng,256,157,18,8/1/1996,Barrons Educational Series +12980,Twelfth Night,William Shakespeare/Barbara A. Mowat/Paul Werstine,3.98,0743484967,9780743484961,eng,222,188,14,8/1/2005,Simon Schuster +12982,Twelfth Night,William Shakespeare,3.98,0141014709,9780141014708,en-GB,240,199,21,4/7/2005,Penguin Classics +12984,Tempest (Star Wars: Legacy of the Force #3),Troy Denning,3.82,0345477529,9780345477521,eng,400,5704,94,11/28/2006,Del Rey +12990,Red: Passion and Patience in the Desert,Terry Tempest Williams,4.02,0375725180,9780375725180,eng,288,1309,107,10/8/2002,Vintage +12993,Hamlet The Texts of 1603 and 1623,William Shakespeare/Neil Taylor,4.27,1904271553,9781904271550,eng,384,15,0,3/22/2006,Bloomsbury Arden Shakespeare +12994,Hamlet's Dresser: A Memoir,Bob Smith,3.74,0684852705,9780684852706,eng,288,375,63,2/1/2003,Scribner +12995,The Hamlet,William Faulkner,3.87,0679736530,9780679736530,eng,409,4208,216,10/29/1991,Vintage International +12996,Othello,William Shakespeare,3.89,0743477553,9780743477550,eng,314,273070,4265,1/1/2004,Simon Schuster +12999,Othello,William Shakespeare/David Threlfall/Don Warrington/Anne-Marie Duff/Arkangel Cast,3.89,1932219269,9781932219265,eng,3,48,3,9/15/2005,Audio Partners +13002,Othello,William Shakespeare/Barbara A. Mowat/Paul Werstine,3.89,0743482824,9780743482820,eng,368,493,25,8/1/2004,Simon Schuster +13006,Julius Caesar,William Shakespeare/Roma Gill,3.68,0198320272,9780198320272,eng,128,138685,2595,10/17/2002,Oxford University Press USA +13008,Julius Caesar,William Shakespeare/John Bowe/Michael Feast/Adrian Lester,3.68,1932219161,9781932219166,eng,3,53,3,6/1/2005,Audio Partners +13011,Julius Caesar,William Shakespeare/Marvin Spevack/Marga Munkelt,3.68,0521535131,9780521535137,eng,226,51,2,5/24/2004,Cambridge University Press +13012,Julius Caesar,William Shakespeare/SparkNotes,3.68,1586638475,9781586638474,eng,256,769,78,7/3/2003,SparkNotes +13018,Cliffsnotes on Shakespeare's Henry IV Part 1,James K. Lowers/William Shakespeare/CliffsNotes,3.88,0822000237,9780822000235,eng,80,17,0,6/15/1960,Cliffs Notes +13020,King Henry IV Part 1,William Shakespeare/David Scott Kastan,3.83,1904271359,9781904271352,eng,398,17782,493,11/7/2002,Bloomsbury Arden Shakespeare +13023,Alice in Wonderland,Lewis Carroll/Jane Carruth/Rene Cloke,4.03,0517223627,9780517223628,eng,92,364782,5234,9/7/2004,Gramercy Books +13028,Alice In Wonderland,Lewis Carroll/John Tenniel,4.02,0439291496,9780439291491,eng,160,143,18,9/1/2001,Scholastic Paperbacks +13033,The Alexandria Quartet (The Alexandria Quartet #1-4),Lawrence Durrell,4.17,0140153179,9780140153170,eng,884,10050,294,12/1/1991,Penguin Books +13037,Justine (The Alexandria Quartet #1),Lawrence Durrell,3.89,0140153195,9780140153194,eng,253,5428,542,7/12/1991,Penguin Books +13039,Clea (The Alexandria Quartet #4),Lawrence Durrell,4.18,0140153225,9780140153224,en-US,288,1896,124,7/12/1991,Penguin Books +13040,Siddhartha,Hermann Hesse,4.02,0613572742,9780613572743,eng,132,514,40,2/2/1993,Turtleback Books +13042,Kate Vaiden,Reynolds Price,3.91,0684846942,9780684846941,eng,306,1345,114,5/29/1998,Scribner +13050,The Social Contract and The First and Second Discourses,Jean-Jacques Rousseau/Susan Dunn/Gita May/Robert N. Bellah/David Bromwich/Conor Cruise O'Brien,3.83,0300091419,9780300091410,eng,328,63,2,2/8/2002,Yale University Press +13060,Nature Girl,Carl Hiaasen,3.63,0307262995,9780307262998,eng,306,19245,1533,11/14/2006,Alfred A. Knopf +13061,Stormy Weather,Carl Hiaasen,3.95,0446677167,9780446677165,en-US,388,12609,696,3/1/2001,Grand Central Publishing +13062,Skin Tight (Mick Stranahan #1),Carl Hiaasen,3.96,0446695696,9780446695695,en-US,420,14475,571,4/12/2005,Warner Books (NY) +13063,Basket Case,Carl Hiaasen,3.82,0446695645,9780446695640,eng,400,13125,743,2/1/2005,Grand Central Publishing +13064,Tourist Season,Carl Hiaasen,3.94,0446695718,9780446695718,eng,404,15459,669,5/9/2005,Warner Books (NY) +13066,Sick Puppy,Carl Hiaasen,3.89,0446695688,9780446695688,eng,464,20070,1047,4/12/2005,Grand Central Publishing +13067,Flush,Carl Hiaasen,3.88,0375821821,9780375821820,eng,263,23811,2348,9/13/2005,Alfred A. Knopf Books for Young Readers +13068,Double Whammy (Skink #1),Carl Hiaasen,3.93,0446695661,9780446695664,eng,404,11050,624,3/1/2005,Grand Central Publishing +13069,Naked Came the Manatee,Carl Hiaasen/Elmore Leonard/Dave Barry/James W. Hall/Edna Buchanan/Les Standiford/Paul Levine/Brian Antoni/Tananarive Due/John Dufresne/Vicki Hendricks/Carolina Hospital/Evelyn Mayerson,3.48,0449001245,9780449001240,eng,208,2303,161,1/20/1998,Ballantine Books +13074,Strip Tease,Carl Hiaasen,3.84,044669567X,9780446695671,eng,464,12371,536,3/1/2005,Grand Central Publishing +13075,Basket Case,Carl Hiaasen,3.82,044661193X,9780446611930,eng,413,333,29,1/1/2003,Grand Central Publishing +13076,A Carl Hiaasen Collection: Stormy Weather Tourist Season and Strip Tease,Carl Hiaasen/Edward Asner,4.45,0375410465,9780375410468,eng,9,44,1,1/4/2000,Random House Audio +13079,Skinny Dip (Mick Stranahan #2),Carl Hiaasen,3.81,0446615129,9780446615129,eng,496,33459,2602,5/1/2006,Grand Central Publishing +13083,Hoot,Carl Hiaasen,3.82,0440421705,9780440421702,eng,292,85404,3692,3/14/2006,Yearling Books +13086,Suburban Nation: The Rise of Sprawl and the Decline of the American Dream,Andrés Duany/Elizabeth Plater-Zyberk/Jeff Speck,4.08,0865476063,9780865476066,eng,320,1980,154,4/16/2001,North Point Press +13100,The Bible Cure For Diabetes,Don Colbert,3.84,0884196488,9780884196488,eng,96,21,1,8/19/1999,Siloam +13104,The Celestine Prophecy: A Pocket Guide to the Nine Insights,James Redfield,3.87,0446912069,9780446912068,eng,68,1256,100,12/2/2005,Warner Books (NY) +13105,The Tenth Insight: Holding the Vision (Celestine Prophecy #2),James Redfield,3.64,0446674575,9780446674577,eng,256,9889,337,12/1/1998,Grand Central Publishing +13106,The Celestine Prophecy,James Redfield/Lou Diamond Phillips,3.64,1594831955,9781594831959,en-US,0,64,10,2/16/2006,Grand Central Publishing +13107,The Celestine Prophecy: An Experiential Guide,James Redfield,3.84,0553503707,9780553503708,eng,304,120,11,7/6/1995,Bantam +13113,Zen and the Art of Motorcycle Maintenance: An Inquiry Into Values,Robert M. Pirsig,3.77,0688052304,9780688052300,eng,412,424,47,6/1/1979,Quill +13119,The Dark Side Of Genius: The Life Of Alfred Hitchcock,Donald Spoto,3.83,030680932X,9780306809323,en-US,608,990,97,8/30/1999,Da Capo Press +13121,Enchantment: The Life of Audrey Hepburn,Donald Spoto,3.87,0307237583,9780739474792,eng,352,2703,267,4/2/2007,Harmony +13122,Marilyn Monroe: The Biography,Donald Spoto,4.03,0815411839,9780815411833,eng,752,1396,99,7/17/2001,Cooper Square Publishers +13128,Cross (Alex Cross #12),James Patterson,4.00,0316159794,9780316159791,eng,393,48095,1633,11/13/2006,Little Brown and Company +13130,Judge & Jury,James Patterson/Andrew Gross,4.00,0316013935,9780316013932,eng,419,41805,831,7/31/2006,Little Brown and Company +13131,The 6th Target (Women's Murder Club #6),James Patterson/Maxine Paetro,4.04,0316014796,9780316014793,eng,390,47196,1464,5/8/2007,Little Brown and Company +13133,The Quickie,James Patterson/Michael Ledwidge,3.83,0316117366,9780316117364,eng,357,32963,2132,7/2/2007,Little Brown and Company +13134,You've Been Warned,James Patterson/Howard Roughan,3.53,0316014508,9780316014502,eng,374,18058,1519,9/10/2007,Little Brown and Company +13136,2nd Chance (Women's Murder Club #2),James Patterson/Andrew Gross,4.04,0446696633,9780446696630,eng,400,78780,2118,5/20/2005,Grand Central Publishing +13137,1st to Die (Women's Murder Club #1),James Patterson,4.08,0446696617,9780446696616,eng,424,269826,5220,5/20/2005,Grand Central Publishing +13138,Season of the Machete,James Patterson,3.25,0446600474,9780446600477,eng,341,5512,227,4/1/1995,Vision +13139,School's Out—Forever (Maximum Ride #2),James Patterson,4.15,0316155594,9780316155595,eng,409,103221,2689,5/23/2006,Little Brown and Company +13140,Jack & Jill (Alex Cross #3),James Patterson,3.96,0446692654,9780446692656,eng,466,58414,1191,8/1/2003,Grand Central Publishing +13141,The Midnight Club,James Patterson,3.82,0446606383,9780446606387,eng,368,10970,322,6/1/1999,Vision +13142,Cat & Mouse (Alex Cross #4),James Patterson,3.98,0446692646,9780446692649,eng,432,242,15,8/1/2003,Grand Central Publishing +13143,Pop Goes the Weasel (Alex Cross #5),James Patterson,4.00,0446608815,9780446608817,eng,461,52093,985,10/1/2000,TIme Warner Books +13144,Roses Are Red (Alex Cross #6),James Patterson,4.04,0747266999,9780747266990,eng,421,220,19,6/25/2001,Headline +13145,Along Came a Spider (Alex Cross #1),James Patterson,4.11,0446692638,9780446692632,eng,449,369267,4011,8/1/2003,Grand Central Publishing +13146,Black Friday,James Patterson,3.68,0446609323,9780446609326,eng,480,9714,220,4/1/2000,Vision +13147,Honeymoon (Honeymoon #1),James Patterson/Howard Roughan,3.83,0446613371,9780446613378,eng,406,34087,1809,1/1/2007,Grand Central Publishing +13148,Kiss the Girls (Alex Cross #2),James Patterson,3.96,0446677388,9780446677387,eng,481,297211,2943,7/1/2000,Grand Central Publishing +13149,The Thomas Berryman Number,James Patterson,2.86,0446600458,9780446600453,eng,272,4320,307,4/1/1996,Grand Central Publishing +13151,London Bridges (Alex Cross #10),James Patterson,3.94,0446613355,9780446613354,eng,403,36334,905,10/1/2005,Vision +13152,The Angel Experiment (Maximum Ride #1),James Patterson,4.08,0446617792,9780446617796,eng,445,187892,7624,5/5/2006,Grand Central Publishing +13155,3rd Degree (Women's Murder Club #3),James Patterson/Andrew Gross,4.02,0446696641,9780446696647,eng,352,268,13,5/20/2005,Grand Central Publishing +13157,The Jester,James Patterson/Andrew Gross,3.80,0755300203,9780755300204,eng,548,16563,849,3/1/2004,Headline +13158,See How They Run,James Patterson,3.84,1568654235,9781568654232,eng,320,48,1,7/8/1997,Doubleday Books +13161,Miracle on the 17th Green (Travis McKinley #1),James Patterson/Peter de Jonge,3.68,0316693359,9780316693356,eng,160,3733,320,5/5/1999,Little Brown and Company +13162,When the Wind Blows (When the Wind Blows #1),James Patterson,3.93,0446676438,9780446676434,eng,416,42701,1337,4/1/2000,Grand Central Publishing +13164,SantaKid,James Patterson/Michael Garland,3.88,0316000612,9780316000611,eng,48,862,53,11/1/2004,Jimmy Patterson +13173,A Little Prairie House,Laura Ingalls Wilder/Renée Graef,4.19,0064435261,9780064435260,eng,32,1561,45,3/21/1999,HarperCollins +13177,Private Parts,Howard Stern,3.77,0671009443,9780671009441,eng,660,3878,151,3/1/1997,Pocket Books +13180,The Private Parts of Women,Lesley Glaister,3.80,0747526036,9780747526032,eng,288,22,3,9/1/2002,Bloomsbury Publishing PLC +13194,Green Arrow Vol. 1: Quiver,Kevin Smith/Phil Hester/Ande Parks,4.07,1563899655,9781563899652,en-US,232,5299,131,12/16/2008,DC Comics +13196,Quiver,Stephanie Spinner,3.51,0440238196,9780440238195,en-US,177,837,95,4/12/2005,Laurel-Leaf Books +13199,A Quiver Full of Arrows,Jeffrey Archer,3.78,0312937695,9780312937690,eng,288,9214,179,8/30/2005,St. Martin's Paperbacks +13203,Celebrations: Rituals of Peace and Prayer,Maya Angelou,4.13,1400066107,9781400066100,eng,128,748,105,10/24/2006,Random House +13206,The Collected Autobiographies of Maya Angelou,Maya Angelou,4.63,0679643257,9780679643258,eng,1184,991,55,9/21/2004,Modern Library +13210,Wouldn't Take Nothing for My Journey Now,Maya Angelou,4.27,0553380176,9780553380170,eng,127,7423,319,5/12/1997,Bantam +13211,And Still I Rise,Maya Angelou/Linda Sunshine/Diego Rivera,4.42,0375505962,9780375505966,eng,54,3720,240,8/7/2001,Random House +13215,Life Doesn't Frighten Me,Maya Angelou/Jean-Michel Basquiat/Sara Jane Boyers,4.41,1556702884,9781556702884,eng,32,1246,164,2/6/1996,Harry N. Abrams +13228,Cumbres borrascosas,Emily Brontë,3.85,8497644743,9788497644747,spa,384,156,28,5/28/2006,Edimat Libros +13237,Dreaming in Pictures: The Photography,Lewis Carroll/Douglas R. Nickel,4.01,0300091699,9780300091694,eng,172,104,6,8/11/2002,Yale University Press +13238,Lewis Carroll's Jabberwocky: A Book of Brillig Dioramas,Lewis Carroll/Graeme Base,4.14,0810935201,9780810935204,eng,14,31,2,3/30/1996,Harry N. Abrams +13241,The Collected Short Stories of Maxim Gorky,Maxim Gorky/Avrahm Yarmolinsky/Moura Budberg,3.96,0806510757,9780806510750,eng,404,883,16,8/18/1988,Citadel Press +13254,Name Dropping,Jane Heller,3.52,0312978332,9780312978334,eng,323,701,53,3/15/2001,St. Martin's Press +13257,Many Luscious Lollipops: A Book About Adjectives,Ruth Heller,4.06,0698116410,9780698116412,en-US,48,322,41,2/23/1998,Puffin Books +13258,What Was She Thinking? [Notes on a Scandal],Zoë Heller,3.71,0312421990,9780312421991,eng,258,13674,1166,6/1/2004,Picador +13260,Night of Long Shadows (Eberron: Inquisitives #2),Paul Crilley,3.65,0786942703,9780786942701,en-US,306,152,14,5/8/2007,Wizards of the Coast +13270,Poetics,Aristotle/Malcolm Heath,3.82,0140446362,9780140446364,eng,144,12610,486,9/26/1996,Penguin Classics +13275,Poetics of Music in the Form of Six Lessons,Igor Stravinsky/George Seferis/Arthur Knodel/Ingolf Dahl,4.11,0674678567,9780674678569,eng,160,988,31,2/26/1970,Harvard University Press +13276,An Introduction to the Old Testament Poetic Books,C. Hassell Bullock,3.68,0802441416,9780802441416,eng,392,39,5,8/8/1988,Moody Publishers (Chicago) +13285,Mondrian,John Milner/Piet Mondrian,3.73,0714831670,9780714831671,eng,235,26,1,4/1/1995,Phaidon Press +13310,Writings on Art,Mark Rothko/Miguel López-Remiro,3.84,0300114400,9780300114409,eng,192,102,8,4/28/2006,Yale University Press +13314,The Legacy of Mark Rothko,Lee Seldes,3.87,0306807254,9780306807251,eng,403,36,5,8/22/1996,Da Capo Press +13320,Mark Rothko,Diane Waldman/Bernard Malamud,4.04,0810915871,9780810915879,eng,296,45,2,9/1/1978,Harry N. Abrams +13323,Mark Rothko 1903 1970,Diane Waldman,4.04,0500282757,9780500282755,eng,296,3,0,5/14/2001,Thames & Hudson Ltd +13329,A World of Art,Henry M. Sayre,3.73,0132221861,9780132221863,eng,592,56,1,12/22/2006,Prentice Hall +13336,Olympian Odes. Pythian Odes,Pindar/William H. Race,4.09,0674995643,9780674995642,mul,416,59,5,4/15/1997,Harvard University Press +13337,The Odes,Pindar/Cecil Maurice Bowra/Daniel C. Snell/Dawson William Turner/Maehler/Abraham Moore,3.89,014044209X,9780140442090,eng,256,1052,23,9/30/1982,Penguin Books +13342,The Odes and Selected Fragments,Pindar/G.S. Conway/Richard Stoneman,3.89,0460876740,9780460876742,eng,352,7,1,3/1/1998,Everyman's Library +13344,Nemean Odes. Isthmian Odes. Fragments,Pindar/William H. Race,4.19,0674995341,9780674995345,mul,480,35,1,4/15/1997,Harvard University Press +13345,Sabriel (Abhorsen #1),Garth Nix,4.17,0060575816,9780060575816,en-US,311,1312,162,8/17/2004,Eos +13347,Euripides 3: Alcestis/Daughters of Troy/The Phoenician Women/Iphigenia at Aulis/Rhesus,Euripides/David R. Slavitt/Smith Palmer Bovie/Fred Chappell/Mark Rudman/Elaine Terranova/Richard Elman/Katharine Washburn/George D. Economou,3.88,0812216504,9780812216509,eng,392,7,1,6/1/1998,University of Pennsylvania Press +13357,Eragon: Prima Official Game Guide,Prima Publishing,3.98,0761555528,9780761555520,eng,176,120,1,11/14/2006,Prima Games +13360,Battlefield of the Mind: Winning the Battle in Your Mind,Joyce Meyer,4.34,0446691097,9780446691093,en-US,288,27204,698,10/1/2002,FaithWords +13365,A Lady At Last (deWarenne Dynasty #7),Brenda Joyce,4.06,0373771371,9780373771370,eng,379,1549,87,11/21/2006,Hqn +13368,James Joyce's Ulysses,Stuart Gilbert,4.17,0394700139,9780394700137,eng,405,1991,92,1/12/1955,Vintage +13374,A Complicated Kindness,Miriam Toews,3.65,1582433224,9781582433226,eng,253,17963,1023,8/17/2005,Counterpoint LLC +13375,A Complicated Kindness (Bookclub-In-A-Box),Marilyn Herbert/Miriam Toews,4.00,1897082274,9781897082270,eng,80,39,1,8/30/2006,Bookclub-In-A-Box +13379,Race of Scorpions (The House of Niccolo #3),Dorothy Dunnett,4.42,039457107X,9780394571072,eng,534,21,1,5/5/1990,Knopf +13382,Vinyl Cafe Odd Jobs,Stuart McLean,4.56,096830317X,9780968303177,eng,3,61,1,6/15/2005,Canadian Broadcasting Corporation (CBC Audio) +13383,Vinyl Cafe Coast to Coast Story Service,Stuart McLean,4.45,0968303188,9780968303184,eng,3,51,1,7/15/2005,Canadian Broadcasting Corporation (CBC Audio) +13388,Vinyl Cafe Diaries (Vinyl Cafe #4),Stuart McLean,4.19,0670044369,9780670044368,eng,302,924,59,11/28/2003,Penguin Books Canada +13397,Checkmate (Tom Clancy's Splinter Cell #3),David Michaels/Tom Clancy,3.94,0425212785,9780425212783,eng,402,3896,65,11/7/2006,Berkley +13398,Operation Barracuda (Tom Clancy's Splinter Cell #2),David Michaels/Raymond Benson/Tom Clancy,4.02,0425204227,9780425204221,eng,326,5062,79,11/1/2005,Berkley +13399,Splinter Cell (Tom Clancy's Splinter Cell #1),David Michaels/Raymond Benson/Tom Clancy,3.85,0425201686,9780425201688,eng,355,10329,193,12/6/2004,Berkley +13413,Dark Visions,Douglas E. Winter/Dan Simmons/Stephen King/George R.R. Martin,3.89,0575402903,9780575402904,en-US,381,155,17,8/10/2000,Indigo +13414,Ancilla to the Pre-Socratic Philosophers,Kathleen Banks Freeman/Hermann Alexander Diels,4.25,0674035011,9780674035010,eng,172,46,7,8/8/2003,Harvard University Press (Cambridge) +13421,The Presocratics,Philip Ellis Wheelwright,4.04,002426640X,9780024266408,en-US,352,201,12,1/11/1966,Prentice Hall/Library of Liberal Arts +13422,The Presocratic Philosophers,Geoffrey S. Kirk/John Earle Raven/Malcolm Schofield,4.25,0521274559,9780521274555,eng,518,692,26,12/29/1983,Cambridge University Press +13423,Presocratic Philosophy: A Very Short Introduction,Catherine Osborne,3.58,0192840940,9780192840943,eng,144,205,24,9/16/2004,Oxford University Press USA +13424,The Presocratic Philosophers,Jonathan Barnes/Ted Honderich,4.14,0415050790,9780415050791,eng,728,68,3,9/16/1982,Routledge +13425,The First Philosophers: The Presocratics and Sophists,Robin Waterfield/Anaximander/Anaximenes/Empedocles/Gorgias of Leontini/Heraclitus/Parmenides/Protagoras/Pythagoras/Thales/Thrasymachus/Zeno of Elea,3.95,0192824546,9780192824547,eng,400,356,17,11/30/2000,Oxford University Press +13440,Skeleton Crew,Stephen King,3.96,0751504386,9780751504385,eng,612,97092,1186,5/13/1993,Warner Books +13442,Night Shift,Stephen King,4.00,0385129912,9780385129916,eng,344,486,56,10/1/1993,Doubleday Books +13444,The Talisman,Stephen King/Peter Straub,4.13,0670691992,9780670691999,eng,646,1259,131,11/8/1984,Viking; G. P. Putnam & Sons +13446,El retrato de Rose Madder,Stephen King/Bettina Blanch Tyroller,3.70,0307376583,9780307376589,spa,496,218,30,10/3/2006,Debolsillo +13448,The Dark Half,Stephen King,3.77,5550707004,9785550707005,eng,431,103,16,11/1/1989,Viking Books +13449,La Milla Verde,Stephen King/María Eugenia Ciocchini Suárez,4.44,0743233603,9780743233606,spa,448,9,1,3/26/2002,Fireside Books +13451,Storm of the Century,Stephen King,3.92,067103264X,9780671032647,eng,376,18255,266,2/1/1999,Pocket +13460,Girls Think of Everything: Stories of Ingenious Inventions by Women,Catherine Thimmesh/Melissa Sweet,4.15,0618195637,9780618195633,eng,64,906,171,3/11/2002,HMH Books for Young Readers +13462,How Dogs Think: What the World Looks Like to Them and Why They Act the Way They Do,Stanley Coren,3.99,0743222334,9780743222334,en-US,368,693,58,6/6/2005,Atria Books +13463,The How to Think Like Leonardo da Vinci Workbook: Your Personal Companion to How to Think Like Leonardo da Vinci,Michael J. Gelb,3.85,0440508827,9780440508823,eng,288,327,16,6/15/1999,Dell +13467,Brit-Think Ameri-Think: A Transatlantic Survival Guide,Jane Walmsley,3.26,0142001341,9780142001349,eng,160,269,40,2/25/2003,Penguin Books +13469,What You Think of Me Is None of My Business,Terry Cole-Whittaker,4.10,051509479X,9780515094794,en-US,208,203,25,4/1/1988,Berkley Books +13470,Think on These Things,Jiddu Krishnamurti/D. Rajagopal,4.36,0060916095,9780060916091,eng,258,2509,137,10/11/1989,HarperOne +13484,Think Like a Cat: How to Raise a Well-Adjusted Cat—Not a Sour Puss,Pam Johnson-Bennett,4.06,0965013014,9780965013017,eng,413,543,69,1/24/2000,Penguin Books +13485,Think Like a Guy: How to Get a Guy by Thinking Like One,Giuliana DePandi,3.15,0312354371,9780312354374,en-US,172,115,23,6/27/2006,St. Martin's Griffin +13486,How to Think Theologically,Howard W. Stone/James O. Duke,3.67,0800638182,9780800638184,en-US,142,235,22,1/1/2006,Fortress Press +13487,JoJo's Bizarre Adventure Vol. 6 (Stardust Crusaders #6),Hirohiko Araki,4.36,1421506556,9781421506555,eng,208,309,7,12/5/2006,VIZ Media +13488,JoJo's Bizarre Adventure Vol. 4 (Stardust Crusaders #4),Hirohiko Araki,4.45,142150653X,9781421506531,eng,208,450,8,6/6/2006,VIZ Media +13489,JoJo's Bizarre Adventure Vol. 5 (Stardust Crusaders #5),Hirohiko Araki,4.41,1421506548,9781421506548,eng,208,363,5,9/5/2006,VIZ Media +13490,JoJo's Bizarre Adventure Vol. 7 (Stardust Crusaders #7),Hirohiko Araki,4.42,1421510782,9781421510781,eng,208,339,5,4/3/2007,VIZ Media +13492,Jojo's Bizarre Adventure Tome 4: Dans la salle du dragon à deux têtes (Phantom Blood #4),Hirohiko Araki,3.97,2290318043,9782290318041,fre,180,129,3,4/29/2002,J'ai Lu +13493,JoJo's Bizarre Adventure Vol. 8 (Stardust Crusaders #8),Hirohiko Araki,4.46,1421510790,9781421510798,eng,208,303,5,8/7/2007,VIZ Media +13494,Jojo's Bizarre Adventure Tome 17: L'Amoureux terrible (Stardust Crusaders #5),Hirohiko Araki/Hirohiko Araki,4.41,2290328308,9782290328309,fre,202,2,1,5/23/2003,J'ai lu +13495,Jojo's Bizarre Adventure Tome 6: Jojo contre la forme de vie ultime (Battle Tendency #1),Hirohiko Araki,4.18,2290318493,9782290318492,fre,198,122,2,6/26/2002,J'ai lu +13500,Fevre Dream,George R.R. Martin,3.86,067145577X,9780671455774,eng,350,127,25,1/1/1982,Poseidon Press +13501,The Hedge Knight (The Tales of Dunk and Egg #1),Ben Avery/Mike S. Miller/George R.R. Martin/Mike Crowell,4.14,097640110X,9780976401100,eng,164,15977,415,2/23/2005,Dabel Brothers Publishing +13504,A Clash of Kings (A Song of Ice and Fire #2),George R.R. Martin/Roy Dotrice,4.41,073930870X,9780739308707,eng,0,113,12,2/17/2004,Random House Audio +13505,Tuf Voyaging,George R.R. Martin,4.10,1592220045,9781592220045,en-US,448,62,7,11/10/2004,Meisha Merlin Publishing +13506,Jack of Kinrowan: Jack the Giant-Killer / Drink Down the Moon,Charles de Lint,4.12,0312869592,9780312869595,eng,412,3685,95,9/5/2000,St. Martins Press +13508,Lies My Teacher Told Me: Everything Your History Textbook Got Wrong,James W. Loewen,3.96,156584100X,9781565841000,eng,384,402,55,8/4/1995,The New Press +13509,Lies My Teacher Told Me about Christopher Columbus: What Your History Books Got Wrong,James W. Loewen,4.00,1565840089,9781565840089,eng,48,227,15,10/1/2006,New Press +13517,C.G. Jung and Hermann Hesse: A Book of Two Friendships,Miguel Serrano,4.02,3856305580,9783856305581,eng,142,405,21,1/1/1997,Daimon Verlag +13519,The Journey to the East,Hermann Hesse/Hilda Rosner,3.70,0312421680,9780312421687,eng,128,8071,360,2/1/2003,Picador +13521,Son of a Witch (The Wicked Years #2),Gregory Maguire/Douglas Smith/Jelena Bojić,3.47,0060747226,9780060747220,eng,352,52323,3023,9/26/2006,William Morrow Paperbacks +13529,March,Geraldine Brooks,3.75,0143036661,9780143036661,eng,280,49145,5344,1/31/2006,Penguin +13530,Foreign Correspondence: A Pen Pal's Journey from Down Under to All Over,Geraldine Brooks,3.85,0385483732,9780385483735,eng,240,1428,204,1/19/1999,Anchor Books +13536,Jojo's Bizarre Adventure Tome 1: Dio L'envahisseur (Phantom Blood #1),Hirohiko Araki,3.88,2290061247,9782290061244,fre,186,6,0,1/28/2002,J'ai Lu +13538,Jojo's Bizarre Adventure Tome 19: La Lampe Magique (Stardust Crusaders #7),Hirohiko Araki/Hirohiko Araki,4.42,2290329452,9782290329450,fre,200,3,1,7/15/2003,J'ai Lu +13540,Jojo's Bizarre Adventure Tome 14: Le Navire désert et le Singe (Stardust Crusaders #2),Hirohiko Araki/Hirohiko Araki,4.41,2290328057,9782290328057,fre,189,4,2,2/25/2003,J'ai lu +13541,Jojo's Bizarre Adventure Tome 13: Le Maléfice de Dio (Stardust Crusaders #1),Hirohiko Araki/Hirohiko Araki,4.31,2290328022,9782290328026,fre,191,4,3,1/28/2003,J'ai lu +13543,Jojo's Bizarre Adventure Tome 5: La dernière onde (Phantom Blood #5),Hirohiko Araki,4.10,229031823X,9782290318232,fre,208,121,3,5/23/2002,J'ai lu +13544,Jojo's Bizarre Adventure Tome 9: Ruée vers la falaise de la mort! (Battle Tendency #4),Hirohiko Araki,4.27,2290319368,9782290319369,fre,192,91,2,9/27/2002,J'ai Lu +13545,Jojo's Bizarre Adventure Tome 18: Death Thirteen (Stardust Crusaders #6),Hirohiko Araki/Hirohiko Araki,4.36,2290328316,9782290328316,fre,188,2,1,6/27/2003,J'ai Lu +13546,Jojo's Bizarre Adventure Tome 11: Le guerrier qui retourne au vent (Battle Tendency #6),Hirohiko Araki,4.39,2290320102,9782290320105,fre,185,94,1,11/26/2002,J'ai Lu +13547,Jojo's Bizarre Adventure Tome 16: L'Expérience du combat ! (Stardust Crusaders #4),Hirohiko Araki/Hirohiko Araki,4.45,2290328294,9782290328293,fre,207,3,1,4/29/2003,J'ai lu +13548,Jojo's Bizarre Adventure Tome 14: Le revolver est plus fort que l'épée (Stardust Crusaders #3),Hirohiko Araki/Hirohiko Araki,4.44,2290328227,9782290328224,fre,202,4,2,3/25/2003,J'ai Lu +13549,From Far Away Vol. 12,Kyoko Hikawa/Yuko Sawada/Freeman Wong,4.43,1421505398,9781421505398,eng,208,909,15,9/12/2006,VIZ Media +13550,From Far Away Vol. 13,Kyoko Hikawa/Yuko Sawada/Freeman Wong,4.48,1421505401,9781421505404,eng,208,897,17,11/14/2006,VIZ Media +13551,From Far Away Vol. 14,Kyoko Hikawa/Yuko Sawada/Freeman Wong,4.50,142150541X,9781421505411,eng,208,986,37,1/9/2007,VIZ Media +13552,Very Far Away from Anywhere Else,Ursula K. Le Guin,3.91,0152052089,9780152052089,en-US,133,1756,176,10/1/2004,HMH Books for Young Readers +13557,Vagabond Volume 20,Takehiko Inoue,4.41,1591165830,9781591165835,eng,224,513,12,3/15/2005,VIZ Media LLC +13562,彼方から 13,Kyoko Hikawa,4.48,4592175433,9784592175438,jpn,178,19,0,8/10/2002,Hakusen Sha +13568,Tsubasa: RESERVoir CHRoNiCLE Vol. 11,CLAMP/William Flanagan,4.28,0345485289,9780345485281,eng,183,2728,35,10/31/2006,Del Rey +13569,Tsubasa: RESERVoir CHRoNiCLE Vol. 3,CLAMP/William Flanagan,4.28,0345471830,9780345471833,eng,196,5616,65,10/26/2004,Del Rey +13570,Tsubasa: RESERVoir CHRoNiCLE Vol. 1,CLAMP/Anthony Gerard,4.11,0345470575,9780345470577,eng,197,38296,396,4/27/2004,Del Rey +13571,Tsubasa: RESERVoir CHRoNiCLE Vol. 10,CLAMP/William Flanagan,4.29,0345484304,9780345484307,eng,184,2765,38,7/25/2006,Del Rey +13575,Tsubasa: RESERVoir CHRoNiCLE Vol. 8,CLAMP/William Flanagan,4.27,0345484282,9780345484284,eng,194,2993,40,1/31/2006,Del Rey +13576,Tsubasa: RESERVoir CHRoNiCLE Vol. 6,CLAMP/William Flanagan,4.30,0345477936,9780345477934,eng,193,3359,48,7/26/2005,Del Rey +13577,Tsubasa: RESERVoir CHRoNiCLE Vol. 04 (Tsubasa: RESERVoir CHRoNiCLE #4),CLAMP/William Flanagan,4.28,034547791X,9780345477910,eng,192,4059,50,1/25/2005,Del Rey Books +13578,Tsubasa: RESERVoir CHRoNiCLE Vol. 09,CLAMP/William Flanagan,4.28,0345484290,9780345484291,eng,184,3052,41,4/25/2006,Del Rey +13579,Tsubasa: RESERVoir CHRoNiCLE Vol. 12,CLAMP/William Flanagan,4.31,0345485327,9780345485328,eng,184,2683,38,1/30/2007,Del Rey +13583,ツバサ-RESERVoir CHRoNiCLE- 4,CLAMP,4.28,4063633381,9784063633382,jpn,186,6,2,2/17/2004,講談社 +13584,ツバサ-RESERVoir CHRoNiCLE- 6,CLAMP,4.30,4063633934,9784063633931,jpn,186,5,1,6/17/2004,講談社 +13585,ツバサ-RESERVoir CHRoNiCLE- 3,CLAMP,4.28,4063633225,9784063633221,jpn,190,7,1,12/17/2003,講談社 +13586,ツバサ-RESERVoir CHRoNiCLE- 7,CLAMP,4.29,4063634167,9784063634167,jpn,188,5,2,8/17/2004,講談社 +13587,ツバサ-RESERVoir CHRoNiCLE- 8,CLAMP,4.27,4063634523,9784063634525,jpn,187,4,0,11/17/2004,講談社 +13588,Hikaru no Go Vol. 7: The Young Lions Tournament (Hikaru no Go #7),Yumi Hotta/Takeshi Obata,4.26,1421506416,9781421506418,eng,205,1144,18,7/5/2006,VIZ Media LLC +13589,Hikaru no Go Vol. 8: The Pro Test Preliminaries: Day Four (Hikaru no Go #8),Yumi Hotta/Takeshi Obata,4.22,1421506424,9781421506425,eng,205,985,15,11/7/2006,VIZ Media LLC +13590,Hikaru no Go Vol. 1: Descent of the Go Master (Hikaru no Go #1),Yumi Hotta/Takeshi Obata,4.10,159116222X,9781591162223,eng,187,8921,207,5/19/2004,VIZ Media LLC +13591,Hikaru no Go Vol. 9: The Pro Test Begins (Hikaru no Go #9),Yumi Hotta/Takeshi Obata/Yukari Umezawa,4.27,1421510669,9781421510668,eng,207,1012,21,4/3/2007,VIZ Media LLC +13592,Hikaru no Go Vol. 10: Lifeline (Hikaru no Go #10),Yumi Hotta/Takeshi Obata,4.28,1421510677,9781421510675,eng,203,953,20,8/7/2007,VIZ Media LLC +13593,ヒカルの碁 18、番外編,Yumi Hotta/Yumi Hotta,4.11,4088732898,9784088732893,jpn,211,275,7,8/2/2002,集英社 +13594,ヒカルの碁 23、あなたに呼びかけている,Yumi Hotta/Yumi Hotta,4.22,4088735048,9784088735047,jpn,198,61,5,9/4/2003,集英社 +13595,ヒカルの碁 7、若獅子戦,Yumi Hotta/Yumi Hotta,4.26,4088728734,9784088728735,jpn,208,9,2,6/7/2000,集英社 +13596,ヒカルの碁 15、さよなら,Yumi Hotta/Yumi Hotta,4.25,4088732154,9784088732152,jpn,211,289,8,12/24/2001,集英社 +13598,ヒカルの碁 13、プロ第一戦,Yumi Hotta/Yumi Hotta,4.26,4088731441,9784088731445,jpn,195,11,2,8/8/2001,集英社 +13600,ヒカルの碁 14、sai vs toya koyo,Yumi Hotta/Yumi Hotta,4.23,4088731697,9784088731698,jpn,189,331,6,10/9/2001,集英社 +13602,ヒカルの碁 16、中国棋院,Yumi Hotta/Yumi Hotta,4.15,4088732324,9784088732329,jpn,191,282,7,3/4/2002,集英社 +13603,ヒカルの碁 6、院生試験,Yumi Hotta/Takeshi Obata,4.22,4088728491,9784088728490,jpn,211,8,2,4/9/2000,集英社 +13608,ヒカルの碁 9、本戦開始,Yumi Hotta/Yumi Hotta,4.27,4088730224,9784088730226,jpn,207,9,2,10/9/2000,集英社 +13609,ヒカルの碁 22、打倒高永夏,Yumi Hotta/Yumi Hotta,4.21,4088734327,9784088734323,jpn,189,329,5,6/4/2003,集英社 +13611,ヒカルの碁 12、新初段シリーズ,Yumi Hotta/Yumi Hotta,4.24,4088731107,9784088731100,jpn,189,9,2,5/6/2001,集英社 +13614,Death Note Vol. 8: Target (Death Note #8),Tsugumi Ohba/Takeshi Obata/Tetsuichiro Miyaki,4.26,1421506297,9781421506296,eng,201,16983,428,11/7/2006,VIZ Media LLC +13615,Death Note Vol. 1: Boredom (Death Note #1),Tsugumi Ohba/Takeshi Obata/Pookie Rolf,4.43,1421501686,9781421501680,eng,195,174482,3010,10/10/2005,VIZ Media LLC +13616,Death Note Vol. 4: Love (Death Note #4),Tsugumi Ohba/Alexis Kirsch,4.39,142150331X,9781421503318,eng,204,21653,690,3/7/2006,VIZ Media LLC +13617,Death Note Vol. 5: Whiteout (Death Note #5),Tsugumi Ohba/Takeshi Obata/Alexis Kirsch,4.34,1421506262,9781421506265,eng,201,19274,583,5/2/2006,VIZ Media LLC +13618,Death Note Vol. 3: Hard Run (Death Note #3),Tsugumi Ohba/Takeshi Obata/Pookie Rolf,4.43,1421501708,9781421501703,eng,200,22435,741,1/3/2006,VIZ Media LLC +13619,Death Note Vol. 2: Confluence (Death Note #2),Tsugumi Ohba/Takeshi Obata/Pookie Rolf,4.43,1421501694,9781421501697,eng,197,25578,948,11/1/2005,VIZ Media LLC +13620,Death Note Vol. 6: Give-and-Take (Death Note #6),Tsugumi Ohba/Takeshi Obata/Alexis Kirsch,4.39,1421506270,9781421506272,eng,215,18291,491,7/5/2006,VIZ Media LLC +13621,Death Note Vol. 7: Zero (Death Note #7),Tsugumi Ohba/Takeshi Obata/Alexis Kirsch,4.43,1421506289,9781421506289,eng,211,18321,586,9/5/2006,VIZ Media LLC +13622,Death Note Vol. 9: Contact (Death Note #9),Tsugumi Ohba/Takeshi Obata/Tetsuichiro Miyaki,4.21,1421506300,9781421506302,eng,193,13472,363,1/2/2007,VIZ Media LLC +13623,Death Note Vol. 10: Deletion (Death Note #10),Tsugumi Ohba/Takeshi Obata/Tetsuichiro Miyaki,4.22,142151155X,9781421511559,eng,188,12461,325,3/6/2007,VIZ Media LLC +13624,The Worm Ouroboros,E.R. Eddison/Keith Henderson,3.71,0486447405,9780486447407,eng,446,2956,239,4/28/2006,Dover Publications +13625,Mistress of Mistresses: A Vision of Zimiamvia (The Zimiamvian Trilogy #1),E.R. Eddison/Gerald Ravenscourt Hayes/Keith Henderson,3.64,034527220X,9780345272201,eng,405,26,6,12/12/1977,Del Rey Books +13628,The Mezentian Gate,E.R. Eddison,3.60,0345272218,9780345272218,eng,275,134,5,4/12/1978,Del Rey +13629,The Mythical Man-Month: Essays on Software Engineering,Frederick P. Brooks Jr.,4.05,0201835959,9780201835953,eng,322,9395,616,8/12/1995,Addison-Wesley Professional +13630,Museum of Terror Vol. 1: Tomie 1,Junji Ito/伊藤潤二/Naomi Kokubo,4.09,1593075421,9781593075422,eng,375,1444,83,8/8/2006,Dark Horse Comics +13631,Museum of Terror Vol. 2: Tomie 2,Junji Ito/伊藤潤二/Naomi Kokubo,4.11,1593076126,9781593076122,eng,376,911,33,9/19/2006,Dark Horse Manga +13632,Museum of Terror Vol. 3: The Long Hair in the Attic,Junji Ito/伊藤潤二,4.12,1593076398,9781593076399,eng,392,628,26,11/21/2006,Dark Horse Manga +13633,Tomie 1 富江,Junji Ito/伊藤潤二,3.94,1588990842,9781588990846,eng,248,900,38,4/4/2005,ComicsOne Corporation +13634,Tomie 2 富江 Part 2,Junji Ito/伊藤潤二,3.86,1588990850,9781588990853,eng,247,521,32,4/4/2005,ComicsOne Corporation +13638,Hana Yori Dango: Le jeu da la fin du monde 1 (Boys Over Flowers #1),Yōko Kamio/神尾葉子,4.11,2723441784,9782723441780,fre,212,26,3,3/5/2003,Glénat +13639,Hana Yori Dango 3 (Boys Over Flowers #3),Yōko Kamio/神尾葉子,4.12,2723442314,9782723442312,fre,185,10,0,6/18/2003,Glénat +13640,Hana Yori Dango 2 (Boys Over Flowers #2),Yōko Kamio/神尾葉子,4.12,2723442306,9782723442305,fre,171,12,0,5/14/2003,Glénat +13647,Voices (Annals of the Western Shore #2),Ursula K. Le Guin,3.88,0152056785,9780152056780,eng,341,3493,306,9/1/2006,Harcourt +13648,Gifts (Annals of the Western Shore #1),Ursula K. Le Guin,3.70,0152051244,9780152051242,eng,286,6666,606,4/1/2006,Harcourt +13649,Lao Tzu: Tao Te Ching: A Book about the Way and the Power of the Way,Lao Tzu/Ursula K. Le Guin/J.P. Seaton,4.30,1570623953,9781570623950,eng,125,800,91,10/20/1998,Shambhala +13650,The Wave in the Mind: Talks and Essays on the Writer the Reader and the Imagination,Ursula K. Le Guin,4.30,1590300068,9781590300060,eng,314,1044,164,2/17/2004,Shambhala +13651,The Dispossessed,Ursula K. Le Guin,4.22,0061054887,9780061054884,eng,387,64196,3525,10/20/1994,Harper Voyager +13653,Five Complete Novels,Ursula K. Le Guin,4.13,0517480107,9780517480106,eng,579,58,13,9/4/1985,Random House Value Publishing +13654,Tehanu (Earthsea Cycle #4),Ursula K. Le Guin,3.94,0689845332,9780689845338,eng,281,1269,93,9/1/2001,Aladdin Paperbacks +13657,Changing Planes,Ursula K. Le Guin,3.83,0441012248,9780441012244,eng,239,3489,335,8/1/2005,Ace +13658,The Other Wind (Earthsea Cycle #6),Ursula K. Le Guin/Samuel Roukin,4.12,044101125X,9780441011254,eng,211,14393,635,9/30/2003,Ace Books +13659,Tales from Earthsea (Earthsea Cycle #5),Ursula K. Le Guin,4.04,0441011241,9780441011247,eng,280,14549,468,10/28/2003,Ace +13660,Jane on Her Own (Catwings #4),Ursula K. Le Guin/S.D. Schindler,4.17,0439551927,9780439551922,eng,48,1322,87,10/1/2006,Orchard Books +13661,Tehanu (Earthsea Cycle #4),Ursula K. Le Guin,3.94,1416509631,9781416509639,eng,281,26096,1053,11/23/2004,Pocket Books +13662,The Tombs of Atuan (Earthsea Cycle #2),Ursula K. Le Guin/Margot Paronis,4.09,0689845367,9780689845369,eng,180,73161,1922,9/1/2001,Gallery / Saga Press +13664,Catwings (Catwings #1),Ursula K. Le Guin/S.D. Schindler,4.09,0439551897,9780439551892,eng,40,6598,600,5/1/2003,Orchard Books +13666,Wonderful Alexander and the Catwings,Ursula K. Le Guin/S.D. Schindler,4.13,053106851X,9780531068519,eng,42,21,1,9/1/1994,Orchard Books +13667,The Farthest Shore (Earthsea Cycle #3),Ursula K. Le Guin,4.12,141650964X,9781416509646,eng,259,79809,1224,11/1/2004,Gallery Books +13674,The Life and Games of Mikhail Tal,Mikhail Tal/Iakov Damsky/Kenneth P. Neat,4.52,1857442024,9781857442021,eng,496,442,24,7/1/1997,Everyman Chess +13677,Tal-Botvinnik 1960,Mikhail Tal/Hanon W. Russell,4.55,1888690089,9781888690088,eng,220,161,12,7/3/2001,Russell Enterprises +13688,Don Quixote,Miguel de Cervantes Saavedra/John Rutherford,3.87,0140449094,9780140449099,eng,1056,335,52,1/30/2003,Penguin Books +13719,Cromartie High School Vol. 06,Eiji Nonaka/Brendan Frayne,4.21,1413902626,9781413902624,eng,176,61,4,6/6/2006,ADV Manga +13720,Cromartie High School Vol. 05,Eiji Nonaka/Brendan Frayne,4.28,1413902618,9781413902617,eng,168,63,2,3/21/2006,ADV Manga +13722,Cromartie High School Vol. 01,Eiji Nonaka/Brendan Frayne,4.00,141390257X,9781413902570,eng,158,393,41,3/1/2005,ADV Manga +13724,Cromartie High School Vol. 02,Eiji Nonaka/Brendan Frayne,4.19,1413902588,9781413902587,eng,161,134,9,6/14/2005,ADV Manga +13727,Bleach Volume 16,Tite Kubo,4.34,1421506149,9781421506142,eng,208,5763,75,12/5/2006,VIZ Media LLC +13728,Bleach Volume 13,Tite Kubo,4.36,1421506114,9781421506111,eng,208,6371,85,6/6/2006,VIZ Media LLC +13729,Bleach Volume 10,Tite Kubo,4.28,1421500817,9781421500812,eng,208,7037,81,12/6/2005,VIZ Media LLC +13730,Bleach Volume 18,Tite Kubo,4.34,1421510421,9781421510422,eng,208,7781,70,4/3/2007,VIZ Media LLC +13731,Bleach Volume 17,Tite Kubo,4.35,1421510413,9781421510415,eng,208,6250,60,2/6/2007,VIZ Media LLC +13733,Bleach Volume 19,Tite Kubo,4.36,142151043X,9781421510439,eng,216,5922,81,6/5/2007,VIZ Media LLC +13735,Bleach Volume 20,Tite Kubo,4.36,1421510448,9781421510446,eng,216,5648,76,8/7/2007,VIZ Media LLC +13737,The Twelve Kingdoms: Sea of Shadow (The Twelve Kingdoms #1),Fuyumi Ono/小野 不由美/Akihiro Yamada/山田 章博/Elye J. Alexander/Alexander O. Smith,4.20,1598169467,9781598169461,en-US,464,2504,172,3/13/2007,TokyoPop +13739,Twelve Fair Kingdoms,Suzette Haden Elgin,3.99,0425058506,9780425058503,eng,195,141,10,3/1/1983,Berkley +13741,Crest of the Stars 2: A Modest War (Seikai no Monshou #2),Hiroyuki Morioka,4.11,1598165763,9781598165760,eng,222,135,5,1/1/2007,TokyoPop +13743,Crest of the Stars 3: Return to a Strange World (Seikai no Monshou #3),Hiroyuki Morioka,4.25,1598165771,9781598165777,eng,203,128,3,5/1/2007,TokyoPop +13746,Julie and Julia: My Year of Cooking Dangerously,Julie Powell,3.70,0316013269,9780316013260,en-US,307,2261,537,9/7/2006,Back Bay Books +13747,Julie and Julia: 365 Days 524 Recipes 1 Tiny Apartment Kitchen,Julie Powell,3.70,031610969X,9780316109697,eng,310,136123,5852,9/1/2005,Little Brown and Company +13752,The Master of Go,Yasunari Kawabata/Edward G. Seidensticker,3.84,0679761063,9780679761068,eng,189,2821,199,5/28/1996,Vintage +13759,Conrad's Fate (Chrestomanci #5),Diana Wynne Jones,4.05,0060747455,9780060747459,eng,400,8080,336,5/9/2006,Greenwillow Books +13762,Rocketman: Astronaut Pete Conrad's Incredible Ride to the Moon and Beyond,Nancy Conrad/Howard A. Klausner/Buzz Aldrin,4.08,045121837X,9780451218377,eng,301,26,4,5/1/2006,New American Library +13764,Red River Vol. 14 (Red River #14),Chie Shinohara,4.44,1421505568,9781421505565,eng,191,1030,13,9/12/2006,VIZ Media LLC +13765,Red River Vol. 15 (Red River #15),Chie Shinohara,4.45,1421505576,9781421505572,eng,191,1007,13,11/1/2006,Viz Media +13767,Red River Vol. 16 (Red River #16),Chie Shinohara,4.45,1421505584,9781421505589,eng,191,999,13,1/1/2007,Viz Media +13769,Red River Vol. 17 (Red River #17),Chie Shinohara,4.44,1421509970,9781421509976,eng,189,984,10,4/10/2007,VIZ Media LLC +13783,Tramps Like Us Volume 8,Yayoi Ogawa,4.30,1595324380,9781595324382,en-US,192,611,14,2/7/2006,TokyoPop +13784,Tramps Like Us Volume 9,Yayoi Ogawa,4.32,1595324399,9781595324399,en-GB,185,562,11,6/1/2006,TokyoPop +13785,Tramps Like Us Volume 11,Yayoi Ogawa,4.28,1598161989,9781598161984,eng,182,478,12,2/1/2007,TokyoPop +13786,Tramps Like Us Volume 12,Yayoi Ogawa,4.37,1598161997,9781598161991,en-US,179,497,9,6/1/2007,TokyoPop +13793,きみはペット 11 [Kimi wa Petto 11],Yayoi Ogawa/小川 彌生,4.28,4063405141,9784063405149,jpn,184,6,0,11/12/2004,講談社 +13797,Suki's Kimono,Chieri Uegaki/Stéphane Jorisch,4.19,1553377524,9781553377528,eng,32,645,123,9/1/2005,Kids Can Press +13800,The Interpreter,Suki Kim,3.56,0312422245,9780312422240,eng,304,976,106,1/1/2004,St. Martins Press +13806,The Thousandfold Thought (The Prince of Nothing #3),R. Scott Bakker,3.93,158567883X,9781585678839,eng,560,8716,228,1/30/2007,Harry N. Abrams +13807,Flight of the Nighthawks (The Darkwar Saga #1),Raymond E. Feist,3.96,0060792787,9780060792787,en-US,368,9698,110,4/11/2006,Harper Voyager +13812,Magician: Apprentice (The Riftwar Saga #1),Raymond E. Feist,4.17,0553564943,9780553564945,eng,485,73396,1367,1/1/1994,Bantam Spectra +13814,Into a Dark Realm (The Darkwar Saga #2),Raymond E. Feist,4.00,0060792809,9780060792800,eng,319,9291,97,3/27/2007,EOS +13820,Manna from Heaven,Roger Zelazny/Scott Zrubeck/Steven Brust,3.95,0809530953,9780809530953,en-US,255,337,10,5/29/2006,Wildside Press +13821,Lord of Light,Roger Zelazny,4.10,0060567236,9780060567231,eng,296,23392,1104,3/30/2010,Harper Voyager +13823,Roger Zelazny's To Rule in Amber (The Dawn of Amber #3),John Gregory Betancourt/Roger Zelazny,3.77,1596871326,9781596871328,eng,310,753,13,10/1/2005,iBooks +13829,Terrier (Beka Cooper #1),Tamora Pierce,4.15,037581468X,9780375814686,eng,581,56973,1623,10/24/2006,Random House +13831,Alanna: The First Adventure (Song of the Lioness #1),Tamora Pierce,4.26,0689878559,9780689878558,eng,274,101059,3815,1/1/2005,Simon Pulse +13832,Young Warriors: Stories of Strength,Tamora Pierce/Josepha Sherman/Margaret Mahy/Lesley McBain/Mike Resnick/Bruce Rogers/Pamela F. Service/Jan Stirling/Holly Black/Doranna Durgin/India Edghill/Rosemary Edghill/Esther M. Friesner/Laura Anne Gilman/Janis Ian/Brett Hartinge,3.91,0375829636,9780375829635,eng,312,3643,74,10/24/2006,Random House +13833,Emperor Mage (Immortals #3),Tamora Pierce,4.29,1416903372,9781416903376,eng,358,49912,615,6/1/2005,Simon Pulse +13834,The Realms of the Gods (Immortals #4),Tamora Pierce,4.32,141690817X,9781416908173,eng,347,46937,665,1/1/2006,Simon Pulse +13835,In the Hand of the Goddess (Song of the Lioness #2),Tamora Pierce,4.24,0689878567,9780689878565,eng,264,77540,1396,1/1/2005,Simon Pulse +13836,Wild Magic (Immortals #1),Tamora Pierce,4.32,1416903437,9781416903437,eng,362,61677,1448,6/1/2005,Simon Pulse +13837,Lioness Rampant (Song of the Lioness #4),Tamora Pierce,4.28,0689878575,9780689878572,en-US,384,72386,1230,1/1/2005,Simon Pulse +13839,The Botany of Desire: A Plant's-Eye View of the World,Michael Pollan,4.06,0375760393,9780375760396,eng,297,39680,2780,5/28/2002,Random House Trade Paperbacks +13842,The Botany of Desire: A Plant's-Eye View of the World,Michael Pollan/Scott Brick,4.06,1596590939,9781596590939,eng,0,117,36,5/21/2007,Your Coach Digital +13845,More Milly Molly Mandy,Joyce Lankester Brisley,4.12,0753453347,9780753453346,eng,224,846,17,9/1/1999,Kingfisher +13847,Essence and Alchemy: A Natural History of Perfume,Mandy Aftel,4.09,1586857029,9781586857028,eng,256,459,37,1/31/2007,Gibbs Smith +13853,The Lion the Witch and the Wardrobe,C.S. Lewis/Pauline Baynes,4.21,0060530839,9780060530839,en-US,112,381,19,11/4/2003,HarperCollins +13854,Promise of the Witch King (Forgotten Realms: The Sellswords #2),R.A. Salvatore,4.17,0786940735,9780786940738,eng,373,7847,104,9/12/2006,Wizards of the Coast +13856,Witches Abroad (Discworld #12),Terry Pratchett,4.22,055215296X,9780552152969,en-GB,368,346,31,8/1/2005,Corgi +13860,The Wizard's Apprentice (The Keepers #2),Jackie French Koller/Rebecca Guay,3.80,0689855923,9780689855924,eng,175,353,20,12/1/2003,Aladdin +13867,Magician: Apprentice (The Riftwar Saga #1),Raymond E. Feist,4.17,0553267604,9780553267600,eng,336,614,19,12/1/1993,Spectra +13871,Magician: Apprentice (The Riftwar Saga #1),Raymond E. Feist/Brett Booth,4.45,0976401150,9780976401155,eng,265,276,5,6/29/2006,Dabel Brothers Productions +13872,Geek Love,Katherine Dunn,3.97,0375713344,9780375713347,eng,348,50103,5030,6/11/2002,Random House Vintage +13876,Dear God Help!!! Love Earl,Barbara Park/Kenneth Lafreniere,3.97,0679853952,9780679853954,eng,144,37,4,7/11/2006,Yearling +13878,Prince of the Blood (Krondor's Sons #1),Raymond E. Feist,3.98,0553588117,9780553588118,eng,429,19537,171,12/18/2007,BantamSpectra +13879,Shards of a Broken Crown (The Serpentwar Saga #4),Raymond E. Feist,4.02,0380973995,9780380973996,en-US,417,131,4,4/1/1998,AvonEos +13881,Rage of a Demon King (The Serpentwar Saga #3),Raymond E. Feist,4.05,0380974738,9780380974733,en-US,436,21965,92,4/1/1997,Avon Books +13890,A Crown of Swords (The Wheel of Time #7),Robert Jordan,4.04,0812550285,9780812550283,eng,880,106712,1604,11/15/1997,Tor Books +13891,Winter's Heart (The Wheel of Time #9),Robert Jordan,3.94,081257558X,9780812575583,eng,780,86944,1442,1/7/2002,Tor Fantasy +13895,The Fires of Heaven (The Wheel of Time #5),Robert Jordan,4.16,1857232097,9781857232097,eng,912,113052,1673,7/4/1994,Orbit +13912,A Beautiful Mind,Sylvia Nasar,4.13,0571212921,9780571212927,eng,461,115201,1008,2/4/2002,Faber Faber +13913,How To Have A Beautiful Mind,Edward de Bono,3.62,0091894603,9780091894603,en-US,232,1595,135,6/3/2004,Vermilion +13914,The State of Mind Called Beautiful,Sayadaw U. Pandita/Kate Wheeler/Swami Vivekananda,4.22,0861713451,9780861713455,eng,170,28,1,4/13/2006,Wisdom Publications +13916,Il genio dei numeri,Sylvia Nasar/Carlo Capararo/Sergio Mancini/Roberta Zuppet,4.13,8817128716,9788817128711,ita,442,45,5,2/1/2002,Rizzoli +13922,Wolfskin (Saga of the Light Isles #1),Juliet Marillier,4.01,0765345900,9780765345905,eng,544,5653,225,8/1/2004,Tor Books +13923,Blade of Fortriu (The Bridei Chronicles #2),Juliet Marillier,4.09,0765309963,9780765309969,eng,496,5141,184,10/31/2006,Tor +13924,The Dark Mirror (The Bridei Chronicles #1),Juliet Marillier,3.97,076530998X,9780765309983,en-US,512,63,8,6/13/2006,Tor Books +13925,Child of the Prophecy (Sevenwaters #3),Juliet Marillier,4.12,0765345013,9780765345011,eng,596,17071,708,6/16/2003,Tor Books +13927,Son of the Shadows (Sevenwaters #2),Juliet Marillier,4.33,0765343266,9780765343260,eng,608,24253,1070,6/17/2002,Tor Books +13929,Wildwood Dancing (Wildwood #1),Juliet Marillier,4.09,0375833641,9780375833649,eng,407,24751,2219,1/23/2007,Alfred A. Knopf +13930,Foxmask (Saga of the Light Isles #2),Juliet Marillier,4.10,0330411845,9780330411844,eng,670,104,9,3/18/2005,Tor Books +13931,Foxmask (Saga of the Light Isles #2),Juliet Marillier,4.10,0765345919,9780765345912,eng,560,4123,145,11/1/2005,Tor Fantasy +13932,The Noonday Demon: An Atlas of Depression,Andrew Solomon,4.18,0684854678,9780684854670,eng,576,9255,724,4/2/2002,Scribner +13934,The Noonday Demon: An Anatomy of Depression,Andrew Solomon,4.18,0099277131,9780099277132,en-GB,560,119,10,4/4/2002,Vintage +13939,My Secret: A PostSecret Book,Frank Warren,4.34,0061196681,9780061196683,en-GB,144,5874,281,10/24/2006,William Morrow +13943,The Secret Lives of Men and Women: A PostSecret Book,Frank Warren,4.37,0061198757,9780061198755,en-GB,144,5406,237,1/9/2007,William Morrow +13944,The Secret Life of Houdini: The Making of America's First Superhero,William Kalush/Larry Sloman,3.87,0743272072,9780743272070,en-US,592,1738,235,10/31/2006,Atria Books +13947,The Golden Key,Melanie Rawn/Kate Elliott/Jennifer Roberson,3.82,0330347764,9780330347761,eng,1074,36,5,9/19/1997,Pan +13951,The Case Of The Golden Key (Jigsaw Jones Mystery #19),James Preller/Jamie Smith,3.88,0439426286,9780439426282,eng,80,87,10,9/1/2002,Scholastic Paperbacks +13954,Mandie and the Jumping Juniper (Mandie #18),Lois Gladys Leppard,3.89,1556612001,9781556612008,eng,160,874,19,2/2/2008,Bethany House Publishers +13956,Wise Child,Monica Furlong,4.14,0394891058,9780394891057,eng,228,178,12,2/24/2004,Random House +13964,The Boys of the Archangel Raphael: A Youth Confraternity in Florence 1411-1785,Konrad Eisenbichler,2.00,0802043291,9780802043290,eng,498,1,0,5/30/1998,University of Toronto Press +13965,King Solomon's Ring,Konrad Lorenz/Marjorie Kerr Wilson,4.23,0415267471,9780415267472,eng,192,1509,80,8/11/2002,Routledge +13968,The Konrad Saga (Konrad #1-3),David S. Garnett/David Ferring,3.57,1841542768,9781841542768,eng,608,74,4,4/26/2005,Games Workshop +13979,Aerie (Dragon Jousters #4),Mercedes Lackey,3.95,075640391X,9780756403911,en-US,291,4922,95,10/3/2006,DAW Books +13980,Sanctuary (Dragon Jousters #3),Mercedes Lackey,4.01,0756403413,9780756403416,eng,448,6437,81,5/2/2006,DAW +13981,Fortune's Fool (Five Hundred Kingdoms #3),Mercedes Lackey,3.83,0373802668,9780373802661,en-US,362,7756,283,2/27/2007,Luna Books +13982,The Fairy Godmother (Five Hundred Kingdoms #1),Mercedes Lackey,3.97,0373802455,9780373802456,eng,479,15813,871,10/25/2004,Luna Books +13983,The Wizard of London (Elemental Masters #4),Mercedes Lackey,3.79,0756403634,9780756403638,en-US,384,6145,202,10/3/2006,DAW +13985,By Slanderous Tongues (Doubled Edge #3),Mercedes Lackey/Roberta Gellis,3.90,1416521070,9781416521075,eng,544,698,19,2/6/2007,Baen +13986,Arrows of the Queen (Heralds of Valdemar #1),Mercedes Lackey,4.14,0886773784,9780886773786,eng,320,31058,927,3/3/1987,Daw Books +13987,Phoenix and Ashes (Elemental Masters #3),Mercedes Lackey,4.01,0756402727,9780756402723,eng,480,6980,229,10/4/2005,DAW +13988,Crossroads and Other Tales of Valdemar (Tales of Valdemar #3),Mercedes Lackey/Rosemary Edghill/Sarah A. Hoyt/Tanya Huff/Fiona Patton/Janni Lee Simner/Mickey Zucker Reichert/Judith Tarr/Larry Dixon/Michael Z. Williamson/Nancy Asire/Richard Lee Byers/Brenda Cooper/Stephanie D. Shaver/Kate Paulk/Michael Longcor/Ben Ohlander,3.87,0756403251,9780756403256,eng,338,3049,32,12/6/2005,DAW +13990,Storm Warning (Valdemar: Mage Storms #1),Mercedes Lackey,4.03,0886776619,9780886776619,eng,428,11193,123,9/1/1995,Daw Books +13991,This Rough Magic (Heirs of Alexandria #2),Mercedes Lackey/Eric Flint/Dave Freer,3.86,0743499093,9780743499095,eng,893,1189,23,6/1/2005,Baen +13993,Joust (Dragon Jousters #1),Mercedes Lackey,4.02,0756401534,9780756401535,eng,448,10113,263,3/2/2004,DAW +13994,Winds of Fury (Valdemar: Mage Winds #3),Mercedes Lackey,4.05,0886776120,9780886776121,eng,423,12027,105,8/1/1994,DAW +13995,Winds of Fate (Valdemar: Mage Winds #1),Mercedes Lackey,4.04,0886775167,9780886775162,eng,458,14611,208,7/7/1992,DAW +13996,Alta (Dragon Jousters #2),Mercedes Lackey,4.03,0756402573,9780756402570,en-US,434,7060,113,3/1/2005,Daw Books +13997,The Serpent's Shadow (Elemental Masters #1),Mercedes Lackey,3.99,0756400619,9780756400613,en-US,394,8768,306,3/5/2002,Daw Books +13998,Storm Rising (Valdemar: Mage Storms #2),Mercedes Lackey,4.02,0886777127,9780886777128,en-US,412,10781,86,10/1/1996,DAW +14000,Exile's Valor (Heralds of Valdemar #7),Mercedes Lackey,4.19,0756402212,9780756402211,en-GB,438,10882,104,10/5/2004,DAW +14002,Sword of Ice and Other Tales of Valdemar (Tales of Valdemar #1),Mercedes Lackey/Tanya Huff/Mickey Zucker Reichert/Michelle Sagara West/Gary A. Braunbeck/John Helfers/Elisabeth Waters/Lawrence Schimel/Mark Shepherd/Janni Lee Simner/Richard Lee Byers/Josepha Sherman/Larry Dixon/John Yezeguielian/Mel White/Stephanie D. Shaver/Kristin Schwengel/Ben Ohlander/Philip M. Austin,3.85,0886777208,9780886777203,eng,350,3869,50,1/1/1997,Daw Books +14003,The River's Gift,Mercedes Lackey,3.90,0451457595,9780451457592,eng,128,1050,59,10/2/1999,Roc Hardcover +14004,Jinx High (Diana Tregarde #3),Mercedes Lackey,3.83,0765313197,9780765313195,en-US,335,3507,66,9/5/2000,St. Martins Press-3PL +14007,Owlknight (Owl Mage Trilogy #3),Mercedes Lackey/Larry Dixon,3.98,0886779162,9780886779160,eng,450,8045,98,11/1/2000,DAW +14008,Bedlam's Edge (Bedlam's Bard #8),Mercedes Lackey/Rosemary Edghill,3.92,1416521100,9781416521105,en-US,384,922,20,1/30/2007,Baen +14009,Owlflight (Owl Mage Trilogy #1),Mercedes Lackey/Larry Dixon,3.98,0886778042,9780886778040,eng,342,9217,168,10/1/1998,DAW +14012,Children of the Night (Diana Tregarde #2),Mercedes Lackey,3.94,0765313189,9780765313188,en-US,320,4349,103,8/1/2005,St. Martins Press-3PL +14013,Winter Moon (Walker Papers #1.5),Mercedes Lackey/Tanith Lee/C.E. Murphy,3.78,0373802390,9780373802395,eng,393,2668,148,10/25/2005,Luna Books +14014,Arrow's Fall (Heralds of Valdemar #3),Mercedes Lackey,4.19,0886774004,9780886774004,eng,319,19520,330,1/5/1988,Daw Books +14016,Difficult Conversations: How to Discuss What Matters Most,Bruce Patton/Douglas Stone/Sheila Heen,4.09,014027782X,9780140277821,en-US,250,61,9,5/25/2000,Penguin +14026,The Scarlet Gang of Asakusa,Yasunari Kawabata/Alisa Freedman,3.36,0520241827,9780520241824,eng,181,360,34,4/18/2005,University of California Press +14029,Beauty and Sadness,Yasunari Kawabata/Howard Hibbett,3.85,0679761055,9780679761051,eng,206,4933,313,1/30/1996,Vintage +14030,The Dancing Girl of Izu and Other Stories,Yasunari Kawabata/J. Martin Holman,3.78,1887178945,9781887178945,eng,176,1385,75,8/29/1998,Counterpoint +14031,Palm-of-the-Hand Stories,Yasunari Kawabata/Lane Dunlop/J. Martin Holman,3.99,0374530491,9780374530495,eng,288,1777,129,11/14/2006,Farrar Straus and Giroux +14032,House of the Sleeping Beauties and Other Stories,Yasunari Kawabata/Edward G. Seidensticker/Yukio Mishima,3.67,4770029756,9784770029751,eng,148,3581,224,2/6/2004,Kodansha International +14033,First Snow on Fuji,Yasunari Kawabata/Michael Emmerich,3.85,1582431051,9781582431055,eng,227,601,42,10/12/1999,Counterpoint +14043,Romanee Conti: The World's Most Fabled Wine,Richard Olney,3.75,0847819272,9780847819270,eng,208,20,1,9/15/1995,Rizzoli International Publications +14045,As I Crossed a Bridge of Dreams: Recollections of a Woman in Eleventh-Century Japan,Lady Sarashina/Ivan Morris,3.82,0140442820,9780140442823,eng,148,527,54,1/30/1975,Penguin Classics +14046,The Time Traveler's Wife,Audrey Niffenegger,3.97,1596921536,9781596921535,eng,518,1005,253,10/1/2005,MacAdam/Cage +14049,The Part-Time Wife (The Secret Lives of Society Wives #6),Maureen Child,3.60,0373767552,9780373767557,eng,179,120,12,10/1/2006,Harlequin Books +14051,Part-Time Wife (Hometown Heartbreakers #4),Susan Mallery,3.97,0373240279,9780373240272,eng,256,574,22,3/25/1996,Silhouette Special Edition +14054,The Little Friend,Donna Tartt,3.46,0747573646,9780747573647,eng,555,808,112,6/1/2007,Bloomsbury +14055,The Little Friend,Donna Tartt,3.46,0747562113,9780747562115,eng,559,220,25,10/28/2002,Bloomsbury +14056,The Littles and Their Amazing New Friend,John Lawrence Peterson,3.87,0590876120,9780590876124,eng,112,190,16,3/1/1999,Scholastic Paperbacks +14060,Little House Friends (Little House Chapter Books: Laura #9),Laura Ingalls Wilder/Renée Graef,4.04,0064420809,9780064420808,eng,80,73,2,9/5/1998,HarperCollins +14063,The Legend of the Poinsettia,Tomie dePaola,4.19,0698115678,9780698115675,eng,32,2401,115,10/6/1997,Puffin Books +14064,I Am Legend,Richard Matheson,4.07,1857988094,9781857988093,eng,160,55751,3104,1/21/1999,Millenium +14069,Throne of Jade (Temeraire #2),Naomi Novik,3.89,0345481291,9780345481290,eng,398,30029,1818,4/25/2006,Del Rey Books +14072,Thrones Dominations,Dorothy L. Sayers/Jill Paton Walsh,3.89,0312968302,9780312968304,en-US,322,165,24,3/15/1999,St. Martin's Paperbacks +14075,A Throne in Brussels: Britain the Saxe-Coburgs and the Belgianisation of Europe,Paul Belien,4.14,1845400658,9781845400651,eng,384,14,3,2/1/2006,Imprint Academic +14081,Utena: Revolutionary Girl 01,Chiho Saito,3.83,3551768617,9783551768612,ger,192,14,0,2/1/2003,Carlsen +14082,Malgudi Days,R.K. Narayan/Jhumpa Lahiri,4.21,0143039652,9780143039655,eng,264,13518,473,11/2/2006,Penguin Classics +14084,The Magic Barrel,Bernard Malamud/Jhumpa Lahiri,3.99,0374525862,9780374525866,en-US,240,1958,95,7/7/2003,Farrar Straus and Giroux +14088,O Xará,Jhumpa Lahiri,3.99,8535905324,9788535905328,por,336,152,9,8/30/2004,Companhia das Letras +14089,Prétear Vol. 4 (Prétear #4),Junichi Satō/Kaori Naruse,3.96,1413901476,9781413901474,eng,180,294,14,1/18/2005,ADV Manga +14091,Prétear Vol. 3 (Prétear #3),Junichi Satō/Kaori Naruse,3.95,1413901468,0702727014581,eng,172,326,10,10/12/2004,ADV Manga +14092,Prétear Vol. 2 (Prétear #2),Junichi Satō/Kaori Naruse,4.00,141390145X,9781413901450,eng,182,347,17,8/24/2004,ADV Manga +14093,Zinn & the Art of Road Bike Maintenance,Lennard Zinn/Todd Telander,4.29,1931382697,9781931382694,eng,356,282,24,10/25/2005,VeloPress +14095,A Power Governments Cannot Suppress,Howard Zinn,4.27,0872864758,9780872864757,eng,293,873,78,12/1/2006,City Lights Publishers +14096,Wherever You Go There You Are: Mindfulness Meditation in Everyday Life,Jon Kabat-Zinn,4.12,1401307787,9781401307783,eng,304,30333,1293,1/5/2005,Hachette Books +14098,Mindfulness for Beginners,Jon Kabat-Zinn,3.82,1591794641,9781591794646,eng,3,2913,245,7/1/2006,Sounds True +14106,Grammar Snobs Are Great Big Meanies: A Guide to Language for Fun and Spite,June Casagrande,3.78,0143036831,9780143036838,eng,199,774,157,3/28/2006,Penguin Books +14107,Death of a Snob (Hamish Macbeth #6),M.C. Beaton,3.78,0553409689,9780553409680,eng,192,17,1,6/1/2000,Transworld Publishers +14115,Beauty is the Beast Vol. 4,Tomo Matsumoto/Tomo Kimura,3.79,1421503549,9781421503547,eng,208,335,11,8/1/2006,VIZ Media LLC +14117,Beauty and the Beast,Max Eilenberg/Angela Barrett,4.37,0763631604,9780763631604,eng,64,3682,133,11/14/2006,Candlewick Press +14118,Disney's Beauty and the Beast (A Little Golden Book),Teddy Slater/Ron Dias/Ric González,4.41,0736421971,9780736421973,eng,24,28824,132,5/11/2004,Golden/Disney +14131,Mao II,Don DeLillo/Marianne Véron,3.68,2742735402,9782742735402,fre,278,10,1,10/27/2001,Babel +14137,White Noise: Text and Criticism,Don DeLillo/Mark Osteen,3.87,0140274987,9780140274981,eng,538,747,75,12/1/1998,Penguin Books +14142,The Art of Loving,Erich Fromm/Peter D. Kramer/Rainer Funk,4.04,0061129739,9780061129735,eng,192,38148,1310,8/6/2019,Harper Perennial Modern Classics +14143,The Art of Loving,Eiki Eiki/Sashiko Sato/Bambi Eloriaga,3.51,1569709084,9781569709085,en-US,184,172,13,4/5/2006,Digital Manga Publishing +14168,Inattentional Blindness,Arien Mack/Irvin Rock,4.20,0262632039,9780262632034,en-US,287,10,3,7/24/2000,Bradford Book +14169,Touching the Rock: An Experience of Blindness,John M. Hull/Oliver Sacks,3.98,067973547X,9780679735472,eng,248,141,24,6/2/1992,Vintage +14173,Blindness and Insight: Essays in the Rhetoric of Contemporary Criticism,Paul De Man/Wlad Godzich,4.12,0816611351,9780816611355,eng,342,180,9,10/3/1983,University of Minnesota Press +14176,Yiddish with Dick and Jane,Ellis Weiner/Barbara Davilman/Gabi Payn,3.92,0316159727,9780316159722,en-US,112,373,67,9/13/2004,Little Brown and Company +14177,A Treasury of Dick and Jane and Friends (Dick and Jane),Pearson Scott Foresman/William S. Gray,4.13,0448433400,9780448433400,en-US,200,371,43,9/15/2003,Grosset & Dunlap +14179,The Complete Dick Tracy Volume 1: 1931-1933,Chester Gould/Ashley Wood/Max Allan Collins,4.02,1600100368,9781600100369,eng,352,168,17,1/3/2012,Library of American Comics +14181,Do Androids Dream Of Electric Sheep?,Philip K. Dick,4.08,0752864300,9780752864303,en-US,224,267,28,3/24/2005,Orion Paperbacks +14182,Four Novels of the 1960s: The Man in the High Castle / The Three Stigmata of Palmer Eldritch / Do Androids Dream of Electric Sheep? / Ubik,Philip K. Dick/Jonathan Lethem,4.38,1598530097,9781598530094,eng,830,1970,206,5/10/2007,Library of America +14183,The Philip K. Dick Reader,Philip K. Dick,4.28,0806518561,9780806518565,eng,422,2760,158,4/1/2001,Citadel +14184,The Shifting Realities of Philip K. Dick,Philip K. Dick/Lawrence Sutin,4.09,0679747877,9780679747871,en-US,384,903,40,1/30/1996,Vintage +14186,The Collected Stories of Philip K. Dick 3: Second Variety,Philip K. Dick/John Brunner,4.26,0806512261,9780806512266,eng,414,3135,75,4/1/2002,Citadel +14188,The Minority Report (Collected Stories of Philip K. Dick),Philip K. Dick,4.19,0806521686,9780806521688,eng,396,20,0,1/1/2000,Citadel Press +14194,A Man's Protection,Jayne Castle/Jayne Ann Krentz,3.88,0440151880,9780440151883,eng,186,275,6,12/31/1982,Dell Publishing Company +14196,Jonathan Strange y el señor Norrell,Susanna Clarke/Ana María de la Fuente,3.82,8478889736,9788478889730,spa,795,200,38,9/1/2005,Salamandra +14214,Hunger,Lan Samantha Chang,3.92,0140288481,9780140288483,eng,192,797,72,1/1/2000,Penguin Books +14227,The Diezmo,Rick Bass,3.46,0618710507,9780618710508,eng,224,11,1,6/15/2006,Mariner Books +14228,Colter: The True Story of the Best Dog I Ever Had,Rick Bass,3.88,0618127364,9780618127368,eng,208,463,65,6/1/2001,Mariner Books +14230,The Hermit's Story,Rick Bass,4.12,0618380442,9780618380442,eng,192,437,45,9/18/2003,Mariner Books +14235,The Great Gatsby,F. Scott Fitzgerald,3.91,0891906797,9780891906797,eng,182,149,7,9/1/1925,Amereon Ltd +14236,Gould's Book of Fish: A Novel in Twelve Fish,Richard Flanagan,3.69,1843540703,9781843540700,eng,449,3261,384,3/15/2003,Atlantic Books +14240,One Hundred Years of Solitude,Gabriel García Márquez/Gregory Rabassa,4.07,0060750766,9780060750763,eng,560,130,5,2/20/2004,Harper +14241,The Liars' Club,Mary Karr,3.93,0143035746,9780143035749,eng,320,52578,2464,5/31/2005,Penguin Books +14242,The Pretender (Liar's Club #1),Celeste Bradley,3.98,0312984855,9780312984854,en-GB,358,2241,106,6/16/2003,St. Martin's Paperbacks +14243,The Impostor (Liar's Club #2),Celeste Bradley,3.91,0312984863,9780312984861,eng,369,1356,69,10/19/2003,St. Martin's Paperbacks +14248,Small Wonder,Barbara Kingsolver,4.01,0060504080,9780060504083,eng,264,8965,623,4/15/2003,Harper Perennial +14249,Prodigal Summer,Barbara Kingsolver,4.00,0060959037,9780060959036,eng,444,88241,5652,10/16/2001,Harper Perennial +14257,English Passengers,Matthew Kneale,4.06,038549744X,9780385497442,eng,446,4863,409,1/16/2001,Anchor +14258,English Passengers,Matthew Kneale,4.06,0140285210,9780140285215,en-GB,462,537,65,4/26/2001,Penguin +14263,Independent People,Halldór Laxness/James Anderson Thompson,4.17,1860467768,9781860467769,en-GB,544,80,11,9/28/2001,Harvill Press +14264,World Light,Halldór Laxness/Magnus Magnusson,4.14,0375727574,9780375727573,eng,624,551,52,10/8/2002,Vintage +14265,Under the Glacier,Halldór Laxness/Magnus Magnusson,3.59,1400034418,9781400034413,eng,240,1577,181,3/8/2005,Vintage +14266,Paradise Reclaimed,Halldór Laxness/Magnus Magnusson/Jane Smiley,3.77,0375727582,9780375727580,eng,304,447,33,4/2/2002,Vintage +14267,Iceland's Bell,Halldór Laxness/Philip Roughton/Adam Haslett,3.89,1400034256,9781400034253,eng,425,1262,90,10/14/2003,Vintage +14268,The Atom Station,Halldór Laxness/Magnus Magnusson,3.55,0099455153,9780099455158,en-GB,192,592,52,3/4/2004,Vintage Classics +14271,Island: Collected Stories,Alistair MacLeod,4.19,0099422328,9780099422327,eng,448,837,102,9/5/2002,Vintage +14279,Carried Away: A Personal Selection of Stories,Alice Munro/Margaret Atwood,4.15,0307264866,9780307264862,eng,608,620,83,9/26/2006,Everyman's Library +14281,Selected Stories,Alice Munro,4.28,067976674X,9780679766742,eng,688,5749,285,11/11/1997,Vintage +14282,Runaway,Alice Munro,3.98,140004281X,9781400042814,eng,335,633,115,10/28/2004,Alfred A. Knopf +14283,Something I've Been Meaning to Tell You: 13 Stories,Alice Munro,4.10,0375707484,9780375707483,eng,246,2386,178,10/12/2004,Vintage +14284,The Beggar Maid: Stories of Flo and Rose,Alice Munro/Susanna Basso,3.93,0679732713,9780679732716,eng,210,2814,258,5/7/1991,Vintage +14285,Lives of Girls and Women,Alice Munro,3.99,0375707492,9780375707490,eng,277,8461,553,2/13/2001,Vintage +14286,Open Secrets,Alice Munro,4.07,0679755624,9780679755623,eng,304,4038,297,11/7/1995,Vintage +14289,Coin Locker Babies,Ryū Murakami/Stephen Snyder,3.68,4770028962,9784770028969,eng,393,6440,298,8/9/2002,Kodansha +14295,Pastoralia,George Saunders,4.11,0747553866,9780747553861,eng,188,13431,931,9/8/2001,Bloomsbury Publishing +14300,Good Faith,Jane Smiley,3.26,0385721056,9780385721059,eng,432,1837,245,5/11/2004,Anchor Books +14305,The Greenlanders,Jane Smiley,3.90,1400095468,9781400095469,eng,608,2013,311,9/13/2005,Anchor +14310,The Autograph Man,Zadie Smith,3.16,0140276343,9780140276343,eng,420,535,66,5/22/2003,Penguin Books Ltd +14312,El cazador de autógrafos,Zadie Smith,3.16,8478888462,9788478888467,spa,379,11,1,12/30/2003,Salamandra +14313,Anna Karenina,Leo Tolstoy/Constance Garnett,4.05,0809596814,9780809596812,eng,740,28,7,1/1/2004,Wildside Press +14318,Chronicles: Volume One,Bob Dylan,3.98,0743244583,9780743244589,eng,320,42014,1304,9/13/2005,Simon Schuster +14319,The Essential Interviews,Bob Dylan/Jonathan Cott,4.11,1932958096,9781932958096,eng,447,1097,47,5/17/2006,Wenner Books +14320,The Bob Dylan Encyclopedia,Michael Gray,4.27,0826469337,9780826469335,eng,800,289,8,9/21/2006,Bloomsbury Academic +14326,Going Native,Stephen Wright,3.58,140007942X,9781400079421,eng,320,593,62,4/12/2005,Vintage +14336,Stranger In A Strange Land,Robert A. Heinlein,3.92,0340837950,9780340837955,eng,672,561,48,3/14/2005,Hodder & Stoughton +14345,Rain of Gold,Victor Villaseñor,4.48,038531177X,9780385311779,eng,576,5880,618,9/1/1992,Delta +14349,The Pearl/The Red Pony,John Steinbeck,3.64,0140042326,9780140042320,eng,181,1469,39,9/30/1976,Penguin Books +14350,A Midsummer Night's Dream,William Shakespeare/Stephen Orgel/A.R. Braunmuller/Russ McDonald,3.94,0140714553,9780140714555,eng,144,1002,57,8/1/2000,Penguin Classics +14358,A Ring of Endless Light (Austin Family #4),Madeleine L'Engle,4.15,0440910811,9780440910817,eng,332,16755,620,9/1/1995,Bantam Doubleday Dell Publishing Group +14362,Bless Me Ultima,Rudolfo Anaya,3.77,0446675369,9780446675369,en-US,290,22435,1912,4/1/1999,Grand Central Publishing +14367,Island of the Blue Dolphins,Scott O'Dell/Tantoo Cardinal,3.83,0307243168,9780307243164,en-US,4,205,49,5/10/2005,Listening Library (Audio) +14375,A Reading Guide to Island of the Blue Dolphins,Patricia McHugh,3.89,0439463696,9780439463690,eng,64,4,0,7/1/2003,Scholastic Reference +14376,Einstein's Dreams,Alan Lightman,4.07,140007780X,9781400077809,eng,144,25551,2576,11/9/2004,Vintage +14378,Sweet Dreams Mimi (Baby Einstein),Julie Aigner-Clark/Nadeem Zaidi,3.13,0786851155,9780786851157,eng,16,37,3,4/1/2004,Disney Press +14384,A Hunger Like No Other (Immortals After Dark #1),Kresley Cole,4.19,1416509879,9781416509875,eng,356,57010,2634,4/1/2006,Pocket Star +14385,The Price of Pleasure (Sutherland Brothers #2),Kresley Cole,4.00,0743466500,9780743466509,en-US,353,118,5,7/1/2004,Pocket Books +14386,If You Dare (MacCarrick Brothers #1),Kresley Cole,4.00,1416503595,9781416503590,eng,349,10615,450,5/1/2005,Pocket Books +14389,Organic Church: Growing Faith Where Life Happens,Neil Cole/Leonard Sweet,3.88,078798129X,9780787981297,en-US,237,847,68,9/8/2005,Jossey-Bass +14393,Chekhov's Doctors: A Collection of Chekhov's Medical Tales (Literature & Medicine 5),Anton Chekhov/Jack Coulehan/Robert Coles,4.04,0873387805,9780873387804,en-GB,228,51,3,9/28/2003,Kent State University Press (OH) +14403,The Story of Ruby Bridges,Robert Coles/George Ford,4.43,0439598443,9780439598446,eng,32,11403,605,6/1/2004,Scholastic Paperbacks +14406,The Complete Lyrics of Cole Porter,Cole Porter/Robert Kimball/John Updike,4.53,0306804832,9780306804830,en-US,544,32,2,8/21/1992,Da Capo Press +14414,Barron's Book Notes: Lord of the Flies,Michael Spring/William Golding,3.67,0812034260,9780812034264,eng,120,6,0,10/1/1984,Barron's Educational Series +14427,The spire William Golding : notes,Steve Eddy,3.60,1405835648,9781405835640,eng,135,594,35,10/1/2006,York Press +14428,The Inheritors,William Golding,3.52,0156443791,9780156443791,en-US,240,2826,266,9/25/1963,Mariner Books +14430,The Pyramid,William Golding,3.33,0571192521,9780571192526,eng,217,527,20,7/22/1997,Faber Faber +14455,President Nixon: Alone in the White House,Richard Reeves,3.96,0743227190,9780743227193,en-US,704,391,23,10/10/2002,Simon Schuster +14456,Awakenings,Oliver Sacks,4.10,0375704051,9780375704055,eng,464,8982,333,10/5/1999,Vintage +14460,Kitty Goes to Washington (Kitty Norville #2),Carrie Vaughn,3.87,0446616427,9780446616423,eng,342,18327,665,7/1/2006,Grand Central Publishing +14461,Kitty and the Midnight Hour (Kitty Norville #1),Carrie Vaughn,3.66,0446616419,9780446616416,eng,259,27510,1541,11/1/2005,Grand Central Publishing +14462,Not Since Carrie: Forty Years of Broadway Musical Flops,Ken Mandelbaum,4.09,0312082738,9780312082734,eng,384,362,38,8/15/1992,St. Martin's Griffin +14463,Kitty Takes a Holiday (Kitty Norville #3),Carrie Vaughn,3.91,0446618748,9780446618748,eng,303,16168,505,4/1/2007,Grand Central Publishing +14467,The Best Short Stories of O. Henry,O. Henry/Bennett Cerf/Van H. Cartmell,4.26,0679601228,9780679601227,eng,368,3551,133,1/16/2000,Modern Library +14472,Amelia Bedelia 50th Anniversary Library: Amelia Bedelia Amelia Bedelia and the Surprise Shower and Play Ball Amelia Bedelia,Peggy Parish/Various,4.43,0060542381,9780060542382,eng,96,257,12,12/26/2012,Greenwillow Books +14473,Merry Christmas Amelia Bedelia,Peggy Parish/Lynn Sweat,4.29,0060099453,9780060099459,eng,64,2508,63,10/1/2002,Greenwillow Books +14475,Amelia Bedelia Goes Camping,Peggy Parish/Lynn Sweat,4.13,0060511060,9780060511067,eng,64,2082,76,4/15/2003,Greenwillow Books +14476,Amelia Bedelia and the Baby (Amelia Bedelia),Peggy Parish/Lynn Sweat,4.17,0606300945,9780606300940,eng,64,3,0,3/1/2004,Turtleback Books Distributed by Demco Media +14477,Teach Us Amelia Bedelia,Peggy Parish/Lynn Sweat,4.21,0060511141,9780060511142,eng,64,3134,98,6/29/2004,Greenwillow Books +14479,Amelia Bedelia Helps Out,Peggy Parish/Lynn Sweat,4.25,0060511117,9780060511111,eng,64,7764,67,1/18/2005,Greenwillow Books +14485,Directing the Documentary,Michael Rabiger,4.23,0240806085,9780240806082,en-US,648,183,24,3/30/2004,Focal Press +14487,Introduction to Documentary,Bill Nichols,3.79,0253214696,9780253214690,en-US,248,204,5,11/12/2001,Indiana University Press +14490,$30 Film School: How to Write Direct Produce Shoot Edit Distribute Tour With and Sell Your Own No-Budget Digital Movie,Michael W. Dean,3.49,1592000673,9781592000678,eng,528,30,4,5/13/2003,Cengage Learning +14491,Salonica City of Ghosts: Christians Muslims and Jews 1430-1950,Mark Mazower,4.27,0375727388,9780375727382,eng,544,755,73,5/9/2006,Vintage +14492,Farewell to Salonica: City at the Crossroads,Leon Sciaky/Peter Sciaky,4.13,1589880021,9781589880023,eng,299,63,3,6/1/2003,Paul Dry Books +14495,The Mind Parasites,Colin Wilson,3.77,0974935999,9780974935997,en-GB,240,927,90,10/1/2005,Monkfish Book Publishing +14497,Neverwhere (London Below #1),Neil Gaiman,4.17,0060557818,9780060557812,eng,370,345122,15199,9/2/2003,William Morrow Paperbacks +14498,Neil Gaiman's Neverwhere,Mike Carey/Glenn Fabry/Neil Gaiman,4.24,1401210074,9781401210076,eng,224,33858,569,2/14/2007,Vertigo +14503,Neverwhere,Neil Gaiman,4.17,2290303348,9782290303344,fre,350,105,10,5/17/2001,J'AI LU +14504,Marjorie Morningstar,Herman Wouk,3.98,0316955132,9780316955133,eng,565,6609,582,6/15/1992,Back Bay Books +14535,El Perfume: Historia De Un Asesino,Patrick Süskind,4.02,8432216887,9788432216886,spa,312,17,1,2/19/2018,Planeta Publishing +14542,The Perfume of the Lady in Black,Gaston Leroux/Margaret Jull Costa/Terry Hale,3.53,1873982984,9781873982983,eng,252,71,14,2/25/2015,Dedalus Limited +14551,The Perfume Factory,Alex Austin,4.18,1790877792,9781790877799,eng,227,9,2,12/12/2018,Kindle +14560,Psyche in a Dress,Francesca Lia Block,3.84,0060763728,9780060763725,eng,116,2449,217,9/1/2006,Joanna Cotler Books +14566,Echo,Francesca Lia Block,3.87,0064407446,9780064407441,eng,215,4894,235,8/6/2001,HarperTeen +14567,Ecstasia,Francesca Lia Block,3.90,0142400378,9780142400371,eng,196,1543,51,1/19/2004,Firebird +14570,Eight Cousins (Eight Cousins #1),Louisa May Alcott,4.01,0486455599,9780486455594,eng,224,31532,767,2/27/2007,Dover Publications +14572,Peace Is Every Step: The Path of Mindfulness in Everyday Life,Thich Nhat Hanh/Arnold Kotler/Dalai Lama XIV,4.33,0553351397,9780553351392,eng,160,25071,1156,3/1/1992,Bantam +14583,Night Beat: A Shadow History of Rock & Roll,Mikal Gilmore,3.74,0385484364,9780385484367,en-US,496,67,8,2/1/1999,Knopf Publishing Group +14591,The History of Rock and Roll (World History),Adam Woog,4.00,1560064986,9781560064985,eng,112,5,0,3/28/1999,Lucent Books +14595,Please Kill Me: The Uncensored Oral History of Punk,Legs McNeil/Gillian McCain,4.16,0802142648,9780802142641,eng,452,25094,937,4/13/2006,Grove Press +14604,The Day the Country Died: A History of Anarcho-Punk 1980-1984,Ian Glasper,3.99,1901447707,9781901447705,eng,375,206,16,3/1/2007,Cherry Red Books +14605,Edie: Girl on Fire,David Weisman/Melissa Painter,4.22,0811855260,9780811855266,eng,192,727,19,11/2/2006,Chronicle Books +14606,Edie,Jean Stein/George Plimpton,4.14,0802134106,9780802134103,eng,564,4639,227,10/14/1994,Grove Press +14616,The Leatherstocking Tales Vol. 1: The Pioneers / The Last of the Mohicans / The Prairie,James Fenimore Cooper/Blake Nevius,3.88,0940450208,9780940450202,eng,1347,348,24,7/1/1985,Library of America +14640,The Catcher in the Rye: Annotations and Study Aids,J.D. Salinger/Rudolph F. Rau,3.80,3125738083,9783125738089,eng,80,78,1,12/1/1999,Klett +14641,Der Fänger im Roggen,J.D. Salinger/Eike Schönfeld,3.80,3462032186,9783462032185,ger,270,33,6,2/20/2003,Kiepenheuer & Witsch +14644,A House Divided (House of Earth #3),Pearl S. Buck,3.89,1559210346,9781559210348,eng,348,2849,177,1/1/2006,Moyer Bell and its subsidiaries +14647,Sons (House of Earth #2),Pearl S. Buck,3.84,1559210397,9781559210393,eng,320,3387,242,1/1/2005,Moyer Bell and its subsidiaries +14648,East Wind: West Wind,Pearl S. Buck,4.00,1559210869,9781559210867,eng,288,3238,180,4/5/1995,Moyer Bell and its subsidiaries +14656,Encyclopedia Brown Solves Them All (Encyclopedia Brown #5),Donald J. Sobol/Leonard W. Shortall,4.01,0553480804,9780553480801,eng,96,2602,49,12/1/1992,Yearling +14657,Encyclopedia Brown and the Case of the Slippery Salamander (Encyclopedia Brown #22),Donald J. Sobol/Warren Chang,4.08,0553485210,9780553485219,en-US,96,403,6,8/8/2003,Yearling +14658,Encyclopedia Brown and the Case of the Treasure Hunt (Encyclopedia Brown #17),Donald J. Sobol/Gail Owens,4.03,0553156500,9780553156508,eng,96,637,19,1/1/1989,Yearling +14659,Encyclopedia Brown and the Case of the Sleeping Dog (Encyclopedia Brown #21),Donald J. Sobol/Warren Chang,4.04,0553485172,9780553485172,en-US,80,512,13,9/7/1999,Yearling Books +14663,When Red Is Black (Inspector Chen Cao #3),Qiu Xiaolong,3.77,156947396X,9781569473962,eng,310,1141,120,8/1/2005,Soho Crime +14664,The Red and the Black,Stendhal/Burton Raffel/Diane Johnson,3.88,0812972074,9780812972078,eng,560,327,35,5/11/2004,Modern Library +14666,Red and Black,Stendhal/Robert M. Adams,3.88,0393098214,9780393098211,eng,572,53,4,3/1/1969,W. W. Norton & Company +14670,Black on Red: My 44 Years Inside the Soviet Union: An Autobiography,Robert Robinson/Jonathan Slevin,4.33,0874918855,9780874918854,eng,436,80,14,12/31/1988,Acropolis Books (NY) +14673,Thinking Visually (Basics Illustration #1),Mark Wigan,3.62,2940373159,9782940373154,eng,184,51,5,12/20/2006,AVA Publishing +14679,Love,Stendhal/Gilbert Sale/Suzanne Sale/B.C.J.G. Knight/Jean Stewart,3.71,014044307X,9780140443073,eng,336,1083,51,8/28/1975,Penguin Classics +14680,The Charterhouse of Parma,Stendhal/Richard Howard/Robert Andrew Parker,3.82,0679783180,9780679783183,eng,532,10856,248,9/12/2000,Modern Library +14684,The Charterhouse of Parma,Stendhal/Roger Pearson/Margaret Mauldon,3.82,0192839578,9780192839572,eng,560,51,8,12/9/1999,Oxford University Press +14686,The King of Elfland's Daughter,Lord Dunsany/Neil Gaiman,3.84,034543191X,9780345431912,eng,240,4918,427,7/6/1999,Del Rey +14688,In the Land of Time: And Other Fantasy Tales,Lord Dunsany/S.T. Joshi,4.12,014243776X,9780142437766,eng,432,605,40,2/24/2004,Penguin Classics +14691,Fifty-One Tales,Lord Dunsany/John Gregory Betancourt/Lin Carter,3.79,1587150794,9781587150791,eng,108,357,50,4/1/2002,Borgo Press +14693,The Sword of Welleran and Other Stories,Lord Dunsany/Sidney H. Sime,4.01,0486442179,9780486442174,eng,112,328,41,4/1/2005,Dover Publications +14698,On the Lines of Morris' Romances: Two Books That Inspired J. R. R. Tolkien-The Wood Beyond the World and the Well at the World's End,William Morris/Michale W. Perry,4.09,1587420244,9781587420245,eng,288,11,1,12/23/2003,Inkling Books +14705,Faust Part One,Johann Wolfgang von Goethe/David Luke,3.93,0192835955,9780192835956,en-US,240,1783,67,10/22/1998,Oxford University Press USA +14706,Faust First Part,Johann Wolfgang von Goethe/Peter Salm,3.93,0553213482,9780553213485,eng,327,48213,675,7/1/1988,Bantam Classics +14707,Faust Part Two,Johann Wolfgang von Goethe/David Luke,3.73,0192836366,9780192836366,eng,304,3560,87,7/22/1999,Oxford University Press USA +14712,Nathan the Wise Minna von Barnhelm and Other Plays and Writings,Gotthold Ephraim Lessing,3.70,0826407072,9780826407078,eng,370,88,3,12/1/1991,Bloomsbury Academic +14719,Your First Year in Network Marketing: Overcome Your Fears Experience Success and Achieve Your Dreams!,Mark Yarnell/Rene Reid Yarnell/Richard Poe,4.04,0761512195,9780761512196,eng,304,843,57,1/7/1998,Three Rivers Press +14721,The Wealth of Networks: How Social Production Transforms Markets and Freedom,Yochai Benkler,3.97,0300110561,9780300110562,eng,528,1568,47,5/16/2006,Yale University Press +14729,War Trash,Ha Jin,3.79,1400075793,9781400075799,eng,368,3007,255,5/10/2005,Vintage +14731,戰廢品,Ha Jin/季思聰,3.79,9571343897,9789571343891,zho,392,1,0,11/1/2005,時報出版 +14741,Zone of the Enders: The 2nd Runner Official Strategy Guide,Tim Bogenn,5.00,0744002354,9780744002355,eng,128,2,0,3/6/2003,BradyGames +14743,The God Delusion,Richard Dawkins,3.90,0618680004,9780618680009,eng,374,197099,6216,10/18/2006,Houghton Mifflin Co. (Boston/NY) +14748,Good in Bed (Cannie Shapiro #1),Jennifer Weiner,3.72,0743418174,9780743418171,eng,376,269843,5384,4/2/2002,Washington Square Press +14755,The Guy Not Taken: Stories,Jennifer Weiner,3.48,1416535209,9781416535201,en-US,292,21715,1044,9/5/2006,Atria Books +14756,Goodnight Nobody,Jennifer Weiner,3.65,0743470125,9780743470124,en-US,400,54117,1849,5/2/2006,Washington Square Press +14768,Los diarios de Nanny,Emma McLaughlin/Nicola Kraus,3.42,8420465607,9788420465609,spa,392,33,4,1/1/2003,Santillana USA Publishing Company +14769,Davita's Harp,Chaim Potok,3.99,0449911837,9780449911839,eng,371,5005,314,8/27/1996,Ballantine Books +14770,Neuromancer,William Gibson,3.90,0441012035,9780441012039,eng,384,1647,175,11/2/2004,Ace +14778,Chosen By God: Know God's Perfect Plan for His Glory and His Children,R.C. Sproul,4.34,0842313354,9780842313353,eng,208,6861,205,9/21/1994,Tyndale Momentum +14781,The Chosen: The Hidden History of Admission and Exclusion at Harvard Yale and Princeton,Jerome Karabel,4.08,061877355X,9780618773558,eng,736,200,22,9/8/2006,Mariner Books +14785,Chosen Prey (Lucas Davenport #12),John Sandford,4.24,0425182878,9780425182871,en-US,383,22949,376,5/1/2002,Berkley +14786,Chosen But Free,Norman L. Geisler,3.31,0764225219,9780764225215,en-US,285,361,43,9/1/2001,Bethany House Publishers +14788,The Lady Chosen (Bastion Club #1),Stephanie Laurens,3.97,0060002069,9780060002060,eng,464,5686,193,8/26/2003,Avon +14790,Maya Cosmogenesis 2012: The True Meaning of the Maya Calendar End-Date,John Major Jenkins/Terence McKenna,3.71,1879181487,9781879181489,en-US,480,186,17,8/1/1998,Bear Company +14808,Travels of Marco Polo,Marco Polo/Howard Mittelmark/Milton Rugoff,3.58,0451529510,9780451529510,eng,297,68,16,10/5/2004,Signet +14812,The Sword of Angels (The Bronze Knight #3),John Marco,3.90,075640360X,9780756403607,en-US,980,827,23,7/1/2006,Daw Books +14817,A Scanner Darkly,Philip K. Dick,4.02,057507681X,9780575076815,eng,219,70604,1925,8/17/2006,Gollancz +14836,Midnight's Children,Salman Rushdie,3.98,0099578514,9780099578512,eng,647,87463,4469,5/1/1995,Vintage +14839,Last Man Standing,David Baldacci,4.04,0446611778,9780446611770,eng,640,41611,727,9/1/2002,Warners Visions Books +14841,Last Man Standing,David Baldacci,4.04,0743428951,9780743428958,eng,548,60,6,6/3/2002,Pocket Books +14851,Last Man Standing,David Baldacci,4.04,0330419706,9780330419703,en-GB,556,110,15,11/1/2003,Pan Publishing +14861,Rape: A Love Story,Joyce Carol Oates,3.57,0786712945,9780786712946,eng,128,114,24,12/14/2003,Carroll & Graf Publishers +14864,Plain Truth,Jodi Picoult,3.98,0743275012,9780743275019,eng,405,143658,5760,11/1/2004,Atria Books +14865,Vanishing Acts,Jodi Picoult,3.69,0743454553,9780743454551,eng,426,87109,3920,11/15/2005,Washington Square Press +14866,Nineteen Minutes,Jodi Picoult,4.12,0743496728,9780743496728,eng,440,270574,13491,3/5/2007,Atria Books +14867,The Pact,Jodi Picoult,4.01,0340838035,9780340838037,en-GB,480,988,115,7/18/2005,Hodder & Stoughton +14868,Compasión,Jodi Picoult,3.58,8408068911,9788408068914,spa,554,12,1,1/1/2007,Booket +14870,The Outsiders,S.E. Hinton/Jodi Picoult,4.09,0143039857,9780143039853,eng,160,1589,132,5/30/2006,Penguin Books +14883,Die Wahrheit der letzten Stunde,Jodi Picoult,3.80,3404145844,9783404145843,ger,684,7,2,8/1/2001,Lübbe +14886,Die Hexen von Salem Falls,Jodi Picoult,3.82,3822505870,9783822505878,ger,472,23,3,8/1/2002,Kabel Verlag GmbH Ernst +14888,In einer regnerischen Nacht.,Jodi Picoult,3.58,3492236553,9783492236553,ger,512,1,0,2/1/2003,Piper +14891,A Tree Grows in Brooklyn,Betty Smith,4.26,0061120073,9780061120077,eng,496,345283,16114,5/30/2006,HarperCollins Publishers +14895,The Sound of Mountain Water,Wallace Stegner,4.06,0140266747,9780140266740,en-US,288,250,34,11/1/1997,Penguin Books +14896,Wolf Willow,Wallace Stegner/Page Stegner,3.97,0141185015,9780141185019,eng,306,597,97,12/1/2000,Penguin Classics +14899,Mormon Country,Wallace Stegner/Richard W. Etulain,3.95,0803293054,9780803293052,eng,362,557,74,9/1/2003,Bison Books +14905,The Complete Novels,Jane Austen,4.55,0140259449,9780140259445,eng,1344,21633,351,6/17/1996,Penguin +14909,Jane Austen's Letters,Jane Austen,4.16,1414500084,9781414500089,en-US,112,42,4,1/1/2003,Pavilion Press (Wi) +14911,Pride and Prejudice,Jane Austen,4.26,070898228X,9780708982280,eng,533,18,5,12/1/1984,Charnwood +14913,The Complete Novels of Jane Austen Vol 1: Sense & Sensibility/Pride & Prejudice/Mansfield Park,Jane Austen,4.53,0679600264,9780679600268,eng,898,254,22,9/5/1992,Modern Library +14914,Pride and Prejudice,Jane Austen/Pat Rogers,4.26,0521825148,9780521825146,eng,540,56,7,7/1/2006,Cambridge University Press +14917,Desire and Duty: A Sequel to Jane Austen's Pride and Prejudice,Ted Bader/Marilyn Bader,2.86,0965429903,9780965429900,eng,286,114,9,2/1/1997,Revive Publishing +14926,Emma,Jane Austen/James Kinsley/Adela Pinch,4.00,0192802372,9780192802378,eng,402,737,72,7/10/2003,Oxford University Press +14927,Emma,Jane Austen,4.00,1587263963,9781587263965,en-US,424,83,6,7/14/2006,Ann Arbor Media +14930,Emma,Jane Austen/Prunella Scales,4.00,1572705329,9781572705326,eng,15,28,3,5/5/2006,Audio Partners +14934,Sense and Sensibility,Jane Austen/Claudia L. Johnson,4.07,039397751X,9780393977516,eng,269,768,68,10/30/2001,W. W. Norton & Company +14940,Who's Afraid of Virginia Woolf?,Edward Albee,4.08,0451218590,9780451218599,eng,272,53955,1041,8/1/2006,NAL +14941,To the Lighthouse,Virginia Woolf/Mark Hussey,3.78,0156030470,9780156030472,eng,242,514,59,8/1/2005,Mariner Books +14942,Mrs. Dalloway,Virginia Woolf/Maureen Howard,3.79,0151009988,9780151009985,eng,194,176190,5595,10/28/2002,Houghton Mifflin Harcourt +14943,A Room of One's Own,Virginia Woolf,4.14,1568493665,9781568493664,eng,125,27,4,12/1/1994,Buccaneer Books +14945,Moments of Being: A Collection of Autobiographical Writing,Virginia Woolf/Jeanne Schulkind,4.26,0156619180,9780156619189,eng,230,1729,121,8/23/1985,Mariner Books +14946,The Complete Shorter Fiction of Virginia Woolf,Virginia Woolf/Susan Dick,4.05,0156212501,9780156212502,eng,345,747,36,6/1/1989,Mariner Books +14947,The Diary of Virginia Woolf Volume Two: 1920-1924,Virginia Woolf/Anne Olivier Bell/Andrew McNeillie,4.37,0156260379,9780156260374,eng,384,383,11,9/17/1980,Mariner Books +14948,A Writer's Diary,Virginia Woolf/Leonard Woolf,4.26,0156027917,9780156027915,eng,355,3345,133,3/31/2003,Mariner Books +14951,The Autobiography of Alice B. Toklas,Gertrude Stein,3.59,0141185368,9780141185361,eng,272,255,31,4/26/2001,Penguin Classics +14959,Strange Fits of Passion,Anita Shreve,3.76,0156031396,9780156031394,eng,352,7423,390,10/4/2005,Mariner Books +14960,Eden Close,Anita Shreve,3.66,0156031337,9780156031332,en-US,265,8661,447,10/4/2005,Mariner Books +14962,Where or When,Anita Shreve,3.30,0156031272,9780156031271,eng,241,6343,551,10/4/2005,Mariner Books +14964,Body Surfing,Anita Shreve,3.32,0316059854,9780316059855,eng,291,16371,1538,4/24/2007,Little Brown and Company +14975,Labyrinth (Languedoc #1),Kate Mosse,3.57,0425213978,9780425213971,eng,515,40300,2498,2/6/2007,Berkley Books +14978,Labyrinth of Evil (Star Wars: The Dark Lord Trilogy #1),James Luceno,3.84,0345475739,9780345475732,eng,370,5701,215,9/27/2005,Del Rey Books +14981,Labyrinths: Selected Stories and Other Writings,Jorge Luis Borges/James E. Irby/Donald A. Yates/André Maurois,4.46,0141184841,9780141184845,eng,287,934,82,9/28/2000,Penguin +14983,El laberinto,Kate Mosse/Claudia Conde,3.57,8408065874,9788408065876,spa,626,52,6,1/1/2006,Planeta Publishing +14990,Spook: Science Tackles the Afterlife,Mary Roach,3.58,0393329127,9780393329124,en-US,311,30473,2399,9/26/2006,W.W. Norton & Company (NYC) +14995,Odd Thomas (Odd Thomas #1),Dean Koontz,3.97,0553384287,9780553384284,eng,446,227884,6253,8/29/2006,Bantam +14996,Brother Odd (Odd Thomas #3),Dean Koontz,3.98,0553804804,9780553804805,eng,364,54120,2053,11/28/2006,Bantam +15003,Rape: A Love Story,Joyce Carol Oates,3.57,0786714824,9780786714827,eng,154,3604,364,12/21/2004,Carroll & Graf Publishers +15004,First Love: A Gothic Tale,Joyce Carol Oates/Barry Moser/Erhan Sunar,3.19,088001508X,9780880015080,eng,86,579,83,8/21/1997,Ecco +15012,The Haunted Screen: Expressionism in the German Cinema and the Influence of Max Reinhardt,Lotte H. Eisner,4.16,0520024796,9780520024793,eng,360,274,10,1/7/1974,University of California Press +15014,Crucial Conversations: Tools for Talking When Stakes Are High,Kerry Patterson/Joseph Grenny/Ron McMillan/Al Switzler/Stephen R. Covey,4.03,0071401946,9780071401944,eng,240,40400,2256,7/9/2002,McGraw-Hill Education +15015,Conversations with God: An Uncommon Dialogue Book 1,Neale Donald Walsch,4.18,0399142789,9780399142789,eng,240,26465,1276,10/29/1996,Berkley +15018,Conversations With God: An Uncommon Dialogue Book 3,Neale Donald Walsch,4.21,1571741038,9781571741035,eng,392,14583,178,12/3/2005,Hampton Roads Publishing Company +15019,Conversations With God: An Uncommon Dialogue Book 2,Neale Donald Walsch,4.13,1571740562,9781571740564,eng,263,21800,225,12/3/2005,Hampton Roads Publishing Company +15021,Naked Conversations: How Blogs Are Changing the Way Businesses Talk with Customers,Robert Scoble/Shel Israel,3.72,047174719X,9780471747192,eng,251,547,32,1/1/2006,Wiley +15022,The Art of Civilized Conversation: A Guide to Expressing Yourself with Style and Grace,Margaret Shepherd/Penny Carter/Sharon Hogan,3.58,0767921690,9780767921695,en-US,228,457,72,12/27/2005,Three Rivers Press (CA) +15023,Conversation: A History of a Declining Art,Stephen Miller,3.20,0300110308,9780300110302,eng,368,95,16,3/11/2006,Yale University Press +15030,Bono: In Conversation with Michka Assayas,Michka Assayas,3.95,1573223093,9781573223096,en-US,336,1490,137,4/21/2005,Riverhead Hardcover +15034,Michael Powell: Interviews,David Lazar,3.95,1578064988,9781578064984,eng,186,20,1,3/3/2003,University Press of Mississippi +15044,Art and Lies,Jeanette Winterson,3.86,0679762701,9780679762706,eng,240,3469,141,2/20/1996,Vintage +15045,Tanglewreck,Jeanette Winterson,3.46,1582349193,9781582349190,eng,415,1684,202,7/1/2006,Bloomsbury Children's Books +15046,Weight: The Myth of Atlas and Heracles,Jeanette Winterson,3.77,1841957186,9781841957180,eng,151,4326,392,10/5/2005,Canongate U.S. +15047,The Passion,Jeanette Winterson,4.11,0802135226,9780802135223,eng,176,15572,1008,8/7/1997,Grove Press +15048,Art Objects: Essays on Ecstasy and Effrontery,Jeanette Winterson,4.05,0679768203,9780679768203,eng,192,1760,100,2/4/1997,Vintage +15049,The World and Other Places: Stories,Jeanette Winterson,3.86,0375702369,9780375702365,eng,240,1962,110,6/20/2000,Vintage +15050,Sexing the Cherry,Jeanette Winterson,3.81,0802135781,9780802135780,eng,167,12684,627,8/10/1998,Grove Press +15052,Lighthousekeeping,Jeanette Winterson,3.85,0156032899,9780156032896,eng,232,6229,497,4/3/2006,Mariner Books +15054,Written on the Body,Jeanette Winterson,4.07,0679744479,9780679744474,eng,192,20951,1361,2/1/1994,Vintage +15058,I'm Telling You Stories: Jeanette Winterson and the Politics of Reading (Postmodern Studies 25),Helena Grice/Tim Woods,3.70,9042003405,9789042003408,eng,136,10,2,1/1/1998,Brill/Rodopi +15060,Easy Riders Raging Bulls: How the Sex-Drugs-And-Rock-'N'-Roll Generation Saved Hollywood,Peter Biskind,4.12,0747544212,9780747544210,eng,506,414,26,12/10/2014,Bloomsbury Publishing PLC +15066,It's Only a Movie Ingrid: Encounters on and Off Screen,Alexander Walker,3.80,0747230218,9780747230212,eng,320,0,0,8/17/1989,Headline Book Publishing +15073,Portraits of Murder: 47 Short Stories Chosen by the Master of Suspense,Alfred Hitchcock/Don Tothe,3.89,0883657279,9780883657270,en-US,512,81,7,8/1/2005,Galahad Books +15075,The Art of Alfred Hitchcock: Fifty Years of His Motion Pictures,Donald Spoto,4.08,0385418132,9780385418133,en-US,496,468,18,12/1/1991,Anchor +15082,The Complete Films Of Alfred Hitchcock,Robert A. Harris/Michael S. Lasky,4.00,0806524278,9780806524276,eng,256,18,0,12/1/2002,Citadel +15085,The Mystery of the Whispering Mummy (Alfred Hitchcock and The Three Investigators #3),Robert Arthur/Alfred Hitchcock,3.84,0394837681,9780394837680,en-US,185,81,1,9/12/1985,Random House Books for Young Readers +15087,Alfred Hitchcock and the Making of Psycho,Stephen Rebello,3.90,0714530034,9780714530031,en-GB,224,13,0,1/1/1998,Marion Boyars Publishers Ltd +15096,Five Quarters of the Orange,Joanne Harris,3.85,0060958022,9780060958022,eng,307,26258,1936,6/4/2002,Harper Perennial +15098,Five Quarters of the Orange,Joanne Harris,3.85,0061214604,9780061214608,eng,336,582,74,1/2/2007,William Morrow Paperbacks +15100,Sleep Pale Sister,Joanne Harris,3.28,0060787112,9780060787110,en-US,396,2963,232,8/30/2005,William Morrow Paperbacks +15101,Blackberry Wine,Joanne Harris,3.80,0380815923,9780380815920,eng,368,10721,617,12/23/2003,William Morrow Paperbacks +15102,Gentlemen and Players,Joanne Harris,3.91,0060559144,9780060559144,eng,422,10511,1201,1/3/2006,William Morrow +15104,Blackberry Wine,Joanne Harris,3.80,0552998001,9780552998000,eng,334,506,55,4/1/2001,Black Swan +15110,The Lollipop Shoes (Chocolat #2),Joanne Harris,3.83,0385609485,9780385609487,eng,464,200,27,5/2/2007,Doubleday +15111,The French Kitchen: A Cookbook,Joanne Harris/Fran Warde,4.09,0385607016,9780385607018,eng,256,35,0,11/3/2003,Doubleday +15124,Holy Madness: The Shock Tactics Radical Teachings Crazy Wise Adepts Holy Fools Rascal Gurus,Georg Feuerstein/Roger Walsh,3.71,0140193707,9780140193701,eng,320,16,2,10/1/1992,Penguin Books +15136,The Adventuress,Audrey Niffenegger,3.33,081097052X,9780810970526,eng,144,1058,148,9/1/2006,Abrams +15137,The Time Traveler's Wife,Audrey Niffenegger/William Hope/Laurel Lefkow,3.97,0563504838,9780563504832,eng,5,17,0,8/1/2005,BBC Audiobooks +15138,La mujer del viajero en el tiempo,Audrey Niffenegger/Silvia Alemany,3.97,0307344835,9780307344830,spa,608,20,2,12/6/2005,Random House Mondadori +15148,Ralph Ellison: A Biography,Arnold Rampersad,4.15,0375408274,9780375408274,eng,657,182,24,4/24/2007,Knopf Publishing Group +15154,The Collectors (Camel Club #2),David Baldacci,4.02,044653109X,9780446531092,en-US,438,34462,1410,10/18/2006,Warner Books +15157,Saving Faith,David Baldacci,3.88,0446608890,9780446608893,eng,528,15509,671,9/1/2000,Vision +15160,Total Control,David Baldacci,4.08,033041965X,9780330419659,eng,613,86,6,8/1/2003,Pan Publishing +15167,She Got Up Off the Couch: And Other Heroic Acts from Mooreland Indiana,Haven Kimmel,4.05,074328500X,9780743285001,en-US,313,8769,935,2/1/2007,Free Press +15168,Orville: A Dog Story,Haven Kimmel/Robert Andrew Parker,4.13,061815955X,9780618159550,en-US,32,159,39,9/22/2003,Clarion Books +15170,The Solace Of Leaving Early,Haven Kimmel,3.79,0007152531,9780007152537,en-GB,315,87,15,11/3/2003,Flamingo +15173,The Used World,Haven Kimmel,3.63,0743247787,9780743247788,eng,308,1398,249,9/18/2007,Free Press +15174,Something Rising,Haven Kimmel,3.61,0743247779,9780743247771,eng,288,1237,154,4/5/2005,Free Press +15177,Bridge of Birds (The Chronicles of Master Li and Number Ten Ox #1),Barry Hughart,4.29,0345321383,9780345321381,eng,278,9010,944,4/12/1985,Del Rey +15186,American Film Guide,Frank N. Magill,0.00,0893562505,9780893562502,eng,5,0,0,1/1/1983,Salem Press Inc +15190,Looking for God in Harry Potter,John Granger,4.13,1414306342,9781414306346,eng,234,1347,94,2/17/2006,SaltRiver +15194,Shades of Murder (Mitchell and Markby Village #13),Ann Granger,3.88,0747268037,9780747268031,eng,404,260,25,2/1/2001,Headline +15195,The Complete Maus,Art Spiegelman,4.55,0141014083,9780141014081,eng,296,111475,5966,10/2/2003,Penguin Books +15196,Maus I: A Survivor's Tale: My Father Bleeds History (Maus #1),Art Spiegelman,4.34,0394541553,9780394541556,eng,159,203013,4873,11/1/1991,Pantheon Books +15209,Radical Chic & Mau-Mauing the Flak Catchers,Tom Wolfe,3.77,0553380621,9780553380620,eng,144,2288,106,10/5/1999,Bantam +15211,Katz und Maus,Günter Grass,3.54,3423118229,9783423118224,ger,178,427,23,9/1/1999,Deutscher Taschenbuch Verlag +15216,Sorcery Rising (Fool's Gold #1),Jude Fisher,3.56,0756401100,9780756401108,en-US,528,1313,52,7/1/2003,DAW +15221,The Lord of the Rings: The Two Towers: Visual Companion,Jude Fisher/Viggo Mortensen,4.51,0618258027,9780618258024,eng,72,4524,23,11/6/2002,Houghton Mifflin Harcourt +15225,In the Green Star's Glow (Green Star #5),Lin Carter,3.51,0879972165,9780879972165,eng,192,93,11,1/20/1976,DAW Books +15229,By the Light of the Green Star (Green Star #3),Lin Carter,3.53,0879971207,9780879971205,eng,175,102,10,7/16/1974,DAW +15232,The Lord of the Rings: A Reader's Companion,Wayne G. Hammond/Christina Scull,4.35,0618642676,9780618642670,eng,416,4380,21,12/27/2005,Houghton Mifflin Harcourt +15239,The Lord of the Rings: Official Movie Guide,Brian Sibley,4.39,0618154027,9780618154029,eng,120,6356,21,11/6/2001,Houghton Mifflin Harcourt +15241,The Two Towers (The Lord of the Rings #2),J.R.R. Tolkien/Peter S. Beagle,4.44,0618346260,9780618346264,eng,322,593467,5798,9/5/2003,Houghton Mifflin +15245,The Return of the King (The Lord of the Rings #3),J.R.R. Tolkien,4.53,0007171994,9780007171996,eng,554,265,5,11/6/2003,HarperCollins Publishers Ltd +15249,The Lord of the Rings: The Return of the King - Visual Companion,Jude Fisher,4.59,0007116268,9780007116263,eng,72,26,3,11/6/2003,HarperCollins +15251,Death's Acre: Inside the Legendary Forensic Lab the Body Farm Where the Dead Do Tell Tales,William M. Bass/Jon Jefferson,4.19,0425198324,9780425198322,eng,320,8481,451,10/5/2004,Berkley +15260,The Magical Worlds of Lord of the Rings: The Amazing Myths Legends and Facts Behind the Masterpiece,David Colbert,4.08,0425187713,9780425187715,eng,208,2073,50,10/1/2002,Berkley Trade +15273,The Rough Guide to Australia 7,Margo Daly/David Leffman/Anne Dehne/Chris Scott,3.93,1843534754,9781843534754,eng,1256,8,1,10/1/2005,Rough Guides +15276,The Rough Guide to Vietnam,Rough Guides/Jan Dodd/Mark Lewis/Ron Emmons,3.89,1843536161,9781843536161,eng,639,34,3,10/1/2006,Rough Guides +15294,魔戒首部曲:魔戒現身,J.R.R. Tolkien/托爾金/Alan Lee/朱學恆,4.36,9570823364,9789570823363,zho,608,26,0,12/20/2001,聯經出版事業股份有限公司 +15295,A Gateway to Sindarin: A Grammar of an Elvish Language from J.R.R. Tolkien's Lord of the Rings,David Salo,3.73,0874808006,9780874808001,en-US,438,7,0,11/8/2004,University of Utah Press +15298,The Return of the King (The Lord of the Rings #3),J.R.R. Tolkien,4.53,0618574972,9780618574971,en-US,508,1635,74,6/1/2005,Mariner Books +15309,The Laughing Corpse (Anita Blake Vampire Hunter #2),Laurell K. Hamilton,4.12,0425204669,9780425204665,en-US,301,67686,1409,8/2/2005,Berkley +15312,What the Corpse Revealed,Hugh Miller,3.79,0312975732,9780312975739,eng,320,297,18,12/15/2000,St. Martin's True Crime +15314,Corpse: Nature Forensics and the Struggle to Pinpoint Time of Death,Jessica Snyder Sachs,3.93,0738207713,9780738207711,eng,270,937,70,10/17/2002,Basic Books +15316,The Main Corpse (A Goldy Bear Culinary Mystery #6),Diane Mott Davidson,3.86,0553574639,9780553574630,en-US,384,315,22,7/1/1997,Bantam +15318,魔戒二部曲:雙城奇謀,J.R.R. Tolkien/托爾金/Alan Lee/朱學恆,4.44,9570823372,9789570823370,zho,467,24,0,12/20/2001,聯經出版事業股份有限公司 +15320,Exquisite Corpse,Poppy Z. Brite,3.75,0684836270,9780684836270,eng,240,8582,574,8/20/1997,Gallery Books +15330,The Return of the King (The Lord of the Rings #3),Brian Sibley/J.R.R. Tolkien,4.35,0563536594,9780563536598,eng,1,17,3,3/4/2002,BBC Audiobooks Ltd +15331,The Fellowship of the Ring (The Lord of the Rings #1),J.R.R. Tolkien,4.36,0618574948,9780618574940,eng,506,1323,121,6/1/2004,Houghton Mifflin Company +15336,The Lord of the Rings / The Hobbit,J.R.R. Tolkien,4.59,0007144083,9780007144082,eng,1600,141,5,10/7/2002,Collins Modern Classics +15348,Bored of the Rings: A Parody of J.R.R. Tolkien's Lord of the Rings,The Harvard Lampoon/Henry N. Beard/Douglas C. Kenney,3.13,0451452615,9780451452610,eng,149,4438,301,7/1/1993,Roc Trade +15351,The Return of the Shadow: The History of The Lord of the Rings Part One (The History of Middle-Earth #6),J.R.R. Tolkien/Christopher Tolkien,4.03,061808357X,9780618083572,eng,512,2343,92,9/1/2000,Houghton Mifflin +15361,Les Deux Tours (Le Seigneur des Anneaux #2),J.R.R. Tolkien/Francis Ledoux,4.44,2266118013,9782266118019,fre,471,75,2,10/8/2001,Pocket +15369,The Lord of the Rings,J.R.R. Tolkien/Brian Sibley/Michael Bakewell/Stephen Oliver/Ian Holm/Michael Hordern/Robert Stephens/John Le Mesurier/Peter Woodthorpe/Gerard Murphy/Hugh Dickson/Peter Vaughan/Peter Howell,4.50,0563494859,9780563494850,eng,15,2,0,10/6/2003,BBC Audiobooks +15373,The Return of the King (The Lord of the Rings #3),J.R.R. Tolkien,4.53,0965307794,9780965307796,eng,440,202,10,1/1/2001,Quality Paperback Book Club +15374,The Ice Storm,Rick Moody,3.66,0316706000,9780316706001,eng,288,4592,334,4/10/2002,Back Bay Books +15375,The Diviners,Rick Moody,3.03,0316013277,9780316013277,eng,592,508,65,1/2/2007,Back Bay Books +15378,Right Livelihoods: Three Novellas,Rick Moody,3.31,0316166340,9780316166348,eng,240,223,47,6/1/2007,Little Brown and Company +15379,Black Veil: A Memoir with Digressions,Rick Moody,3.07,0316578991,9780316578998,eng,336,402,38,5/6/2002,Little Brown and Company +15384,Garden State,Rick Moody,3.07,0571200613,9780571200610,eng,212,714,49,8/19/2002,London : Faber 2002 +15407,The Lord of the Rings Millennium Edition Boxed Set (The Lord of the Rings #1-3),J.R.R. Tolkien,4.50,0618037667,9780618037667,eng,1472,120,5,10/10/1999,Houghton Mifflin +15409,The Twenty-Seventh City,Jonathan Franzen,3.12,1841157481,9781841157481,en-GB,528,125,17,5/1/2003,HarperCollins Publishers +15420,Stork Naked (Xanth #30),Piers Anthony,3.88,0765304090,9780765304094,en-US,304,1833,31,10/31/2006,Tor Books +15425,Pet Peeve (Xanth #29),Piers Anthony,3.86,0765343118,9780765343116,en-US,384,2273,35,10/1/2006,Tor Books +15428,Up in a Heaval (Xanth #26),Piers Anthony,3.83,0812574990,9780812574999,eng,342,2364,25,10/19/2003,Tor Fantasy +15430,Roc and a Hard Place (Xanth #19),Piers Anthony,3.75,0812534867,9780812534863,en-US,344,5832,36,10/15/1996,Tor Books +15436,Swell Foop (Xanth #25),Piers Anthony,3.78,0812574745,9780812574746,eng,384,2866,30,10/13/2002,Tor Fantasy +15437,Being a Green Mother (Incarnations of Immortality #5),Piers Anthony,3.96,0727840010,9780727840011,eng,400,41,1,10/26/1989,Severn House +15438,Firefly,Piers Anthony,3.25,0380759500,9780380759507,eng,466,2420,128,3/1/1992,Avon Books +15444,Yon Ill Wind (Xanth #20),Piers Anthony,3.76,0812555104,9780812555103,eng,340,3804,37,10/15/1997,Tor Fantasy +15445,Vision of Tarot (Tarot #2),Piers Anthony,3.47,0441864619,9780441864614,en-US,260,1485,13,7/15/1987,Ace Books +15448,On a Pale Horse,Piers Anthony,4.13,0345305183,9780345305183,eng,325,156,13,9/12/1984,Del Rey Books +15449,Vale of the Vole (Xanth #10),Piers Anthony,3.61,0812574966,9780812574968,eng,304,9240,65,3/15/2000,Tor Fantasy +15452,The Dastard (Xanth #24),Piers Anthony,3.81,0812574737,9780812574739,eng,384,3009,28,10/14/2001,Tor Books +15453,Demons Don't Dream (Xanth #16),Piers Anthony,3.80,0812534832,9780812534832,en-US,352,7737,93,2/15/1994,Tor Fantasy +15460,The Color of Her Panties (Xanth #15),Piers Anthony,3.67,0380759497,9780380759491,eng,342,7374,64,9/1/1992,Eos +15464,Faun & Games (Xanth #21),Piers Anthony,3.76,0812555112,9780812555110,eng,352,4039,38,10/15/1997,Tor Fantasy +15466,Harpy Thyme (Xanth #17),Piers Anthony,3.72,0812534840,9780812534849,en-US,352,6460,63,2/15/1995,Tor Books +15468,Geis of the Gargoyle (Xanth #18),Piers Anthony,3.71,0812534859,9780812534856,en-US,342,5242,42,10/15/1995,Tor Fantasy +15472,Three Complete Xanth Novels (Xanth #1-3),Piers Anthony,4.06,0517122332,9780517122334,en-GB,774,64,1,2/11/1995,Wings +15474,God of Tarot (Tarot #1),Piers Anthony,3.45,0441294707,9780441294701,en-US,288,1737,36,3/1/1987,Ace +15490,Faith of Tarot (Tarot #3),Piers Anthony,3.49,0441225659,9780441225651,eng,304,1273,11,4/15/1987,Ace +15496,Unicorn Point (Apprentice Adept #6),Piers Anthony,3.80,0441845630,9780441845637,eng,337,4820,27,1/1/1990,Ace Books +15497,Hard Sell,Piers Anthony,3.38,0441317480,9780441317486,eng,268,700,14,5/1/1993,Ace +15498,Var the Stick (Battle Circle #2),Piers Anthony,3.76,0552097365,9780552097369,eng,172,762,13,3/21/1975,Corgi +15501,Xanth: The Quest for Magic (Xanth #1-3),Piers Anthony,4.06,034545328X,9780345453280,en-US,784,4867,19,10/29/2002,Del Rey +15502,Killobyte,Piers Anthony,3.56,0441444253,9780441444250,en-US,312,1549,47,1/1/1994,ACE +15509,Fractal Mode (Mode #2),Piers Anthony,3.64,0441251269,9780441251261,eng,344,3456,30,12/1/1992,Ace +15518,Anthonology,Piers Anthony,3.66,0812531140,9780812531145,eng,384,710,18,4/15/1986,Tor Books +15521,I Maccabees,Jonathan A. Goldstein/Anonymous,3.96,0385085338,9780385085335,eng,592,8,0,6/16/1976,Anchor Bible +15529,II Maccabees,Anonymous/Jonathan A. Goldstein,4.04,0385048645,9780385048644,eng,595,24,2,10/11/1983,Anchor Bible +15534,Question Quest (Xanth #14),Piers Anthony,3.71,0380759489,9780380759484,en-US,368,6894,73,10/1/1991,Avon +15535,Rings of Ice,Piers Anthony,3.34,0380000369,9780380000364,eng,191,403,23,11/1/1987,Avon Books +15544,Shame of Man (Geodyssey #2),Piers Anthony,3.84,0312858116,9780312858117,eng,380,18,0,10/1/1994,Tor Books +15546,Magic Kingdom for Sale—Sold! (Magic Kingdom of Landover #1),Terry Brooks,3.89,0345317572,9780345317575,eng,324,320,24,3/12/1986,Del Rey Books +15549,Armageddon's Children (Genesis of Shannara #1),Terry Brooks,4.10,0345484088,9780345484086,eng,371,12609,524,9/30/2006,Ballantine Books +15550,Straken (High Druid of Shannara #3),Terry Brooks,4.04,0345451139,9780345451132,eng,384,10276,126,8/15/2006,Del Rey +15552,Tanequil (High Druid of Shannara #2),Terry Brooks,3.98,034543577X,9780345435774,eng,357,10750,106,8/30/2005,Del Rey Books +15553,The Voyage of the Jerle Shannara Trilogy (Voyage of the Jerle Shannara #1-3),Terry Brooks,4.27,0345492862,9780345492869,eng,1248,3088,39,11/14/2006,Del Rey +15555,The Heritage of Shannara (Heritage of Shannara #1-4),Terry Brooks,4.29,0345465547,9780345465542,eng,1238,3613,42,8/26/2003,Del Rey Books +15557,Jarka Ruus (High Druid of Shannara #1),Terry Brooks,3.97,0345483898,9780345483898,eng,416,12122,138,7/26/2005,Del Rey +15562,Ilse Witch (Voyage of the Jerle Shannara #1),Terry Brooks,3.96,0743209516,9780743209519,eng,464,144,9,10/2/2000,Earthlight +15563,First King of Shannara (The Original Shannara Trilogy #0),Terry Brooks,3.96,0345396537,9780345396532,eng,435,864,55,1/29/1997,Del Rey +15566,The Elf Queen of Shannara (Heritage of Shannara #3),Terry Brooks,4.04,1857238273,9781857238273,eng,416,26676,188,3/4/1998,Orbit +15577,The Druids' Keep (The Sword of Shannara #2),Terry Brooks,4.16,0345461452,9780345461452,eng,240,3732,8,6/3/2003,Del Rey +15578,The Elfstones of Shannara (The Original Shannara Trilogy #2),Terry Brooks,3.97,0345285549,9780345285546,eng,564,1691,152,10/10/2000,Del Rey Books +15580,In the Shadow of the Warlock Lord (The Sword of Shannara #1),Terry Brooks,4.06,0345461460,9780345461469,eng,240,6139,22,8/5/2009,Del Rey +15581,Ferdydurke,Witold Gombrowicz/Danuta Borchardt,3.86,0300082401,9780300082401,eng,320,8193,198,8/11/2000,Yale University Press +15582,Cosmos and Pornografia: Two Novels,Witold Gombrowicz/Alastair Hamilton/Eric Mosbacher,4.12,0802151590,9780802151599,eng,362,241,25,3/23/1994,Grove Press +15584,Cosmos,Witold Gombrowicz/Danuta Borchardt,4.03,0300108486,9780300108484,eng,208,1896,129,10/10/2005,Yale University Press +15587,Bacacay,Witold Gombrowicz/Bill Johnston,3.94,097639507X,9780976395072,eng,275,491,28,5/1/2006,Archipelago Books +15592,McSweeney's #12,Dave Eggers/Roddy Doyle/McSweeney's Publishing,3.87,1932416064,9781932416060,eng,273,188,7,12/1/2003,McSweeney's +15594,A Midwife's Tale: The Life of Martha Ballard Based on Her Diary 1785-1812,Laurel Thatcher Ulrich,4.01,0679733760,9780679733768,eng,444,5149,633,12/22/1991,Vintage Books +15595,The Midwife's Apprentice,Karen Cushman,3.72,006440630X,9780064406307,eng,128,36039,1585,8/16/1996,HarperTrophy +15598,Heart & Hands: A Midwife's Guide to Pregnancy & Birth,Elizabeth Davis/Suzanne Arms,4.37,1587612216,9781587612213,eng,312,875,43,11/1/2004,Celestial Arts +15599,A Midwife's Story,Sheryl Feldman/Penny Armstrong,4.07,1905177046,9781905177042,eng,194,1473,136,4/1/2007,Pinter & Martin Ltd +15600,The Midwife's Tale,Gretchen Moran Laskas,3.83,0385335547,9780385335546,eng,256,705,99,3/2/2004,Delta +15603,Varney's Pocket Midwife,Jan M. Kriebs/Carolyn L. Gegor,4.06,0763726710,9780763726713,eng,616,4,0,1/1/2005,Jones & Bartlett Publishers +15606,McSweeney's #24,Dave Eggers/Christopher R. Howard/Jonathan Ames/Joe Meno/Eric Hanson,3.80,1932416773,9781932416770,eng,300,277,31,5/28/2007,McSweeney's +15610,Billy Budd Sailor and Other Uncompleted Writings,Herman Melville,3.11,0810111136,9780810111134,eng,1016,9,1,12/15/2007,Northwestern University Press +15611,Billy Budd Sailor,Herman Melville/Harrison Hayford/Merton M. Sealts Jr.,3.12,0226321320,9780226321325,eng,230,228,26,9/1/2001,University of Chicago Press +15613,Billy Budd Sailor,Herman Melville,3.12,1416523723,9781416523727,eng,160,12599,687,8/1/2006,Simon Schuster +15617,The Outsider,Richard Wright,4.16,0060539259,9780060539252,en-US,672,1779,76,7/29/2003,Harpperen +15622,Native Son,Richard Wright,3.99,006083756X,9780060837563,eng,504,75139,2987,8/2/2005,Harper Perennial Modern Classics +15624,Later Works: Black Boy (American Hunger) / The Outsider,Richard Wright/Arnold Rampersad,4.34,0940450674,9780940450677,eng,887,53,7,10/1/1991,Library of America +15638,Cyrano de Bergerac,Edmond Rostand/Eteel Lawson/Lowell Bair,4.06,0451528921,9780451528926,eng,240,62116,1119,8/5/2003,Signet Classics +15640,Cyrano de Bergerac,Edmond Rostand/Anthony Burgess,4.06,1854591177,9781854591173,eng,192,59,11,9/1/2003,Nick Hern Books +15647,The Inferno of Dante: A New Verse Translation (Bilingual Edition),Dante Alighieri/Robert Pinsky/Michael Mazur,4.00,0374525315,9780374525316,mul,464,657,94,9/1/1997,Farrar Straus and Giroux +15650,Batman: Inferno,Alexander C. Irvine,3.63,0345479459,9780345479457,eng,339,348,24,10/31/2006,Del Rey +15651,Inferno (La Divina Commedia #1),Dante Alighieri/Ronald L. Martinez/Robert M. Durling/Robert Turner,4.00,0195087445,9780195087444,eng,672,468,50,3/6/1997,Oxford University Press USA +15652,Dante's Inferno,Dante Alighieri/Mark Musa,4.00,0253209307,9780253209306,eng,432,43,6,6/22/1995,Indiana University Press +15654,The Stranger Beside Me: Ted Bundy: The Shocking Inside Story,Ann Rule,4.14,0451203267,9780451203267,eng,548,54029,2779,6/1/2001,Signet +15655,The Kindness of Strangers,Katrina Kittle,4.02,0060564784,9780060564780,en-US,400,11669,1418,1/2/2007,William Morrow Paperbacks +15667,Stranger in the Forest: On Foot Across Borneo,Eric Hansen,4.10,0375724958,9780375724954,eng,288,1584,110,11/14/2000,Vintage +15669,Strangers In Paradise Pocket Book 5,Terry Moore,4.38,1892597381,9781892597380,eng,392,999,24,12/14/2005,Abstract Studio +15672,The Strangers in the House,Georges Simenon/P.D. James/Geoffrey Sainsbury/David Watson,3.75,1590171942,9781590171943,eng,194,655,66,10/24/2006,NYRB Classics +15673,Wayside School Gets A Little Stranger (Wayside School #3),Louis Sachar,4.19,0747569118,9780747569114,eng,176,17980,416,4/1/2004,Bloomsbury U.S.A. Children's Books +15676,Strangers,Dean Koontz,4.00,0425181111,9780425181119,eng,704,38693,590,10/1/2002,Berkley +15677,Strangers on a Train,Patricia Highsmith,3.78,0393321983,9780393321982,eng,256,13041,1208,8/28/2001,W. W. Norton & Company +15678,Come a Stranger (Tillerman Cycle #5),Cynthia Voigt,3.89,068980444X,9780689804441,eng,256,1742,79,11/1/1995,Simon Pulse +15680,Exile and the Kingdom,Albert Camus/Carol Cosman/Orhan Pamuk,3.89,0307278581,9780307278586,eng,166,680,56,2/13/2007,Vintage +15682,A Happy Death,Albert Camus/Richard Howard/Jean Sarocchi,3.82,0141186585,9780141186580,eng,144,6975,257,2/28/2002,Penguin Classics +15683,Lyrical and Critical Essays,Albert Camus/Ellen Conroy Kennedy/Philip Thody,4.27,0394708520,9780394708522,eng,365,817,52,9/12/1970,Vintage +15688,L'Étranger,Albert Camus,3.98,2070360024,9782070360024,fre,184,13454,765,3/2/2000,Gallimard +15690,Outsider,Albert Camus,3.98,081912141X,9780819121417,eng,110,21,2,1/1/1983,University Press of America +15691,Caligula and Three Other Plays,Albert Camus,4.04,039440520X,9780394405209,fre,0,17,3,5/1/1966,Knopf +15692,The Possessed,Albert Camus/Justin O'Brien,3.83,039470245X,9780394702452,eng,190,325,22,3/12/1964,Vintage +15698,Caligula,Albert Camus/Pierre-Louis Rey/P. Morgan/E.T. Jones,4.08,2070386708,9782070386703,fre,224,6059,210,9/1/1993,Gallimard +15701,Introducing Camus,David Zane Mairowitz/Alain Korkos,3.80,1840460644,9781840460643,en-US,176,163,12,1/3/1998,Totem Books +15704,Notebooks 1935-1951,Albert Camus/Philip Thody/Justin O'Brien,4.28,1569246661,9781569246665,eng,496,553,12,9/1/1998,Marlowe & Company +15705,Existential Meditation,Simon Cleveland,4.91,1411665309,9781411665309,eng,100,11,3,12/22/2005,Lulu.com +15708,The Plague,Albert Camus/Robin Buss,3.98,0141185139,9780141185132,eng,238,975,80,12/5/2002,Penguin +15714,Le mythe de Sisyphe,Albert Camus,4.15,2070322882,9782070322886,fre,187,851,49,2/21/1985,Gallimard +15719,Marvel 1602,Neil Gaiman/Andy Kubert/Richard Isanove/Peter Sanderson/Todd Klein,3.94,0785123113,9780785123118,eng,248,48894,1354,8/2/2006,Marvel +15725,Galapagos: A Natural History,Michael H. Jackson,3.88,1895176409,9781895176407,eng,336,98,10,6/30/1994,University of Calgary Press +15731,Ecuador & the Galapagos Islands,Danny Palmerlee/Carolyn McCarthy/Michael Grosberg/Lonely Planet,3.89,174104295X,9781741042955,en-GB,440,66,8,8/1/2006,Lonely Planet +15734,Galápagos,Kurt Vonnegut Jr.,3.88,2246371929,9782246371922,fre,282,27,1,6/1/1994,Grasset +15735,Breakfast of Champions,Robert Egan/Kurt Vonnegut Jr.,4.00,0573605734,9780573605734,eng,106,17,0,4/7/2017,Samuel French Inc. +15740,Seabiscuit: The Saga of a Great Champion,B.K. Beckwith/Howard Brodie/Grantland Rice,4.47,1594160007,9781594160004,eng,64,22,0,8/1/2004,Westholme Publishing +15746,One Door Away from Heaven,Dean Koontz,3.97,0553582755,9780553582758,eng,681,17959,555,10/29/2002,Bantam +15763,Dark Rivers of the Heart / Sole Survivor / Intensity,Dean Koontz,4.41,0970998716,9780970998712,eng,700,602,10,10/25/2001,Bright Sky Press +15764,The Amateur Marriage,Anne Tyler,3.62,0345472454,9780345472458,eng,342,12986,1112,1/31/2006,Ballantine Books +15766,El matrimonio amateur,Anne Tyler/Gemma Rovira,3.62,8466307605,9788466307604,spa,459,4,1,11/1/2006,Punto de Lectura +15773,Angel Christmas,Carole Nelson Douglas/Emma Merritt/Marilyn Campbell/Patricia Rice/Mary Balogh,3.49,0451406281,9780451406286,eng,384,72,5,11/1/1995,Topaz +15779,Sideways Stories from Wayside School (Wayside School #1),Louis Sachar/Adam McCauley,4.15,0747571775,9780747571773,eng,144,81090,1835,1/19/2004,Bloomsbury Childrens Books +15781,Sideways,Rex Pickett,3.69,0312342519,9780312342517,eng,368,4494,522,10/1/2004,St. Martin's Griffin +15782,Sideways Arithmetic from Wayside School (Wayside School #2.5),Louis Sachar,3.88,0747569126,9780747569121,eng,96,3708,74,5/1/2004,Bloomsbury U.S.A. Children's Books +15783,The Sideways Guide to Wine and Life,Alexander Payne/Jim Taylor,4.38,1557046867,9781557046864,eng,64,8,0,5/25/2005,Newmarket Press +15785,More Sideways Arithmetic from Wayside School (Wayside School #2.6),Louis Sachar,3.92,0747569134,9780747569138,eng,112,856,28,9/1/1994,Bloomsbury U.S.A. Children's Books +15786,Sideways: The Shooting Script,Alexander Payne/Jim Taylor,4.21,1557046557,9781557046550,eng,192,101,3,12/8/2004,Newmarket Press +15788,White Man's Grave,Richard Dooling,3.94,031213214X,9780312132149,eng,400,367,48,3/15/1995,Picador USA +15796,Charms for the Easy Life,Kaye Gibbons,4.02,0060760257,9780060760250,eng,272,11168,744,7/1/2005,Harper Perennial +15806,The Lovely Bones,Alice Sebold,3.81,0316168815,9780316168816,en-US,328,5945,735,4/20/2004,Back Bay Books +15812,Hour Game (Sean King & Michelle Maxwell #2),David Baldacci,3.97,140500522X,9781405005227,eng,437,15,2,1/21/2005,MacMillan +15817,House of Sand and Fog,Andre Dubus III/Fontaine Dollas Dubus,3.85,0788759892,9780788759895,eng,15,108,19,1/1/1999,Recorded Books +15819,While I Was Gone,Sue Miller,3.69,0345420748,9780345420749,eng,352,239,28,11/26/2002,Ballantine Books +15820,My War Gone by I Miss It So,Anthony Loyd,4.29,0552771333,9780552771337,en-GB,336,20,2,11/7/2000,Bantam Press +15824,Will You Miss Me When I'm Gone? The Carter Family and Their Legacy in American Music,Mark Zwonitzer/Charles Hirshberg,4.28,074324382X,9780743243827,eng,432,894,99,2/23/2004,Simon Schuster +15826,Bird Songs: Of North America,Les Beletsky/Jon L. Dunn,4.48,1932855416,9781932855418,eng,368,273,30,9/28/2006,Chronicle Books +15827,National Geographic Field Guide to the Birds of North America,National Geographic Society/Jon L. Dunn/Jonathan Alderfer,4.38,0792253140,9780792253143,eng,503,745,27,11/23/2006,National Geographic Society +15836,Fugitive Pieces,Anne Michaels,3.93,0679776591,9780679776598,eng,304,12209,947,5/26/1998,Vintage +15846,Theories of Relativity,Barbara Haworth-Attard,3.91,0805077901,9780805077902,eng,240,760,75,9/1/2005,Henry Holt and Co. (BYR) +15852,Relativity: The Special and the General Theory,Albert Einstein/Nigel Calder/Robert W. Lawson,4.18,0143039822,9780143039822,eng,130,14068,344,7/25/2006,Penguin Classics +15855,Relativity: The Special and the General Theory: The Masterpiece Science Edition,Albert Einstein/Roger Penrose/Robert Geroch/David C. Cassidy,4.18,0131862618,9780131862616,en-US,288,24,2,4/1/2005,Pi Press +15858,Mirror Mirror,Gregory Maguire,3.28,0060988657,9780060988654,eng,280,28014,1512,10/1/2004,Regan Books +15859,Unnatural Exposure (Kay Scarpetta #8),Patricia Cornwell,4.06,0425163407,9780425163405,eng,367,725,33,7/1/1998,Berkley +15862,Estado De Miedo,Michael Crichton,3.70,9685959757,9789685959759,spa,685,2,0,6/30/2005,Plaza & Janés Mexico +15867,Mugglenet.Com's What Will Happen in Harry Potter 7: Who Lives Who Dies Who Falls in Love and How Will the Adventure Finally End?,Ben Schoen/Andy Gordon/Gretchen Stull/Emerson Spartz/Jamie Lawrence,4.23,1569755833,9781569755839,en-GB,216,9023,112,10/19/2006,Ulysses Press +15872,Harry Potter y el misterio del príncipe (Harry Potter #6),J.K. Rowling/Gemma Rovira Ortega,4.57,8478889930,9788478889938,spa,602,5104,386,2/28/2006,Salamandra +15876,Harry Potter y la Orden del Fénix (Harry Potter #5),J.K. Rowling,4.49,8478888845,9788478888849,spa,893,5637,458,2/21/2004,Emece Editores +15877,Ultimate Unofficial Guide to the Mysteries of Harry Potter: Analysis of Books 1-4,Galadriel Waters/Astre Mithrandir,4.05,0972393617,9780972393614,en-US,412,2774,37,1/1/2003,Wizarding World Press +15880,Harrius Potter et Philosophi Lapis,J.K. Rowling/Peter Needham,4.47,1582348251,9781582348254,lat,249,195,24,7/7/2003,Bloomsbury +15881,Harry Potter and the Chamber of Secrets (Harry Potter #2),J.K. Rowling/Mary GrandPré,4.42,0439064864,9780439064866,eng,341,2293963,34692,6/2/1999,Arthur A. Levine Books / Scholastic Inc. +15882,Harrius Potter et Camera Secretorum,J.K. Rowling/Peter Needham,4.42,159990067X,9781599900674,lat,277,86,4,12/26/2006,Bloomsbury USA Children's Books +15887,La historia de la familia Roccamatio de Helsinki,Yann Martel/Bianca Southwood,3.48,8423338665,9788423338665,spa,91,14,2,1/1/2007,Destino Ediciones +15888,An Instance of the Fingerpost,Iain Pears,3.94,1573227951,9781573227957,eng,691,19134,1081,4/1/2000,Riverhead Books +15890,An Instance of the Fingerpost,Iain Pears,3.94,1573220825,9781573220828,eng,691,214,24,3/16/1998,Riverhead Books +15900,Tears of the Giraffe (No. 1 Ladies' Detective Agency #2),Alexander McCall Smith,3.96,0613647904,9780613647908,eng,256,29,9,9/3/2002,Turtleback +15901,Friends Lovers Chocolate (Isabel Dalhousie #2),Alexander McCall Smith,3.62,0375422994,9780375422997,eng,261,9901,747,9/20/2005,Pantheon Books +15902,The Right Attitude to Rain (Isabel Dalhousie #3),Alexander McCall Smith,3.75,0375423001,9780375423000,eng,276,7776,560,9/19/2006,Pantheon Books +15904,The Sunday Philosophy Club (Isabel Dalhousie #1),Alexander McCall Smith,3.36,1400077095,9781400077090,eng,272,16314,1764,7/12/2005,Anchor +15905,The Finer Points of Sausage Dogs (Portuguese Irregular Verbs #2),Alexander McCall Smith,3.69,1400095085,9781400095087,eng,128,4833,479,12/28/2004,Anchor +15910,Geisha: The Life the Voices the Art,Jodi Cobb/Ian Buruma,3.90,037570180X,9780375701801,eng,128,188,12,10/27/1998,Knopf +15923,True Believers (Gregor Demarkian #17),Jane Haddam,3.88,0312982860,9780312982867,eng,432,237,14,4/15/2002,Minotaur Books +15924,At First Sight (Jeremy Marsh & Lexie Darnell #2),Nicholas Sparks,3.82,0446698466,9780446698467,eng,204,68379,3083,9/5/2006,Grand Central Publishing +15925,The Guardian,Nicholas Sparks,4.15,0446696110,9780446696111,eng,400,148042,4193,4/1/2005,Grand Central Publishing +15930,Wokini: A Lakota Journey to Happiness and Self-Understanding,Billy Mills/Nicholas Sparks,3.57,1561706604,9781561706600,eng,175,253,21,6/1/2003,Hay House +15931,The Notebook (The Notebook #1),Nicholas Sparks,4.09,0553816713,9780553816716,eng,214,1090603,15272,7/5/2004,Bantam +15937,À tout jamais,Nicholas Sparks,4.17,2266111108,9782266111102,fre,214,186,22,11/21/2002,Pocket +15948,Weg der Träume,Nicholas Sparks/Maja Ueberle-Pfaff,4.03,3453861906,9783453861909,ger,352,8,2,4/1/2003,Heyne +15952,Noches de tormenta,Nicholas Sparks/Isabel Margelí,3.84,8496544141,9788496544147,spa,190,22,5,6/1/2006,Roca Editorial +15956,True Believer,Nicholas Sparks,3.80,0446532436,9780446532433,en-US,322,896,77,7/1/2009,Warner Books +15957,The Patron Saint of Liars,Ann Patchett,3.80,1841150509,9781841150505,eng,352,25342,2493,4/1/2003,HarperCollins Publishers +15962,Because It Is Bitter and Because It Is My Heart,Joyce Carol Oates,3.89,0452265819,9780452265813,eng,416,2690,133,3/30/1991,Plume +15966,The Female of the Species: Tales of Mystery and Suspense,Joyce Carol Oates,3.62,0156030276,9780156030274,eng,275,1009,109,1/15/2007,Mariner Books +15967,The Falls,Joyce Carol Oates,3.58,0060722290,9780060722296,eng,512,8278,748,8/2/2005,Harper Perennial +15971,The Assignation: Stories,Joyce Carol Oates,3.80,0880014407,9780880014403,eng,208,337,23,8/1/1996,PerfectBound +15972,The Gravedigger's Daughter,Joyce Carol Oates,3.55,0061236829,9780061236822,eng,582,7518,860,5/29/2007,Ecco +15973,Middle Age: A Romance,Joyce Carol Oates,3.58,0060934905,9780060934903,eng,480,1650,199,10/1/2002,Ecco +15974,Black Water,Joyce Carol Oates,3.54,0452269865,9780452269866,eng,160,5513,484,5/1/1993,Plume +15975,Blonde,Joyce Carol Oates/Claude Seban,3.99,2253152854,9782253152859,fre,1110,6903,522,4/30/2002,Le Livre de Poche +15977,The Museum of Dr. Moses: Tales of Mystery and Suspense,Joyce Carol Oates,3.40,0151015317,9780151015313,en-US,229,778,122,8/6/2007,Houghton Mifflin Harcourt +15981,A Garden of Earthly Delights (Wonderland Quartet #1),Joyce Carol Oates/Elaine Showalter,3.84,0812968344,9780812968347,eng,406,1448,138,4/22/2003,Modern Library +15997,Paradise Lost,John Milton/John Leonard,3.82,0140424393,9780140424393,eng,453,113473,2598,2/27/2003,Penguin Classics +16004,Paradise Lost,John Milton/Philip Pullman,3.82,019280619X,9780192806192,eng,374,269,29,9/15/2005,Oxford University Press +16005,Paradise Lost,John Milton/Gordon Teskey,3.82,0393924289,9780393924282,eng,590,1909,120,12/15/2004,W. W. Norton & Company +16006,Paradise (Second Opportunities #1),Judith McNaught,4.31,0743474163,9780743474160,eng,709,27430,1132,7/1/2003,Pocket Books +16007,Last Train to Paradise: Henry Flagler and the Spectacular Rise and Fall of the Railroad that Crossed an Ocean,Les Standiford,4.03,1400049474,9781400049479,eng,288,1776,282,8/5/2003,Broadway Books +16014,Milton's Paradise Lost,John Milton/Gustave Doré,3.82,1841932515,9781841932514,eng,384,118,10,8/14/2008,Booksales +16021,The Trouble with the Pears: An Intimate Portrait of Erzsebet Bathory,Gia Bathory Al Babel,2.55,1425910394,9781425910396,eng,272,33,7,2/14/2006,Authorhouse +16033,Mary Queen of Scotland and The Isles,Margaret George,4.05,0312155859,9780312155858,eng,870,11523,507,4/15/1997,St. Martin's Griffin +16035,When the Elephants Dance,Tess Uriza Holthe,4.03,0142002887,9780142002889,en-US,368,2627,382,6/24/2003,Penguin Books +16047,A Thread of Grace,Mary Doria Russell,4.02,0449004139,9780449004135,eng,442,11782,1332,12/6/2005,Ballantine Books +16051,The Piano Shop on the Left Bank: Discovering a Forgotten Passion in a Paris Atelier,Thad Carhart,3.95,0375758623,9780375758621,eng,281,4151,521,3/12/2002,Random House Trade +16059,The Dive From Clausen's Pier,Ann Packer,3.42,0375727132,9780375727139,eng,432,19844,1747,4/8/2003,Vintage +16063,The Dive from Clausen's Pier,Ann Packer,3.42,0749933631,9780749933630,eng,368,60,8,3/27/2003,Piatkus +16074,A Dubious Codicil,Michael Wharton,3.25,0701130644,9780701130640,eng,224,3,0,3/15/1991,Random House UK Distribution +16076,The Awakening and Selected Stories,Kate Chopin/Cynthia Brantley Johnson/Alyssa Harad,3.92,0743487672,9780743487672,eng,296,9459,194,7/1/2004,Simon Schuster +16077,Complete Novels and Stories,Kate Chopin/Sandra M. Gilbert,4.28,1931082219,9781931082211,eng,1075,506,24,9/30/2002,Library of America +16085,Beowulf & Grendel: The Truth Behind England's Oldest Legend,John Grigsby,3.57,1842931539,9781842931530,en-US,246,47,11,10/10/2005,Watkins Publishing +16091,Grendel: Devil by the Deed,Matt Wagner/Rich Rankin/Chris Pitzer/Diana Schutz,4.08,159307736X,9781593077365,eng,48,539,29,3/27/2007,Dark Horse Comics +16093,Fuselfieber,David Sedaris/Harry Rowohlt,3.79,3453198255,9783453198258,ger,320,14,0,4/1/2002,Diana TB +16102,Mi vida en rose,David Sedaris,3.99,8497934903,9788497934909,spa,240,5,2,11/15/2004,Debolsillo +16111,A Dance to the Music of Time: 4th Movement (A Dance to the Music of Time #10-12),Anthony Powell,4.22,0226677184,9780226677187,eng,793,1145,77,5/31/1995,University of Chicago Press +16112,Anthony Powell: A Life,Michael Barber,3.72,1585677108,9781585677108,eng,352,39,8,12/27/2005,Harry N. Abrams +16113,A Dance to the Music of Time: 1st Movement (A Dance to the Music of Time #1-3),Anthony Powell,3.95,0226677141,9780226677149,eng,718,3817,271,5/31/1995,University of Chicago Press +16114,A Dance to the Music of Time: 3rd Movement (A Dance to the Music of Time #7-9),Anthony Powell,4.26,0226677176,9780226677170,eng,715,1289,83,5/31/1995,University of Chicago Press +16115,A Dance to the Music of Time: 2nd Movement (A Dance to the Music of Time #4-6),Anthony Powell,4.29,0226677168,9780226677163,eng,722,1237,87,6/15/1995,University of Chicago Press +16121,Titan: The Life of John D. Rockefeller Sr.,Ron Chernow,4.20,1400077303,9781400077304,eng,832,15971,812,3/30/2004,Vintage +16130,Alexander Hamilton,Ron Chernow,4.23,0143034758,9780143034759,eng,818,97099,6149,3/29/2005,Penguin Books +16131,The House of Morgan: An American Banking Dynasty and the Rise of Modern Finance,Ron Chernow,4.07,0802138292,9780802138293,eng,812,5110,281,9/20/2001,Grove Press +16141,Ego and Hubris: The Michael Malice Story,Harvey Pekar/Gary Dumm,3.67,0345479394,9780345479396,eng,160,390,57,4/11/2006,Ballantine Books +16148,Empire of the Senseless,Kathy Acker,3.49,0802131794,9780802131799,eng,240,1487,78,1/13/1994,Grove Press +16151,Great Expectations,Kathy Acker,3.59,0802131557,9780802131553,eng,128,740,38,1/18/1994,Grove Press +16172,Desert Queen: The Extraordinary Life of Gertrude Bell: Adventurer Adviser to Kings Ally of Lawrence of Arabia,Janet Wallach,3.92,1400096197,9781400096190,eng,464,2944,499,7/12/2005,Anchor +16175,Queen of the Scene,Queen Latifah/Frank Morrison,4.06,0060778563,9780060778569,en-US,32,94,18,9/26/2006,HarperCollins +16176,The Red Queen: Sex and the Evolution of Human Nature,Matt Ridley,4.04,0060556579,9780060556570,eng,405,13491,506,4/29/2003,Harper Perennial (HarperCollins) +16177,The Sweet Potato Queens' Big-Ass Cookbook (and Financial Planner),Jill Conner Browne,4.02,060980877X,9780609808771,en-US,288,1958,142,1/7/2003,Three Rivers Press (CA) +16178,Dairy Queen (Dairy Queen #1),Catherine Gilbert Murdock,3.74,0618683070,9780618683079,eng,275,25441,2241,5/22/2006,Houghton Mifflin +16179,Sex with the Queen: 900 Years of Vile Kings Virile Lovers and Passionate Politics,Eleanor Herman,3.91,0060846739,9780060846732,en-US,336,3808,315,4/11/2006,William Morrow +16180,The Boleyn Inheritance (The Plantagenet and Tudor Novels #10),Philippa Gregory,3.87,0743272501,9780743272506,eng,518,68763,3394,12/5/2006,Atria Books +16181,The Constant Princess (The Plantagenet and Tudor Novels #6),Philippa Gregory,3.90,0743272498,9780743272490,eng,390,136931,3915,9/6/2006,Washington Square Press +16182,The Favored Child (The Wideacre Trilogy #2),Philippa Gregory,3.62,0743249305,9780743249300,eng,624,9643,451,7/2/2003,Washington Square Press +16183,The Virgin's Lover (The Plantagenet and Tudor Novels #13),Philippa Gregory,3.71,0743269268,9780743269261,eng,441,43749,1967,9/7/2005,Washington Square Press +16184,Virgin Earth (Tradescant #2),Philippa Gregory,3.62,0743272536,9780743272537,en-US,661,4469,272,4/5/2006,Washington Square Press +16185,The Wise Woman,Philippa Gregory,3.32,0006514642,9780006514640,eng,640,6774,529,2/1/2002,HarperCollins Publishers +16186,Meridon (The Wideacre Trilogy #3),Philippa Gregory,3.68,0743249313,9780743249317,eng,569,8842,380,7/2/2003,Washington Square Press +16187,The Little House,Philippa Gregory,3.68,0006496431,9780006496434,eng,368,1910,237,2/1/1998,HarperCollins Publishers +16188,Wideacre (The Wideacre Trilogy #1),Philippa Gregory,3.30,0743249291,9780743249294,eng,656,18944,1547,7/2/2003,Washington Square Press +16191,Un café lejos de aquí,Z.Z. Packer/María Pérez López de Heredia,3.84,8496454339,9788496454330,spa,283,8,0,7/1/2006,Tropismos +16192,You Can't Be Neutral on a Moving Train: A Personal History of Our Times,Howard Zinn,4.30,0807071277,9780807071274,eng,214,2543,141,9/5/2002,Beacon Press +16193,Declarations of Independence: Cross-Examining American Ideology,Howard Zinn,4.26,0060921080,9780060921088,eng,341,732,25,10/23/1991,Harper Perennial +16199,Citas Celestiales,Alexander McCall Smith/Marta Torent López de Lamadrid,3.16,8489367159,9788489367159,spa,190,1,0,11/1/2006,Umbriel +16200,Ella Minnow Pea: A Novel in Letters,Mark Dunn,3.85,0385722435,9780385722438,eng,208,23926,4356,9/17/2002,Anchor +16205,Daisy Miller and Other Stories,Henry James/Jean Gooder,3.52,0192835432,9780192835437,eng,352,558,40,11/19/1998,Oxford University Press +16208,The Turn of the Screw/Daisy Miller,Henry James,3.61,0440391547,9780440391548,eng,192,959,55,8/1/1954,Laurel +16213,The Hot Zone: The Terrifying True Story of the Origins of the Ebola Virus,Richard Preston,4.12,0385495226,9780385495226,eng,352,85408,4334,6/15/1999,Anchor Books +16214,The Hot Zone: The Chilling True Story of an Ebola Outbreak,Richard Preston,4.12,0552143030,9780552143035,eng,384,163,26,8/1/1995,Corgi +16228,Gardening with a Wild Heart: Restoring California's Native Landscapes at Home,Judith Larner Lowry,4.29,0520251741,9780520251748,eng,267,12,2,3/19/2007,University of California Press +16229,Teacher's Pet (Wild at Heart #7),Laurie Halse Anderson,4.05,1584850558,9781584850557,en-US,128,170,5,12/31/2001,American Girl Publishing Inc +16230,Homeless (Wild at Heart #2),Laurie Halse Anderson/Mark Salisbury,4.06,1584850450,9781584850458,eng,126,415,32,6/29/2000,American Girl Publishing Inc +16234,Hear the Wind Blow,Mary Downing Hahn,4.07,0618181903,9780618181902,eng,224,266,45,5/19/2003,Clarion Books +16243,Case Histories (Jackson Brodie #1),Kate Atkinson,3.83,0316010707,9780316010702,eng,389,67271,5246,10/17/2005,Back Bay Books +16245,Three Case Histories,Sigmund Freud/Philip Rieff,3.90,0684829452,9780684829456,eng,282,622,21,11/1/1996,Touchstone +16267,Michael Tolliver Lives (Tales of the City #7),Armistead Maupin,3.93,0060761350,9780060761356,en-US,277,583,82,6/12/2007,Harper +16268,Back to Barbary Lane: The Tales of the City Omnibus (Tales of the City #4-6),Armistead Maupin,4.44,0060166495,9780060166496,eng,720,514,11,11/26/1991,Harper +16271,The Intuitionist,Colson Whitehead,3.68,0385493002,9780385493000,eng,255,7473,903,1/4/1999,Anchor Books +16276,John Henry Days,Colson Whitehead,3.65,0385498209,9780385498203,eng,400,1940,186,5/14/2002,Anchor +16280,"Why Are All The Black Kids Sitting Together in the Cafeteria?": A Psychologist Explains the Development of Racial Identity,Beverly Daniel Tatum,4.21,0465083617,9780465083619,en-US,320,9845,703,1/17/2003,Basic Books +16285,The Custard Kid (Black Cats),Terry Deary,4.40,0713659890,9780713659894,eng,62,5,0,10/31/2001,A & C Black (Childrens books) +16286,The Magus,John Fowles,4.05,0316296198,9780316296199,eng,656,38247,1915,1/4/2001,Back Bay Books +16291,The Magus of Freemasonry: The Mysterious Life of Elias Ashmole—Scientist Alchemist and Founder of the Royal Society,Tobias Churton,4.10,1594771227,9781594771224,eng,303,28,5,6/27/2006,Inner Traditions +16292,The Myth of the Magus (Canto Original),Elizabeth M. Butler,3.73,0521437776,9780521437776,eng,320,27,2,4/15/1993,Cambridge University Press +16297,Cards on the Table (Hercule Poirot #15),Agatha Christie,3.92,0425205959,9780425205952,eng,324,25236,1046,7/5/2005,Berkley +16298,A Murder Is Announced (Miss Marple #5),Agatha Christie,3.98,1579126294,9781579126292,eng,288,33195,1220,9/30/2006,Black Dog & Leventhal Publishers +16299,And Then There Were None,Agatha Christie,4.26,0312330871,9780312330873,eng,264,625767,18785,5/3/2004,St. Martin's Press +16300,Sleeping Murder (Miss Marple #13),Agatha Christie,3.95,0002317850,9780002317856,eng,242,19657,884,8/4/2003,Dodd Mead; 1st edition (September 1976) +16301,Agatha Christie: An Autobiography,Agatha Christie/Robert Welch Herrick,4.27,0006353282,9780006353287,eng,560,4296,310,1/2/2001,HarperCollins +16304,Murder on the Orient Express (Hercule Poirot #10),Agatha Christie,4.17,0425200450,9780425200452,eng,322,145660,5711,8/31/2004,Berkley +16305,Evil Under the Sun (Hercule Poirot #24),Agatha Christie,3.97,1579126286,9781579126285,eng,220,36334,975,9/1/2006,Black Dog & Leventhal Publishers +16307,Hallowe'en Party (Hercule Poirot #39),Agatha Christie,3.66,0007120680,9780007120680,eng,336,20656,1246,9/3/2001,Harper +16312,One Two Buckle My Shoe (Hercule Poirot #23),Agatha Christie/Hugh Fraser,3.76,1572703857,9781572703858,eng,0,14388,411,3/16/2004,HarperCollins Publishers +16313,A Caribbean Mystery,Agatha Christie/Rosalind Ayres,3.80,1572705493,9781572705494,eng,0,49,10,10/9/2006,Audiogo +16315,Crooked House,Agatha Christie,4.04,031298166X,9780312981662,eng,276,24849,1429,8/19/2002,Minotaur Books +16319,The Body in the Library (Miss Marple #3),Agatha Christie,3.85,157912626X,9781579126261,eng,191,46454,1675,9/1/2006,Black Dog & Leventhal Publishers +16320,Witness for the Prosecution and Selected Plays,Agatha Christie,4.05,000649045X,9780006490456,eng,352,3967,67,10/7/1995,HarperCollins Publishers Ltd +16322,The A.B.C. Murders (Hercule Poirot #13),Agatha Christie,4.01,1579126243,9781579126247,eng,252,69806,2470,9/1/2006,Black Dog & Leventhal Publishers +16325,Partners in Crime (Tommy and Tuppence #2),Agatha Christie,3.77,0007111509,9780007111503,eng,347,10106,520,1/1/2001,HarperCollins Publishers +16328,The Murder of Roger Ackroyd (Hercule Poirot #4),Agatha Christie,4.24,1579126278,9781579126278,eng,288,103149,5659,9/1/2006,Black Dog & Leventhal Publishers +16329,Dead Man's Folly (Hercule Poirot #33),Agatha Christie/David Suchet,3.79,1572705477,9781572705470,eng,6,12256,393,9/8/2006,BBC Audiobooks +16330,Poirot's Early Cases: 18 Hercule Poirot Mysteries (Hercule Poirot #41),Agatha Christie/Hugh Fraser/David Suchet,3.92,1572704721,9781572704725,eng,8,5473,144,7/26/2005,AudioGO +16331,Murder at the Vicarage (Miss Marple #1),Agatha Christie,4.05,1579126251,9781579126254,eng,288,121099,2237,9/1/2006,Black Dog & Leventhal Publishers +16334,The Listerdale Mystery And Eleven Other Stories,Agatha Christie/Hugh Fraser,3.56,1572704977,9781572704978,eng,0,1824,89,1/11/2006,AudioGO +16335,The Mystery of the Blue Train (Hercule Poirot #6),Agatha Christie,3.80,1579126952,9781579126957,eng,317,23274,1053,3/30/2007,Black Dog & Leventhal Publishers +16336,The Unexpected Guest: A Play In Two Acts,Agatha Christie,3.83,0573014671,9780573014673,eng,100,2813,167,11/12/2010,Samuel French Ltd +16340,After the Funeral,Agatha Christie,3.87,0002310198,9780002310192,eng,251,47,4,7/2/2001,HarperCollins +16342,Cat Among the Pigeons (Hercule Poirot #34),Agatha Christie,3.83,0425205967,9780425205969,eng,352,21230,735,7/5/2005,Berkley +16343,The Mysterious Affair at Styles (Hercule Poirot #1),Agatha Christie,3.99,0646418432,9780646418438,eng,121,196377,3885,10/21/2002,Deodand +16347,Absent in the Spring and Other Novels (Mary Westmacott Omnibus #1--Absent in the Spring Giant's Bread The Rose and the Yew Tree),Mary Westmacott/Agatha Christie,4.18,0312273223,9780312273224,eng,656,97,11,9/22/2001,Minotaur Books +16349,Hercule Poirot's Christmas (Hercule Poirot #20),Agatha Christie,3.94,0007120699,9780007120697,eng,335,26085,1497,9/1/2001,HarperCollins Publishers +16352,Black Coffee (Hercule Poirot #45.5),Charles Osborne/Agatha Christie,3.50,0312970072,9780312970079,eng,304,10356,622,9/15/1999,St. Martin's Paperbacks +16357,Hercule Poirot's Christmas: A BBC Radio 4 Full-Cast Dramatisation,Agatha Christie/Michael Bakewell/Peter Sallis/Cyril Luckham/Edward De Souza/Rachel Gurney/Nicky Henson/Deryck Guyler,3.94,0563535113,9780563535119,eng,2,52,8,11/5/2001,BBC Audiobooks +16364,Murder on the Orient Express (Hercule Poirot #10),Agatha Christie,4.17,1579126235,9781579126230,eng,266,1520,238,9/1/2006,Black Dog & Leventhal Publishers +16369,Death on the Nile (Hercule Poirot #17),Agatha Christie,4.10,1579126898,9781579126896,eng,351,674,91,3/30/2007,Black Dog & Leventhal Publishers +16371,Mrs. McGinty's Dead (Hercule Poirot #30),Agatha Christie,3.83,0007121008,9780007121007,eng,328,572,74,7/1/2002,HarperCollins Publishers +16374,The Most of P.G. Wodehouse,P.G. Wodehouse,4.48,0743203585,9780743203586,eng,701,1872,106,11/1/2000,Simon & Schuster +16376,Full Moon (Blandings Castle #7),P.G. Wodehouse,4.17,1585678368,9781585678365,eng,272,1860,131,11/23/2006,Harry N. Abrams +16377,How Right You Are Jeeves (Jeeves #12),P.G. Wodehouse,4.17,0743203593,9780743203593,eng,206,2769,156,11/1/2000,Touchstone +16379,Life With Jeeves (Jeeves #6 2 & 4),P.G. Wodehouse,4.39,0140059024,9780140059021,eng,557,3169,137,9/29/1983,Penguin Books +16384,Spring Fever,P.G. Wodehouse,4.05,158567575X,9781585675753,eng,276,483,31,10/21/2004,Harry N. Abrams +16387,Carry On Jeeves (Jeeves #3),P.G. Wodehouse,4.27,1585673927,9781585673926,eng,273,15598,771,3/31/2003,The Overlook Press +16388,Lord Emsworth and Others (Blandings Castle #5.5),P.G. Wodehouse,4.16,1585672777,9781585672776,eng,268,1099,77,5/13/2002,The Overlook Press +16390,The Mating Season (Jeeves #9),P.G. Wodehouse,4.26,1585672319,9781585672318,eng,272,4616,287,1/1/2002,Harry N. Abrams +16392,Thank You Jeeves (Jeeves #5),P.G. Wodehouse,4.24,1585674346,9781585674343,eng,263,5700,308,9/15/2003,Harry N. Abrams +16393,Big Money,P.G. Wodehouse,3.93,014000937X,9780140009378,eng,288,1117,78,9/3/1991,Penguin Books +16394,Much Obliged Jeeves,P.G. Wodehouse,4.23,1585675261,9781585675265,eng,208,701,64,4/12/2004,Harry N. Abrams +16396,The Inimitable Jeeves (Jeeves #2),P.G. Wodehouse,4.24,0140284125,9780140284126,eng,240,7442,320,6/1/2000,Penguin Books +16398,Thank You Jeeves,P.G. Wodehouse/Jonathan Cecil,4.24,1572704616,9781572704619,eng,6,66,23,5/26/2005,AudioGO +16400,Money in the Bank,P.G. Wodehouse,4.13,1585676578,9781585676576,eng,290,321,27,4/7/2005,Harry N. Abrams +16401,The Luck of the Bodkins,P.G. Wodehouse,4.08,1585673366,9781585673360,eng,358,1290,88,10/23/2002,Harry N. Abrams +16414,Joy in the Morning,P.G. Wodehouse/Chris Miller,4.34,0563557354,9780563557357,eng,2,49,7,4/6/1998,BBC Audiobooks +16425,The Labours of Hercules (Hercule Poirot #27),Agatha Christie/Hugh Fraser,3.78,1572704578,9781572704572,eng,9,11167,297,7/13/2005,AudioGO +16427,Dead Man's Folly (Hercule Poirot #33),Agatha Christie,3.79,0007121075,9780007121076,eng,288,619,75,7/1/2008,HarperCollins Publishers +16428,Hercule Poirot's Casebook (Hercule Poirot #42),Agatha Christie,4.31,0399150218,9780399150210,eng,861,1865,52,12/1/1998,G.P. Putnam's Sons +16429,The Husband,Dean Koontz,3.80,0553804790,9780553804799,eng,400,39604,1527,5/30/2006,Bantam +16430,City of Night (Dean Koontz's Frankenstein #2),Dean Koontz/Ed Gorman,3.98,0553587897,9780553587890,en-US,455,1060,116,7/26/2005,Bantam Books +16431,Sole Survivor,Dean Koontz,3.78,0553589490,9780553589498,eng,403,23244,547,7/25/2006,Bantam Books +16433,Forever Odd (Odd Thomas #2),Dean Koontz,3.97,0553588265,9780553588262,eng,364,61555,2263,10/31/2006,Bantam Books +16435,Life Expectancy,Dean Koontz,4.01,0553588249,9780553588248,eng,476,26983,1568,10/25/2005,Bantam Books +16441,The Raphael Affair (Jonathan Argyll #1),Iain Pears,3.54,0425178927,9780425178928,eng,257,102,10,2/1/2001,Berkley Books +16442,The Dream of Scipio,Iain Pears,3.73,1573229865,9781573229869,eng,416,3311,320,6/3/2003,Riverhead Books +16448,Welcome to the Great Mysterious,Lorna Landvik,3.78,0345442741,9780345442741,eng,368,2432,202,1/2/2002,Ballantine Books +16449,Oh My Stars,Lorna Landvik,3.89,0345468368,9780345468369,eng,416,5500,514,2/28/2006,Ballantine Books +16450,Your Oasis on Flame Lake,Lorna Landvik,3.59,0449002985,9780449002988,eng,320,2194,129,6/16/1998,Ballantine Books +16451,Patty Jane's House of Curl,Lorna Landvik/Mechtild Sandberg-Ciletti/Mechtild Ciletti,3.86,0804114609,9780804114608,eng,304,8950,505,6/28/1999,Ivy Books +16452,The Tall Pine Polka / Your Oasis on Flame Lake,Lorna Landvik,3.99,0345487664,9780345487667,eng,752,177,7,10/4/2005,Ballantine Books +16459,Anne's House Of Dreams,L.M. Montgomery,4.14,1406942359,9781406942354,eng,192,2,0,11/3/2006,Hard Press +16464,Poirot: The Complete Ariadne Oliver Vol. 2,Agatha Christie,4.21,0007190689,9780007190683,en-US,727,85,4,6/1/2005,HarperCollins Publishers +16468,The Phantom Tollbooth,Norton Juster/Jules Feiffer,4.21,0375806709,9780375806704,en-US,256,871,56,5/9/2000,Random House Books for Young Readers +16477,The Sixth Book of Lost Swords: Mindsword's Story (Lost Swords #6),Fred Saberhagen,3.81,0812511182,9780812511185,eng,250,1247,9,6/15/1991,Tom Doherty Associates +16478,The Fourth Book of Lost Swords: Farslayer's Story (Lost Swords #4),Fred Saberhagen,3.84,0812552849,9780812552843,en-US,252,1784,8,3/15/1990,Tor Books +16479,Berserkers: The Beginning (Berserkers #1 & #5),Fred Saberhagen,3.70,0671878840,9780671878849,eng,377,232,23,6/1/1998,Baen +16480,The Last Book of Swords: Shieldbreaker's Story (Lost Swords #8),Fred Saberhagen,3.88,0812505778,9780812505771,en-US,255,1233,11,6/15/1995,Tor Fantasy +16501,Ariadne's Web (Book of the Gods #2),Fred Saberhagen,3.67,0812590465,9780812590463,eng,432,172,3,1/15/2001,Tor Fantasy +16503,The Arms of Hercules (Book of the Gods #3),Fred Saberhagen,3.70,0812566807,9780812566802,eng,352,150,1,4/15/2002,Tor Books +16514,Berserker: Blue Death (Berserker #8),Fred Saberhagen,3.71,0812553292,9780812553291,en-US,282,254,8,9/28/1987,Tor Books +16527,Daughter of Fortune,Isabel Allende/Margaret Sayers Peden,3.91,0061120251,9780061120251,eng,432,97539,2733,5/2/2006,Harper Perennial +16528,My Invented Country: A Nostalgic Journey Through Chile,Isabel Allende,3.85,006054564X,9780060545642,en-US,199,4844,359,5/27/2003,Harper +16530,Aphrodite: A Memoir of the Senses,Isabel Allende/Robert Shekter/Panchita Llona,3.64,0060930179,9780060930172,eng,320,3732,195,4/7/1999,Harper Perennial +16532,Of Love and Shadows,Isabel Allende/Margaret Sayers Peden,3.97,0553383833,9780553383836,eng,304,17808,403,8/30/2005,Dial Press Trade Paperback +16535,Strange Relations,Philip José Farmer,3.71,1416509348,9781416509349,eng,476,291,14,2/7/2006,Baen Books +16542,The Black Tower (Philip José Farmer's The Dungeon #1),Richard A. Lupoff/Bruce Coville/Philip José Farmer/Charles de Lint/Robin Wayne Bailey/Robert Gould,3.29,0553273469,9780553273465,eng,339,515,19,7/1/1988,Spectra Books +16543,Dayworld (Dayworld #1),Philip José Farmer,3.64,0441140017,9780441140015,eng,258,1315,68,3/1/1986,Ace Books +16544,The Dungeon 2 (Philip José Farmer's The Dungeon Omnibus Volume 2: Valley of Thunder/Lake of Fire),Charles de Lint/Robin Wayne Bailey/Philip José Farmer,3.50,0743458532,9780743458535,eng,608,50,0,5/1/2003,iBooks +16546,Pictures by J.R.R. Tolkien,J.R.R. Tolkien/Christopher Tolkien,4.47,0395606489,9780395606483,eng,102,531,14,10/1/1992,Houghton Mifflin +16547,The J.R.R. Tolkien Handbook: A Comprehensive Guide to His Life Writings and World of Middle-Earth,Colin Duriez/Brian Sibley,3.72,0801030145,9780801030147,en-US,316,32,2,11/1/2002,Baker Books +16555,Mr. Majeika and the School Trip,Humphrey Carpenter,3.85,0141303352,9780141303352,eng,89,50,2,4/29/1999,Puffin +16556,The Infinite Plan,Isabel Allende,3.72,0060924985,9780060924980,eng,384,7347,300,3/4/1994,Harper Perennial +16562,Ines of My Soul,Isabel Allende/Margaret Sayers Peden,3.93,0061161578,9780061161575,eng,528,62,13,11/7/2006,Harper +16566,Selected Non-Fictions,Jorge Luis Borges/Suzanne Jill Levine/Esther Allen/Eliot Weinberger,4.43,0140290117,9780140290110,eng,560,2059,90,11/1/2000,Penguin Books +16568,The Book of Imaginary Beings,Jorge Luis Borges/Margarita Guerrero/Peter Sís/Andrew Hurley,4.09,0143039938,9780143039938,eng,236,5007,238,9/26/2006,Penguin Books +16569,Ficciones,Jorge Luis Borges/Gordon Botherston/Peter Hulme,4.45,1853995908,9781853995903,spa,232,90,4,12/9/1999,BCP/Duckworth Publishing +16570,This Craft of Verse,Jorge Luis Borges/Călin-Andrei Mihăilescu,4.32,0674008200,9780674008205,eng,160,811,70,3/30/2002,Harvard University Press +16572,Doyle Brunson's Super System,Doyle Brunson/Mike Caro/David Reese/Joey Hawthorne/David Sklansky/Bobby Baldwin,3.94,1580420818,9781580420815,eng,605,2080,73,12/31/2002,Cardoza +16575,Color Drawing: Design Drawing Skills and Techniques for Architects Landscape Architects and Interior Designers,Michael E. Doyle,4.26,0471292451,9780471292456,eng,360,161,3,6/30/1999,Wiley +16580,The Grail: A Year Ambling & Shambling Through an Oregon Vineyard in Pursuit of the Best Pinot Noir Wine in the Whole Wild World,Brian Doyle/Mary Miller Doyle,4.01,0870710931,9780870710933,eng,208,160,43,4/1/2006,Oregon State University Press +16593,The Coming of the Fairies,Arthur Conan Doyle/John M. Lynch,3.39,0803266553,9780803266551,eng,189,208,38,10/1/2006,Bison Books +16595,Vampire Hunter D Volume 06: Pilgrimage of the Sacred and the Profane,Hideyuki Kikuchi/Yoshitaka Amano,4.10,1595821066,9781595821065,en-US,208,844,26,11/22/2006,Digital Manga Publishing / Dark Horse +16596,Vampire Hunter D Volume 05: The Stuff of Dreams,Hideyuki Kikuchi/Yoshitaka Amano,3.99,1595820949,9781595820945,en-US,208,1083,26,9/13/2006,Digital Manga Publishing / Dark Horse +16597,Demon Deathchase (Vampire Hunter D #3),Hideyuki Kikuchi/Yoshitaka Amano,4.02,1595820310,9781595820310,eng,211,1506,53,1/18/2006,Digital Manga Publishing / Dark Horse +16598,Vampire Hunter D Volume 04: Tale of the Dead Town,Hideyuki Kikuchi/Yoshitaka Amano,3.92,1595820930,9781595820938,en-US,205,1158,30,5/24/2006,Digital Manga Publishing / Dark Horse +16601,Vampire Hunter D Volume 07: Mysterious Journey to the North Sea - Part One,Hideyuki Kikuchi/Yoshitaka Amano,4.27,1595821074,9781595821072,en-US,209,1062,19,5/7/2007,Digital Manga Publishing / Dark Horse +16602,Coffin: The Art of Vampire Hunter D,Yoshitaka Amano,4.58,1595820612,9781595820617,eng,199,596,16,11/1/2006,Dark Horse Books +16604,Paradise Lost and Paradise Regained,John Milton/Christopher Ricks/Susanne Woods,4.08,0451527925,9780451527929,en-US,357,329,29,11/1/2001,Signet Classics +16605,Paradise Lost,John Milton/Merritt Y. Hughes/David Scott Kastan,3.82,0872207331,9780872207332,eng,427,328,37,9/15/2005,Hackett Publishing Company Inc. +16609,Leviathan,Thomas Hobbes/Edwin M. Curley,3.70,0872201775,9780872201774,eng,672,500,32,3/1/1994,Hackett Publishing Company Inc. +16616,The Book of Leviathan,Peter Blegvad,4.16,1585670987,9781585670987,en-US,160,631,52,4/23/2001,Harry N. Abrams +16619,Democracy in America,Alexis de Tocqueville/Isaac Kramnick/Gerald Bevan,4.02,0140447601,9780140447606,eng,992,18925,523,4/24/2003,Penguin Classics +16621,Democracy in America,Alexis de Tocqueville/Harvey Mansfield/Delba Winthrop,4.02,0226805360,9780226805368,eng,722,390,40,4/1/2002,University of Chicago Press +16627,Magic Carpet Ride: The Autobiography of John Kay and Steppenwolf,John Kay/John Einarson,4.10,1550821083,9781550821086,eng,372,10,2,10/1/1994,Quarry Press +16630,Steppenwolf Theatre Company : Twenty-Five Years of an Actor's Theater,Victor Skrebneski,4.25,1570715831,9781570715839,eng,144,8,2,12/1/2000,Sourcebooks +16634,The Glass Bead Game,Hermann Hesse/Richard Winston/Clara Winston/Theodore Ziolkowski,4.11,0312278497,9780312278496,eng,558,24967,934,12/6/2002,Picador +16640,The Sorrows of Young Werther,Johann Wolfgang von Goethe/Burton Pike/Edla Valdna,3.67,0812969901,9780812969900,eng,149,45626,1721,2/8/2005,Modern Library +16641,The Sorrows of Young Werther and Selected Writings,Johann Wolfgang von Goethe/Catherine Hutter/Marcelle Clements,3.80,0451529626,9780451529626,eng,255,971,38,7/5/2005,Signet Classics +16642,The Sorrows of Young Werther,Johann Wolfgang von Goethe/Nathan Haskell Dole/Thomas Carlyle/R. Dillon Boylan,3.67,159569045X,9781595690456,en-US,104,16,0,8/15/2006,MONDIAL +16647,The Dream Master,Roger Zelazny,3.64,0575073438,9780575073432,eng,160,12,0,12/31/2010,Gollancz +16649,The Queen's Necklace,Teresa Edgerton,3.61,0380789116,9780380789115,eng,592,99,14,7/3/2001,Harper Voyager +16653,Goblin Moon (The Goblin Moon Duology #1),Teresa Edgerton,3.79,0441294278,9780441294275,eng,293,244,36,2/1/1991,Ace +16654,The Work of the Sun (The Green Lion Trilogy #3),Teresa Edgerton,4.00,0441909116,9780441909117,eng,258,157,5,3/1/1990,Ace +16656,The Castle of the Silver Wheel,Teresa Edgerton,3.94,0441092756,9780441092758,eng,278,89,4,2/1/1993,Ace +16669,China and Japan (Myths and Legends),Donald A. Mackenzie,3.52,0517604469,9780517604465,eng,404,23,3,3/27/1988,Crescent +16670,A Madman Dreams of Turing Machines,Janna Levin,3.68,1400040302,9781400040308,eng,230,1136,180,8/22/2006,Alfred A. Knopf +16675,Turing and the Universal Machine: The Making of the Modern Computer,Jon Agar/Jon Turney,3.33,1840462507,9781840462500,eng,153,56,6,4/23/1997,Totem Books +16677,Ad Infinitum... The Ghost in Turing's Machine: Taking God Out of Mathematics and Putting the Body Back In. An Essay in Corporeal Semiotics,Brian Rotman,4.06,0804721289,9780804721288,en-US,224,17,2,9/1/1993,Stanford University Press +16681,Heart of Darkness,Joseph Conrad,3.42,1599869500,9781599869506,eng,101,1363,58,9/24/2006,Filiquarian Publishing LLC. +16682,Rocket Ship Galileo (Heinlein's Juveniles #1),Robert A. Heinlein,3.71,044101237X,9780441012374,eng,211,6329,145,12/28/2004,Ace +16683,Tunnel in the Sky (Heinlein's Juveniles #9),Robert A. Heinlein,3.94,1416505512,9781416505518,eng,262,10249,356,4/1/2005,Pocket Books +16685,The Cat Who Walks Through Walls (The World As Myth),Robert A. Heinlein,3.70,0441094996,9780441094998,en-US,388,19427,572,6/1/1988,Ace Books +16686,The Fantasies of Robert A. Heinlein,Robert A. Heinlein,3.90,0312875576,9780312875572,en-US,342,788,45,5/17/2002,Tor Books +16689,Citizen of the Galaxy,Robert A. Heinlein,3.99,1416505520,9781416505525,eng,288,11800,413,5/1/2005,Pocket Books: Gallery Books +16690,The Moon is a Harsh Mistress,Robert A. Heinlein,4.17,0340837942,9780340837948,eng,288,93782,2466,3/14/2005,Hodder & Stoughton +16692,Roverandom,J.R.R. Tolkien/Wayne G. Hammond/Christina Scull,3.87,0395957990,9780395957998,eng,128,471,70,6/30/1999,Houghton Mifflin Harcourt +16697,The Mysteries of Pittsburgh,Michael Chabon,3.64,0060790598,9780060790592,eng,320,21823,1518,7/5/2005,Harper Perennial +16702,Summerland,Michael Chabon,3.55,0786816155,9780786816156,eng,500,619,69,3/1/2004,Miramax +16703,The Yiddish Policemen's Union,Michael Chabon,3.71,0007149824,9780007149827,eng,414,53300,5699,5/1/2007,HarperCollins +16710,The Toy Maker: The Life and Times of Inventor Frank Hornby,Anthony Mcreavy,3.00,0091895812,9780091895815,eng,352,1,1,8/1/2004,Ebury Press +16713,The Disappointment Artist,Jonathan Lethem,3.63,1400076811,9781400076819,eng,149,1613,129,3/14/2006,Vintage +16716,The Wall of the Sky the Wall of the Eye,Jonathan Lethem,3.67,0156032481,9780156032483,eng,304,1158,95,3/5/2007,Mariner Books +16717,You Don't Love Me Yet,Jonathan Lethem,2.81,038551218X,9780385512183,eng,225,3854,547,5/29/2007,Doubleday Books +16718,Gun With Occasional Music,Jonathan Lethem,3.77,0156028972,9780156028974,eng,271,8141,786,9/1/2003,Mariner Books +16720,As She Climbed Across the Table,Jonathan Lethem,3.67,0375700129,9780375700125,eng,212,4488,380,2/24/1998,Vintage +16721,Living With the Passive-Aggressive Man,Scott Wetzler,4.03,0671870742,9780671870744,en-US,208,208,30,10/1/1993,Touchstone +16726,Cypress Gardens (Images of America: Florida),Mary M. Flekke/Sarah E. MacDonald/Randall M. MacDonald,3.00,073854339X,9780738543390,eng,128,5,1,11/27/2006,Arcadia Publishing (SC) +16728,The Organized Student: Teaching Children the Skills for Success in School and Beyond,Donna Goldberg/Jennifer Zwiebel,3.82,0743270207,9780743270205,en-US,246,222,26,7/5/2005,Touchstone +16729,Beach Music,Pat Conroy,4.15,0553381539,9780553381535,eng,592,38496,2450,3/26/2002,Dial Press +16734,Der Gesang Des Meeres. Beach Music,Pat Conroy,4.15,340412801X,9783404128013,ger,894,7,2,4/1/1998,Lübbe +16735,The Prince of Tides,Pat Conroy,4.24,0553381547,9780553381542,eng,679,178717,3473,3/26/2002,Dial Press Trade Paperback +16739,Blessings,Belva Plain,3.91,0440243254,9780440243250,eng,393,2562,39,9/15/2010,Dell +16761,Seven Complete Perry Mason Novels - The Case Of: The Foot-Loose Doll / The Glamorous Ghost / The Long-Legged Models / The Lucky Loser The Screaming Woman / The Terrified Typist / The Waylaid Wolf,Erle Stanley Gardner,4.01,0517293633,9780517293638,eng,821,76,6,7/19/1994,Random House Value Publishing +16763,The Case of the Glamorous Ghost (Perry Mason),Erle Stanley Gardner,3.89,0345437861,9780345437860,eng,232,604,35,2/29/2000,Fawcett Books +16767,The Case of the Half-Wakened Wife,Erle Stanley Gardner,3.88,034537147X,9780345371478,eng,245,435,23,3/13/1991,Fawcett +16776,I Dreamed I Married Perry Mason (A Cece Caruso Mystery #1),Susan Kandel,3.47,0060581069,9780060581060,eng,280,788,104,3/29/2005,Avon +16779,The Case of the Terrified Typist (Perry Mason #49),Erle Stanley Gardner,3.75,034591483X,9780345914835,eng,154,591,31,7/1/1999,Ballantine Books +16782,The Case of the Curious Bride (Perry Mason Mystery),Erle Stanley Gardner,3.87,0345437837,9780345437839,eng,192,1559,61,1/4/2000,Fawcett +16788,Fragile Things: Short Fictions and Wonders,Neil Gaiman,4.00,0060515228,9780060515225,eng,360,45473,2540,9/26/2006,William Morrow +16789,The Good Fairies of New York,Martin Millar/Neil Gaiman,3.51,1933368365,9781933368368,eng,242,4343,563,9/8/2006,Soft Skull Press +16790,Smoke and Mirrors: Short Fiction and Illusions,Neil Gaiman,4.04,0380789027,9780380789023,eng,365,53464,1906,8/30/2005,Avon Books +16791,Death: The High Cost of Living,Neil Gaiman/Chris Bachalo/Mark Buckingham/Tori Amos,4.19,1852864982,9781852864989,eng,104,38276,462,6/9/1994,Titan Books +16793,Stardust,Neil Gaiman,4.08,0061142026,9780061142024,eng,248,283274,11746,8/29/2006,Harper Perennial +16794,The Facts in the Case of the Departure of Miss Finch,Neil Gaiman/Michael Zulli,3.54,1593076673,9781593076672,eng,51,2038,198,4/1/2008,Dark Horse Books +16798,The Diagnosis,Alan Lightman,2.86,0375725504,9780375725500,eng,384,898,123,2/19/2002,Vintage +16799,The Best American Science Writing 2002,Matt Ridley/Jesse Cohen/Alan Lightman/Joseph D'Agnese,3.85,0060936509,9780060936501,eng,352,67,7,9/3/2002,Harper Perennial +16802,The Complete Poetry,John Milton/John T. Shawcross,4.06,0385023510,9780385023511,en-US,672,3418,20,7/6/1971,Anchor +16803,The Complete Poems and Major Prose,John Milton/Merritt Y. Hughes,4.18,0872206785,9780872206786,eng,1088,914,22,7/1/2003,Hackett Publishing Company Inc. +16806,The Man and the Author: John Milton: Twentieth Century Perspectives,J. Martin Evans,0.00,0415940478,9780415940474,eng,386,0,0,11/8/2002,Routledge +16807,The Major Works,John Milton/Jonathan Goldberg/Stephen Orgel,4.24,019280409X,9780192804099,eng,1008,285,12,4/3/2003,Oxford University Press +16809,Christopher and His Kind,Christopher Isherwood,4.11,0816638632,9780816638635,eng,352,2261,88,9/18/2001,Univ Of Minnesota Press +16813,The Condor And The Cows: A South American Travel Diary,Christopher Isherwood/William Caskey/Jeffrey Meyers,3.80,0816639825,9780816639823,eng,248,45,9,11/10/2003,Univ Of Minnesota Press +16842,A Single Man,Christopher Isherwood,4.10,0816638624,9780816638628,eng,192,17451,1029,3/20/2001,Univ Of Minnesota Press +16844,Christopher et son monde 1929-1939,Christopher Isherwood,4.11,2010080874,9782010080876,fre,343,1,0,4/1/1981,Hachette Littérature +16857,The Love of the Last Tycoon,F. Scott Fitzgerald,3.65,0020199856,9780020199854,eng,169,7135,386,4/14/1995,Scribner +16874,About This Life,Barry Lopez,4.13,186046565X,9781860465659,eng,304,595,56,5/1/1999,The Harvill Press +16878,Arctic Dreams,Barry Lopez,4.21,0375727485,9780375727481,eng,496,5155,333,10/2/2001,Vintage +16879,Field Notes: The Grace Note of the Canyon Wren,Barry Lopez,4.13,1400075122,9781400075126,eng,176,323,19,6/8/2004,Vintage +16881,The Rediscovery of North America,Barry Lopez,4.06,0679740996,9780679740995,eng,64,245,37,9/1/1992,Vintage +16886,Deadly Feasts: Tracking the Secrets of a Terrifying New Plague,Richard Rhodes,4.00,0684844257,9780684844251,eng,272,1121,76,5/22/1998,Simon Schuster +16887,How to Write: Advice and Reflections,Richard Rhodes,3.87,0688149480,9780688149482,eng,240,162,19,10/16/1996,William Morrow Paperbacks +16888,John James Audubon,Richard Rhodes,4.13,037571393X,9780375713934,eng,528,460,65,4/11/2006,Vintage +16891,Masters of Death: The SS-Einsatzgruppen and the Invention of the Holocaust,Richard Rhodes,4.05,0375708227,9780375708220,en-US,335,1864,93,12/18/2003,Vintage +16892,A Hole in the World: An American Boyhood,Richard Rhodes,3.90,0700610383,9780700610389,eng,288,182,24,4/26/2000,University Press of Kansas +16893,The Crack-Up,F. Scott Fitzgerald/Edmund Wilson,3.92,0811212475,9780811212472,eng,347,2477,133,4/30/2003,New Directions Publishing Corporation +16894,Walden & Resistance to Civil Government (Critical Edition),Owen Thomas/William John Rossi/Henry David Thoreau/William Rossi,3.95,0393959058,9780393959055,eng,482,233,23,8/19/1992,W.W. Norton & Company +16895,Collected Essays and Poems,Henry David Thoreau/Elizabeth Hall Witherell,4.22,1883011957,9781883011956,eng,703,328,9,4/23/2001,Library of America +16897,The Portable Thoreau,Henry David Thoreau/Carl Bode,4.18,0140150315,9780140150315,eng,698,666,28,1/27/1977,Penguin Books +16898,True Harvest: Readings From Henry David Thoreau For Every Day Of The Year,Henry David Thoreau/Barry M. Andrews,4.75,1558964908,9781558964907,eng,304,8,2,10/7/2005,Skinner House Books +16900,Civil Disobedience and Other Essays,Henry David Thoreau,4.06,1420925229,9781420925227,eng,188,13736,189,1/1/2005,Digireads.com +16902,Walden,Henry David Thoreau,3.79,0691096120,9780691096124,eng,352,128351,3652,4/18/2004,Princeton University Press +16908,Interrupted Music: The Making of Tolkien's Mythology,Verlyn Flieger,4.21,0873388240,9780873388245,eng,192,131,8,3/31/2005,Kent State University Press +16914,The Tolkien Fan's Medieval Reader,David E. Smith (Turgon of TheOneRing.net, one of the founding members of this Tolkien website)/Verlyn Flieger/Turgon (=David E. Smith),3.58,1593600119,9781593600112,eng,400,26,4,4/6/2004,Cold Spring Press +16918,Touchy and Feely (Sissy Sawyer #1),Graham Masterton,3.37,072789160X,9780727891600,eng,208,86,12,2/1/2007,Severn House Publishers +16919,Prey,Graham Masterton,3.83,0843946334,9780843946338,eng,352,812,51,11/1/1999,Leisure Books +16920,Hidden World,Graham Masterton,3.47,0727859625,9780727859624,eng,182,58,5,3/1/2003,Severn House Publishers +16921,The House That Jack Built,Graham Masterton,3.88,0843947462,9780843947465,eng,385,1596,64,6/1/2000,Leisure Books +16928,The Riverside Milton,John Milton/Roy C. Flannagan,4.26,0395809991,9780395809990,eng,1248,772,19,3/9/1998,Cengage Learning +16940,How to Read a Poem,Terry Eagleton,3.73,1405151412,9781405151412,eng,182,445,44,10/20/2006,Wiley-Blackwell +16944,The Gatekeeper: A Memoir,Terry Eagleton,3.78,0312316135,9780312316136,eng,192,96,10,6/2/2003,St. Martin's Griffin +16946,The Ideology of the Aesthetic,Terry Eagleton,4.11,0631163026,9780631163022,eng,432,265,13,1/8/1991,Basil Blackwell (Cambridge MA/Oxford) +16947,Marxism and Literary Criticism,Terry Eagleton,3.89,0415285844,9780415285841,eng,84,646,33,6/13/2002,Routledge +16948,Children of God (The Sparrow #2),Mary Doria Russell,4.06,044900483X,9780449004838,eng,451,15158,1417,2/2/1999,Ballantine Books +16951,When the Lion Feeds (Courtney #1),Wilbur Smith,4.19,0312940661,9780312940669,eng,544,10311,350,10/3/2006,St. Martin's Paperbacks +16954,Birds of Prey (Courtney #9),Wilbur Smith,4.19,0312317115,9780312317119,eng,560,8082,191,5/16/2003,St. Martin's Griffin +16961,Alberic the Wise,Norton Juster/Leonard Baskin,3.73,0887082432,9780887082436,eng,24,103,9,9/1/1992,Picture Book Studio Ltd +16963,The Hello Goodbye Window,Norton Juster/Chris Raschka,3.87,0786809140,9780786809141,en-US,32,8898,1311,4/26/2005,Little Brown Books for Young Readers +16965,The Dot and the Line: A Romance in Lower Mathematics,Norton Juster,4.34,0394733525,9780394733524,eng,62,57,6,2/12/1977,Random House +16966,Le Royaume fantôme,Norton Juster,4.21,2013218478,9782013218474,fre,251,3,1,1/15/2003,Hachette Jeunesse +16967,1632,Eric Flint,4.04,1416532811,9781416532811,eng,597,8406,638,6/15/2006,Baen Books +16968,Lützen 1632 : climax of the Thirty Years war,Richard Brzezinski/Graham Turner,3.56,1855325527,9781855325524,eng,96,15,1,2/25/2001,Osprey Publishing +16982,Marvels,Kurt Busiek/Alex Ross,4.22,0785100490,9780785100492,eng,216,23519,482,1/10/2007,Marvel Comics +16986,Marvels,Kurt Busiek/Alex Ross,4.22,0785113886,9780785113881,eng,398,146,25,1/1/2004,Marvel Comics Group +16987,Superman: Back in Action,Kurt Busiek/Fabian Nicieiza/Len Wein/Gerry Conway/Pete Woods/José Luis García-López,3.21,1401212638,9781401212636,en-US,144,140,12,1/31/2007,DC Comics +16989,Spider-Man: Saga of the Sandman,Stan Lee/Roy Thomas/Tom DeFalco/Kurt Busiek/Steve Ditko/Jack Kirby/Herb Trimpe/Ross Andru,3.43,0785124977,9780785124979,eng,176,46,5,3/21/2007,Marvel +16991,Superman: Up Up and Away!,Kurt Busiek/Geoff Johns/Pete Woods/Renato Guedes,3.94,1401209548,9781401209544,eng,192,1681,51,9/27/2006,DC Comics +16992,Kingdom Come,Mark Waid/Alex Ross/Elliot S. Maggin,4.25,1563893304,9781563893308,eng,231,47513,1000,10/1/1997,DC Comics +16993,Fantastic Four Volume 2,Mark Waid/Mike Wieringo/Howard Porter,3.92,078511775X,9780785117759,eng,264,96,8,3/16/2005,Marvel Comics Group +16994,The Flash: Dead Heat,Mark Waid/Oscar Jimenez/Humberto Ramos/José Marzán Jr./Wayne Faucher,3.93,1563896230,9781563896231,eng,144,216,10,8/1/2000,DC Comics +16995,Fantastic Four Volume 3,Mark Waid/Mike Wieringo,3.95,0785120114,9780785120117,eng,256,118,5,11/23/2005,Marvel Comics Group +16996,Underworld Unleashed,Mark Waid/Scott Peterson/Howard Porter/Dennis Janke/Phil Jimenez/J.H. Williams III/John Stokes/Mick Gray/Dan Green,3.12,1563894475,9781563894473,eng,176,111,6,4/1/1998,DC Comics +16999,Fantastic Four Vol 5: Disassembled,Mark Waid/Paco Medina,3.28,0785115366,9780785115366,eng,136,192,13,1/1/2005,Marvel Comics Group +17005,Devilish,Maureen Johnson,3.46,1595140603,9781595140609,eng,263,4782,463,9/7/2006,Razorbill +17007,The Devilish Pleasures of a Duke (Boscastle #6),Jillian Hunter,3.99,0345487621,9780345487629,eng,345,938,46,7/31/2007,Ballantine Books +17011,A Devilish Dilemma,Judith A. Lansdowne,4.02,0821758268,9780821758267,eng,288,54,6,1/1/1998,Zebra +17015,Paranoid Park,Blake Nelson,3.63,0670061182,9780670061181,en-US,180,1109,145,9/21/2006,Viking Books +17018,Notes on a Scandal,Zoë Heller,3.71,0141012250,9780141012254,eng,244,1154,149,3/4/2004,Penguin +17020,13 Little Blue Envelopes (Little Blue Envelope #1),Maureen Johnson,3.64,0060541431,9780060541439,eng,322,70689,4067,12/21/2010,HarperCollins Publishers +17022,My Ishmael (Ishmael #3),Daniel Quinn,4.07,0553379658,9780553379655,eng,293,8654,412,10/6/1998,Bantam +17026,Ishmael (Star Trek: The Original Series #23),Barbara Hambly,3.93,0671743554,9780671743550,eng,256,1485,85,9/1/1991,Pocket Books +17027,Mumbo Jumbo,Ishmael Reed/Gérard H. Durand,3.82,2879291488,9782879291482,fre,292,34,1,1/5/1998,Éditions de L'Olivier +17030,Flatland,Edwin A. Abbott/Rosemary Jann,3.82,0192805983,9780192805980,eng,176,314,43,9/1/2006,Oxford University Press +17031,Flatland,Edwin A. Abbott/Ian Stewart,3.82,190398517X,9781903985175,eng,272,14,2,3/6/2002,Basic Books +17032,Flatland: A Romance of Many Dimensions,Edwin A. Abbott,3.82,1406503436,9781406503432,eng,100,11,1,1/16/2006,Dodo Press +17035,Flatland: A Romance of Many Dimensions,Edwin A. Abbott,3.82,1419120026,9781419120022,eng,64,4,0,6/17/2004,Kessinger Publishing +17039,Flatterland,Ian Stewart,3.71,0330393774,9780330393775,eng,295,24,3,3/7/2003,Pan Publishing +17040,American Government: Continuity and Change,Karen O'Connor/Larry J. Sabato,2.83,0321209184,9780321209184,eng,792,1,0,3/4/2005,Longman Publishing Group +17043,Essentials of American Government: Continuity and Change,Karen O'Connor/Larry J. Sabato,3.50,032127623X,9780321276230,eng,604,4,0,4/1/2005,Longman Publishing Group +17045,American Government: Continuity and Change Texas Edition,Karen O'Connor/Larry J. Sabato,2.83,0321365607,9780321365606,eng,1088,0,0,5/26/2005,Longman Publishing Group +17054,Stardust of Yesterday (de Piaget #9; de Paiget/MacLeod #1),Lynn Kurland,4.09,042518238X,9780425182383,eng,368,3709,169,4/1/2001,Berkley Publishing +17056,Moonage Daydream: The Life & Times of Ziggy Stardust,David Bowie/Mick Rock,4.30,0789313502,9780789313508,eng,320,450,17,9/20/2005,Universe +17057,From Sawdust to Stardust: The Biography of DeForest Kelley,Terry Lee Rioux,4.08,0743457625,9780743457620,eng,362,185,36,2/1/2005,Gallery Books +17059,The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide #1),Douglas Adams,4.22,1400052939,9781400052936,eng,271,212,18,10/19/2004,Crown Publishing Group (NY) +17061,Coraline,Neil Gaiman/Dave McKean,4.06,0061139378,9780061139376,eng,162,403622,13096,8/29/2006,William Morrow Paperbacks +17067,Jurassic Park Institute Dinosaur Field Guide,Michael K. Brett-Surman/Thomas R. Holtz Jr./Bob Walters,4.15,0375812938,9780375812934,en-US,160,2,1,6/12/2001,Random House Children's Books +17075,Lost World of Agharti: The Mystery of Vril Power,Alec MacLellan,3.84,0285633147,9780285633148,eng,232,24,0,3/21/1996,Souvenir Press +17085,I Am the Blues: The Willie Dixon Story,Willie Dixon/Don Snowden,4.02,0306804158,9780306804151,en-US,264,61,13,8/22/1990,Da Capo Press +17098,Isaac Newton,James Gleick,3.84,1400032954,9781400032952,eng,288,5495,324,6/8/2004,Vintage +17112,Things Fall Apart: An Adapted Classic,Chinua Achebe,3.66,0130235016,9780130235015,eng,113,43,0,4/17/2000,Globe +17116,The Stranger,Albert Camus/Stuart Gilbert,3.98,0394700023,9780394700021,en-US,154,1493,184,9/12/1954,Vintage +17118,Having Our Say: The Delany Sisters' First 100 Years,Emily Mann/Sarah L. Delany/A. Elizabeth Delany/Amy Hill Hearth,4.02,0822215020,9780822215028,eng,62,81,9,3/1/1996,Dramatists Play Service +17122,Retrospective 1964-1984,H.R. Giger/Kathi Christen/Adrienne Theimer/Ernst Fuchs,4.35,1883398290,9781883398293,eng,112,115,4,11/4/1997,Morpheus International +17123,Handmaid's Tale,Margaret Atwood,4.11,0860688666,9780860688662,eng,324,400,35,4/14/1994,Virago Press Ltd +17125,One Day in the Life of Ivan Denisovich,Aleksandr Solzhenitsyn/H.T. Willetts,3.95,0374529523,9780374529529,eng,182,73577,2521,3/16/2005,Farrar Straus and Giroux +17133,The Two-Mile Time Machine: Ice Cores Abrupt Climate Change and Our Future,Richard B. Alley,3.98,0691102961,9780691102962,eng,229,143,18,7/21/2002,Princeton University Press +17142,Collected Essays: Notes of a Native Son / Nobody Knows My Name / The Fire Next Time / No Name in the Street / The Devil Finds Work / Other Essays,James Baldwin/Toni Morrison,4.61,1883011523,9781883011529,eng,869,1495,75,2/1/1998,Library of America (NY) +17149,Love and Louis XIV: The Women in the Life of the Sun King,Antonia Fraser,3.90,0385509847,9780385509848,eng,388,5680,216,3/20/2007,Nan A. Talese +17150,My Ántonia (Great Plains Trilogy #3),Willa Cather,3.79,1583485090,9781583485095,eng,232,91539,4662,2/20/2000,New Millennium Library +17151,Marie Antoinette: The Journey,Antonia Fraser,3.93,0385489498,9780385489492,eng,512,1102,154,11/12/2002,Anchor +17152,My Antonia (Great Plains trilogy #3),Willa Cather/Alyssa Harad,3.79,0743487699,9780743487696,eng,314,5985,507,3/4/2009,Pocket Books +17153,The Bush Agenda: Invading the World One Economy at a Time,Antonia Juhasz,4.05,0060846879,9780060846879,eng,400,52,6,4/25/2006,William Morrow +17157,Marie Antoinette: The Journey,Antonia Fraser,3.93,0307277747,9780307277749,eng,512,27291,809,9/12/2006,Anchor Books +17158,Don Quixote: The Ormsby Translation Revised Backgrounds and Sources Criticism,Miguel de Cervantes Saavedra/John Ormsby,3.87,0393090183,9780393090185,eng,1003,56,9,11/1/1980,W. W. Norton & Company +17170,A Tale of Two Cities,Charles Dickens/Gillen D'Arcy Wood,3.84,1593083327,9781593083328,en-GB,409,301,44,10/21/2004,Barnes Noble Classics +17174,A Yellow Raft in Blue Water,Michael Dorris,3.86,0312421850,9780312421854,en-US,372,16190,897,3/5/2003,Picador USA +17176,The Sound and the Fury,William Faulkner,3.86,0679600175,9780679600176,eng,368,518,80,9/5/1992,Modern Library +17178,The Sound and the Fury: An Authoritative Text Backgrounds and Contexts Criticism,William Faulkner/David Minter/Noel Polk/Ben Wasson/C. Vann Woodward/Robert Penn Warren/Richard H. King/Jean-Paul Sartre/Irving Howe/Ralph Ellison,3.86,0393964817,9780393964813,eng,446,1020,126,12/17/1993,W. W. Norton & Company +17179,The Sound and the Fury,William Faulkner/Grover Gardner,3.86,0739325353,9780739325353,eng,9,138,37,7/6/2005,Random House Audio +17181,CliffsNotes on Faulkner's The Sound and the Fury (Cliffs Notes),James Lamar Roberts/William Faulkner/CliffsNotes,3.74,0822012197,9780822012191,en-GB,72,30,9,10/3/1963,Cliffs Notes +17184,The Invisible Man,H.G. Wells,3.64,0451528522,9780451528520,eng,192,109551,3892,9/3/2002,Signet Classics +17185,The Invisible Man,H.G. Wells,3.64,0812504674,9780812504675,eng,178,313,39,9/15/1992,Aerie +17188,Invisible Man,Ralph Ellison,3.86,0679723137,9780679723134,eng,581,334,44,1/12/1990,Vintage +17189,The Invisible Man,H.G. Wells/Christopher Priest,3.64,014143998X,9780141439983,eng,161,871,84,3/31/2005,Penguin Classics +17202,To Sail Beyond the Sunset,Robert A. Heinlein,3.87,0399132678,9780399132674,eng,416,98,6,7/7/1987,G.P. Putnam's Sons +17204,The Friday Night Knitting Club (Friday Night Knitting Club #1),Kate Jacobs,3.42,0399154094,9780399154096,eng,352,64473,7744,1/18/2007,G.P. Putnam's Sons +17206,Lady Friday (The Keys to the Kingdom #5),Garth Nix,3.92,0439700884,9780439700887,eng,320,19436,267,3/1/2007,Scholastic +17208,Friday,Robert A. Heinlein,3.84,0345414004,9780345414007,eng,384,23064,476,6/17/1997,Del Rey +17214,Starship Troopers,Robert A. Heinlein,4.01,0441783589,9780441783588,eng,335,164740,3962,5/15/1987,Ace Book +17215,Starship Troopers,Robert A. Heinlein,4.01,0441014100,9780441014101,eng,280,1100,165,6/27/2006,Ace +17216,Starship Troopers,Robert A. Heinlein,4.01,1568654308,9781568654300,eng,205,172,20,8/1/1997,Ace/SFBC +17224,The Diamond Color Meditation: Color Pathway to the Soul,John Diamond,5.00,1890995525,9781890995522,eng,74,5,3,2/1/2006,Square One Publishers +17228,Zodiac,Neal Stephenson/Jean-Pierre Pugi,3.72,2207252647,9782207252642,fre,391,65,0,4/9/2002,Denoël +17230,Sirens and Sea Monsters (Tales from the Odyssey #3),Mary Pope Osborne/Homer/Troy Howell,4.04,0786809302,9780786809301,en-US,112,371,22,8/18/2003,Disney-Hyperion +17233,The Scarlet Letter,Nathaniel Hawthorne,3.40,1419542206,9781419542206,eng,553,23,4,11/1/2006,Kaplan +17236,Dracula,Bram Stoker/Jan Needle/Gary Blythe,3.99,0744586534,9780744586534,eng,336,73,8,10/4/2004,Walker Books Ltd +17238,Dracula,Bram Stoker/Joseph Valente,3.99,0743477367,9780743477369,eng,528,9871,431,10/1/2003,Pocket Books +17241,Dracula,Bram Stoker/Robert Whitfield,3.99,0786180404,9780786180400,eng,15,53,12,12/1/1998,Blackstone Audiobooks +17243,The Bram Stoker Bedside Companion: 10 Stories by the Author of Dracula,Bram Stoker/Charles Osborne,3.44,0800809637,9780800809638,eng,224,21,2,6/1/1973,Taplinger Publ. Company +17245,Dracula,Bram Stoker/Nina Auerbach/David J. Skal,3.99,0393970124,9780393970128,eng,488,774987,14944,5/12/1986,Norton +17246,Macbeth,William Shakespeare/Paul Werstine/Barbara A. Mowat,3.90,0743482794,9780743482790,eng,272,522,35,8/1/2004,Simon Schuster +17247,Macbeth (No Fear Shakespeare),William Shakespeare/SparkNotes/John Crowther,3.90,1586638467,9781586638467,eng,219,1292,138,4/15/2003,SparkNotes +17248,Death of a Dreamer (Hamish Macbeth #22),M.C. Beaton,3.83,0892967897,9780892967896,eng,247,73,12,2/1/2006,Mysterious Press +17250,The Crucible,Arthur Miller/Christopher Bigsby,3.58,0142437336,9780142437339,eng,143,293374,6037,3/25/2003,Penguin Books +17252,Crucible of War: The Seven Years' War and the Fate of Empire in British North America 1754 - 1766,Fred Anderson,4.16,0375706364,9780375706363,eng,912,3103,114,1/23/2001,Vintage +17253,Spock: The Fire and the Rose (Star Trek: Crucible #2),David R. George III,3.96,0743491696,9780743491693,eng,390,206,14,11/28/2006,Pocket Books +17255,McCoy: The Provenance Of Shadows (Star Trek: Crucible #1),David R. George III,4.14,0743491688,9780743491686,eng,640,332,38,8/29/2006,Pocket Books +17259,Kirk: The Star to Every Wandering (Star Trek: Crucible #3),David R. George III,3.69,074349170X,9780743491709,eng,320,183,16,2/27/2007,Star Trek +17263,Mr Tompkins in Paperback (Canto),George Gamow/Roger Penrose,4.19,0521447712,9780521447713,en-US,202,580,49,3/26/1993,Cambridge University Press +17265,Thirty Years that Shook Physics: The Story of Quantum Theory,George Gamow,4.19,048624895X,9780486248950,eng,224,958,28,7/1/1985,Dover Publications +17267,The Great Divorce,C.S. Lewis,4.28,0006280560,9790007672386,eng,160,87527,3867,2/1/2002,HarperCollins +17271,The Metaphysics of Star Trek,Richard Hanley,3.82,0465091245,9780465091249,eng,253,306,11,7/9/1997,Basic Books +17275,The Very Best of the Feynman Lectures,Richard P. Feynman,4.18,0465099009,9780465099009,eng,180,123,21,10/4/2005,Basic Books +17276,The Feynman Lectures on Physics Vols 3-4,Richard P. Feynman,4.71,0738209252,9780738209258,en-US,0,21,0,5/12/2004,Basic Books +17277,The Feynman Lectures on Physics Vols 7-8,Richard P. Feynman,4.80,0738209279,9780738209272,en-US,0,20,0,1/3/2006,Basic Books +17279,The Feynman Lectures on Physics Vols 5-6,Richard P. Feynman,4.59,0738202835,9780738202839,en-US,12,22,0,11/3/2004,Basic Books +17280,The Feynman Lectures on Physics Vol 3,Richard P. Feynman/Robert B. Leighton/Matthew L. Sands,4.63,0805390499,9780805390490,eng,384,716,15,9/1/2005,Addison Wesley Publishing Company +17289,Galactic Goodnight (Disney's Little Einsteins),Susan Ring/Kirk Albert Etienne,4.42,0786849738,9780786849734,eng,20,12,2,9/1/2006,Disney Press +17290,What Einstein Told His Cook: Kitchen Science Explained,Robert L. Wolke/Marlene Parrish,3.86,0393011836,9780393011838,eng,320,3176,366,5/17/2002,W. W. Norton Company +17292,Mission: Where's June? (Disney's Little Einstein),Susan Ring/Kirk Albert Etienne/Kirk Etienne Albert/Michael James Luzzi,4.50,0786855398,9780786855391,eng,24,12,1,4/5/2006,Disney Press +17293,Babies (Baby Einstein),Julie Aigner-Clark,4.00,0786808381,9780786808380,eng,20,31,2,4/2/2002,Disney Press +17294,Butterfly Suits (Disney's Little Einsteins),Marcy Kelman/Nadeem Zaidi/Andy Mastrocinque,3.68,078685538X,9780786855384,eng,32,26,4,9/1/2006,Disney Press +17295,Birthday Machine (Disney's Little Einsteins Early Reader),Susan Ring/Anna Okabe,4.29,0786849711,9780786849710,eng,12,21,2,9/1/2006,Disney Press +17296,Music of the Meadow (Little Einsteins Early Reader),Susan Ring/Kelly Preston/Katie Nix,3.70,0786855371,9780786855377,eng,28,26,1,9/1/2006,Disney Press +17297,1912 Manuscript on the Special Theory of Relativity,Albert Einstein/Hanoch Gutfreund,4.41,0807615323,9780807615324,eng,174,17,0,5/17/2004,George Braziller Inc. +17303,Piercing the Darkness (Darkness #2),Frank E. Peretti,4.32,1581345275,9781581345278,eng,448,50573,588,6/26/2003,Crossway Books +17309,This Present Darkness (Darkness #1),Frank E. Peretti,4.22,1581345283,9781581345285,eng,376,86548,1637,6/26/2003,Crossway Books +17313,The Oath,Frank E. Peretti,4.07,1595540458,9781595540454,eng,576,32,4,8/28/2005,Thomas Nelson +17315,Oath of Swords (War God #1),David Weber,4.01,1416520864,9781416520863,en-US,576,5582,128,12/26/2006,Baen +17316,Oath of Gold (The Deed of Paksenarrion #3),Elizabeth Moon,4.27,0671697986,9780671697983,eng,501,6200,183,1/2/1989,Baen +17319,The Oath (Dismas Hardy #8),John Lescroart,4.02,0451207645,9780451207647,eng,468,2781,133,1/7/2003,Signet +17320,Wind Rider's Oath (War God #3),David Weber,4.02,1416508953,9781416508953,eng,570,2774,42,8/1/2005,Baen +17323,A Visitation of Spirits,Randall Kenan,3.76,0375703977,9780375703973,eng,272,449,38,1/25/2000,Vintage +17328,Open My Eyes Lord: A Practical Guide to Angelic Visitations and Heavenly Experiences,Gary Oates/Robert Paul Lamb/Randy Clark,4.31,0975262203,9780975262207,eng,148,126,7,1/1/2004,Open Heaven Publications +17334,The Complete C.S. Lewis Signature Classics,C.S. Lewis,4.61,0061208493,9780061208492,eng,746,925,40,2/6/2007,HarperOne +17341,The Collected Letters of C.S. Lewis Volume 3: Narnia Cambridge and Joy 1950 - 1963,C.S. Lewis/Walter Hooper,4.47,0060819227,9780060819224,eng,1840,144,16,1/9/2007,HarperOne +17344,Till We Have Faces: A Myth Retold,C.S. Lewis/Nadia May,4.19,0786198389,9780786198382,eng,9,60,17,9/1/2000,Blackstone Publishing +17349,The Demon-Haunted World: Science as a Candle in the Dark,Carl Sagan/Ann Druyan,4.27,0345409469,9780345409461,eng,459,50343,2084,2/25/1997,Ballantine Books +17352,Stephen Hawking's a Brief History of Time: A Reader's Companion,Stephen Hawking/Gene Stone,4.08,0553077724,9780553077728,eng,194,351,18,5/1/1992,Bantam Books +17355,The Illustrated A Brief History of Time,Stephen Hawking,4.17,0593040597,9780593040591,eng,259,317,38,10/1/1997,Bantam +17356,Brevísima historia del tiempo,Stephen Hawking/Leonard Mlodinow/David Jou i Mirabent,4.22,8484326373,9788484326373,spa,198,64,4,3/8/2005,Critica (Grijalbo Mondadori) +17360,A First Course in String Theory,Barton Zwiebach,4.16,0521831431,9780521831437,eng,578,189,8,6/28/2004,Cambridge University Press +17362,Black Holes & Time Warps: Einstein's Outrageous Legacy,Kip S. Thorne/Stephen Hawking/Frederick Seitz,4.18,0393312763,9780393312768,eng,624,10216,165,1/17/1995,W. W. Norton Company +17364,Surely You're Joking Mr. Feynman!,Richard P. Feynman,4.28,009917331X,9780099173311,eng,350,1837,178,12/17/2006,Vintage +17366,Surely You're Joking Mr. Feynman!: Adventures of a Curious Character,Richard P. Feynman/Raymond Todd,4.28,0786177284,9780786177288,eng,356,74,16,1/1/1997,Blackstone Audiobooks +17375,The Meaning of It All: Thoughts of a Citizen-Scientist,Richard P. Feynman,4.05,0465023940,9780465023943,eng,144,5907,290,4/6/2005,Basic Books +17384,Amor Y Respeto/love And Respect: El Respeto Que El Desesperadamente Necesita/ The Love She Most Desires And The Respect He Desperately Needs,Emerson Eggerichs,4.18,1591855101,9781591855101,spa,292,13,0,5/6/2005,Casa Creacion +17412,Chemistry: The Central Science,Theodore L. Brown/H. Eugene LeMay Jr./Bruce E. Bursten,3.88,0130669970,9780130669971,eng,1046,539,16,5/17/2002,Prentice Hall +17426,Introduction to Linear Algebra and Differential Equations,John W. Dettman,3.50,0486651916,9780486651910,eng,404,17,0,12/1/1986,Dover Publications +17435,Physics for Scientists and Engineers,Douglas C. Giancoli,4.01,0132431068,9780132431064,en-US,976,110,10,1/20/2000,Prentice Hall +17437,Physics: for Scientists and Engineers with Modern Physics,Paul M. Fishbane/Stephen Gasiorowicz/Stephen T. Thornton,3.78,0130352993,9780130352996,eng,1440,9,1,6/9/2004,Benjamin-Cummings Publishing Company +17461,Misty of Chincoteague (Misty #1),Marguerite Henry/Wesley Dennis,4.05,1416927832,9781416927839,eng,176,38024,907,12/26/2006,Aladdin +17468,Black Beauty,Anna Sewell/Scott McKowen,3.96,1402714521,9781402714528,en-US,208,738,74,10/1/2004,Sterling +17473,Black Beauty (Coloring Book),Anna Sewell/John Green,3.96,048629272X,9780486292724,eng,48,68,3,9/13/1996,Dover Publications +17488,Five on a Treasure Island (Famous Five #1),Enid Blyton,4.09,0340796146,9780340796146,eng,256,19173,658,6/14/2001,Hodder +17496,The Secret Seven (The Secret Seven #1),Enid Blyton,3.87,0340917547,9780340917541,eng,144,6881,187,4/20/2006,Hodder +17503,The Circus of Adventure,Enid Blyton,4.11,0330244779,9780330244770,eng,192,12,0,8/22/1975,Pan +17506,La gata perdida = The Missing Cat (Las Aventuras de Nicolas = Adventures with Nicholas),Chris L. Demarest/Berlitz Publishing Company,4.14,9812468234,9789812468239,spa,64,0,0,8/15/2006,Berlitz Kids +17510,La Chatte Perdue = The Missing Cat (Les Aventures avec Nicolas = Adventures with Nicholas),Chris L. Demarest,4.14,981246820X,9789812468208,fre,64,1,0,8/15/2006,Berlitz Kids +17511,The Mystery of the Missing Cat,Gertrude Chandler Warner/Charles Tang,3.82,0785759379,9780785759379,eng,119,5,0,1/1/1994,Turtleback Books +17513,Die Verschwundene Katze = The Missing Cat,Chris L. Demarest,4.14,2831557437,9782831557434,ger,64,1,0,1/1/1996,Berlitz Kids +17518,The Trolley Car Family,Eleanor Clymer/Ursula Koering,4.14,0590407325,9780590407328,eng,256,314,46,7/1/1987,Scholastic +17533,Rose in Bloom (Eight Cousins #2),Louisa May Alcott,4.04,0316030899,9780316030892,eng,302,19389,382,9/1/1995,Little Brown Books for Young Readers +17544,The Quiet Little Woman: A Christmas Story,Louisa May Alcott/C. Michael Dudash/Stephen W. Hines,3.67,1562926160,9781562926168,eng,122,1195,191,4/21/2009,Honor Books +17546,Louisa May Alcott on Race Sex and Slavery,Louisa May Alcott/Sarah Elbert,3.94,1555533078,9781555533076,eng,160,18,5,4/17/1997,Northeastern University Press +17548,An Old-Fashioned Thanksgiving,Louisa May Alcott/James Bernardin,3.71,0060004509,9780060004507,eng,32,659,87,8/1/2005,HarperCollins Publishers +17550,Moods,Louisa May Alcott,3.40,0813516706,9780813516707,eng,538,314,48,1/1/1991,Rutgers University Press +17557,The Girlhood Diary of Louisa May Alcott 1843-1846: Writings of a Young Author,Louisa May Alcott/Kerry A. Graves,3.91,0736805990,9780736805995,eng,32,29,0,9/1/2000,Capstone Press +17580,These Happy Golden Years (Little House #8),Laura Ingalls Wilder/Garth Williams,4.19,0590488120,9780590488129,en-US,289,311,22,1/1/1971,Scholastic Inc. +17581,Pioneer Girl: The Story of Laura Ingalls Wilder,William Anderson/Dan Andreasen,4.14,006446234X,9780064462341,eng,32,440,36,2/2/2000,HarperCollins +17582,The Norton Anthology of Short Fiction,Richard Bausch,4.18,0393926117,9780393926118,en-US,1776,663,15,1/5/2006,W. W. Norton & Company +17593,Red White and Black: The Peoples of Early North America,Gary B. Nash,3.79,0139567569,9780139567568,eng,362,170,7,7/14/1999,Prentice Hall +17600,Homemade Love,bell hooks/Shane W. Evans,4.18,0786806435,9780786806430,eng,32,222,33,12/23/2002,Jump At The Sun +17601,The Will to Change: Men Masculinity and Love,bell hooks,4.36,0743456084,9780743456081,eng,188,2574,322,12/21/2004,Washington Square Press +17602,Killing Rage: Ending Racism,bell hooks,4.28,0805050272,9780805050271,eng,288,1987,106,10/15/1996,Holt Paperbacks +17603,Where We Stand: Class Matters,bell hooks,4.18,041592913X,9780415929134,eng,164,1780,142,10/4/2000,Routledge +17607,All About Love: New Visions,bell hooks,4.01,0688168442,9780688168445,eng,240,10928,1144,12/22/1999,William Morrow +17608,Everybody Was Kung Fu Fighting: Afro-Asian Connections and the Myth of Cultural Purity,Vijay Prashad,3.95,0807050113,9780807050118,en-US,232,201,21,11/18/2002,Beacon Press +17609,The Darker Nations: A People's History of the Third World,Vijay Prashad/Howard Zinn,3.98,1565847857,9781565847859,eng,384,659,51,2/19/2007,New Press The +17610,The Karma Of Brown Folk,Vijay Prashad,4.10,0816634394,9780816634392,eng,272,344,31,3/12/2001,Univ Of Minnesota Press +17619,The Negro,W.E.B. Du Bois/Robert Gregg,4.32,0812217756,9780812217759,eng,284,29,4,5/22/2001,University of Pennsylvania Press +17624,Democracy Matters: Winning the Fight Against Imperialism,Cornel West,3.95,1594200297,9781594200298,eng,240,102,12,9/2/2004,Penguin Press HC The +17632,Tyranny of the Majority: Fundamental Fairness in Representative Democracy,Lani Guinier/Stephen L. Carter,3.87,0029131693,9780029131695,eng,352,41,3,2/1/1995,Free Press +17635,More Readings From One Man's Wilderness: The Journals of Richard L. Proenneke 1974-1980,Richard Proenneke/John Branson,4.42,0160729947,9780160729942,eng,496,239,5,1/5/2006,National Park Service +17639,The Guardship (Thomas Marlowe #1),James L. Nelson,4.01,0380804522,9780380804528,eng,384,313,28,1/5/2000,William Morrow Paperbacks +17643,Before We Were Free,Julia Alvarez,3.87,044023784X,9780440237846,en-US,192,4950,837,4/13/2004,Laurel Leaf Library +17644,Moral Disorder and Other Stories,Margaret Atwood,3.63,0385503849,9780385503846,eng,255,8270,755,10/17/2006,Nan A. Talese +17645,The Penelopiad,Margaret Atwood/Laurel Merlington,3.70,1841957178,9781841957173,eng,198,29315,2631,10/5/2005,Canongate U.S. +17646,The Tent,Margaret Atwood,3.70,0385516681,9780385516686,eng,159,5061,519,1/1/2006,Nan A. Talese +17650,The Robber Bride,Margaret Atwood,3.83,0385491034,9780385491037,eng,528,34550,1679,1/20/1998,Anchor +17654,The Moth Diaries,Rachel Klein,3.49,0571219713,9780571219711,eng,245,60,12,4/7/2004,Faber & Faber Limited +17658,Trauma,Graham Masterton,3.55,0451205553,9780451205551,en-GB,224,344,43,1/1/2002,Signet +17671,Liars and Saints,Maile Meloy,3.60,0743261984,9780743261982,eng,272,2270,306,7/13/2004,Scribner +17673,The Anthropology of Turquoise: Reflections on Desert Sea Stone and Sky,Ellen Meloy,4.04,0375708138,9780375708138,eng,336,1063,159,7/8/2003,Vintage +17675,Eating Stone: Imagination and the Loss of the Wild,Ellen Meloy,4.10,140003177X,9781400031771,eng,352,462,78,10/17/2006,Vintage +17679,Writing the Qualitative Dissertation: Understanding by Doing,Judith M. Meloy,3.73,0805832890,9780805832891,eng,242,9,0,7/3/2001,Psychology Press +17682,The Dead Beat: Lost Souls Lucky Stiffs and the Perverse Pleasures of Obituaries,Marilyn Johnson,3.41,0060758767,9780060758769,en-US,272,1137,231,1/30/2007,Harper Perennial +17683,Dead Beat (The Dresden Files #7),Jim Butcher,4.43,045146091X,9780451460912,eng,517,91592,2747,1/1/2006,Roc +17686,Diaries 1910-1923,Franz Kafka/Max Brod/Joseph Kresh/Martin Greenberg,4.23,0805209069,9780805209068,eng,521,2090,90,1/21/2009,Schocken +17687,The Metamorphosis,Franz Kafka,3.81,1419172697,9781419172694,en-US,48,395,30,6/17/2004,Kessinger Publishing +17688,The Metamorphosis In the Penal Colony and Other Stories: The Great Short Works of Franz Kafka,Franz Kafka,4.04,0684800705,9780684800707,eng,352,13846,193,5/22/2000,Scribner +17690,The Trial,Franz Kafka/Max Brod/Willa Muir/Edwin Muir,3.98,0099428644,9780099428640,eng,255,168300,3724,4/9/2001,Vintage +17691,Franz Kafka: The Complete Stories,Franz Kafka/Nabum N. Glazer/John Updike,4.35,0805238638,9780805238631,en-US,486,59,3,1/1/1987,Schocken +17692,The Trial,Franz Kafka/Breon Mitchell/Arthur H. Samuelson,3.98,0805209999,9780805209990,eng,276,4086,372,5/25/1999,Schocken Books +17694,The Zürau Aphorisms,Franz Kafka/Michael Hofmann/Geoffrey Brock/Roberto Calasso,3.75,0805212078,9780805212075,eng,160,648,57,12/26/2006,Schocken +17697,Collected Shorter Fiction: Volume I,Leo Tolstoy/Aylmer Maude/Nigel J. Cooper,4.41,0375411720,9780375411724,eng,848,72,10,8/7/2001,Everyman's Library +17698,The Cossacks,Leo Tolstoy/Peter Constantine/Cynthia Ozick,3.79,0812975049,9780812975048,eng,161,4356,226,2/14/2006,Modern Library +17701,More Adventures of the Great Brain (Great Brain #2),John D. Fitzgerald/Mercer Mayer,4.26,0142400653,9780142400654,eng,160,4850,138,2/9/2004,Puffin Books +17702,The Dirt: Confessions of the World's Most Notorious Rock Band,Neil Strauss/Vince Neil/Nikki Sixx/Tommy Lee/Mick Mars,4.16,0060392886,9780060392888,eng,430,436,50,5/22/2001,Dey Street Books +17707,The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1),Douglas Adams,4.22,0671746065,9780671746063,eng,216,2796,242,5/1/1991,Pocket Books +17722,Alice's Adventures in Wonderland & Through the Looking-Glass,Lewis Carroll/John Tenniel,4.07,0553213458,9780553213454,eng,234,1469,98,5/1/1984,Bantam Classics +17724,The Awakening,Kate Chopin/Margo Culley,3.65,0393960579,9780393960570,eng,336,937,72,9/17/1993,W. W. Norton & Company +17726,Go Down Moses,William Faulkner,3.93,0679732179,9780679732174,eng,365,8289,370,1/30/1991,Vintage +17727,The Books of Magic,Neil Gaiman/John Bolton/Scott Hampton/Charles Vess/Paul Johnson/Roger Zelazny,4.08,1563890828,9781563890826,eng,200,13850,481,4/14/1993,Vertigo +17728,The House of Mirth,Edith Wharton/Nina Bawden,3.95,1844082938,9781844082933,eng,351,69014,3180,1/19/2006,Virago +17730,House of Mirth,Edith Wharton,3.95,1600962203,9781600962202,eng,324,220,11,7/30/2008,Waking Lion Press +17733,The House of Mirth,Edith Wharton/Jeffrey Meyers,3.95,1593081049,9781593081041,eng,359,74,9,10/1/2003,Barnes Noble Classics +17735,Light (Kefahuchi Tract #1),M. John Harrison,3.60,0553382950,9780553382952,eng,310,3732,415,8/31/2004,Spectra +17743,Beautiful Evidence,Edward R. Tufte,4.15,0961392177,9780961392178,eng,213,2045,130,11/7/2006,Graphics Press LLC +17747,The Cognitive Style of PowerPoint: Pitching Out Corrupts Within,Edward R. Tufte,4.08,0961392169,9780961392161,en-US,31,924,65,1/1/2006,Graphics Press +17761,Hafen des Unglücks (Aubrey/Maturin Book 11),Patrick O'Brian,4.41,3548256422,9783548256429,ger,354,6,0,10/1/2002,Ullstein Buchverlage GmbH & Co. KG / Ullstein Tas +17762,Manöver um Feuerland (The Far Side of the World) (Aubrey/Maturin Book 10),Patrick O'Brian,4.45,3548254438,9783548254432,ger,478,8,0,6/1/2002,Ullstein Tb +17766,Master and Commander (Aubrey/Maturin Book 1),Patrick O'Brian,4.10,073931565X,9780739315651,eng,0,1,0,3/9/2004,Random House Audio +17770,Post Captain (Aubrey/Maturin Book 2),Patrick O'Brian,4.29,039700804X,9780397008049,eng,413,3,0,12/1/1972,Lippincott Williams & Wilkins +17778,Gefahr im Roten Meer (Treason's Harbour) (Aubrey/Maturin Book 9),Patrick O'Brian,4.38,3548254357,9783548254357,ger,412,7,0,5/1/2002,Ullstein Tb +17780,In the Heart of the Sea: The Tragedy of the Whaleship Essex,Nathaniel Philbrick,4.16,0141001828,9780141001821,eng,302,72656,4930,5/1/2001,Penguin Books +17781,Heart of the Sea (Gallaghers of Ardmore #3),Nora Roberts,4.15,0515128554,9780515128550,eng,369,24451,537,12/5/2000,Berkley Books +17783,Corazón de mar (Gallagher #3),Nora Roberts/Juan Larrea,4.15,8466307257,9788466307253,spa,396,12,0,7/1/2002,Punto de Lectura +17795,Banvard's Folly: Thirteen Tales of People Who Didn't Change the World,Paul Collins,3.98,0312300336,9780312300333,eng,320,513,70,5/3/2002,Picador +17798,Fads and Fallacies in the Name of Science,Martin Gardner,4.06,0486203948,9780486203942,eng,384,1022,46,6/1/1957,Dover Publications (NY) +17799,South of the Border West of the Sun,Haruki Murakami/Philip Gabriel,3.87,0099448572,9780099448570,eng,190,59657,2612,12/1/2006,Vintage +17800,Dance Dance Dance,Haruki Murakami,4.04,0099448769,9780099448761,eng,393,50169,2117,2/7/2002,Vintage +17803,After Dark,Haruki Murakami/Jay Rubin,3.70,0307265838,9780307265838,eng,191,80308,4506,5/8/2007,Knopf Publishing Group +17804,Vintage Murakami,Haruki Murakami,4.03,1400033969,9781400033966,eng,182,740,41,1/6/2004,Vintage Books USA +17807,Gravitation #2,Maki Murakami,3.99,848449487X,9788484494874,spa,208,10,0,6/30/2004,Ediciones Glénat España +17828,The Master and Margarita,Mikhail Bulgakov/Michael Karpelson,4.30,1411683056,9781411683051,eng,332,493,47,4/1/2006,Lulu Press +17830,Bulgakov's the Master and Margarita: The Text as a Cipher,Elena N. Mahlow,5.00,0533017424,9780533017423,eng,202,4,0,1/1/1975,Vantage Press +17837,Мастер и Маргарита,Mikhail Bulgakov/Михаил Булгаков,4.30,5040019521,9785040019526,rus,640,10,1,9/28/2004,Эксмо +17841,Foucault's Pendulum,Umberto Eco/William Weaver,3.89,015603297X,9780156032971,eng,623,46598,2074,3/5/2007,Mariner Books +17845,Pendulum: Leon Foucault and the Triumph of Science,Amir D. Aczel,3.72,0743464796,9780743464796,eng,288,183,25,9/14/2004,Washington Square Press +17846,The House of Mirth,Edith Wharton/Jeffrey Meyers,3.95,1593081537,9781593081539,eng,348,360,67,8/26/2004,Barnes Noble Classics +17850,The House of Mirth,Edith Wharton/R.W.B. Lewis,3.95,0814749763,9780814749760,eng,335,10,0,1/1/1977,New York University Press +17861,The Family Trade (The Merchant Princes #1),Charles Stross,3.52,0765348217,9780765348210,eng,308,4691,355,5/1/2005,Tor Fantasy +17862,Toast and Other Stories,Charles Stross,3.80,0809556030,9780809556038,eng,247,935,34,12/13/2005,Cosmos Books (OH) +17863,Accelerando,Charles Stross,3.88,0441014151,9780441014156,eng,415,16527,971,7/1/2006,Ace Books +17866,Glasshouse,Charles Stross,3.87,0441014038,9780441014033,en-US,335,8975,464,6/27/2006,Ace Books +17867,The Hidden Family (The Merchant Princes #2),Charles Stross,3.57,0765352052,9780765352057,eng,309,3344,127,5/2/2006,Tor Fantasy +17872,Lobsters,Charles Stross/Shandra Marie/Jared Doreck,3.83,1884612466,9781884612466,eng,1,158,5,8/11/2005,AudioText +17873,Antibodies,Charles Stross/Shandra Marie/Jared Doreck,3.46,1884612474,9781884612473,eng,1,67,4,8/11/2005,AudioText +17876,Notes from Underground White Nights The Dream of a Ridiculous Man and Selections from The House of the Dead,Fyodor Dostoyevsky/Andrew R. MacAndrew/Ben Marcus,4.18,0451529553,9780451529558,eng,233,71824,1607,11/2/2004,Signet +17877,The House of the Dead,Fyodor Dostoyevsky/Ergin Altay,4.05,0486434095,9780486434094,eng,247,11252,399,4/22/2004,Dover Publications +17878,The Village of Stepanchikovo,Fyodor Dostoyevsky/Ignat Avsey,3.87,0140446583,9780140446586,eng,224,1570,80,12/1/2001,Penguin Book Limited +17879,Crime and Punishment,Fyodor Dostoyevsky/Larissa Volokhonsky/Richard Pevear,4.21,0679420290,9780679420293,eng,564,6950,381,5/25/1993,Random House +17880,The Gambler,Fyodor Dostoyevsky/Jonathan Franzen,3.89,184391123X,9781843911234,eng,160,82,8,10/1/2005,Hesperus Press +17881,Notes from Underground & The Double,Fyodor Dostoyevsky/Jessie Coulson,4.20,0140442529,9780140442526,eng,287,4706,151,7/30/1972,Penguin Books +17883,Notes from Underground & A Confession (Everyman's Library),A.D.P. Briggs/Leo Tolstoy/Fyodor Dostoyevsky,3.76,0460874489,9780460874489,eng,256,17,1,6/15/1994,Everymans Library +17890,The Gambler/Bobok/A Nasty Story,Fyodor Dostoyevsky/Jessie Coulson,3.99,0140441794,9780140441796,en-US,240,576,41,5/27/1966,Penguin Books +17891,The Idiot,Fyodor Dostoyevsky/Constance Garnett,4.18,0486432130,9780486432137,en-US,540,72,6,12/12/2003,Dover Publications +17893,Netochka Nezvanova,Fyodor Dostoyevsky/Jane Kentish,3.81,0140444556,9780140444551,eng,176,2590,127,8/29/1985,Penguin Classics +17905,Plays 5: Arcadia / The Real Thing / Night and Day / Indian Ink / Hapgood,Tom Stoppard,4.29,0571197515,9780571197514,en-US,608,572,33,12/1/2000,Farrar Straus and Giroux +17908,Rock 'n' Roll,Tom Stoppard,3.71,0802143075,9780802143075,eng,144,951,60,5/10/2007,Grove Press +17914,The Real Thing,Tom Stoppard,3.94,0571125298,9780571125296,en-US,112,3553,140,4/17/2000,Farrar Straus and Giroux +17915,Arcadia,Tom Stoppard,4.19,1568651376,9781568651378,eng,97,48,3,5/1/1995,Doubleday Books +17918,Plays 1: The Real Inspector Hound / After Magritte / Dirty Linen / New-Found-Land / Dogg's Hamlet Cahoot's Macbeth,Tom Stoppard,4.03,0571177654,9780571177653,eng,211,78,13,4/15/1996,Faber & Faber +17922,Every Good Boy Deserves Favor & Professional Foul,Tom Stoppard,3.90,0802150454,9780802150455,en-GB,188,190,10,3/28/1994,Grove Press +17926,Lord Malquist and Mr. Moon,Tom Stoppard,3.41,0802142710,9780802142719,eng,200,192,23,8/15/2006,Grove Press +17944,The Gunslinger (The Dark Tower #1),Stephen King,3.96,0451160525,9780451160522,eng,315,1902,227,7/1/1989,Signet +17945,Everything and Nothing,Jorge Luis Borges/Eliot Weinberger/John M. Fein/James E. Irby/Donald A. Yates,4.38,0811214001,9780811214001,eng,108,593,37,4/17/1999,New Directions +17946,Seven Nights,Jorge Luis Borges/Eliot Weinberger,4.33,0811209059,9780811209052,eng,121,1037,60,5/29/1985,New Directions Publishing Corporation +17947,Museo: Textos Ineditos,Adolfo Bioy Casares,4.17,9500424134,9789500424134,spa,261,6,0,10/1/2002,Emecé Editores +17950,Obra Poética,Jorge Luis Borges,4.49,9500426161,9789500426169,spa,645,50,3,6/1/2005,Emecé Editores +17961,Collected Fictions,Jorge Luis Borges/Andrew Hurley,4.58,0140286802,9780140286809,eng,565,18874,791,9/30/1999,Penguin Classics Deluxe Edition +17971,The Eternal Frontier: An Ecological History of North America and Its Peoples,Tim Flannery,4.06,0802138888,9780802138880,eng,432,588,69,4/17/2002,Grove Press +17976,Hope Springs Eternal (Prairie River #4),Kristiana Gregory,4.27,0439440033,9780439440035,eng,176,130,7,7/1/2005,Scholastic Paperbacks +17977,The Ancestor's Tale: A Pilgrimage to the Dawn of Evolution,Richard Dawkins,4.13,061861916X,9780618619160,eng,688,20232,609,9/2/2005,Mariner Books +17982,The Reverse of the Medal (Aubrey & Maturin #11),Patrick O'Brian,4.41,0006499260,9780006499268,eng,261,186,12,4/1/2010,HarperCollins +17983,The Reverse of the Medal (Aubrey/Maturin #11),Patrick O'Brian/Simon Vance,4.41,0786178183,9780786178186,en-GB,0,3598,93,2/1/2006,Blackstone Audiobooks +17986,Teleny or the Reverse of the Medal,Oscar Wilde,3.67,1595690360,9781595690364,eng,138,985,63,3/7/2006,MONDIAL +17994,The Code Book: The Science of Secrecy from Ancient Egypt to Quantum Cryptography,Simon Singh,4.29,0385495323,9780385495325,eng,412,16531,977,8/29/2000,Anchor +17998,The Eternity Code (Artemis Fowl #3),Eoin Colfer,4.04,0786856289,9780786856282,en-US,309,1660,125,5/3/2005,Miramax +18005,How I Became a Pirate,Melinda Long/David Shannon,4.08,0152018484,9780152018481,eng,44,24098,586,9/1/2003,HMH Books for Young Readers +18013,The Pirate Dictionary,Terry Breverton,3.70,1589802438,9781589802438,eng,189,51,7,7/31/2004,Pelican Publishing Company +18016,Mulliner Nights (Mr. Mulliner #3),P.G. Wodehouse,4.11,1400079616,9781400079612,eng,240,1174,75,4/12/2005,Vintage +18017,Life at Blandings,P.G. Wodehouse,4.35,0140059032,9780140059038,en-US,608,2651,47,1/5/1988,Penguin Books +18018,Jill the Reckless,P.G. Wodehouse,4.02,1585676608,9781585676606,eng,290,666,82,4/7/2005,Harry N. Abrams +18019,The Code of the Woosters: Jeeves to the Rescue,P.G. Wodehouse/Jonathan Cecil,4.36,1572705485,9781572705487,eng,7,172,26,9/7/2006,AudioGO +18021,P.G. Wodehouse in His Own Words,P.G. Wodehouse/Tony Ring/Barry Day,4.07,1585673935,9781585673933,eng,320,48,6,4/28/2003,Harry N. Abrams +18022,Jeeves and the Mating Season (Jeeves #9),P.G. Wodehouse/Jonathan Cecil,4.26,1572703199,9781572703193,eng,7,109,22,4/7/2003,AudioGO +18025,Something Fresh (Blandings Castle #1),P.G. Wodehouse,4.16,1585676586,9781585676583,eng,284,5311,391,4/7/2005,Harry N. Abrams +18027,The Clicking of Cuthbert,P.G. Wodehouse,3.93,1406929980,9781406929980,eng,162,6,1,11/3/2006,Hard Press +18029,Ring for Jeeves (Jeeves #10),P.G. Wodehouse,4.01,1585675245,9781585675241,eng,208,2785,183,4/12/2004,Harry N. Abrams +18031,Ukridge,P.G. Wodehouse,3.89,1585674796,9781585674794,eng,272,1019,83,9/15/2003,Harry N. Abrams +18032,Jeeves and the Tie That Binds (Jeeves #14),P.G. Wodehouse,4.23,0743203623,9780743203623,eng,205,2781,130,11/1/2000,Touchstone +18035,Right Ho Jeeves (Jeeves #6),P.G. Wodehouse,4.32,140690483X,9781406904833,eng,224,8193,443,11/3/2006,Hard Press +18039,Blandings Castle (Blandings Castle #3),P.G. Wodehouse,4.18,1585673382,9781585673384,eng,301,1370,70,10/23/2002,Harry N. Abrams +18041,Mr. Mulliner Speaking,P.G. Wodehouse,4.01,1841591386,9781841591384,en-US,232,1497,48,3/3/2005,Everyman Library / Overlook Press +18042,Laughing Gas,P.G. Wodehouse,3.89,1585672327,9781585672325,eng,286,1723,129,1/1/2002,Harry N. Abrams +18047,The Adventures of Sally,P.G. Wodehouse,3.78,1426423705,9781426423703,en-US,232,10,0,5/29/2008,BiblioLife +18053,Meet Mr. Mulliner,P.G. Wodehouse,4.06,1585672750,9781585672752,eng,203,1224,89,5/13/2002,Harry N. Abrams +18055,Eggs Beans and Crumpets,P.G. Wodehouse,4.11,1841591068,9781841591063,eng,224,898,60,10/27/2000,Overlook Press +18057,A Damsel in Distress,P.G. Wodehouse,4.08,1406953210,9781406953213,eng,216,3526,355,11/3/2006,rbooks +18061,Uncle Fred in the Springtime (Blandings Castle #6),P.G. Wodehouse,4.24,1841591300,9781841591308,eng,288,1703,108,4/15/2004,Everyman +18062,The Best of Wodehouse: An Anthology,P.G. Wodehouse/John Mortimer,4.41,0307266613,9780307266613,eng,840,413,46,6/19/2007,Everyman's Library +18064,The World of Mr. Mulliner,P.G. Wodehouse,4.32,0140281703,9780140281705,eng,624,345,30,7/29/1999,Penguin Books Ltd +18067,Cocktail Time,P.G. Wodehouse,4.13,1585675741,9781585675746,eng,304,648,51,10/21/2004,Harry N. Abrams +18072,The Waste Lands (The Dark Tower #3),Stephen King/Ned Dameron,4.24,0451173317,9780451173317,eng,590,1013,96,1/1/1993,Signet Book +18073,Jeeves in the Offing (Jeeves #12),P.G. Wodehouse,4.17,1841591165,9781841591162,eng,208,28,4,9/12/2002,Everyman +18074,Jeeves and The Feudal Spirit (Jeeves #11),P.G. Wodehouse,4.32,1841591017,9781841591018,eng,240,25,1,9/20/2001,Everyman's Library +18077,Piccadilly Jim,P.G. Wodehouse,4.02,1585676160,9781585676163,eng,302,2673,184,10/21/2004,Harry N. Abrams +18081,Joy in the Morning (Jeeves #8),P.G. Wodehouse,4.34,1841591157,9781841591155,eng,296,38,0,3/14/2002,Everyman +18089,The Mating Season (Jeeves #9),P.G. Wodehouse,4.26,1841591076,9781841591070,eng,272,59,2,9/20/2001,Everyman +18098,Indiscretions of Archie,P.G. Wodehouse,3.87,0742632598,9780742632592,eng,215,693,78,5/1/2000,Classic Books +18119,The Subtle Knife (His Dark Materials #2),Philip Pullman,4.13,0440238145,9780440238140,en-US,288,4750,337,9/9/2003,Laurel Leaf Library +18122,The Amber Spyglass (His Dark Materials #3),Philip Pullman,4.09,0440238153,9780440238157,eng,467,237072,6358,9/9/2003,Laurel Leaf +18127,The Eyes of the Dragon,Stephen King/David Palladini,3.93,0451166582,9780451166586,en-US,380,2925,285,12/8/1987,Signet Book +18132,The Voyage of the “Dawn Treader” (The Chronicles of Narnia #3),C.S. Lewis/Pauline Baynes,4.09,0020442602,9780020442608,eng,216,2977,250,1/1/1970,Macmillan Publishing Company/Collier Books +18133,Lolita,Vladimir Nabokov/John Ray Jr.,3.89,0679723161,9780679723165,eng,317,19513,2191,6/13/1997,Vintage International +18134,William Shakespeare’s: Twelfth Night (Shakespeare Retellings #6),Bruce Coville/Kathryn Hewitt,4.11,0803723180,9780803723184,eng,48,150,14,3/10/2003,Dial +18135,Romeo and Juliet,William Shakespeare/Paul Werstine/Barbara A. Mowat,3.74,0743477111,9780743477116,eng,368,1893917,14637,1/1/2004,Simon Schuster +18136,Romeo and Juliet,William Shakespeare/Rex Gibson,3.74,0521618703,9780521618700,en-US,228,425,30,8/1/2005,Cambridge University Press +18140,Romeo and Juliet,William Shakespeare/Michael Sheen/Kate Beckinsale/Fiona Shaw/Norman Rodway,3.74,0521625629,9780521625623,eng,3,18,0,10/23/1997,Naxos Audiobooks +18144,Ohio Class (Silent Service #5),H. Jay Riker,3.84,0060524391,9780060524395,eng,416,44,4,7/25/2006,Avon +18146,Seawolf Class (Silent Service #3),H. Jay Riker,3.96,0380804689,9780380804689,eng,416,65,5,7/30/2002,Avon Books +18160,The Art of Deception: Controlling the Human Element of Security,Kevin D. Mitnick/William L. Simon/Steve Wozniak,3.76,076454280X,9780764542800,eng,352,4565,283,10/17/2003,Wiley +18172,Hardball: Are You Playing to Play or Playing to Win?,George Stalk Jr./Rob Lachenauer/Robert Lachenauer/John Butman,3.49,1591391679,9781591391678,eng,192,84,9,10/1/2004,Harvard Business Review Press +18182,A Theory of Fun for Game Design,Raph Koster/Will Wright,3.94,1932111972,9781932111972,en-CA,256,2113,181,11/6/2004,Paraglyph Press +18184,The Complete Theory Fun Factory: Music Theory Puzzles and Games for the Early Grades,Ian Martin/Katie Elliott,5.00,0851621813,9780851621814,eng,96,1,0,6/1/2004,Boosey & Hawkes Inc +18185,The Pillow Book,Sei Shōnagon/Ivan Morris,4.02,0231073372,9780231073370,eng,419,3786,275,12/30/1991,Columbia University Press +18190,Bachelor Brothers' Bed & Breakfast Pillow Book,Bill Richardson,3.77,0312194404,9780312194406,eng,208,325,42,10/15/1998,St. Martin's Griffin +18194,The Cyberiad,Stanisław Lem/Michael Kandel/Daniel Mróz,4.18,0156027593,9780156027595,en-US,295,7842,397,12/16/2002,Harcourt +18202,Christianity for Modern Pagans: Pascal's Pensées - Edited Outlined & Explained,Peter Kreeft/Blaise Pascal,4.37,0898704529,9780898704525,en-US,341,418,39,9/1/1993,Ignatius Press +18212,Jacques the Fatalist,Denis Diderot/David Coward,3.84,0192838741,9780192838742,eng,304,4891,102,9/16/1999,Oxford University Press +18214,Jacques der Fatalist und sein Herr,Denis Diderot,3.84,315009335X,9783150093351,ger,360,22,0,1/1/1972,Reclam Ditzingen +18215,Pictorial Encyclopedia of Trades and Industry Vol 1,Denis Diderot/Charles Coulston Gillispie,3.60,0486274284,9780486274287,eng,239,5,0,1/18/1993,Dover Publications +18217,Rameau's Nephew / D'Alembert's Dream,Denis Diderot/Leonard Tancock,3.67,0140441735,9780140441734,eng,237,1292,67,10/28/1976,Penguin Books +18225,Theory of Colours,Johann Wolfgang von Goethe/Deane B. Judd,4.06,0262570211,9780262570213,eng,468,694,20,3/15/1970,MIT Press +18226,Maxims and Reflections,Johann Wolfgang von Goethe/Peter Hutchinson/Elisabeth Stopp,3.82,0140447202,9780140447200,eng,208,280,23,3/1/1999,Penguin Books +18240,War and Peace,Leo Tolstoy,4.11,3895086908,9783895086908,en-US,1500,126,9,5/9/1999,Konemann +18241,War and Peace,Leo Tolstoy/Anthony Briggs/Orlando Figes,4.11,067003469X,9780670034697,eng,1412,1228,93,1/19/2006,Viking Adult +18242,A Savage War of Peace: Algeria 1954-1962,Alistair Horne,4.23,1590172183,9781590172186,eng,608,1895,178,10/10/2006,New York Review of Books +18243,War and Peace,Leo Tolstoy/Constance Garnett/A.N. Wilson,4.11,0375760644,9780375760648,eng,1388,850,134,7/9/2002,Modern Library +18245,War and Peace,Leo Tolstoy/Orlando Figes/Anthony Briggs,4.11,0143039997,9780143039990,eng,1408,516,113,12/1/2006,Penguin Books +18246,War and Peace and War: The Rise and Fall of Empires,Peter Turchin,4.16,0452288193,9780452288195,en-US,416,276,36,2/27/2007,Plume +18251,Great Expectations,Charles Dickens,3.77,0140620168,9780140620160,eng,443,905,61,1/13/1994,Penguin Books +18253,Great Expectations,Charles Dickens/Linda Jennings,3.77,0140366814,9780140366815,eng,417,109,4,6/1/1995,Puffin Books +18255,Oliver Twist,Charles Dickens,3.86,0486424537,9780486424538,eng,368,2077,83,12/30/2002,Dover Publications +18257,Oliver Twist,Charles Dickens/Fred Kaplan,3.86,039396292X,9780393962925,eng,624,178,17,12/17/1992,W.W. Norton & Company +18260,Oliver Twist,Charles Dickens/George Cruikshank/Jill Muller,3.86,1593082061,9781593082062,eng,478,348,47,10/25/2004,Barnes Noble Classics +18261,The Nibelungenlied,Unknown/A.T. Hatto,3.87,0140441379,9780140441376,eng,404,4052,163,8/26/2004,Penguin Classics +18265,Gargantua and Pantagruel,François Rabelais/Thomas Urquhart/Pierre Le Motteux,3.71,0679431373,9780679431374,eng,807,51,11,5/10/1994,Alfred A. Knopf Inc. +18266,Gargantua and Pantagruel,François Rabelais/M.A. Screech,3.71,0140445501,9780140445503,eng,1041,12005,297,10/26/2006,Penguin Classics +18273,Beyond Good and Evil: Prelude to a Philosophy of the Future,Friedrich Nietzsche/Walter Kaufmann,4.01,0394703375,9780394703374,eng,256,50,6,12/17/1989,Vintage +18279,Phenomenology of Perception,Maurice Merleau-Ponty/Colin Smith,4.15,0415278414,9780415278416,eng,544,5078,77,5/3/2005,Routledge +18280,Introduction to Phenomenology,Dermot Moran,4.18,0415183731,9780415183734,eng,592,217,19,2/5/2000,Routledge +18281,Introduction to Phenomenology,Robert Sokolowski,3.98,0521667925,9780521667920,eng,248,316,36,1/27/2000,Cambridge University Press +18282,The Basic Problems of Phenomenology (Studies in Phenomenology & Existential Philosophy),Martin Heidegger/Albert Hofstadter,4.29,025320478X,9780253204783,en-US,432,467,16,8/1/1988,Indiana University Press +18283,The Phenomenology of Mind Volume II,Georg Wilhelm Friedrich Hegel/James Black Baillie,4.00,1596057734,9781596057739,ger,372,1,0,2/16/2006,Cosimo Classics +18284,Experimental Phenomenology: An Introduction,Don Ihde,3.73,0887061990,9780887061998,eng,155,44,1,6/30/1986,State University of New York Press +18287,Critique of Pure Reason,Immanuel Kant/J.M.D. Meiklejohn,3.94,0486432548,9780486432540,eng,480,72,10,11/17/2003,Dover Publications +18288,Critique of Pure Reason,Immanuel Kant/Paul Guyer/Allen W. Wood,3.94,0521657296,9780521657297,eng,796,23607,375,2/28/1999,Cambridge University Press +18290,Critique of Pure Reason,Immanuel Kant/Werner S. Pluhar/Patricia Kitcher/James W. Ellington,3.94,0872202577,9780872202573,eng,1096,180,14,12/1/1996,Hackett Publishing Company Inc. +18291,Critique of Pure Reason,Immanuel Kant/Marcus Weigelt/F. Max Müller,3.94,0140447474,9780140447477,eng,784,254,35,11/29/2007,Penguin Books Ltd +18294,Critique of Pure Reason (Studies in the History of Philosophy),Immanuel Kant/Humphrey Palmer,3.94,0773491678,9780773491670,eng,140,17,0,1/1/1992,Edwin Mellen Press +18297,The Anime Encyclopedia: A Guide to Japanese Animation Since 1917,Jonathan Clements/Helen McCarthy,4.04,1933330104,9781933330105,eng,867,25,5,11/1/2006,Stone Bridge Press +18305,Unpublished Writings from the Period of Unfashionable Observations (Complete Works 11),Friedrich Nietzsche/Richard T. Gray,4.06,0804728844,9780804728843,eng,536,2,0,1/1/2000,Stanford University Press +18310,Thus Spake Zarathustra: A Book for All and None,Friedrich Nietzsche,4.06,1406947199,9781406947199,eng,356,275,20,11/3/2006,Penguin +18314,The Picture of Dorian Gray,Oscar Wilde,4.08,1557424292,9781557424297,eng,187,329,21,10/10/2005,Wildside Press +18315,The Picture of Dorian Gray,Oscar Wilde,4.08,1420925288,9781420925289,en-US,124,838,52,1/1/2005,Digireads.com +18324,Haussmann or the Distinction,Paul La Farge,3.65,0312420927,9780312420925,eng,379,157,21,10/2/2002,Picador +18328,The Artist of the Missing,Paul La Farge/Stephen Alcorn,3.58,0374525803,9780374525804,eng,256,99,10,6/4/1999,Farrar Strauss & Giroux-3pl +18333,Reluctant Runaway (To Catch a Thief #2),Jill Elizabeth Nelson,3.71,1590526872,9781590526873,en-US,352,90,12,3/20/2007,Multnomah +18334,Kentucky Straight: Stories,Chris Offutt,4.03,067973886X,9780679738862,eng,192,876,89,10/27/1992,Vintage +18335,Out of the Woods,Chris Offutt,4.05,0684853760,9780684853765,eng,176,480,61,2/22/2000,Simon Schuster +18337,No Heroes: A Memoir of Coming Home,Chris Offutt,3.87,0684865521,9780684865522,eng,272,193,34,4/2/2003,Simon Schuster +18338,The Castle Keeps,Andrew J. Offutt,3.57,0425021874,9780425021873,en-US,191,19,3,7/30/1972,Berkley +18341,Conan: Sword of Skelos,Andrew J. Offutt,3.94,0765340216,9780765340214,eng,224,1427,5,2/18/2002,Tor Fantasy +18348,Incest: From "A Journal of Love": The Unexpurgated Diary of Anaïs Nin 1932-1934,Anaïs Nin/Rupert Pole/Gunther Stuhlmann,3.99,0151443661,9780151443666,eng,418,908,54,10/1/1992,Houghton Mifflin Harcourt +18349,Fire: From "A Journal of Love": The Unexpurgated Diary of Anaïs Nin 1934-1937,Anaïs Nin,4.13,0156003902,9780156003902,eng,448,585,31,7/22/1996,Mariner Books +18350,In Favor of the Sensitive Man and Other Essays,Anaïs Nin,4.02,0156444453,9780156444453,eng,180,520,40,4/1/1976,Mariner Books +18353,Anaïs Nin: A Biography,Deirdre Bair,3.99,0140255257,9780140255256,eng,672,632,37,7/1/1996,Penguin Books +18361,Fire: From A Journal of Love - The Unexpurgated Diary of Anaïs Nin (1934-1937),Anaïs Nin/Gunther Stuhlmann,4.13,0151000883,9780151000883,eng,448,196,6,5/15/1995,Houghton Mifflin Harcourt +18362,The Diary of Anaïs Nin Vol. 6: 1955-1966,Anaïs Nin/Gunther Stuhlmann,4.13,0156260328,9780156260329,eng,432,319,11,11/3/1977,Mariner Books +18365,Nearer the Moon: From "A Journal of Love": The Unexpurgated Diary of Anaïs Nin 1937-1939,Anaïs Nin/Gunther Stuhlmann,4.23,0151000891,9780151000890,eng,396,168,16,11/1/1996,Houghton Mifflin +18366,The Early Diary of Anaïs Nin Vol. 3: 1923-1927,Anaïs Nin,4.18,0156272504,9780156272506,eng,320,147,7,3/22/1985,Mariner Books +18370,Henry and June: From the Unexpurgated Diary of Anaïs Nin,Anaïs Nin,3.90,0151400032,9780151400034,eng,274,151,19,12/31/1986,Houghton Mifflin Harcourt P +18373,Flowers for Algernon,Daniel Keyes,4.12,0156030306,9780156030304,eng,311,337596,9949,5/1/2005,Harvest Books +18374,Flowers for Algernon,Daniel Keyes,4.12,0435123432,9780435123437,en-US,218,190,21,3/31/1989,Heinemann +18380,Algernon Charlie and I: A Writer's Journey: Plus the Complete Original Short Novelette Version of Flowers for Algernon,Daniel Keyes,4.06,1929519001,9781929519002,eng,223,15,3,2/14/2004,Challenge Press Inc./Challcrest Press +18383,Jane Eyre,Charlotte Brontë,4.12,3717519646,9783717519645,ger,784,432,26,3/1/2001,Manesse Verlag +18384,The Death of Ivan Ilyich and Other Stories,Leo Tolstoy,4.11,1840224533,9781840224535,eng,256,320,33,12/5/2004,Wordsworth Editions +18385,The Death of Ivan Ilych & Other Stories,Leo Tolstoy,4.11,1593080697,9781593080693,eng,400,263,37,12/15/2003,Barnes Noble Classics +18392,The Lost Years of Merlin,T.A. Barron,3.98,0441010288,9780441010288,eng,304,12117,452,7/2/2002,Ace +18394,The Mirror of Merlin,T.A. Barron,4.06,0441009654,9780441009657,eng,288,6661,54,7/30/2002,Ace +18395,The Wings of Merlin,T.A. Barron,4.11,0441010245,9780441010240,eng,288,6211,63,1/28/2003,Ace +18403,El Club Dante,Matthew Pearl/Vicente Villacampa,3.38,8432217204,9788432217203,spa,586,156,9,3/1/2006,Planeta Publishing +18404,El club Dante,Matthew Pearl/Vicente Villacampa,3.38,8432296325,9788432296321,spa,464,57,2,8/30/2004,Seix Barral +18405,Gone with the Wind,Margaret Mitchell,4.29,0446675539,9780446675536,eng,1037,999139,15323,4/1/1999,Warner Books +18412,The Wind Done Gone,Alice Randall,3.07,0618219064,9780618219063,eng,224,1698,283,4/8/2002,Mariner Books +18413,Utopia,Thomas More/Clarence H. Miller,3.53,0300084293,9780300084290,eng,200,438,45,2/8/2001,Yale University Press +18414,Utopia,Thomas More/Paul Turner,3.53,0140449108,9780140449105,eng,135,45460,1731,5/6/2003,Penguin Classics +18419,The Kissing Hand,Audrey Penn/Ruth E. Harper/Nancy M. Leak,4.43,1933718005,9781933718002,en-GB,32,57737,1628,10/15/1993,Tanglewood +18420,Hands of Light: A Guide to Healing Through the Human Energy Field,Barbara Ann Brennan/Jos. A. Smith,4.27,0553345397,9780553345391,eng,320,10878,106,2/1/1990,Bantam +18422,Gifted Hands: The Ben Carson Story,Ben Carson/Cecil Murphey,4.21,0310214696,9780310214694,eng,224,11874,1544,11/26/1996,Zondervan +18425,Shake Hands with the Devil,Roméo Dallaire,4.24,0099478935,9780099478935,en-GB,563,242,34,2/3/2005,Arrow +18427,In the Name of Love and Other True Cases (Crime Files #4),Ann Rule,4.04,067179356X,9780671793562,eng,414,1353,53,1/1/1998,Pocket Books +18431,The Rule of Four,Ian Caldwell/Dustin Thomason,3.23,0440241359,9780440241355,eng,450,25111,1691,6/28/2005,Dell Publishing Company +18432,The Real Rule of Four: The Unauthorized Guide to the New York Times #1 Bestseller,Joscelyn Godwin,3.46,1932857087,9781932857085,eng,208,88,5,11/1/2005,Disinformation Books +18438,Time For Kids: Butterflies!,David Bjerklie,3.97,0060782137,9780060782139,eng,32,21,0,2/21/2006,HarperCollins +18443,Macbeth,William Shakespeare/Robert S. Miola/Janet Adelman/Stephen Orgel/Peter Holland,3.90,0393977862,9780393977868,eng,416,739,30,11/26/2003,W. W. Norton & Company +18444,Macbeth,William Shakespeare/Kenneth Muir,3.90,1903436486,9781903436486,eng,255,605,41,1/31/1997,Bloomsbury Arden Shakespeare +18446,Macbeth,William Shakespeare/Roma Gill,3.90,0198321465,9780198321460,eng,160,156,14,1/20/2005,Oxford University Press +18448,Death of a Celebrity (Hamish Macbeth #17),M.C. Beaton,3.84,0446612049,9780446612043,eng,274,2977,183,1/1/2003,Warner Books +18449,The Best of the Journal of Irreproducible Results,George H. Scherr/Richard Liebmann-Smith,4.32,0894805959,9780894805950,en-US,195,40,4,1/10/1989,Workman Publishing Company +18455,The Spy Who Loved Me (James Bond #10),Ian Fleming,3.40,0142003263,9780142003268,eng,198,8053,460,9/2/2003,Penguin Books +18461,Conversations with Jerzy Kosinski,Jerzy Kosiński/Tom Teicholz,3.69,0878056262,9780878056262,eng,242,26,3,5/1/1993,University Press of Mississippi +18486,Frankenstein Makes a Sandwich,Adam Rex,4.21,0152057668,9780152057664,eng,40,1911,276,9/1/2006,Harcourt +18488,Frankenstein or the Modern Prometheus,Mary Wollstonecraft Shelley/Margaret Brantley,3.79,0743487583,9780743487580,eng,324,12897,780,5/1/2004,Pocket Books +18489,Frankenstein,Mary Wollstonecraft Shelley/J. Paul Hunter,3.79,0393964582,9780393964585,en-US,336,2188,171,12/17/1995,W. W. Norton & Company +18496,Mary Shelley: Her Life Her Fiction Her Monsters,Anne K. Mellor,3.90,0415901472,9780415901475,eng,308,80,13,12/15/1989,Routledge +18500,The Faerie Queene: Books I to III,Edmund Spenser/Douglas Brooks-Davies,3.79,0460873911,9780460873918,eng,575,33,3,11/15/1993,Everyman Paperbacks +18503,The Faerie Queene,Edmund Spenser,3.56,1840221089,9781840221084,en-US,896,42,5,6/1/2001,Wordsworth Editions +18517,To the Lighthouse,Virginia Woolf/Eudora Welty,3.78,0156907399,9780156907392,en-US,209,4116,300,12/27/1989,Harcourt +18518,The Diary of Virginia Woolf Volume One: 1915-1919,Virginia Woolf/Anne Olivier Bell/Quentin Bell,4.32,0156260360,9780156260367,eng,356,1281,40,5/15/1979,Mariner Books +18519,The Diary of Virginia Woolf Volume Five: 1936-1941,Virginia Woolf/Anne Olivier Bell/Andrew McNeillie,4.50,0156260409,9780156260404,eng,424,231,8,9/30/1985,Mariner Books +18520,The Diary of Virginia Woolf Volume Three: 1925-1930,Virginia Woolf/Anne Olivier Bell/Andrew McNeillie,4.42,0156260387,9780156260381,eng,408,485,14,9/14/1981,Mariner Books +18521,A Room of One's Own,Virginia Woolf,4.14,0141183535,9780141183534,eng,112,80536,3436,1/1/2000,Penguin Books +18525,Dr. Faustus,Christopher Marlowe,3.80,0486282082,9780486282084,eng,64,45469,935,10/20/1994,Dover Publications +18526,The Complete Plays,Christopher Marlowe/Robert Lindsey/Frank Romany,4.07,0140436332,9780140436334,eng,752,2428,50,11/27/2003,Penguin Classics +18533,Doctor Faustus and Other Plays,Christopher Marlowe/Eric Rasmussen/David Bevington,3.98,0192834452,9780192834454,eng,503,1712,40,5/7/1998,Oxford University Press +18534,Cyrano de Bergerac,Edmond Rostand/Brian Hooker/Walter Hampden,4.06,0553213601,9780553213607,eng,208,410,62,11/1/1950,Bantam Classics +18545,Rosencrantz and Guildenstern Are Dead,Tom Stoppard,4.06,0802132758,9780802132758,eng,126,73863,1618,1/21/1994,Grove Press +18546,King Lear,William Shakespeare/Stanley Wells,3.91,0192839926,9780192839923,eng,336,233,15,4/12/2001,Oxford University Press USA +18547,King Lear Macbeth Indefinition and Tragedy,Stephen Booth,4.11,1877275514,9781877275517,eng,180,18,3,6/1/2002,Cybereditions Corp +18549,A Break with Charity: A Story about the Salem Witch Trials,Ann Rinaldi,3.79,0152046828,9780152046828,eng,320,5052,417,7/1/2003,HMH Books for Young Readers +18551,A Break With Charity: A Story of the Salem Witch Trials,Ann Rinaldi,3.79,0785735488,9780785735489,eng,297,37,6,4/1/1994,Turtleback Books +18553,The Cay (The Cay #1),Theodore Taylor,3.76,044022912X,9780440229124,en-US,156,29126,2227,4/8/2003,Laurel Leaf +18556,The Queen of Whale Cay: The Eccentric Story of 'Joe' Carstairs Fastest Woman on Water,Kate Summerscale/Joe Carstairs,3.69,0140276130,9780140276138,eng,256,393,81,6/1/1999,Penguin Books +18561,Everest: Mountain Without Mercy,Broughton Coburn/David Breashears/Tim Cahill,4.03,0792269845,9780792269847,eng,256,36,2,4/1/2003,National Geographic +18564,The Summit (Everest #3),Gordon Korman,3.96,0439411378,9780439411370,eng,154,2584,106,10/1/2002,Scholastic Paperbacks +18574,Everest: Expedition to the Ultimate,Reinhold Messner,3.93,189857345X,9781898573456,eng,286,256,14,9/1/1999,Baton Wicks +18576,Everything on a Waffle (Coal Harbour #1),Polly Horvath,3.72,0374422087,9780374422080,eng,150,9839,767,9/8/2004,Sunburst +18579,Summer of my German Soldier,Bette Greene,3.68,0142406511,9780142406519,en-US,240,832,91,4/20/2006,Puffin Books +18591,Hamlet (Oxford Bookworms Library: Stage 2),Alistair McCallum/William Shakespeare,3.89,0194232204,9780194232203,eng,54,164,6,10/1/2005,Oxford University Press USA +18596,By Myself and Then Some,Lauren Bacall,3.95,0061127914,9780061127915,eng,512,2799,170,10/31/2006,It Books +18600,Touching the Void: The True Story of One Man's Miraculous Survival,Joe Simpson,4.22,0060730552,9780060730550,eng,218,44074,1405,2/3/2004,Harper Perennial +18603,The Mercy of Thin Air,Ronlyn Domingue,3.83,0743278828,9780743278829,eng,336,4718,656,6/20/2006,Washington Square Press +18610,Thin Air (Spenser #22),Robert B. Parker/David Dukes,3.90,0425152901,9780425152904,en-US,320,4055,141,4/1/1996,G.P. Putnam's Sons +18615,Princess Sultana's Daughters,Jean Sasson,3.89,038547444X,9780385474443,eng,229,59,5,6/1/1994,Doubleday Books +18628,The State of the Art,Iain M. Banks,3.84,189238938X,9781892389381,eng,188,46,6,8/1/2005,Night Shade +18629,Excession (Culture #5),Iain M. Banks,4.21,1857233948,9781857233940,eng,451,173,15,6/13/1996,Orbit +18630,The Player of Games (Culture #2),Iain M. Banks,4.27,0061053562,9780061053566,eng,293,46139,1648,2/1/1997,HarperPrism +18631,Feersum Endjinn,Iain M. Banks,3.82,0553374591,9780553374599,eng,311,320,18,6/1/1995,Spectra/Bantam Books (NYC) +18637,Use of Weapons,Iain M. Banks,4.18,0553292242,9780553292244,eng,389,210,14,3/1/1992,Bantam Books (NY) +18638,Le Sens du vent,Iain M. Banks,4.20,2221095529,9782221095522,fre,404,7,0,9/30/2002,Robert Laffont +18639,Two Girls Fat and Thin,Mary Gaitskill,3.64,0684843129,9780684843124,eng,320,1632,150,2/27/1998,Simon Schuster +18640,Three Novels & Five Short Stories,Daphne du Maurier,4.12,0517349175,9780517349175,eng,677,33,2,12/12/1988,Random House Value Publishing +18646,Galileo's Daughter: A Historical Memoir of Science Faith and Love,Dava Sobel,3.76,0140280553,9780140280555,eng,420,24290,1323,11/1/2000,Penguin Books (NYC) +18648,Galileo's Daughter,Dava Sobel,3.76,1857027124,9781857027129,eng,448,124,18,9/15/2000,Fourth Estate Ltd +18653,Shop in the Name of Love (The Cheetah Girls #2),Deborah Gregory/Paul Mantell,3.64,0786813857,9780786813858,eng,132,54,5,9/15/1999,Jump at the Sun +18655,Shopgirl,Steve Martin,3.43,0786866586,9780786866588,eng,130,1229,147,9/11/2000,Hyperio +18660,The Secret Garden: Talking Beetles and Signaling Trees: The Hidden Ways Gardens Communicate,David Bodanis,4.16,0671868616,9780671868611,eng,187,5,0,11/1/1993,Touchstone Books +18667,E=mc2: A Biography of the World's Most Famous Equation,David Bodanis/Ralph L. Fowler,4.09,0802713521,9780802713520,en-US,352,163,20,9/1/2000,Walker Books +18671,The Botany of Desire: A Plant's Eye View of the World,Michael Pollan,4.06,0747563004,9780747563006,en-US,291,110,11,3/1/2006,Bloomsbury Publishing PLC +18683,Meeting God at Every Turn,Catherine Marshall,4.36,080079298X,9780800792985,eng,256,213,13,9/1/2002,Chosen Books +18699,My Life,Bill Clinton,3.73,0375414576,9780375414572,en-US,957,807,49,6/22/2004,Knopf Publishing Group +18700,My Life Volume I: The Early Years,Bill Clinton,3.82,1400096715,9781400096718,en-US,646,206,15,5/31/2005,Vintage +18710,Murder on the Yellow Brick Road (Toby Peters #2),Stuart M. Kaminsky,3.63,0743400003,9780743400008,eng,192,454,45,5/1/2000,iBooks +18718,Down the Yellow Brick Road:The Making of The Wizard of Oz,Doug McClelland/Ted Sennett,3.92,0515040967,9780515040968,eng,159,3,2,5/1/1976,Pyramid Books +18722,Alentejo Blue,Monica Ali,2.72,0743293037,9780743293037,eng,304,788,104,6/20/2006,Scribner Book Company +18723,Brick Lane,Monica Ali,3.41,0743243315,9780743243315,eng,432,23848,1465,6/2/2004,Scribner +18728,No Ordinary Time: Franklin and Eleanor Roosevelt: The Home Front in World War II,Doris Kearns Goodwin,4.18,0684804484,9780684804484,eng,633,37093,1171,10/1/1995,Simon & Schuster +18736,Going to Pieces Without Falling Apart: A Buddhist Perspective on Wholeness,Mark Epstein/Charlie Conrad,3.90,0767902351,9780767902359,eng,200,4473,228,6/1/1999,Harmony +18741,One More For The Road,Ray Bradbury,3.69,0743440749,9780743440745,eng,289,21,3,4/7/2003,Earthlight +18745,Female Chauvinist Pigs: Women and the Rise of Raunch Culture,Ariel Levy,3.68,0743284283,9780743284288,en-US,236,8511,765,10/3/2006,Free Press +18749,Half of a Yellow Sun,Chimamanda Ngozi Adichie,4.32,1400044162,9781400044160,eng,433,71280,5494,9/12/2006,Knopf +18750,Beauty's Punishment (Sleeping Beauty #2),A.N. Roquelaure/Anne Rice,3.62,0452281431,9780452281431,eng,233,22255,710,5/1/1999,Penguin Books +18753,The World's Last Night: And Other Essays,C.S. Lewis,4.18,0156027712,9780156027717,en-GB,132,1097,117,11/4/2002,Mariner Books +18757,Last Night: Stories,James Salter,3.90,1400078415,9781400078417,eng,132,1825,186,3/14/2006,Vintage +18758,The Last Night of Ballyhoo,Alfred Uhry,3.71,1559361409,9781559361408,en-US,96,259,16,10/1/1997,Theatre Communications Group +18761,Civilization and Its Discontents,Sigmund Freud/Louis Menand,3.78,0393059952,9780393059953,eng,192,215,18,1/17/2005,W. W. Norton Company +18762,Civilization and Its Discontents,Sigmund Freud/James Strachey,3.78,0393096238,9780393096231,eng,121,170,19,12/1/1961,W.W. Norton & Company Inc. (NY) +18765,I Claudius (Claudius #1),Robert Graves,4.27,067972477X,9780679724773,eng,468,45108,1853,10/23/1989,Vintage +18770,The Modern Mind: An Intellectual History of the 20th Century,Peter Watson,4.26,0060084383,9780060084387,eng,847,588,56,7/23/2002,Harper Perennial +18771,Origins of the Modern Mind: Three Stages in the Evolution of Culture and Cognition,Merlin Donald,4.16,0674644840,9780674644847,eng,424,94,9,3/15/1993,Harvard University Press +18772,Beyond the Post-Modern Mind: The Place of Meaning in a Global Civilization,Huston Smith,4.24,0835608301,9780835608305,en-US,295,69,9,7/25/2003,Quest Books +18789,Sanctuary,William Faulkner,3.64,0679748148,9780679748144,eng,317,9336,544,12/6/1993,Vintage +18790,The Portable Faulkner,William Faulkner/Malcolm Cowley,4.29,014243728X,9780142437285,eng,650,776,22,2/25/2003,Penguin Books +18792,One Matchless Time: A Life of William Faulkner,Jay Parini,3.97,0060935553,9780060935559,en-US,528,193,34,6/14/2005,Harper Perennial +18795,The Guermantes Way (In Search of Lost Time #3),Marcel Proust/C.K. Scott Moncrieff/Terence Kilmartin/D.J. Enright,4.30,0375752331,9780375752339,eng,834,451,80,11/3/1998,The Modern Library New York +18798,The Guermantes Way (In Search of Lost Time #3),Marcel Proust/Mark Treharne/Christopher Prendergast,4.30,0143039229,9780143039228,eng,619,4345,246,5/31/2005,Penguin Classics +18799,Sodom and Gomorrah (In Search of Lost Time #4),Marcel Proust/Christopher Prendergast/John Sturrock,4.35,0143039318,9780143039310,eng,557,3243,172,11/1/2005,Penguin Classics +18800,In Search of Lost Time Vol. 2: Within a Budding Grove Part 2 & The Guermantes' Way,Marcel Proust/C.K. Scott Moncrieff/Terence Kilmartin,4.57,1841598976,9781841598970,eng,888,48,1,6/29/2001,Everyman's Library +18801,The Captive & The Fugitive (In Search of Lost Time #5-6),Marcel Proust/C.K. Scott Moncrieff/Terence Kilmartin/D.J. Enright,4.39,0375753117,9780375753114,eng,957,1924,143,2/16/1999,Modern Library +18802,Finding Time Again (In Search of Lost Time #7),Marcel Proust/Ian Patterson/Christopher Prendergast,4.49,0141180366,9780141180366,eng,374,181,43,10/2/2003,Penguin +18803,The Way by Swann’s (In Search of Lost Time #1),Marcel Proust/Lydia Davis/Christopher Prendergast,4.14,0141180315,9780141180311,eng,489,318,52,10/2/2003,Penguin Classics +18807,Dostoevsky: The Mantle of the Prophet 1871-1881,Joseph Frank,4.56,0691115699,9780691115696,eng,800,101,12,9/2/2003,Princeton University Press +18808,Dostoevsky,Richard Freeborn,3.76,1904341276,9781904341277,eng,183,55,6,10/1/2005,Haus Publishing +18812,Dostoevsky: The Stir of Liberation 1860-1865,Joseph Frank,4.51,0691014523,9780691014524,eng,416,118,15,11/21/1988,Princeton University Press +18815,Dostoevsky Kierkegaard Nietzsche and Kafka,William Hubben,3.57,0684825899,9780684825892,eng,192,78,10,5/13/1997,Charles Scribner's Sons +18816,Problems of Dostoevsky's Poetics,Mikhail Bakhtin/Caryl Emerson,4.34,0816612285,9780816612284,eng,334,641,29,6/21/1984,University Of Minnesota Press +18817,Dostoevsky: The Years of Ordeal 1850-1859,Joseph Frank,4.43,0691014221,9780691014227,eng,336,151,22,1/21/1987,Princeton University Press +18822,The Possessed,Fyodor Dostoyevsky/Constance Garnett/Elizabeth Dalton,4.27,1593082509,9781593082505,eng,768,504,52,2/1/2005,Barnes & Noble +18824,The Idiot,Fyodor Dostoyevsky/Constance Garnett/Joseph Frank,4.18,1593083475,9785170211579,eng,559,125,13,1/6/2005,Barnes Noble Classics +18825,Money,Martin Amis,3.71,0099461889,9780099461883,eng,394,19967,732,4/7/2005,Vintage +18826,House of Meetings,Martin Amis,3.41,1400044553,9781400044559,eng,241,1917,206,1/16/2007,Alfred A. Knopf +18828,The Rachel Papers,Martin Amis,3.59,0679734589,9780679734581,eng,240,8180,346,9/29/1992,Vintage +18829,Yellow Dog,Martin Amis,2.79,1400077273,9781400077274,eng,352,1449,94,1/4/2005,Vintage +18831,Success,Martin Amis,3.66,0679734481,9780679734482,eng,224,2191,101,4/3/1991,Vintage +18832,Koba the Dread: Laughter and the Twenty Million,Martin Amis,3.83,1400032202,9781400032204,eng,306,1182,110,9/9/2003,Vintage +18833,Dead Babies,Martin Amis,3.32,067973449X,9780679734499,eng,206,6348,162,4/3/1991,Vintage +18834,Beginning Again: An Autobiography of The Years 1911 to 1918,Leonard Woolf,3.81,0156116804,9780156116800,eng,263,64,8,10/18/1989,Mariner Books +18835,Virginia Woolf: A Biography,Quentin Bell,4.17,0156935805,9780156935807,eng,576,2583,66,3/20/1974,Mariner Books +18837,Cliffs Notes on Woolf's Mrs. Dalloway,Gary K. Carey,3.09,0764544578,9780764544576,eng,72,10,2,12/12/2003,Cliffs Notes +18839,Orlando,Virginia Woolf,3.87,0141184272,9780141184272,eng,228,42153,2071,9/28/2000,Penguin Classics +18840,The Common Reader,Virginia Woolf/Andrew McNeillie,4.16,015602778X,9780156027786,eng,272,1136,58,11/4/2002,Mariner Books +18842,A Room of One's Own,Virginia Woolf/Mark Hussey/Susan Gubar,4.14,0156030411,9780156030410,en-US,112,878,81,8/1/2005,Mariner Books +18843,Women and Writing,Virginia Woolf/Michèle Barrett,4.07,0156028069,9780156028066,eng,216,244,13,3/31/2003,A Harvest Book/Harcourt Inc. +18844,Flush,Virginia Woolf/Trekkie Ritchie,3.83,0156319527,9780156319522,eng,204,3567,336,10/4/1976,Mariner Books +18846,Virginia Woolf,Hermione Lee,4.26,0375701362,9780375701368,eng,893,2807,113,10/5/1999,Vintage +18849,The Letters of Virginia Woolf: Volume Six 1936-1941,Virginia Woolf/Nigel Nicolson/Joanne Trautmann,4.48,0156508877,9780156508872,eng,576,96,2,9/30/1982,Mariner Books +18850,On Being Ill,Virginia Woolf/Hermione Lee,4.02,1930464061,9781930464063,eng,63,1083,96,10/1/2002,Paris Press +18852,The Years,Virginia Woolf,3.77,0141185325,9780141185323,eng,444,2867,174,2/28/2002,Penguin Classics +18853,The Letters of Virginia Woolf: Volume Four 1929-1931,Virginia Woolf/Nigel Nicolson/Joanne Trautmann,4.41,0156508842,9780156508841,en-US,480,106,2,5/15/1981,Mariner Books +18854,Three Guineas,Virginia Woolf/Mark Hussey/Jane Marcus,3.87,0156031639,9780156031639,eng,352,2423,125,7/3/2006,Mariner Books +18860,The Little Red Lighthouse and the Great Gray Bridge,Hildegarde Hoyt Swift/Lynd Ward,4.26,0152045732,9780152045739,eng,64,2276,101,11/1/2003,Houghton Mifflin Company +18861,The Eagle (The Lighthouse Family #3),Cynthia Rylant/Preston McDaniels,4.08,068986311X,9780689863110,eng,64,176,15,10/1/2005,Beach Lane Books +18862,The Storm (The Lighthouse Family #1),Cynthia Rylant/Preston McDaniels,4.18,068984882X,9780689848827,eng,80,445,86,9/1/2003,Beach Lane Books +18867,The Art of Maurice Sendak,Selma G. Lanes,4.43,0810980630,9780810980631,eng,258,796,28,9/1/1998,Harry N. Abrams +18874,The Poet the Warrior the Prophet,Rubem A. Alves,4.43,0334028965,9780334028963,eng,148,27,6,9/28/2002,SCM Press +18877,The Warrior Prophet (The Prince of Nothing #2),R. Scott Bakker,3.95,1585677280,9781585677283,en-US,624,10570,221,10/25/2005,Overlook TP +18878,The Belgariad Vol. 1: Pawn of Prophecy / Queen of Sorcery / Magician's Gambit (The Belgariad #1-3),David Eddings,4.28,0345456327,9780345456328,eng,644,14418,385,8/27/2002,Del Rey Books +18879,The Belgariad Vol. Two: Castle of Wizardry / Enchanters' End Game (The Belgariad #4-5),David Eddings,4.39,0345456319,9780345456311,eng,483,7083,140,8/27/2002,Del Rey +18880,The Younger Gods (The Dreamers #4),David Eddings/Leigh Eddings,3.34,0446613320,9780446613323,eng,420,4541,85,3/1/2007,Grand Central Publishing +18881,The Malloreon Vol. 1: Guardians of the West / King of the Murgos / Demon Lord of Karanda (The Malloreon #1-3),David Eddings,4.34,0345483863,9780345483867,eng,816,4839,71,8/30/2005,Del Rey +18882,The Malloreon Vol. 2: Sorceress of Darshiva / The Seeress of Kell (The Malloreon #4-5),David Eddings,4.36,0345483871,9780345483874,eng,528,5457,59,8/30/2005,Del Rey +18884,Polgara the Sorceress,David Eddings/Leigh Eddings,4.09,0345422554,9780345422552,eng,754,25145,291,12/26/1998,Del Rey Books +18888,Mistress of Magic (The Mists of Avalon #1),Marion Zimmer Bradley/Davina Porter,4.12,1556908687,9781556908682,eng,14,12,4,4/1/1993,Recorded Books +18892,The Forest House (Avalon #2),Marion Zimmer Bradley/Diana L. Paxson,3.86,0451454243,9780451454249,eng,462,15171,322,4/1/1995,Roc +18902,Book of Nightmares (Diadem Worlds of Magic #6),John Peel,4.12,0738706124,9780738706122,eng,192,334,2,3/8/2005,Llewellyn Publications +18906,The Nightmare Room: The Nightmare Begins! (The Nightmare Room #1-3),R.L. Stine,3.88,0060766743,9780060766740,en-US,432,94,7,5/24/2005,HarperCollins +18910,The Parallax View,Slavoj Žižek,4.00,0262240513,9780262240512,eng,433,1027,51,2/10/2006,MIT Press (MA) +18911,Looking Awry: An Introduction to Jacques Lacan through Popular Culture,Slavoj Žižek,4.04,026274015X,9780262740159,eng,188,1316,51,9/8/1992,MIT Press +18913,The Puppet and the Dwarf: The Perverse Core of Christianity,Slavoj Žižek,3.85,0262740257,9780262740258,eng,196,630,40,8/29/2003,The MIT Press +18923,Zizek: A Critical Introduction,Sarah Kay,3.46,0745622089,9780745622088,eng,195,37,4,4/29/2003,Polity Press +18926,Conversations with Žižek,Slavoj Žižek/Glyn Daly,3.88,0745628974,9780745628974,eng,171,117,1,12/30/2003,Polity Press +18929,Marcovaldo,Italo Calvino/William Weaver,3.89,0156572044,9780156572040,eng,128,5813,276,11/16/1983,Mariner Books +18930,The Uses of Literature,Italo Calvino/Patrick Creagh,4.07,0156932504,9780156932509,eng,341,900,32,10/21/1987,Mariner Books +18931,Please Stop Laughing at Me... One Woman's Inspirational Story,Jodee Blanco,3.85,1580628362,9781580628365,en-US,288,9662,897,3/1/2003,Adams Media +18937,In the Beginning...Was the Command Line,Neal Stephenson,3.80,0380815931,9780380815937,en-US,151,6638,329,11/9/1999,William Morrow Paperbacks +18942,The Extraordinary Cases of Sherlock Holmes,Arthur Conan Doyle,4.21,0140367055,9780140367058,eng,277,552,37,6/1/1994,Puffin Books +18943,Confessions of an Ugly Stepsister,Gregory Maguire,3.53,0060987529,9780060987527,en-US,372,53782,3344,10/3/2000,William Morrow Paperbacks +18947,Jane Austen For Dummies,Joan Elizabeth Klingel Ray,4.03,0470008296,9780470008294,eng,362,524,62,8/1/2006,John Wiley +18952,The Rediscovery of Man,Cordwainer Smith,4.14,1857988191,9781857988192,eng,368,2396,98,5/13/1999,Gollancz +18956,Homicide: A Year on the Killing Streets,David Simon,4.38,0805080759,9780805080759,eng,646,12071,837,8/22/2006,Holt McDougal +18957,The Corner: A Year in the Life of an Inner-City Neighborhood,David Simon/Edward Burns,4.43,0767900316,9780767900317,eng,576,4404,434,6/15/1998,Broadway Books +18959,El Libertador: Writings of Simón Bolívar,Simón Bolívar/Frederick H. Fornoff/David Bushnell,3.84,0195144813,9780195144819,eng,288,7,1,5/15/2003,Oxford University Press USA +18962,Hands Collected: The Books of Simon Perchik,Simon Perchik/David Baratier,4.25,188635085X,9781886350854,eng,566,4,0,1/1/2000,Pavement Saw Press +18963,Morgoth's Ring (The History of Middle-Earth #10),J.R.R. Tolkien/Christopher Tolkien,4.13,0395680921,9780395680926,eng,478,1619,44,12/14/1993,Houghton Mifflin Harcourt +18964,The War of the Jewels (The History of Middle-Earth #11),J.R.R. Tolkien/Christopher Tolkien,3.93,0395710413,9780395710418,eng,470,3329,15,12/6/1994,Houghton Mifflin Harcourt +18966,The Silmarillion,J.R.R. Tolkien/Christopher Tolkien,3.92,0261102427,9780261102422,eng,384,292,40,2/7/1999,HarperCollins +18967,The Sillymarillion: An Unauthorized Parody of J.R.R. Tolkien's Classic the Silmarillion,Donald Lloyd,3.54,1593600259,9781593600259,eng,192,25,6,9/28/2004,Cold Spring Press +18977,The Silmarillion,J.R.R. Tolkien/Christopher Tolkien,3.92,0048231533,9780048231536,eng,441,368,44,3/12/1979,Unwin Paperbacks +18981,Hayao Miyazaki: Master of Japanese Animation,Helen McCarthy,3.93,1880656418,9781880656419,en-US,240,317,19,9/1/1999,Stone Bridge Press +18984,Cliffs Notes on Frank's The Diary of Anne Frank,Dorothea Shefer-Vanson/CliffsNotes/Anne Frank,4.32,0822003902,9780822003908,eng,64,70,1,7/10/1984,Cliffs Notes +18990,The Honourable Schoolboy,John le Carré,3.95,0743457919,9780743457910,eng,589,11733,513,10/29/2002,Scribner Book Company +19022,Valparaiso,Don DeLillo,3.33,033042694X,9780330426947,eng,107,383,21,4/1/2004,Pan MacMillan +19040,No More Water in the Tub!,Tedd Arnold/Mark Buehner,3.95,0140564306,9780140564303,eng,32,214,38,12/1/1998,Puffin Books +19041,Big Red Tub,Julia Jarman/Adrian Reynolds,4.03,0439672325,9780439672320,eng,32,241,29,12/1/2004,Orchard +19043,Tabby in the Tub (Animal Ark #29),Ben M. Baglio/Linda Chapman/Jenny Gregory,3.96,0439343909,9780439343909,eng,139,768,33,8/1/2003,Scholastic Paperbacks +19052,June Bug (Murder-by-Month Mystery #2),Jess Lourey/J.H. Lourey/Jessica Lourey,3.56,0738709123,9780738709123,eng,229,764,71,3/8/2007,Midnight Ink +19056,Wickett's Remedy,Myla Goldberg,3.27,1400078121,9781400078127,eng,370,1557,231,10/10/2006,Anchor Books +19057,I Am the Messenger,Markus Zusak/Emmanuel Pailler,4.07,0375836675,9780375836671,eng,357,110898,11457,5/9/2006,Alfred A. Knopf Borzoi Books +19062,Getting the Girl (Wolfe Brothers #3),Markus Zusak,3.70,043938950x,9780439389501,eng,256,4327,385,6/1/2004,Push +19063,The Book Thief,Markus Zusak/Cao Xuân Việt Khương,4.37,0375831002,9780375831003,eng,552,1516367,86881,3/14/2006,Alfred A. Knopf +19065,Fighting Ruben Wolfe (Wolfe Brothers #2),Markus Zusak/Stig Wemyss,3.84,0439241871,9780439241878,eng,224,3105,223,6/1/2002,Push +19066,Underdog (Wolfe Brothers #1),Markus Zusak,3.38,3473352349,9783473352340,eng,153,2591,207,5/1/1999,Ravensburger Buchverlag +19067,Nicomachean Ethics,Aristotle/Martin Ostwald,3.94,0023895306,9780023895302,en-US,352,265,20,1/11/1962,Prentice Hall/Simon & Schuster Company (Englewood Cliffs NJ) +19068,The Nicomachean Ethics,Aristotle/James Alexander Kerr Thomson/Jonathan Barnes/Hugh Tredennick,3.94,0140449493,9780140449495,eng,329,23683,472,1/29/2004,Penguin Classics +19072,Nicomachean Ethics,Aristotle/Hippocrates George Apostle,3.94,0911589031,9780911589030,eng,372,13,0,5/1/1984,Peripatetic Press +19075,Madame Bovary,Gustave Flaubert/Geoffrey Wall/Michèle Roberts,3.67,0140449124,9780140449129,eng,327,3620,394,12/31/2002,Penguin Classics +19078,Madame Bovary (Critical Editions),Gustave Flaubert/Margaret Cohen/Eleanor Marx,3.67,0393979172,9780393979176,en-US,576,401,33,12/19/2004,W.W. Norton & Company +19081,Madame Bovary,Gustave Flaubert/Donada Peters,3.67,1400132746,9781400132744,eng,0,3,0,10/1/2006,Tantor Media +19082,The Complete Works: The Revised Oxford Translation Vol. 1,Aristotle/Jonathan Barnes,4.43,0691099502,9780691099507,eng,1757,2318,17,9/1/1984,Bollingen/Princeton University Press (NJ) +19083,Politics,Aristotle,3.94,0486414248,9780486414249,eng,368,26727,274,11/15/2000,Dover Publications +19084,Aristotle's Ethics (SparkNotes Literature Guides),SparkNotes,3.00,158663822X,9781586638221,eng,80,2,0,6/13/2003,SparkNotes +19088,The Politics and The Constitution of Athens,Aristotle/Stephen Everson,3.98,0521484006,9780521484008,eng,327,407,12,10/13/1996,Cambridge University Press +19090,Middlemarch,George Eliot/Megan McDaniel/Lynne Sharon Schwartz/Lynn Sharon Schwartz,3.96,1593080239,9781593080235,eng,848,503,121,4/1/2003,Barnes Noble Classics +19093,Middlemarch,George Eliot/Harriet Walter,3.96,0141804513,9780141804514,eng,6,50,14,1/28/2003,Penguin Audio UK +19099,Silas Marner,George Eliot,3.64,1591940486,9781591940487,eng,279,165,6,5/31/2006,Townsend Press +19100,1984,George Orwell/Mauricio Molina/Miguel Martínez Sarmiento,4.18,9685270880,9789685270885,spa,301,451,42,8/1/2002,Lectorum +19103,The Complete Tales of Nikolai Gogol Volume 1,Nikolai Gogol/Constance Garnett/Leonard J. Kent,4.32,0226300684,9780226300689,en-US,302,311,14,4/15/1985,University of Chicago Press +19104,The Overcoat and Other Short Stories,Nikolai Gogol,4.21,0486270572,9780486270579,rus,103,8944,196,2/21/1992,Dover Publications +19106,The Nose,Nikolai Gogol/Kevin Hawkes,3.89,0688104649,9780688104641,eng,31,12968,446,9/29/1994,HarperCollins Publishers +19108,Dead Souls,Nikolai Gogol/Richard Pevear/Larissa Volokhonsky,3.99,1400043190,9781400043194,eng,445,388,49,9/21/2004,Everyman's Library +19117,Fathers and Sons,Ivan Turgenev/George Reavy/Jane Costlow,3.96,0451529693,9780451529695,eng,244,49911,1127,2/1/2005,Signet Book +19118,Father to Son (The Destroyer #129),Warren Murphy/Richard Sapir/James Mullaney,4.11,0373632444,9780373632442,eng,349,60,4,10/1/2002,Gold Eagle +19124,Children of the Star (Children of the Star #1-3),Sylvia Engdahl,4.24,1892065142,9781892065148,eng,728,168,12,1/10/2000,Meisha Merlin Publishing +19125,From Far Away,Robert Munsch/Michael Martchenko/Saoussan Askar,4.00,155037396X,9781550373967,eng,33,219,21,2/1/1995,Annick Press +19126,From Far Away Vol. 01,Kyoko Hikawa/Trina Robbins/Yuko Sawada/Walden Wong,4.31,1591165997,9781591165996,eng,200,5827,125,11/9/2004,VIZ Media +19129,Silos Politics and Turf Wars: A Leadership Fable about Destroying the Barriers That Turn Colleagues Into Competitors,Patrick Lencioni,4.05,0787976385,9780787976385,eng,224,2677,166,2/1/2006,Jossey-Bass +19134,Moral Politics: How Liberals and Conservatives Think,George Lakoff,4.03,0226467716,9780226467719,eng,471,1260,130,5/1/2002,University Of Chicago Press +19135,'Salem's Lot,Stephen King/Ron McLarty,4.02,0743536959,9780743536950,en-US,0,56,5,1/19/2004,Simon & Schuster Audio +19136,El misterio de Salem's Lot,Stephen King/Marta I. Guastavino,4.02,8484504794,9788484504795,spa,509,16,3,12/17/2002,Plaza & Janes Editores S.A. +19137,'Salem's Lot,Stephen King,4.02,0451098277,9780451098276,eng,817,18,3,8/1/1976,Signet +19144,Prodigal Blues,Gary A. Braunbeck/Deena Warner,4.25,1587671093,9781587671098,eng,304,221,28,5/1/2006,Cemetery Dance Publications +19148,The Divine Comedy Vol. I: Inferno,Dante Alighieri/Mark Musa,4.00,0140444416,9780140444414,eng,432,305,19,11/28/1984,Penguin Classics +19152,The Divine Comedy I: Hell,Dante Alighieri/Dorothy L. Sayers,4.00,0140440062,9780140440065,eng,347,696,75,1/27/2005,Penguin Classics +19155,The Divine Comedy Vol. 1: Inferno,Dante Alighieri/Mark Musa,4.00,0142437220,9780142437223,eng,432,2172,166,2/27/2003,Penguin Classics +19156,Could Do Better: Why Children Underachieve and What to Do About It,Harvey P. Mandel/Sander I. Marcus/Loral Dean,3.80,047115847X,9780471158479,eng,291,2,0,8/13/1996,Wiley +19163,Inferno,Dante Alighieri/Allen Mandelbaum/Barry Moser/Gabriel Marruzzo/Laury Magnus,4.00,0553213393,9780553213393,eng,396,1075,86,8/3/2004,Bantam Books +19164,Purgatorio (La Divina Commedia #2),Dante Alighieri/Robert M. Durling,4.02,0195087453,9780195087451,ita,704,15675,244,4/8/2004,Oxford University Press USA +19165,Dante Alighieri's Divine Comedy the Inferno,Dante Alighieri,4.00,0812034112,9780812034110,en-US,101,5,0,10/1/1984,Barron's Educational Series +19166,The Portable Dante,Dante Alighieri/Mark Musa,4.22,0142437549,9780142437544,eng,654,278,38,7/29/2003,Penguin Books +19171,Purgatorio (The Divine Comedy #2),Dante Alighieri/Allen Mandelbaum/Laury Magnus/Anthony Oldcorn/Daniel Feldman/Barry Moser,4.02,055321344X,9780553213447,eng,413,460,33,8/3/2004,Bantam Books +19172,The Divine Comedy Vol. 3: Paradise,Dante Alighieri/Mark Musa,3.95,0140444432,9780140444438,eng,433,378,32,7/31/1986,Penguin Classics +19173,The Divine Comedy Vol. 2: Purgatory,Dante Alighieri/Mark Musa,4.02,0140444424,9780140444421,eng,399,764,49,5/30/1985,Penguin Classics +19176,Vita Nuova,Dante Alighieri/Mark Musa,3.87,0253201624,9780253201621,eng,210,67,10,4/22/1973,Indiana University Press +19178,The Rime of the Ancient Mariner and Other Poems,Samuel Taylor Coleridge/Stanley Appelbaum,3.94,0486272664,9780486272665,eng,76,3058,78,9/18/1992,Dover Publications +19179,Beowulf,Unknown/Burton Raffel,3.44,0451527402,9780451527400,eng,160,2753,150,9/1/1999,Signet Classics +19180,Beowulf: A Dual-Language Edition,Unknown/Howell D. Chickering,3.44,1400096227,9781400096220,eng,464,246,32,2/14/2006,Anchor +19181,Beowulf: A New Telling,Robert Nye,3.50,0440905605,9780440905608,eng,94,1690,326,3/15/1982,Dell +19182,Beowulf,Michael Morpurgo/Michael Foreman,3.85,0763632066,9780763632069,eng,96,51,8,10/24/2006,Candlewick Press +19193,Seamus Heaney,Helen Vendler,4.07,0674002059,9780674002050,eng,208,61,10,3/1/2000,Harvard University Press +19199,The Spirit Level: Poems,Seamus Heaney,4.14,0374525110,9780374525118,eng,82,94,12,4/10/1997,Farrar Straus and Giroux +19243,New Selected Poems 1966-1987,Seamus Heaney,4.19,0571143725,9780571143726,eng,246,356,19,3/4/2002,Faber and Faber +19254,Finders Keepers: Selected Prose 1971-2001,Seamus Heaney,4.15,0571210910,9780571210916,en-GB,432,16,0,4/7/2003,Faber and Faber +19257,Canopy: A Work for Voice and Light in Harvard Yard,David Ward/Parveen Adams/Seamus Heaney/Ivan Gaskell,0.00,0916724948,9780916724948,eng,63,0,0,12/31/1997,Arts Publications +19259,Electric Light,Seamus Heaney,3.94,0571207987,9780571207985,en-GB,81,30,2,3/19/2001,Faber and Faber +19263,Norden,Seamus Heaney,4.09,3446187499,9783446187498,ger,127,2,0,8/1/1996,Carl Hanser +19279,Norte,Seamus Heaney/Margarita Ardanaz,4.09,8475173462,9788475173467,spa,155,6,1,11/28/1992,Hiperión +19282,The Odyssey,Homer/Robert Fitzgerald/Seamus Heaney,3.76,1857150945,9781857150940,eng,509,48,3,10/8/1992,Everyman +19290,Paradise Lost,John Milton/Scott Elledge,3.82,0393962938,9780393962932,eng,688,421,40,3/17/1993,W. W. Norton & Company +19293,Tolkien: The Illustrated Encyclopaedia,David Day,4.13,0684839792,9780684839790,eng,288,3965,25,9/1/1996,Touchstone +19295,Ten Days to Self-Esteem,David D. Burns,3.96,0688094554,9780688094553,eng,336,436,19,3/17/1999,William Morrow Paperbacks +19298,The Swords of Night and Day (The Drenai Saga #11),David Gemmell,4.32,0552146781,9780552146784,eng,640,6954,93,4/1/2005,Corgi +19302,Pippi Longstocking,Astrid Lindgren/Florence Lamborn/Louis S. Glanzman,4.13,0142402494,9780142402498,eng,160,147067,2558,4/21/2005,Puffin Books +19307,Pippi in the South Seas,Astrid Lindgren/Gerry Bothmer,4.11,0670557110,9780670557110,en-US,126,15193,173,9/18/1959,Viking Books for Young Readers +19308,Pippi Goes on Board,Astrid Lindgren/Florence Lamborn/Nancy Seligsohn,4.12,0140309594,9780140309591,eng,140,10399,156,2/24/1977,Puffin Books +19311,The Children of Noisy Village,Astrid Lindgren/Ilon Wikland/Florence Lamborn,4.29,014032609X,9780140326093,eng,128,5920,205,2/2/1988,Puffin Books +19312,The Brothers Lionheart,Astrid Lindgren/Ilon Wikland/Jill M. Morgan,4.36,1930900244,9781930900240,eng,231,20235,453,12/31/2004,Purple House Press +19313,Christmas in Noisy Village,Astrid Lindgren/Ilon Wikland/Florence Lamborn,4.18,0140503447,9780140503449,en-US,32,830,41,10/29/1981,Puffin Books +19314,Ronia the Robber's Daughter,Astrid Lindgren/Patricia Crampton,4.30,0140317201,9780140317206,eng,176,16327,444,2/5/1985,Puffin Books +19315,Happy Times in Noisy Village,Astrid Lindgren/Ilon Wikland/Florence Lamborn,4.30,1883937663,9781883937669,eng,128,600,35,7/1/2003,Ignatius Press +19316,Pippi Calzaslargas (Pippi Calzaslargas #1),Astrid Lindgren/Blanca Ríos/Richard Kennedy,4.13,8426131921,9788426131928,spa,137,85,14,7/1/2005,Editorial Juventud +19318,The Tomten,Astrid Lindgren/Harald Wiberg,4.24,0698115910,9780698115910,eng,32,1599,109,10/6/1997,The Putnam & Grosset Group +19319,Lotta on Troublemaker Street,Astrid Lindgren/Robin Preiss Glasser,3.98,0689846738,9780689846731,eng,55,1429,24,10/1/2001,Aladdin Paperbacks +19321,The Tale of Peter Rabbit,Beatrix Potter,4.18,0723247706,9780723247708,eng,72,188842,1575,3/7/2002,Warne +19322,The Tale of Peter Rabbit: A Pop-up Adventure,Beatrix Potter,4.18,0723257043,9780723257042,en-US,16,19,2,2/2/2006,Warne +19323,Tale of Peter Rabbit,Beatrix Potter,4.18,0723249865,9780723249863,eng,80,17,2,10/21/2004,Warne +19327,The Tale of Peter Rabbit,Beatrix Potter,4.18,0723258732,9780723258735,eng,80,36,4,12/28/2006,Warne +19331,Beatrix Potter's Journal,Beatrix Potter,4.36,0723258058,9780723258056,eng,32,350,42,10/19/2006,Warne +19333,The World of Peter Rabbit (Original Peter Rabbit Books 1-23),Beatrix Potter,4.62,0723257639,9780723257639,eng,1072,220,14,5/4/2006,Warne +19335,Beatrix Potter: A Life in Nature,Linda Lear,4.03,0312369344,9780312369347,eng,584,1328,184,1/9/2007,St. Martin's Press +19337,The Tale of the Flopsy Bunnies,Beatrix Potter,4.19,072324779X,9780723247791,eng,58,5209,130,3/7/2002,Warne +19347,Treasure Island,Chris Tait/Robert Louis Stevenson/Lucy Corvino/Arthur Pober,3.83,1402713185,9781402713187,eng,160,798,39,3/1/2005,Sterling +19350,The Epic of Gilgamesh,Anonymous/N.K. Sandars,3.68,0848805011,9780848805012,eng,127,39,6,6/1/1976,Amereon Limited +19351,The Epic of Gilgamesh,Anonymous/N.K. Sandars,3.68,0141026286,9780141026282,eng,120,54162,1368,5/4/2006,Penguin Books Limited +19352,The Epic of Gilgamesh,Anonymous/Maureen Kovacs,3.68,0804717117,9780804717113,eng,122,314,42,8/1/1989,Stanford University Press +19353,The Evolution of the Gilgamesh Epic,Jeffrey H. Tigay,3.82,0865165467,9780865165465,eng,384,11,1,2/21/2003,Bolchazy-Carducci Publishers +19354,The Gilgamesh Epic and Old Testament Parallels,Alexander Heidel,3.95,0226323986,9780226323985,eng,280,58,8,9/15/1963,Phoenix Books/University of Chicago Press (IL) +19361,The Scarlet Letter and Other Writings,Nathaniel Hawthorne/Eugene Hudson Long/Seymour L. Gross/Richard C. Beatty/Sculley Bradley/Richmond Croom Beatty,3.59,0393956539,9780393956535,eng,443,237,17,2/1/1978,W. W. Norton & Company +19370,The Adventures of Huckleberry Finn,Mark Twain/Scott McKowen/Arthur Pober,3.82,1402726007,9781402726002,eng,305,364,27,10/28/2006,Sterling +19371,The Adventures of Huckleberry Finn,Mark Twain/Peter Coveney,3.82,0141439645,9780141439648,eng,394,1980,66,1/30/2003,Penguin Books +19373,Mark Twain's Adventures of Huckleberry Finn,Mark Twain/Richard P. Wasowski,3.82,0764587277,9780764587276,eng,264,12,0,5/1/2001,Hungry Minds +19377,Collected Tales Sketches Speeches & Essays 1852–1890,Mark Twain/Louis J. Budd,4.29,0940450364,9780940450363,eng,1120,67,6,10/15/1992,Library of America +19379,Mark Twain's Own Autobiography: The Chapters from the North American Review,Mark Twain/Michael J. Kiskis,3.80,0299125408,9780299125400,eng,301,9,1,10/1/1990,University of Wisconsin Press +19381,Candide,Voltaire/Robert M. Adams,3.77,0393960587,9780393960587,fre,224,695,55,3/19/1991,W. W. Norton and Company +19382,Candide and Other Stories (World's Classics),Voltaire/Roger Pearson,3.94,0192807269,9780192807267,en-US,301,3368,101,7/6/2006,Oxford University Press +19383,Cliffs Notes on Voltaire's Candide,James K. Lowers/CliffsNotes/Voltaire,3.40,0822002833,9780822002833,eng,80,9,3,3/29/1965,Cliffs Notes +19384,Candide: or Optimism,Voltaire/Peter Constantine/Diane Johnson,3.77,0812972015,9780812972016,eng,144,221,29,10/11/2005,Modern Library +19386,Candide and Related Writings,Voltaire/David Wootton,3.80,0872205460,9780872205468,fre,190,114,10,9/15/2000,Hackett Publishing Company Inc. +19390,Philosophical Dictionary,Voltaire/Theodore Besterman,4.09,014044257X,9780140442571,en-US,400,1394,45,9/27/1979,Penguin Classics +19393,What Is Goth?,Aurelio Voltaire,4.10,1578633222,9781578633227,eng,96,466,31,8/1/2004,Weiser Books +19396,The Picture of Dorian Gray,Oscar Wilde/Andrew Elfenbein,4.08,0321427130,9780321427137,eng,352,123,10,10/1/2006,Pearson +19397,The Real Trial of Oscar Wilde,Merlin Holland,4.04,000715805X,9780007158058,eng,384,189,14,10/5/2004,Harper Perennial +19398,Complete Shorter Fiction,Oscar Wilde/Isobel Murray,4.15,0192833766,9780192833761,eng,288,1192,26,3/5/1998,Oxford University Press +19399,The Unmasking of Oscar Wilde,Joseph Pearce,4.25,1586170260,9781586170264,eng,412,112,13,6/15/2005,Ignatius Press +19400,The Decline and Fall of the Roman Empire,Edward Gibbon/Daniel J. Boorstin/Giovanni Battista Piranesi/Hans-Friedrich Mueller,3.98,0375758119,9780375758119,eng,1312,9320,292,8/12/2003,Modern Library +19401,The Decline and Fall of the Roman Empire,Edward Gibbon/Daniel J. Boorstin/Hans-Friedrich Mueller/Giovanni Battista Piranesi,3.98,0345478843,9780345478849,eng,1258,32,8,3/1/2003,Modern Library +19403,The Decline and Fall of the Roman Empire,Edward Gibbon/Hugh Trevor-Roper,3.98,0753818817,9780753818817,eng,680,35,4,8/4/2005,Phoenix +19406,The Decline and Fall of the Roman Empire,Edward Gibbon,3.98,1857151925,9781857151923,eng,1952,19,1,10/1/1994,Everyman Chess +19409,The Christians and the Fall of Rome (Great Ideas),Edward Gibbon,3.56,0143036246,9780143036241,en-US,96,217,20,9/6/2005,Penguin +19411,The Portable Gibbon: The Decline and Fall of the Roman Empire,Edward Gibbon/Dero A. Saunders/Charles Alexander Robinson Jr.,3.98,0140150609,9780140150605,eng,691,2,1,6/30/1977,Penguin Books +19412,They Cage the Animals at Night,Jennings Michael Burch,4.32,0451159411,9780451159410,eng,304,7999,670,10/1/1985,Signet +19413,The Quilter's Homecoming (Elm Creek Quilts #10),Jennifer Chiaverini,4.04,0743260228,9780743260220,en-US,320,3865,248,4/10/2007,Simon Schuster +19416,Absolutely Normal Chaos,Sharon Creech,3.92,0330397818,9780330397810,en-GB,201,28,3,9/7/2007,MacMillan Children's Books +19428,The Abominable Snowman Doesn't Roast Marshmallows (The Adventures of the Bailey School Kids #50),Debbie Dadey/Marcia Thornton Jones,3.82,0439650372,9780439650373,eng,96,402,19,3/1/2005,Scholastic Paperbacks +19430,Santa Claus Doesn't Mop Floors (The Adventures of the Bailey School Kids #3),Debbie Dadey/Marcia Thornton Jones/John Steven Gurney,3.75,0590444778,9780590444774,en-US,80,1146,42,10/1/1991,Scholastic Paperbacks +19432,Angels Don't Know Karate (The Adventures Of The Bailey School Kids #23),Debbie Dadey/Marcia Thornton Jones/John Steven Gurney,3.80,0590849026,9780590849029,en-US,67,741,26,11/1/1996,Scholastic +19433,Werewolves Don't Run for President (The Adventures of the Bailey School Kids #49),Debbie Dadey/Marcia Thornton Jones/John Steven Gurney,3.84,0439650364,9780439650366,eng,96,262,14,10/1/2004,Scholastic Paperbacks +19435,Vampires Don't Wear Polka Dots (The Adventures of the Bailey School Kids #1),Debbie Dadey/Marcia Thornton Jones/John Steven Gurney,3.81,059043411X,9780590434119,en-US,80,6983,215,1/1/1991,Scholastic Paperbacks +19436,Werewolves Don't Go to Summer Camp (The Adventures of the Bailey School Kids #2),Debbie Dadey/Marcia Thornton Jones/John Steven Gurney,3.82,0590440616,9780590440615,eng,96,2175,76,7/1/1991,Scholastic Paperbacks +19437,Phantoms Don't Drive Sports Cars (The Adventures of the Bailey School Kids #32),Debbie Dadey/Marcia Thornton Jones/John Steven Gurney,3.76,0590189824,9780590189828,eng,80,408,18,9/1/1998,Scholastic Paperbacks +19439,My Perfect Life (Confessions of a Teenage Drama Queen #2),Dyan Sheldon,3.32,076362828X,9780763628284,eng,208,460,39,3/3/2005,Candlewick Press +19444,Be Happy or I'll Scream!: My Deranged Quest for the Perfect Husband Family and Life,Sheri Lynch,3.71,0312342349,9780312342340,en-US,240,162,34,2/6/2007,St. Martin's Griffin +19445,A Guide to the Words of My Perfect Teacher,Ngawang Pelzang/Padmakara Translation Group/Patrul Rinpoche/Alak Zenkar,4.61,1590300734,9781590300732,eng,336,79,0,6/22/2004,Shambhala +19448,All-American Girl (All-American Girl #1),Meg Cabot,3.74,0064472779,9780064472777,eng,398,59683,1728,7/22/2003,HarperTrophy +19452,Ready or Not (All-American Girl #2),Meg Cabot,3.40,0060724501,9780060724504,eng,238,22149,737,8/1/2005,HarperCollins Publishers +19456,Ready or Not (All-American Girl #2),Meg Cabot,3.40,0786282827,9780786282821,en-US,238,86,8,4/12/2006,Thorndike Press +19462,The Perfect Score (It's All About Attitude #5),Julie Kenner,3.24,0373792735,9780373792733,eng,240,110,9,7/25/2006,Harlequin +19469,The Face on the Milk Carton (Janie Johnson #1),Caroline B. Cooney,3.73,038532328X,9780385323284,eng,192,49975,2360,4/13/1996,Delacorte Press +19474,Teen Angst? Naaah...,Ned Vizzini,3.90,044023767X,9780440237679,eng,279,3146,270,8/13/2002,Laurel Leaf Library +19475,It's Kind of a Funny Story,Ned Vizzini,4.13,0786851961,9780786851966,eng,444,704,111,4/1/2006,Disney-Hyperion +19476,Be More Chill,Ned Vizzini,3.68,0786809965,9780786809967,eng,287,9836,1202,9/1/2005,Disney-Hyperion +19483,Collected Prose: Autobiographical Writings True Stories Critical Essays Prefaces and Collaborations with Artists,Paul Auster,4.04,031242468X,9780312424688,eng,528,273,20,3/1/2005,Picador +19484,Hand to Mouth: A Chronicle of Early Failure,Paul Auster,3.62,0312422326,9780312422325,eng,176,1575,89,8/1/2003,Picador +19485,The Book of Illusions,Paul Auster,3.85,0571212182,9780571212187,eng,336,486,57,9/4/2003,Faber and Faber +19487,City of Glass: The Graphic Novel,Paul Karasik/David Mazzucchelli/Paul Auster/Art Spiegelman,3.93,0571226337,9780571226337,eng,144,1628,66,2/3/2005,Faber & Faber +19496,Moonraker,Ian Fleming,3.74,0141187565,9780141187563,en-GB,247,120,13,6/3/2004,Penguin Books Limited (UK) +19498,Moonraker's Bride,Madeleine Brent,4.31,0285620649,9780285620643,eng,352,2281,302,1/1/1973,Souvenir Press +19501,Eat Pray Love,Elizabeth Gilbert,3.55,0143038419,9780143038412,eng,368,1362264,47620,2/1/2007,Riverhead Books +19503,Eat Pray Love: One Woman's Search for Everything Across Italy India and Indonesia,Elizabeth Gilbert,3.55,1415926697,9781415926697,eng,13,112,41,9/1/2006,Books on Tape +19506,The World as Will and Representation Vol. 1,Arthur Schopenhauer/Judith Norman/E.F.J. Payne/Alistair Welchman/Christropher Janaway,4.19,0486217612,9780486217611,eng,534,7475,126,6/1/1966,Dover Publications +19508,The Schopenhauer Cure,Irvin D. Yalom,4.22,0060938102,9780060938109,eng,358,9550,455,1/3/2006,Harper Perennial Modern Classics +19510,Essays and Aphorisms,Arthur Schopenhauer/R.J. Hollingdale,4.17,0140442278,9780140442274,eng,240,6222,169,8/26/1976,Penguin Classics +19511,Essay on the Freedom of the Will,Arthur Schopenhauer/Konstantin Kolenda,4.15,0486440117,9780486440118,eng,128,379,20,5/6/2005,Dover Publications +19512,Schopenhauer: A Very Short Introduction,Christopher Janaway,3.81,0192802593,9780192802590,eng,137,346,26,2/21/2002,Oxford University Press +19528,The Mandarins,Simone de Beauvoir/Leonard M. Friedman,4.14,0007203942,9780007203949,eng,752,3250,194,5/3/2005,Harper Perennial +19531,Les Mandarins: Tome 2,Simone de Beauvoir,4.20,2070367703,9782070367702,fre,500,98,10,6/9/1972,Folio +19532,Die Mandarins von Paris,Simone de Beauvoir,4.14,3499107619,9783499107610,ger,1040,61,5,1/1/2000,Rowohlt Tb. +19534,The Brothers K,David James Duncan,4.38,055337849X,9780553378498,eng,645,12703,1665,6/1/1996,Dial Press Trade Paperback +19542,Where the Wild Things Are,Maurice Sendak,4.22,0060254920,9780060254926,eng,40,8704,483,12/26/2012,HarperCollins +19546,野獸國 (漢聲精選世界最佳兒童圖畫書.心理成長類 #36),Maurice Sendak,4.22,9575881044,9789575881047,zho,36,27,4,3/1/1987,英文漢聲出版股份有限公司 +19552,Essentials of Classic Italian Cooking,Marcella Hazan/Karin Kretschmann,4.16,039458404X,9780394584041,eng,704,15222,163,10/27/1992,Knopf Publishing Group +19560,The Italians: A Full-Length Portrait Featuring Their Manners and Morals,Luigi Barzini/Joan Emerson,3.83,0684825007,9780684825007,eng,352,578,41,7/3/1996,Touchstone +19563,Peking to Paris,Luigi Barzini/L.P. De Castelvecchio,3.79,0912050268,9780912050263,eng,308,25,0,12/1/1973,Open Court Publishing Company +19564,The Lost Lunar Baedeker: Poems of Mina Loy,Mina Loy/Roger L. Conover,4.17,0374525072,9780374525071,eng,256,1469,63,4/8/1997,Farrar Straus and Giroux +19571,Paris Was Yesterday 1925-1939,Janet Flanner/Irving Drutman,3.85,0156709902,9780156709903,eng,264,257,33,4/18/1988,Mariner Books +19578,Lost Boy Lost Girl,Peter Straub,3.48,0449149919,9780449149911,eng,368,4017,296,9/28/2004,Ballantine Books +19580,Shadowland,Peter Straub,3.91,0425188221,9780425188224,eng,468,10293,253,3/4/2003,Berkley +19581,Ghost Story,Peter Straub,3.95,0671685635,9780671685638,eng,567,61330,1520,9/1/1989,Pocket Books / Simon & Schuster Inc. +19587,Territoires (Le talisman des territoires #2),Stephen King/Peter Straub/Bernard Cohen,4.01,2221093836,9782221093832,fre,556,18,1,10/21/2002,Laffont +19593,Floating Dragon,Peter Straub,3.84,0425189643,9780425189641,eng,595,10727,140,8/5/2003,Berkley +19595,The Color of Water: A Black Man's Tribute to His White Mother,James McBride,4.09,159448192X,9781594481925,en-US,328,1597,157,2/7/2006,Riverhead Books +19596,Color: A Natural History of the Palette,Victoria Finlay,3.78,0812971426,9780812971422,en-US,464,61033,558,12/30/2003,Random House Trade Paperbacks +19599,Vincent's Colors,Vincent van Gogh/Metropolitan Museum of Art/William Lach,4.16,0811850994,9780811850995,eng,48,329,49,9/29/2005,Chronicle Books +19605,Flinx's Folly (Pip & Flinx #9),Alan Dean Foster,3.94,0345450396,9780345450395,eng,288,1755,21,9/28/2004,Del Rey +19608,The Doctor's House,Ann Beattie,2.96,0743235010,9780743235013,eng,288,164,23,2/11/2003,Scribner +19610,Chilly Scenes of Winter,Ann Beattie,3.91,0679732349,9780679732341,en-GB,288,1045,100,1/2/1991,Vintage +19613,What Life Was Like in the Realm of Elizabeth: England AD 1533-1603 (What Life Was Like),Time-Life Books,3.72,0783554567,9780783554563,eng,144,59,7,5/24/1999,Time Life Medical +19614,What Life Was Like In the Age of Chivalry: Medieval Europe AD 800-1500 (What Life Was Like),Denise Dersin,3.77,0783554516,9780783554518,eng,168,126,12,5/24/1999,Time Life Medical +19615,What Life Was Like on the Banks of the Nile: Egypt 3050-30 BC,Denise Dersin,4.00,0809493780,9780809493784,eng,192,199,17,5/24/1999,Time Life Books +19617,What Life Was Like at the Rebirth of Genius: Renaissance Italy AD 1400-1550 (What Life Was Like),Richard Stapleford/Time-Life Books,4.00,0783554613,9780783554617,eng,168,41,3,9/1/1999,Time Life Medical +19618,What Life Was Like Among Druids and High Kings: Celtic Ireland AD 400-1200 (What Life Was Like),Robin Chapman Stacey,3.64,0783554559,9780783554556,eng,144,123,13,5/24/1999,Time Life Medical +19619,What Life Was Like Amid Splendor and Intrigue: Byzantine Empire AD 330-1453,Ellen Anker/Denise Dersin,3.68,0783554575,9780783554570,eng,144,49,2,5/24/1999,Time Life Medical +19620,What Life Was Like in the Time of War and Peace: Imperial Russia AD 1696-1917 (What Life Was Like),Time-Life Books,3.75,0783554591,9780783554594,eng,144,47,7,9/1/1999,Time Life Medical +19621,What Life Was Like in the Jewel in the Crown: British India AD 1600-1905,Time-Life Books,3.66,0783554605,0034406054602,eng,168,44,4,9/1/1999,Time Life Medical +19631,Birds of America,Lorrie Moore,4.11,0312241224,9780312241223,eng,291,12321,951,9/23/1999,Picador USA +19633,Self-Help,Lorrie Moore,4.20,0571145345,9780571145348,eng,176,78,9,1/10/1998,Faber & Faber +19634,Who Will Run the Frog Hospital?,Lorrie Moore,3.79,1400033829,9781400033829,eng,160,6419,628,4/13/2004,Vintage +19661,Family Matters,Rohinton Mistry,4.02,037570342X,9780375703423,eng,500,19200,785,11/18/2003,Vintage +19662,Tales from Firozsha Baag [Jan 01 2002] Mistry Rohinton,Rohinton Mistry,3.94,0571218857,9780571218851,eng,250,83,17,1/1/2002,Faber and Faber & Penguin India +19668,Without Remorse (John Clark #1; Jack Ryan Universe Publication Order #6),Tom Clancy,4.18,0425143325,9780425143322,eng,750,53936,1004,8/1/1994,Berkley Books +19669,Clave Red Rabbit (Jack Ryan #2),Tom Clancy/Enric Tremps,3.67,8408065068,9788408065067,spa,720,8,0,2/1/2006,Planeta Publishing +19670,Debt of Honor (Jack Ryan #7),Tom Clancy,4.05,0425147584,9780425147580,eng,990,39521,469,8/1/1995,Berkley Books +19671,The Archimedes Effect (Tom Clancy's Net Force #10),Steve Perry/Larry Segriff/Tom Clancy/Steve Pieczenik,3.98,0425204243,9780425204245,eng,336,1276,12,2/7/2006,Berkley +19672,Hidden Agendas (Tom Clancy's Net Force #2),Steve Perry/Tom Clancy/Steve Pieczenik,3.76,0425171396,9780425171394,eng,366,4138,39,10/28/1999,Berkley +19673,Marine: A Guided Tour of a Marine Expeditionary Unit (Guided Tour),Tom Clancy,3.83,0425154548,9780425154540,eng,336,646,11,11/1/1996,Berkley +19674,The Teeth of the Tiger (Jack Ryan Universe #12),Tom Clancy,3.64,0141004924,9780141004921,eng,625,18128,467,8/26/2004,Penguin Books Ltd. +19675,Executive Orders (Jack Ryan #8),Tom Clancy,4.06,0006479758,9780006479758,eng,1273,39577,436,1/1/1998,HarperCollins +19676,State of War (Tom Clancy's Net Force #7),Steve Perry/Tom Clancy/Steve Pieczenik/Larry Segriff,3.86,0425188132,9780425188132,eng,384,1329,24,3/4/2003,Berkley +19677,Every Man a Tiger: The Gulf War Air Campaign (Commanders),Tom Clancy/Chuck Horner,3.75,0425207366,9780425207369,eng,640,14,2,12/6/2005,Berkley Books +19679,Wild Card (Tom Clancy's Power Plays #8),Jerome Preisler/Tom Clancy/Martin Greenberg,3.96,0425199118,9780425199114,eng,352,835,13,11/2/2004,Berkley +19681,Carrier: A Guided Tour of an Aircraft Carrier (Guided Tour),Tom Clancy/Leon A. Edney,3.82,0425166821,9780425166826,eng,368,583,11,2/1/1999,Berkley +19682,Cloak and Dagger (Tom Clancy's Net Force Explorers #17),John Helfers/Russell Davis/Tom Clancy/Steve Pieczenik,4.00,0425183033,9780425183038,eng,208,58,0,3/4/2003,Berkley +19683,Cybernation (Tom Clancy's Net Force #6),Steve Perry/Tom Clancy/Steve Pieczenik,3.76,0425182673,9780425182673,eng,368,1789,19,11/1/2001,Berkley +19684,Virtual Vandals (Tom Clancy's Net Force Explorers #1),Diane Duane/Tom Clancy/Steve Pieczenik,4.01,0425161730,9780425161739,eng,192,3414,16,2/1/1999,Berkley +19685,Cutting Edge (Tom Clancy's Power Plays #6),Jerome Preisler/Tom Clancy/Martin Greenberg,3.86,0425187055,9780425187050,eng,432,1218,11,11/5/2002,Berkley +19686,Mission of Honor (Tom Clancy's Op-Center #9),Jeff Rovin/Tom Clancy/Steve Pieczenik,3.91,0425186709,9780425186701,eng,432,1557,25,6/4/2002,Berkley Books +19687,The Bear and the Dragon (John Clark #3),Tom Clancy,3.82,0425180964,9780425180969,eng,1137,21401,382,8/1/2001,Berkley Books +19688,Breaking Point (Tom Clancy's Net Force #4),Steve Perry/Tom Clancy/Steve Pieczenik,3.70,0425176932,9780425176931,eng,368,8119,32,10/1/2000,Berkley +19689,Airborne: A Guided Tour Of An Airborne Task Force,Tom Clancy,3.77,0425157709,9780425157701,eng,326,448,5,11/1/1997,Berkley +19707,Red Rabbit (Jack Ryan #2),Tom Clancy,3.67,0399148701,9780399148705,eng,640,23018,514,8/26/2002,G.P. Putnam's Sons +19712,John Deere Farm Tractors: A History of the John Deere Tractor,Randy Leffingwell,4.22,0879387556,9780879387556,eng,192,22,1,9/1/1993,Motorbooks International +19764,Corvette: Fifty Years,Randy Leffingwell/David Newhardt,4.06,0760320063,9780760320068,eng,384,15,1,10/23/2004,Motorbooks +19768,Tough to Tackle,Matt Christopher/Harvey Kidder,3.87,0316140589,9780316140584,eng,139,389,24,9/30/1987,Little Brown Books for Young Readers +19780,Complete Guide to OneNote,W. Frederick Zimmerman/Chris Pratley,4.25,1590592166,9781590592168,eng,412,4,0,11/17/2003,Apress +19786,The Goon Show Volume 4: My Knees Have Fallen Off!,NOT A BOOK,5.00,0563388692,9780563388692,eng,2,3,0,4/1/1996,BBC Physical Audio +19787,The Goon Show: Moriarty Where Are You?,NOT A BOOK,4.43,0563388544,9780563388548,eng,2,0,0,3/30/2005,BBC Physical Audio +19788,The Goon Show Volume 11: He's Fallen in the Water!,NOT A BOOK,5.00,0563388323,9780563388326,eng,2,2,0,10/2/1995,BBC Physical Audio +19792,Power: Die 48 Gesetze Der Macht,Robert Greene/Birgit Brandau/Hartmut Schickert,4.18,3423362480,9783423362481,ger,536,39,4,10/1/2001,Deutscher Taschenbuch Verlag +19794,The Echo Maker,Richard Powers,3.38,0374146357,9780374146351,eng,451,7087,1119,10/17/2006,Farrar Straus Giroux +19795,Power vs. Force,David R. Hawkins,4.20,1561709336,9781561709335,en-US,341,7167,376,3/5/2002,Hay House +19797,The Power of Art,Simon Schama,3.88,0061176109,9780061176104,en-US,448,15804,96,11/10/2006,Ecco +19801,Goodbye Darkness: A Memoir of the Pacific War,William Manchester,4.18,0316501115,9780316501118,eng,401,4936,174,4/12/2002,Back Bay Books +19802,A World Lit Only by Fire: The Medieval Mind and the Renaissance: Portrait of an Age,William Manchester,3.85,0316545562,9780316545563,eng,322,9807,745,6/1/1993,Back Bay Books +19803,The Last Lion 2: Winston Spencer Churchill: Alone 1932-40,William Manchester,4.48,0316545120,9780316545129,eng,756,240,27,10/28/1988,Little Brown & Company +19807,The Glory and the Dream: A Narrative History of America 1932-72,William Manchester,4.43,0553345893,9780553345896,eng,1397,1429,115,7/1/1984,Little Brown & Company (Boston/Toronto) +19808,The Last Lion: Winston Spencer Churchill: Visions of Glory 1874-1932,William Manchester,4.42,0316545031,9780316545037,en-US,992,335,38,5/30/1983,Little Brown & Company +19809,The Last Lion: Winston Spencer Churchill: Visions of Glory 1874-1932,William Manchester,4.42,0385313489,9780385313483,eng,992,9659,467,4/1/1984,Delta +19818,Moon-Flash (Kyreol #1-2),Patricia A. McKillip,3.74,0142403016,9780142403013,eng,304,348,13,3/17/2005,Firebird +19819,Harrowing the Dragon,Patricia A. McKillip,3.94,0441014437,9780441014439,eng,308,1602,86,11/7/2006,Ace Books +19820,Cygnet (Cygnet #1-2),Patricia A. McKillip,4.07,0441014836,9780441014835,en-US,406,543,35,3/6/2007,Ace Books +19822,Solstice Wood (Winter Rose #2),Patricia A. McKillip,3.76,0441014658,9780441014651,eng,278,1715,141,1/2/2007,Ace Books +19823,Od Magic,Patricia A. McKillip,3.98,0441013341,9780441013340,eng,315,3140,265,6/6/2006,Ace Books +19844,25 Ways to Win with People: How to Make Others Feel Like a Million Bucks,John C. Maxwell/Les Parrott III,4.11,0785260943,9780785260943,eng,208,1710,114,6/5/2005,HarperCollins Leadership +19847,Winning with People Workbook,John C. Maxwell,4.22,0785260900,9780785260905,eng,256,8,1,9/10/2005,HarperCollins Leadership +19858,Thornhold (The Harpers #16; Songs & Swords #4),Elaine Cunningham,3.67,078691808X,9780786918089,eng,384,1023,9,12/27/2011,Wizards of the Coast +19859,The Best of the Realms: The Stories of Elaine Cunningham (Forgotten Realms: The Best of the Realms #3),Elaine Cunningham,3.98,0786942886,9780786942886,en-GB,345,164,6,5/8/2007,Wizards of the Coast +19885,Changeling Storytellers Guide,Mark Hunter/Ian Lemke,3.36,1565047087,9781565047082,eng,139,28,0,8/1/1998,White Wolf Games Studio +19888,The Blood Wood (Earthdawn 6113),FASA Corporation/Ian Lemke/Louis J. Prosperi,3.71,1555603130,9781555603137,eng,152,31,1,6/1/1997,FASA Corporation +19894,Basin and Range,John McPhee,4.19,0374516901,9780374516901,eng,240,2781,178,4/1/1982,Farrar Straus and Giroux +19897,The Deltoid Pumpkin Seed,John McPhee,3.95,0374516359,9780374516352,eng,192,380,18,9/1/1992,Farrar Straus and Giroux +19898,Assembling California,John McPhee,4.17,0374523932,9780374523930,eng,294,1595,120,2/1/1994,Farrar Straus and Giroux +19903,Qué Se Puede Esperar Cuando Se Está Esperando,Heidi Murkoff/Arlene Eisenberg,3.77,076113686X,9780761136866,spa,624,27,2,1/31/2006,Workman Publishing Company +19908,Master of Swords (Mageverse #4),Angela Knight,4.20,0425209210,9780425209219,eng,294,2801,45,10/3/2006,Berkley Sensation +19909,Master of the Night (Mageverse #1),Angela Knight,3.88,0425198804,9780425198803,eng,296,4637,125,10/5/2004,Berkley Sensation +19910,Master of Wolves (Mageverse #3),Angela Knight,4.17,0425207439,9780425207437,eng,294,3798,56,4/4/2006,Berkley +19911,Captive Dreams,Angela Knight/Diane Whiteside,3.91,0425207757,9780425207758,en-US,336,1354,60,9/5/2006,Berkley Trade +19912,Master of Dragons (Mageverse #5),Angela Knight,4.22,0425214249,9780425214244,eng,293,3190,56,6/5/2007,Berkley Sensation +19913,Master of the Moon (Mageverse #2),Angela Knight,4.14,0425203573,9780425203576,eng,336,2882,56,5/3/2005,Berkley Sensation +19914,Jane's Warlord (Warlord #1),Angela Knight,3.97,0425196844,9780425196847,eng,320,2552,94,6/1/2004,Berkley Sensation +19916,Over The Moon (Mageverse #3.5),Angela Knight/MaryJanice Davidson/Virginia Kantra/Sunny,3.90,0425213439,9780425213438,eng,330,3681,92,1/2/2007,Berkley Sensation +19949,Mr. and Mistress (Dynasties: The Elliotts #5),Heidi Betts,3.37,0373767234,9780373767236,eng,185,191,16,5/9/2006,Silhouette +19961,Artesia Volume 1,Mark Smylie,3.98,193238622X,9781932386226,eng,192,242,24,9/20/2011,Archaia +19981,Law of Enclosures,Dale Peck,3.65,067100347X,9780671003470,eng,320,72,2,2/1/1997,Washington Square Press +19983,The Drift House: The First Voyage,Dale Peck,3.65,159990005X,9781599900056,eng,437,618,69,11/1/2006,Bloomsbury Publishing PLC +19997,Through a Brazen Mirror,Delia Sherman/Cortney Skinner/Ellen Kushner,3.37,1885865244,9781885865243,eng,100,116,12,2/25/2015,Circlet Press +19998,The Porcelain Dove,Delia Sherman,3.41,0452272262,9780452272262,eng,416,206,28,7/1/1994,Plume +20001,Interfictions: An Anthology of Interstitial Writing,Delia Sherman/Theodora Goss/K. Tempest Bradford/Karen Jordan Allen/Rachel Pollack/Veronica Schanoes/Mikal Trimm/Colin Greenland/Vandana Singh/Matthew Cheney/Léa Silhol/Adrián Ferrero/Holly Phillips/Catherynne M. Valente/Christopher Barzak/Leslie What/Anna Tambour/Joy Marchand/Jon Singer/Csilla Kleinheincz/Michael J. DeLuca,3.77,1931520240,9781931520249,eng,291,229,20,4/1/2007,Small Beer Press +20002,The Fall of the Kings (Riverside #3),Ellen Kushner/Delia Sherman,3.65,0553585940,9780553585940,eng,510,1869,128,9/30/2003,Bantam +20019,Killing Time,Cynthia Harrod-Eagles,3.98,0380732025,9780380732029,en-US,280,12,1,2/1/1999,Avon Books +20021,The Tangled Thread (Morland Dynasty #10),Cynthia Harrod-Eagles,4.32,0751506478,9780751506471,eng,474,305,8,9/1/1987,Little Brown Book Group +20022,The Flood-Tide (Morland Dynasty #9),Cynthia Harrod-Eagles,4.25,075150646X,9780751506464,eng,428,318,7,2/1/1986,Little Brown Book Group +20023,The White Road (Morland Dynasty #28),Cynthia Harrod-Eagles,4.27,0751533459,9780751533453,eng,480,195,8,11/1/2006,Little Brown Book Group +20024,The Maiden (The Morland Dynasty #8),Cynthia Harrod-Eagles,4.27,0751506451,9780751506457,eng,413,330,11,2/1/1985,Little Brown Book Group +20025,The Oak Apple (Morland Dynasty #4),Cynthia Harrod-Eagles,4.18,0751506419,9780751506419,eng,403,460,20,5/1/2001,Little Brown Book Group +20026,The Emperor (The Morland Dynasty #11),Cynthia Harrod-Eagles,4.28,0751506486,9780751506488,eng,512,261,6,8/1/1988,Little Brown Book Group +20051,The Nature of the Child,Jerome Kagan,3.42,0465048528,9780465048526,eng,352,12,1,5/13/1994,Basic Books +20059,Confessions of a Pagan Nun,Kate Horsley,3.87,1570629137,9781570629136,eng,191,1768,266,9/10/2002,Shambhala +20071,Westminster Abby,Micol Ostow,3.41,0142404136,9780142404133,eng,192,1169,83,5/5/2005,Speak +20074,Changelings,Anne McCaffrey/Elizabeth Ann Scarborough,3.77,0345470036,9780345470034,en-US,320,1818,60,12/26/2006,Del Rey +20075,Dragon's Fire (Pern #19),Anne McCaffrey/Todd McCaffrey,3.98,0345480287,9780345480286,eng,366,7923,171,8/1/2006,Del Rey Books +20076,Maelstrom,Anne McCaffrey/Elizabeth Ann Scarborough,3.88,0345470044,9780345470041,eng,237,1088,37,1/31/2007,Del Rey Books +20086,The Mark of the Crown (Star Wars: Jedi Apprentice #4),Jude Watson,3.73,0590519344,9780590519342,eng,131,2319,63,10/1/1999,Scholastic Inc. +20097,The Sea,John Banville/John Lee,3.51,0739333771,9780739333778,eng,0,42,12,8/15/2006,Random House Audio +20117,Joy Within,Joan Goldstein/Manuela Soares,4.38,0671763792,9780671763794,en-US,144,8,3,11/15/1990,Simon Schuster +20118,Butch/Femme,Manuela Soares/Judy Grahn/Nisa Donnelly,3.62,0517702223,9780517702222,eng,64,13,1,4/4/1996,Crown Publishing Group (NY) +20126,Expository Writing: Mini-Lessons * Strategies * Activities,Tara McCarthy/Drew Hires/Jaime Lucero/Vincent Ceci,4.33,0590103873,9780590103879,eng,88,3,0,4/1/1998,Teaching Resources +20127,Persuasive Writing: Mini-Lessons Strategies Activities,Tara MacCarthy/Drew Hires,3.20,0590209345,9780590209342,eng,64,5,1,8/1/1998,Scholastic +20157,McDougal Littell Science: Student Edition Grade 6 Earth Science 2006,McDougal Littell/Douglas W. Carnine,2.00,0618615385,9780618615384,eng,972,3,0,4/12/2005,McDougal Littel +20164,Daisy Bates: Civil Rights Crusader from Arkansas,Grif Stockley,3.55,1578068010,9781578068012,eng,340,11,3,10/18/2005,University Press of Mississippi +20174,The Loftier Way: Tales from the Ancient American Frontier,Blaine M. Yorgason/Brenton G. Yorgason,3.78,087747785X,9780877477853,eng,131,9,2,12/28/1985,Deseret Book Company +20179,A Higher Justice (The Trials of Kit Shannon #5),James Scott Bell,4.26,0764226460,9780764226465,eng,303,175,18,9/1/2003,Bethany House Publishers +20181,Plot & Structure: Techniques and Exercises for Crafting a Plot That Grips Readers from Start to Finish,James Scott Bell,4.10,158297294X,9781582972947,eng,234,4480,439,10/6/2004,Writer's Digest Books +20182,Deadlock,James Scott Bell,3.96,0310243882,9780310243885,eng,319,327,20,10/6/2002,Zondervan +20183,Breach of Promise,James Scott Bell,4.00,0310243874,9780310243878,eng,345,368,36,2/15/2004,Zondervan +20219,Keats's Poetry and Prose,John Keats/Jeffrey N. Cox,4.30,0393924912,9780393924916,eng,673,291,10,8/1/2008,W. W. Norton & Company +20233,A False Mirror (Inspector Ian Rutledge #9),Charles Todd,4.02,0060786736,9780060786731,eng,384,2519,225,1/9/2007,William Morrow +20234,Wings of Fire (Inspector Ian Rutledge #2),Charles Todd,3.99,0312965680,9780312965686,eng,323,5029,438,5/15/1999,St. Martin's Paperbacks +20235,A Cold Treachery (Inspector Ian Rutledge #7),Charles Todd,4.15,0553586610,9780553586619,eng,416,2997,265,8/30/2005,Bantam +20236,The Murder Stone,Charles Todd,3.83,0553586602,9780553586602,eng,416,1492,175,8/31/2004,Bantam +20237,Legacy of the Dead (Inspector Ian Rutledge #4),Charles Todd,4.15,0553583158,9780553583151,eng,356,4081,316,6/1/2001,Bantam Books +20238,A Fearsome Doubt (Inspector Ian Rutledge #6),Charles Todd,4.04,0553583174,9780553583175,eng,384,2815,258,7/29/2003,Bantam +20239,Watchers of Time (Inspector Ian Rutledge #5),Charles Todd,3.99,0553583166,9780553583168,eng,421,3194,326,7/30/2002,Bantam +20240,Search the Dark (Inspector Ian Rutledge #3),Charles Todd,4.01,0312971281,9780312971281,eng,310,3896,324,5/15/2000,St. Martin's Press +20241,Bill Bryson's African Diary,Bill Bryson,3.44,0385605145,9780385605144,eng,63,264,22,12/2/2002,Doubleday +20249,Hunters of Dune (Dune Chronicles #7),Brian Herbert/Kevin J. Anderson,3.65,0765312921,9780765312921,eng,524,10798,274,8/22/2006,Tor Books +20250,The Battle Of Corrin (Legends of Dune #3),Brian Herbert/Kevin J. Anderson,3.74,0340823372,9780340823378,eng,624,59,2,9/1/2004,Hodder & Stoughton Ltd +20252,House Corrino (Prelude to Dune #3),Brian Herbert/Kevin J. Anderson,3.68,0553580337,9780553580334,eng,667,12257,167,8/27/2002,Spectra Books +20253,House Harkonnen (Prelude to Dune #2),Brian Herbert/Kevin J. Anderson,3.67,0553580302,9780553580303,eng,733,13161,206,8/28/2001,Spectra Books +20254,Doctor Who: The Inside Story,Gary Russell,4.22,056348649X,9780563486497,eng,256,273,10,10/26/2006,BBC Books +20258,Doctor Who Short Trips: Repercussions,Gary Russell/Peter Anghelides/J. Shaun Lyon/Jon de Burgh Miller/Eddie Robson/Todd Green/Andy Russell/Andrew Collins/Kathryn Sullivan/Iain McLaughlin/Mark Michalowski/Joseph Lidster/Trevor Baxendale/Colin Brake/Claire Bartlett/Sarah Groenewegen/Trey Korte/Andy Frankham-Allen,3.38,1844350487,9781844350483,eng,246,42,5,7/1/2004,Big Finish +20264,Gerontius,James Hamilton-Paterson,3.74,1862074933,9781862074934,eng,272,4,2,4/17/2002,Not Avail +20287,Hellstrom's Hive,Frank Herbert,3.69,0553144383,9780553144383,eng,312,41,3,3/23/1982,Bantam Books (NY) +20315,The Dark City (Eliot Ness #1),Max Allan Collins,3.88,0727862421,9780727862426,eng,233,49,5,8/1/2005,Severn House Publishers +20316,Bullet Proof (Eliot Ness #3),Max Allan Collins,3.98,0727862987,9780727862983,eng,197,31,2,12/20/2005,Severn House Publishers +20323,The Penguin Companion to European Literature,Anthony Thorlby,4.50,0140510354,9780140510355,eng,907,1,0,5/30/1969,Penguin Books +20327,West To Eden,Gloria Goldreich,3.77,0380706016,9780380706013,eng,501,2,0,12/1/1988,Avon Books +20343,The Various,Steve Augarde,3.71,0440420296,9780440420293,eng,448,825,98,11/8/2005,Yearling +20351,Truman Capote: In Which Various Friends Enemies Acquaintances and Detractors Recall His Turbulent Career,George Plimpton,4.08,0385491735,9780385491730,eng,498,908,56,11/10/1998,Anchor +20355,The Burnt Orange Heresy,Charles Willeford,3.90,0786706686,9780786706686,eng,144,564,49,12/20/1999,Carroll & Graf +20367,Ewan McGregor: From Junkie to Jedi,Brian J. Robb,2.80,0859652769,9780859652766,eng,144,10,1,5/5/1999,Plexus Publishing +20381,Shadow Twin,Gardner Dozois/George R.R. Martin/Daniel Abraham,3.57,1596060298,9781596060296,eng,114,65,7,6/1/2005,Subterranean Press +20394,Der Prophet,Kahlil Gibran,4.23,3530268038,9783530268034,ger,95,9,0,9/1/2001,Benziger +20398,Le prophète,Kahlil Gibran,4.23,2844541844,9782844541840,fre,172,1,0,10/8/2002,Dervy +20408,The Complete Stories of Robert Louis Stevenson: Strange Case of Dr. Jekyll and Mr. Hyde and Nineteen Other Tales,Robert Louis Stevenson/Barry Menikoff,4.13,0375761357,9780375761355,eng,818,439,12,10/8/2002,Modern Library +20410,The Complete Short Stories Of Robert Louis Stevenson: With A Selection Of The Best Short Novels,Robert Louis Stevenson/Charles Neider,4.21,030680882X,9780306808821,eng,720,52,12,8/22/1998,Da Capo Press +20413,A Child's Garden of Verses,Robert Louis Stevenson/Tasha Tudor,4.30,0689823827,9780689823824,eng,67,22227,431,2/1/1999,Simon & Schuster Books for Young Readers +20417,Have Space Suit—Will Travel,Robert A. Heinlein,3.90,1416505490,9781416505495,eng,276,23541,661,2/8/2005,Pocket Books +20420,Practicalities,Marguerite Duras/Barbara Bray,3.98,0802133118,9780802133113,eng,143,226,19,10/22/1993,Grove Press +20422,Le ravissement de Lol V. Stein,Marguerite Duras,3.66,2070368106,9782070368105,fre,192,485,38,6/25/1976,Gallimard +20423,India Song,Marguerite Duras/Barbara Bray,3.57,0802131352,9780802131355,eng,146,289,9,1/13/1994,Grove Press +20424,Clown,Quentin Blake,3.98,0805059334,9780805059335,en-US,32,384,47,9/15/1998,Henry Holt and Co. (BYR) +20425,The Spiral Stair (Arabel and Mortimer #6),Joan Aiken/Quentin Blake,4.33,1903015073,9781903015070,eng,62,35,5,8/1/2000,Barn Owl Books +20429,A Near Thing for Captain Najork (Captain Najork #2),Russell Hoban/Quentin Blake,4.18,1567923232,9781567923230,eng,32,76,11,10/1/2006,David R. Godine +20468,Cover Her Face (Adam Dalgliesh #1),P.D. James/Neville Teller/Robin Ellis/Sian Phillips/Hugh Grant,3.93,0563528273,9780563528272,eng,2,17,4,5/7/2002,BBC Physical Audio +20498,Reptiles and Amphibians (Smithsonian Handbooks),Mark O'Shea/Tim Halliday/Jonathan Metcalf,4.00,0789493934,9780789493934,eng,256,56,5,10/1/2002,DK Publishing (Dorling Kindersley) +20501,The Camera (Ansel Adams Photography #1),Ansel Adams/Robert Hardy Baker,4.16,0821221841,9780821221846,eng,195,5961,65,6/1/1995,Little Brown and Company +20502,The Negative (Ansel Adams Photography #2),Ansel Adams/Robert Hardy Baker,4.40,0821221868,9780821221860,en-US,265,1384,32,6/1/1995,Little Brown and Company +20505,The Print (Ansel Adams Photography #3),Ansel Adams/Robert Hardy Baker,4.37,0821221876,9780821221877,en-US,203,997,14,6/1/1995,Little Brown and Company +20509,The Changing Status of the Artist,Emma Barker/Nick Webb/Kim W. Woods,3.93,0300077424,9780300077421,eng,260,8,0,3/1/1999,Yale University Press +20517,Vicars of Christ: A History of the Popes,Charles A. Coulombe,3.94,0806523700,9780806523705,en-US,492,31,2,7/1/2003,Citadel +20518,The Big Bing: Black Holes of Time Management Gaseous Executive Bodies Exploding Careers and Other Theories on the Origins of the Business Universe,Stanley Bing,3.11,0060529571,9780060529574,en-US,368,27,6,1/3/2006,Harper Business +20519,What Would Machiavelli Do?: The Ends Justify the Meanness,Stanley Bing,3.45,0066620104,9780066620107,eng,176,464,58,7/28/2004,Harper Business +20525,William James: In the Maelstrom of American Modernism,Robert D. Richardson Jr.,4.25,0618433252,9780618433254,eng,622,353,42,11/9/2006,Houghton Mifflin Harcourt +20531,Cliffs Notes on Wright's Black Boy,Carl Senna/CliffsNotes/Richard Wright,3.75,0822002426,9780822002420,eng,56,3,0,5/5/1971,Cliffs Notes +20547,The Wit and Wisdom of Abraham Lincoln: A Book of Quotations,Abraham Lincoln/Bob Blaisdell,4.15,0486440974,9780486440972,eng,96,461,33,8/8/2005,Dover Publications +20549,Speeches and Writings 1832–1858,Abraham Lincoln/Don E. Fehrenbacher,4.36,0940450437,9780940450431,eng,898,1180,21,10/1/1989,Library of America +20552,Selected Speeches and Writings,Abraham Lincoln/Gore Vidal,4.22,0679737316,9780679737315,eng,515,172,12,2/18/1992,Vintage Books USA +20562,George Eliot: The Last Victorian,Kathryn Hughes,4.05,0815411219,9780815411215,eng,416,176,25,7/2/2001,Cooper Square Press +20564,The Mill on the Floss,George Eliot/A.S. Byatt,3.79,0141439629,9780141439624,eng,579,41816,1337,2/27/2003,Penguin Classics +20567,Scenes of Clerical Life,George Eliot/Thomas A. Noble,3.78,019283780X,9780192837806,eng,310,2369,62,1/24/2002,Oxford University Press +20645,Terry Jones' Medieval Lives,Terry Jones/Alan Ereira,4.02,0563522755,9780563522751,eng,240,1950,155,5/5/2005,BBC Books +20646,Terry Jones' Fairy Tales,Terry Jones/Michael Foreman,4.25,0140322620,9780140322620,eng,160,182,19,6/1/1993,Puffin +20657,Some Ether,Nick Flynn,4.16,1555973035,9781555973032,eng,85,1683,87,5/1/2000,Graywolf Press +20660,Tin House: Evil (Volume 8 no. 3),Chris Adrian/Nick Flynn/Francine Prose/Josip Novakovich/Moonshine,3.90,0977698947,9780977698943,eng,224,29,1,4/6/2007,Tin House Magazine +20661,A Note Slipped Under the Door: Teaching from Poems We Love,Nick Flynn/Shirley McPhillips/Philippa Stratton,4.12,1571103201,9781571103208,eng,256,57,5,1/1/2000,Stenhouse Publishers +20668,The Trouble with Testosterone and Other Essays on the Biology of the Human Predicament,Robert M. Sapolsky,4.11,0684838915,9780684838915,eng,288,1106,85,4/24/1998,Scribner +20671,Monkeyluv: And Other Essays on Our Lives as Animals,Robert M. Sapolsky,4.17,0743260163,9780743260169,en-CA,209,1024,102,10/10/2006,Scribner +20677,Literary Criticism Vol. 1: Essays on Literature / American Writers / English Writers,Henry James/Leon Edel/Mark Wilson,4.26,0940450224,9780940450226,eng,1504,27,4,12/1/1984,Library of America +20679,Advanced Statistics Demystified,Larry J. Stephens,4.00,0071432426,9780071432429,eng,324,9,0,6/7/2004,McGraw-Hill Education +20687,Lilly's Big Day,Kevin Henkes,4.20,0060742364,9780060742362,en-US,40,3177,205,3/28/2006,Greenwillow Books +20692,Chester's Way,Kevin Henkes,4.22,0688154727,9780688154721,eng,32,5218,294,9/22/1997,Greenwillow Books +20694,Julius the Baby of the World,Kevin Henkes,4.28,0688143881,9780688143886,eng,32,6697,348,9/21/1995,Greenwillow Books +20738,Forms of Talk,Erving Goffman,3.81,081221112X,9780812211122,eng,344,82,2,3/1/1981,University of Pennsylvania Press +20741,Interaction Ritual - Essays on Face-to-Face Behavior,Erving Goffman,4.05,0394706315,9780394706313,eng,288,308,9,1/12/1982,Pantheon +20749,Study Bible: NIV,Anonymous,4.70,0310929555,9780310929550,eng,2198,4166,186,10/1/2002,Zondervan Publishing House +20775,My Lord Eternity (Immortal Rogues #2),Debbie Raleigh/Alexandra Ivy,3.73,0821775502,9780821775509,eng,256,407,14,10/1/2003,Zebra +20781,Aesop's Fables,Aesop/Ann McGovern,4.05,0590438808,9780590438808,eng,80,108,10,11/1/1963,Scholastic Paperbacks +20794,Once A Wolf: How Wildlife Biologists Fought to Bring Back the Gray Wolf,Stephen R. Swinburne/Jim Brandenburg,4.06,0618111204,9780618111206,eng,48,43,21,2/26/2001,HMH Books for Young Readers +20800,Conversations with Don DeLillo,Don DeLillo/Thomas DePietro,4.06,1578067049,9781578067046,en-US,183,111,7,1/13/2005,University Press of Mississippi +20807,Inventing America: Jefferson's Declaration of Independence,Garry Wills,3.93,0618257764,9780618257768,eng,432,161,16,11/14/2002,Mariner Books +20809,Lincoln at Gettysburg: The Words That Remade America,Garry Wills,4.14,0743299639,9780743299633,eng,320,6876,197,11/14/2006,Simon Schuster +20810,Venice: Lion City: The Religion of Empire,Garry Wills,3.76,0671047647,9780671047641,eng,416,124,20,9/3/2002,Washington Square Press +20812,Four Weddings and a Funeral,Richard Curtis,3.75,0312143400,9780312143404,eng,128,47,4,4/15/1996,St. Martin's Griffin +20813,Halloween,Richard Curtis,4.13,0553262963,9780553262964,eng,166,13,0,9/1/1982,Bantam +20833,Janet My Mother and Me: A Memoir of Growing Up with Janet Flanner and Natalia Danesi Murray,William Murray,3.50,0684809664,9780684809663,eng,320,36,8,2/17/2000,Simon & Schuster +20848,Catch That Pass!,Matt Christopher,3.91,0316139246,9780316139243,eng,130,290,23,9/1/1989,Little Brown Books for Young Readers +20862,Divide and Conquer (Tom Clancy's Op-Center #7),Jeff Rovin/Tom Clancy/Steve Pieczenik,3.80,0425174808,9780425174807,eng,372,2560,30,6/12/2000,Berkley +20865,Death Match (Tom Clancy's Net Force Explorers #18),Diane Duane/Tom Clancy/Steve Pieczenik,4.17,042518448X,9780425184486,eng,192,136,1,7/1/2003,Berkley +20867,Line of Control (Tom Clancy's Op-Center #8),Jeff Rovin/Tom Clancy/Steve Pieczenik,3.86,0425180050,9780425180051,eng,384,3488,29,6/5/2001,Berkley +20868,Sea of Fire (Tom Clancy's Op-Center #10),Jeff Rovin/Tom Clancy/Steve Pieczenik,3.89,0425190919,9780425190913,eng,400,1267,24,6/24/2003,Berkley Books +20869,One is the Loneliest Number (Tom Clancy's Net Force Explorers #3),Diane Duane/Tom Clancy/Steve Pieczenik,3.95,0425164179,9780425164174,eng,182,452,1,4/1/1999,Berkley Publishing Group +20873,Aliens: Nightmare Asylum,Steve Perry,3.67,0553561588,9780553561586,en-US,277,1118,54,4/1/1993,Spectra Books +20876,The Omega Cage (Matador #4),Steve Perry/Michael Reaves,3.78,0441623824,9780441623822,eng,256,522,18,4/1/1988,Ace +20879,The 97th Step (Matador #5),Steve Perry,4.22,0441581056,9780441581054,eng,304,744,9,12/1/1989,Ace +20891,A Friar's Bloodfeud (Knights Templar #20),Michael Jecks,4.10,0755323009,9780755323005,eng,500,220,14,6/5/2006,Headline +20895,Death Ship of Dartmouth (Knights Templar #21),Michael Jecks,4.06,0755323017,9780755323012,eng,352,7,1,6/1/2006,Headline Book Publishing +20913,The John Deere Two-Cylinder Tractor Encyclopedia: The Complete Model-by-Model History,Don Macmillan/Wayne G. Broehl Jr.,4.75,076032963X,9780760329634,eng,256,4,0,5/15/2007,Voyageur Press +20928,Phantoms,Rosalind M. Greenberg,3.38,0886773482,9780886773489,eng,270,13,0,4/4/1989,DAW +20929,Fantasy Gone Wrong,Martin H. Greenberg/Brittiany A. Koren/Brian Stableford/Mickey Zucker Reichert/Fiona Patton/Jim C. Hines/Esther M. Friesner/Donald J. Bingle/Alan Dean Foster/Devon Monk/Phaedra M. Weldon/Christina F. York/Jana Paniccia/Josepha Sherman/Susan Sizemore/Michael Jasper/Janny Wurts/Lisanne Norman,3.45,0756403804,9780756403805,eng,309,229,33,9/5/2006,DAW +20930,The Ghosts in Baker Street: New Tales of Sherlock Holmes,Martin H. Greenberg/Daniel Stashower,3.58,078671400X,9780786714001,en-US,320,51,6,1/9/2006,Running Press +20932,Christmas Bestiary,Martin H. Greenberg/Jack Nimersheim/Jane Yolen/Jack C. Haldeman II/Harry Turtledove/Laura Resnick/Mike Resnick/Karen Haber/Jane Lindskold/Lawrence Schimel/Barry N. Malzberg/Tanya Huff/Michelle Sagara West/Mark Aronson/Stefan R. Dziemianowicz/Jennifer Roberson/Kristine Kathryn Rusch/Elizabeth Ann Scarborough/Barbara Delaplace/Barb Jernigan/Blake Cahoon,3.62,0886775280,9780886775285,eng,315,21,3,11/3/1992,DAW +20934,Black Cats and Broken Mirrors,John Helfers/Esther M. Friesner/Nina Kiriki Hoffman/Bruce Holland Rogers/Peter Crowther/R. Davis/Charles de Lint/Elizabeth Ann Scarborough/Michelle Sagara West/Nancy Springer/Dean Wesley Smith/Kristine Kathryn Rusch/Josepha Sherman/Jane Lindskold/Genevieve Gorman/Kristin Schwengel/Jean-François Podevin/Zane Stillings/Carol Rondou,3.38,0886777887,9780886777883,eng,320,63,7,6/1/1998,DAW +20935,Time Twisters,Jean Rabe/Martin H. Greenberg/Stephen Leigh/Gene DeWeese/Joe Masdon/Donald J. Bingle/Skip Williams/Penny Williams/Pierce Askegren/Nancy Virginia Varian/Wes Nicholson/John Helfers/Chris Pierson/Harry Turtledove/Kevin J. Anderson/Robert E. Vardeman/Jackie Cassada/James M. Ward/Jon L. Breen/Linda P. Baker,3.36,0756404053,9780756404055,eng,306,35,6,1/2/2007,DAW +20941,The Western Canon: The Books and School of the Ages,Harold Bloom,3.86,1573225142,9781573225144,eng,546,2141,167,9/1/1995,Riverhead Books +20942,Shakespeare: The Invention of the Human,Harold Bloom,4.02,157322751X,9781573227513,eng,745,3001,182,9/1/1999,The Berkley Publishing Group +20944,The American Religion,Harold Bloom,3.76,0978721004,9780978721008,en-GB,305,288,40,10/1/2006,Chu Hartley Publishers LLC +20949,American Caesar: Douglas MacArthur 1880-1964,William Manchester,4.15,0316544981,9780316544986,eng,811,10014,232,9/30/1978,Little Brown & Company (Boston/Toronto) +20954,Winchester Shotguns,Dennis Adler/R.L. Wilson,5.00,0785821082,9780785821083,eng,372,2,0,5/15/2008,Chartwell Books +20957,Colossians and Philemon: A Critical and Exegetical Commentary (International Critical Commentary),R. McL. Wilson,5.00,0567044718,9780567044716,eng,512,1,0,12/7/2005,T&T Clark Int'l +20962,Maurice Sendak's Seven Little Monsters: What Time is It? - Book #4,Arthur Yorinks/Raymond Jafelice,2.75,078681778X,9780786817788,eng,24,4,1,4/5/2004,Volo +20971,Meditations for Manifesting: Morning and Evening Meditations to Literally Create Your Heart's Desire,Wayne W. Dyer,4.02,156170315X,9781561703159,eng,1,338,12,6/1/1995,Hay House +20972,There's a Spiritual Solution to Every Problem,Wayne W. Dyer,4.27,0060192305,9780060192303,eng,288,5738,129,8/21/2001,Harper +21004,Michael Smith Elements of Style,Michael S. Smith/Diane Dorrans Saeks,4.17,0847827623,9780847827626,eng,212,18,1,11/22/2005,Rizzoli International Publications +21010,Spares,Michael Marshall Smith,4.13,0006512674,9780006512677,eng,317,2566,160,11/2/1998,HarperCollins +21012,One of Us,Michael Marshall Smith,4.04,0553580698,9780553580693,eng,368,1302,52,7/6/1999,Bantam +21016,The Secret City (Pyrates #1),Chris Archer,4.11,0439368510,9780439368513,eng,184,231,17,2/1/2003,Scholastic Paperbacks +21029,The Theory and Practice of Group Psychotherapy,Irvin D. Yalom/Molyn Leszcz,4.17,0465092845,9780465092840,en-US,688,7888,119,7/6/2005,Basic Books +21031,When Nietzsche Wept,Irvin D. Yalom,4.32,0060748125,9780060748128,eng,310,25063,1031,1/4/2005,Harper Perennial +21032,Existential Psychotherapy,Irvin D. Yalom,4.39,0465021476,9780465021475,en-US,544,3689,103,12/8/1980,Basic Books +21059,Crown of Stars (Crown of Stars #7),Kate Elliott,3.91,0756404061,9780756404062,eng,609,2169,54,1/2/2007,DAW +21060,Crown Duel (Crown & Court #1-2),Sherwood Smith,4.19,0142301515,9780142301517,eng,471,22971,896,6/10/2002,Firebird +21062,A Rose for the Crown,Anne Easter Smith,4.02,0743276876,9780743276870,eng,650,4685,264,3/14/2006,Simon & Schuster +21063,The Bloody Crown of Conan (Conan the Cimmerian #2),Robert E. Howard/Gary Gianni/Patrice Louinet,4.30,0345461525,9780345461520,eng,366,3875,97,11/23/2004,Del Rey Ballantine Random House +21070,Rough Crossings: Britain the Slaves and the American Revolution,Simon Schama,3.98,006053916X,9780060539160,eng,496,747,87,4/25/2006,Ecco / HarperCollins +21071,Landscape and Memory,Simon Schama,4.17,0679735127,9780679735120,eng,672,900,80,11/5/1996,Vintage +21073,The Embarrassment of Riches: An Interpretation of Dutch Culture in the Golden Age,Simon Schama,4.06,0679781242,9780679781240,en-US,720,1783,86,12/8/1997,Vintage +21075,Citizens: A Chronicle of the French Revolution,Simon Schama,3.99,0141017279,9780141017273,en-GB,825,90,12,8/5/2004,Penguin +21089,The Feelings Book: The Care & Keeping of Your Emotions,Lynda Madison/Bonnie Timmons/Norm Bendell,4.16,1584855282,9781584855286,eng,104,782,51,9/1/2002,American Girl Publishing Inc +21091,A Smart Girl's Guide to Money: How to Make It Save It And Spend It,Nancy Holyoke/Ali Douglass,4.14,1593691033,9781593691035,en-GB,95,536,65,3/1/2006,American Girl Publishing Inc +21093,What Would You Do? (American Girl Library),Patti Kelley Criswell/Norm Bendell,4.26,1584858745,9781584858744,en-US,63,77,5,7/1/2004,American Girl Publishing Inc +21107,The Halloween Activity Book: Creepy Crawly Hairy Scary Things to Do,Mymi Doinet/Benjamin Chaud,2.00,0811832791,9780811832793,eng,32,1,1,8/1/2002,Chronicle Books +21114,The Capricorn Stone,Madeleine Brent,3.91,044920149X,9780449201497,eng,346,574,33,5/12/1983,Fawcett +21116,Golden Urchin,Madeleine Brent,4.09,0449213897,9780449213896,en-GB,384,66,10,11/12/1987,Fawcett +21119,The Ethics of Ambiguity,Simone de Beauvoir/Bernard Frechtman,4.15,080650160X,9780806501604,eng,162,4114,153,6/1/2000,Citadel +21121,She Came to Stay,Simone de Beauvoir,3.91,0006540805,9780006540809,en-GB,416,2040,88,10/9/1995,Flamingo +21122,The Coming of Age,Simone de Beauvoir/Patrick O'Brian,3.88,039331443X,9780393314434,en-GB,592,227,14,6/17/1996,W. W. Norton Company +21125,A Transatlantic Love Affair: Letters to Nelson Algren,Simone de Beauvoir/Nelson Algren/Sylvie Le Bon de Beauvoir/Vanessa Kling/Ellen Gordon Reeves,4.01,1565845609,9781565845602,eng,560,235,16,9/1/1999,The New Press +21126,La force de l'âge,Simone de Beauvoir,4.15,2070377822,9782070377824,fre,786,192,17,11/14/1986,Folio +21143,What Life Was Like When Rome Ruled the World: The Roman Empire 100 BC - AD 200 (What Life Was Like),Time-Life Books,3.85,0783554524,9780783554525,eng,192,91,9,5/24/1999,Time Life Medical +21151,Sudden Fiction International: 60 Short-Short Stories,Robert Shapard/James Thomas,3.76,0393306135,9780393306132,en-US,352,306,29,10/17/1989,W. W. Norton Company +21152,Sudden Fiction: American Short-Short Stories,Robert Shapard/James Thomas,3.84,0879052651,9780879052652,eng,264,476,48,12/31/1983,Gibbs Smith +21173,Sarah Bernhardt,Elizabeth Silverthorne/Betty McCollum,4.25,0791074587,9780791074589,eng,136,4,0,1/1/2004,Chelsea House Publishers +21179,The Art of Controversy (The Essays of Arthur Schopenhauer),Thomas Bailey Saunders,3.85,141916130X,9781419161308,eng,76,17,3,6/17/2004,Kessinger Publishing +21182,The Wisdom of Life,Arthur Schopenhauer/Thomas Bailey Saunders,4.14,0486435504,9780486435503,eng,96,1487,77,3/8/2004,Dover Publications +21187,For All Time (Time Travelers #4),Caroline B. Cooney,3.90,0440229316,9780440229315,eng,261,1618,65,7/8/2003,Laurel Leaf Library +21188,Wanted!,Caroline B. Cooney,3.69,0590988492,9780590988490,en-US,230,1969,193,7/1/1997,Scholastic Paperbacks +21191,The Time Travelers: Volume One,Caroline B. Cooney,3.94,0553494805,9780553494808,en-US,420,302,29,1/10/2006,Laurel Leaf +21194,The Stranger,Caroline B. Cooney,3.53,0590456806,9780590456807,eng,198,55,11,11/1/1993,Scholastic +21199,Every Night Italian: Every Night Italian,Giuliano Hazan/Marcella Hazan/Dana Gallagher,3.79,0684800284,9780684800288,eng,256,70,2,1/12/2000,Scribner +21200,More Classic Italian Cooking,Marcella Hazan,4.48,0345314034,9780345314031,eng,465,64,3,7/12/1984,Ballantine Books +21214,Practice Makes Perfect: Italian Verb Tenses,Paola Nanni-Tate,4.00,0071451382,9780071451383,eng,252,9,1,11/23/2005,McGraw-Hill Companies +21220,Effigies (Faye Longchamp #3),Mary Anna Evans,4.03,1590583426,9781590583425,eng,301,460,47,1/15/2007,Poisoned Pen Press +21223,The Cambridge Companion to Schopenhauer,Christopher Janaway,3.83,0521629241,9780521629249,eng,494,23,3,1/20/2000,Cambridge University Press +21230,Stormie: A Story of Forgiveness and Healing,Stormie Omartian,4.40,1565078322,9781565078321,eng,192,430,44,9/1/1997,Harvest House Publishers +21242,The Orion Mystery: Unlocking the Secrets of the Pyramids,Robert Bauval/Adrian Geoffrey Gilbert,3.94,0517884542,9780517884546,eng,352,1123,36,8/22/1995,Three Rivers Press +21245,Orion (Orion #1),Ben Bova,3.72,0812532473,9780812532470,eng,432,1386,54,12/15/1992,Tor Science Fiction +21248,Lake Orion (Images of America: Michigan),James E. Ingram/Lori Grove,4.50,0738539562,9780738539560,eng,128,1,0,7/19/2006,Arcadia Publishing +21266,Rick Steves' Europe Through the Back Door,Rick Steves,4.24,1566918081,9781566918084,eng,808,3569,70,9/12/2017,Avalon Travel +21276,A Dangerous Man (Hank Thompson #3),Charlie Huston,4.07,034548133X,9780345481337,eng,286,2735,162,9/19/2006,Ballantine Books +21277,Already Dead (Joe Pitt #1),Charlie Huston,3.79,034547824X,9780345478245,en-US,268,8447,631,12/27/2005,Del Rey +21278,Caught Stealing (Hank Thompson #1),Charlie Huston,4.04,0345464788,9780345464781,eng,240,4797,431,5/31/2005,Ballantine Books +21280,Ultimate Annuals Volume 2,Charlie Huston/Mike Carey/Brian Michael Bendis/Robert Kirkman/Mike Deodato/Ryan Sook/Stuart Immonen/Frazier Irving,3.21,0785123717,9780785123712,eng,160,105,8,2/7/2007,Marvel +21282,Dead I Well May Be (Dead Trilogy #1),Adrian McKinty,3.97,0743470567,9780743470568,eng,384,2594,243,8/31/2004,Pocket Books +21283,The Dead Yard (Michael Forsythe #2),Adrian McKinty,4.12,0743499484,9780743499484,eng,364,1506,101,12/26/2006,Pocket Books +21284,The Lighthouse Land (Lighthouse Trilogy #1),Adrian McKinty,3.60,081095480X,9780810954809,eng,387,861,114,10/1/2006,Harry N. Abrams +21290,Spider Mountain (Cam Richter #2),P.T. Deutermann,3.92,031233379X,9780312333799,eng,309,461,41,12/26/2006,St. Martin's Press +21294,The Edge of Honor,P.T. Deutermann,3.97,0312953968,9780312953966,eng,626,168,16,5/15/1995,St. Martin's Paperbacks +21295,The Firefly,P.T. Deutermann,3.77,0312994818,9780312994815,eng,528,317,31,11/30/2004,St. Martin's Paperbacks +21315,Diary of a Spider,Doreen Cronin/Harry Bliss,4.25,0060001534,9780060001537,en-US,40,8134,292,7/26/2005,HarperCollins +21318,The Snow Spider (Snow Spider Trilogy #1),Jenny Nimmo,3.70,0439846757,9780439896757,en-US,146,2762,228,9/1/2006,Orchard Books (NY) +21320,Ultimate Spider-Man Volume 16: Deadpool,Brian Michael Bendis/Mark Bagley,3.70,0785119272,9780785119272,eng,184,1474,58,9/13/2006,Marvel +21321,Ultimate Spider-Man Volume 7,Brian Michael Bendis/Mark Bagley,4.10,078512148X,9780785121480,eng,344,272,9,10/4/2006,Marvel +21322,Fables: 1001 Nights of Snowfall,Bill Willingham/Esao Andrews/John Bolton/Mark Buckingham/James Jean/Derek Kirk Kim/Tara McPherson/Jill Thompson/Mark Wheatley/Michael Wm. Kaluta/Charles Vess/Brian Bolland,4.14,1401203671,9781401203672,eng,140,13759,538,10/18/2006,Vertigo +21323,Cold Fire / Hideaway / The Key to Midnight,Dean Koontz/Leigh Nichols,4.18,0399146261,9780399146268,eng,784,19670,13,8/28/2000,Putnam Adult +21324,Fables Vol. 8: Wolves,Bill Willingham/Mark Buckingham/Steve Leialoha/Shawn McManus/Andrew Pepoy,4.27,1401210015,9781401210014,eng,160,18799,568,12/20/2006,Vertigo +21325,Fables Vol. 4: March of the Wooden Soldiers,Bill Willingham/Mark Buckingham/Craig Hamilton/Steve Leialoha/P. Craig Russell,4.29,1401202225,9781401202224,eng,231,26055,785,11/30/2004,Vertigo +21326,Fables Vol. 1: Legends in Exile,Bill Willingham/Terry Moore/Mike Allred/Lan Medina/Mark Buckingham/Matthew Sturges/Steve Leialoha/Craig Hamilton/Russ Braun/James Jean/Tony Akins/Eric Shanower/Shawn McManus/Jae Lee/Chrissie Zullo/David Petersen,3.97,1563899426,9781563899423,eng,128,119292,2866,12/31/2002,Vertigo +21327,Fables Vol. 7: Arabian Nights (and Days),Bill Willingham/Mark Buckingham/Steve Leialoha/Jim Fern/Jimmy Palmiotti/Andrew Pepoy,4.09,1401210007,9781401210007,eng,143,15575,547,7/5/2006,Vertigo +21328,Fables Vol. 6: Homelands,Bill Willingham/David Hahn/Mark Buckingham/Lan Medina/Steve Leialoha,4.28,1401205003,9781401205003,eng,190,21472,637,1/27/2006,Vertigo +21329,Fables Vol. 3: Storybook Love,Bill Willingham/Bryan Talbot/Lan Medina/Mark Buckingham/Linda Medley/Steve Leialoha/James Jean,4.13,140120256X,9781401202569,eng,190,32814,906,5/1/2004,Vertigo +21330,Fables Vol. 5: The Mean Seasons,Bill Willingham/Mark Buckingham/Steve Leialoha/Tony Akins/Jimmy Palmiotti,4.19,1401204864,9781401204860,eng,166,20703,611,4/30/2005,Vertigo +21332,The Choice: A Fable of Free Trade and Protectionism,Russell Roberts/Russ Roberts,3.75,0131433547,9780131433540,eng,132,350,31,9/1/2006,Pearson +21338,Brewer's Dictionary of Phrase and Fable,John Ayto,4.38,0061121207,9780061121203,en-US,1326,40,4,8/15/2006,Collins Reference +21341,Jack of Fables Vol. 1: The (Nearly) Great Escape,Bill Willingham/Matthew Sturges/Tony Akins/Andrew Pepoy,3.58,1401212220,9781401212223,eng,128,4372,271,2/28/2007,Vertigo +21342,Math Fables,Greg Tang/Heather Cahoon,4.03,043945400X,9780439454001,eng,40,0,0,1/1/1949,Scholastic Inc. +21343,The Five Dysfunctions of a Team: A Leadership Fable,Patrick Lencioni,4.04,0787960756,9780787960759,eng,227,65444,2866,4/11/2002,Jossey-Bass +21348,Aesop's Fables,Aesop/Laura Harris/Laura Gibbs,4.05,0192840509,9780192840509,eng,306,97136,947,4/10/2003,Oxford University Press +21352,Icebound,David Axton/Dean Koontz/Paul Michael,3.76,0739341413,9780739341414,eng,0,46,12,3/6/2007,Random House Audio +21353,Odd Thomas (Odd Thomas #1),Dean Koontz/David Baker,3.97,0739301764,9780739301760,eng,11,106,32,12/9/2003,Random House Audio Publishing Group +21362,Seize the Night (Moonlight Bay #2),Dean Koontz/Keith Szarabajka,4.08,0553479016,9780553479010,eng,12,23534,390,12/29/1998,Random House Audio Publishing Group +21365,From the Corner of His Eye,Dean Koontz/Stephen Lang,4.03,0553502697,9780553502695,en-US,0,29,3,12/26/2000,Random House Audio Publishing Group +21370,The Good Guy,Dean Koontz/Richard Ferrrone,3.82,0739332937,9780739332931,eng,9,115,24,5/29/2007,Random House Audio Publishing Group +21402,Pompeii,Robert Harris/Michael Cumpsty,3.82,0739341774,9780739341773,eng,0,7,1,9/5/2006,Random House Audio +21425,3rd Degree,James Patterson/Andrew Gross/Carolyn McCormick,4.02,1586215981,9781586215989,eng,7,76,9,3/1/2004,Hachette Audio +21426,2nd Chance (Women's Murder Club #2),James Patterson/Melissa Leo/Jeremy Piven/Andrew Gross,4.04,1594831165,9781594831164,eng,5,28,4,2/27/2006,Little Brown & Company +21430,The Big Bad Wolf,James Patterson/Peter J. Fernandez/Denis O'Hare,3.99,1586215809,9781586215804,eng,8,101,13,11/1/2003,Little Brown & Company +21437,Pop Goes the Weasel,James Patterson/Roger Rees/Keith David,4.00,1594836116,9781594836114,en-GB,460,49,5,11/13/2006,Little Brown & Company +21484,The Winds of War (The Henry Family #1),Herman Wouk,4.37,0316952664,9780316952668,eng,896,47239,1251,2/5/2002,Back Bay Books +21489,Hollywood Station (Hollywood Station #1),Joseph Wambaugh,3.73,0316066141,9780316066143,en-US,340,2104,220,1/3/2007,Little Brown and Company +21491,The Choirboys,Joseph Wambaugh,4.06,0752851314,9780752851310,eng,368,4227,126,4/18/2002,Orion +21493,Fire Lover: A True Story,Joseph Wambaugh,3.72,006009527X,9780060095277,eng,352,840,113,4/30/2002,William Morrow +21494,Floaters,Joseph Wambaugh,3.52,0553575953,9780553575958,eng,291,567,38,3/3/1997,Bantam +21495,The New Centurions,Joseph Wambaugh,3.94,0440164176,9780440164173,eng,368,2180,66,3/1/1987,Dell +21498,The Black Marble,Joseph Wambaugh,3.83,0440613965,9780440613961,en-US,416,936,45,9/2/1998,Dell +21505,The Secrets of Harry Bright,Joseph Wambaugh,3.76,0722189141,9780722189146,eng,307,605,26,5/7/1987,Sphere +21508,Lines and Shadows,Joseph Wambaugh,3.80,0553763253,9780553763256,en-US,416,680,43,11/1/1995,Bantam +21527,Hollywood Tough (Shane Scully #3),Stephen J. Cannell/Paul Michael/Michael Prichard,3.86,1559278226,9781559278225,eng,10,825,49,1/7/2003,Macmillan Audio +21530,Cold Hit (Shane Scully #5),Stephen J. Cannell/Scott Brick,3.85,1593977735,9781593977733,eng,11,15,6,8/1/2005,Macmillan Audio +21534,Trunk Music (Harry Bosch #5; Harry Bosch Universe #6),Michael Connelly/Dick Hill,4.18,1423323386,9781423323389,eng,13,126,26,11/28/2006,Brilliance Audio +21535,Angels Flight (Harry Bosch #6),Michael Connelly/Dick Hill,4.18,159737685X,9781597376853,eng,9,106,20,7/25/2005,Brilliance Audio +21536,The Black Echo (Harry Bosch #1; Harry Bosch Universe #1),Michael Connelly/Dick Hill,4.10,1423323254,9781423323259,eng,12,209,54,11/25/2006,Brilliance Audio +21538,The Closers (Harry Bosch #11; Harry Bosch Universe #14),Michael Connelly/Len Cariou,4.13,1594830207,9781594830204,eng,12,198,28,5/1/2005,Hachette Audio +21539,Echo Park (Harry Bosch #12; Harry Bosch Universe #16),Michael Connelly/Len Cariou,4.12,1594835896,9781594835896,eng,11,174,35,10/9/2006,Little Brown & Company +21543,The Poet (Jack McEvoy #1; Harry Bosch Universe #5),Michael Connelly/Buck Schirner,4.20,1423323238,9781423323235,eng,15,115,33,6/25/2006,Brilliance Audio +21544,The Concrete Blonde (Harry Bosch #3),Michael Connelly/Dick Hill,4.16,1596009209,9781596009202,en-US,12,132,28,5/25/2005,Brilliance Audio +21545,The Best American Mystery Stories 2003,Michael Connelly/Otto Penzler,3.60,0618390723,9780618390724,eng,1,5,2,11/4/2003,Mariner Books +21550,Hundred-Dollar Baby (Spenser #34),Robert B. Parker/Joe Mantegna,3.82,0739318659,9780739318652,eng,0,57,11,10/24/2006,Random House Audio +21552,The Spenser Collection: Volume I (Spenser #27-28),Robert B. Parker/Joe Mantegna,4.26,0739340190,9780739340196,en-US,0,77,3,5/30/2006,RH Audio +21553,School Days (Spenser #33),Robert B. Parker/Joe Mantegna,3.87,0739318616,9780739318614,en-US,0,24,3,9/27/2005,Random House Audio Publishing Group +21557,Potshot (Spenser #28),Robert B. Parker/Joe Mantegna,3.89,0553702467,9780553702460,eng,0,2,0,4/1/2003,RH Audio Price-less +21581,Chance (Spenser #23),Robert B. Parker/Burt Reynolds,4.10,0787107123,9780787107123,en-US,4,13,2,4/1/1996,Audio Literature +21608,The Accidental Time Machine,Joe Haldeman,3.70,0441014992,9780441014996,eng,278,6572,660,8/7/2007,Ace +21609,A Separate War and Other Stories,Joe Haldeman/Connie Willis,3.68,0441014070,9780441014071,en-US,270,342,35,8/1/2006,Ace Books +21611,The Forever War (The Forever War #1),Joe Haldeman,4.15,0060510862,9780060510862,eng,278,108783,4005,9/2/2003,Voyager +21613,Worlds Enough and Time (Worlds #3),Joe Haldeman,3.70,0688090257,9780688090258,eng,332,336,13,5/1/1992,William Morrow & Company +21615,The Coming,Joe Haldeman,3.09,0441008763,9780441008766,eng,278,690,71,11/1/2001,Ace +21618,Forever Peace (The Forever War #2),Joe Haldeman,3.74,0441005667,9780441005666,eng,351,16338,422,10/1/1998,Ace Books +21621,Dealing in Futures,Joe Haldeman,3.73,0451452585,9780451452580,en-US,352,193,12,11/1/1993,Roc +21624,Study War No More: A Selection of Alternatives,Joe Haldeman/William Nabors/Harry Harrison/Damon Knight/Harlan Ellison/Ben Bova/Poul Anderson/Isaac Asimov/Mack Reynolds/Alec Effinger,3.56,0380405199,9780380405190,eng,323,97,2,10/1/1978,Avon +21626,Not of Woman Born,Constance Ash/Nina Kiriki Hoffman/Patricia A. McKillip/Walter Jon Williams/Debra Doyle/James D. Macdonald/Kara Dalkey/Michael Armstrong/Richard Parks/Sage Walker/Susan Palwick/William F. Wu/Jack McDevitt/Janni Lee Simner/Robert Silverberg,3.82,0451456815,9780451456816,eng,288,60,11,3/1/1999,Roc +21629,Worlds Apart (Worlds 2),Joe Haldeman,3.69,0380716828,9780380716821,eng,227,485,8,6/28/1992,Avon Books (AvoNova) +21638,Train_man Volume 3 (Train_man),Hidenori Hara/Hitori Nakano,3.94,1421508508,9781421508504,eng,200,102,15,2/13/2007,VIZ Media LLC +21665,The Best American Mystery Stories 2004,Nelson DeMille/Otto Penzler,3.55,0618497420,9780618497423,eng,0,3,0,10/14/2004,Mariner Books +21671,Mystic River,Dennis Lehane,4.18,0060584750,9780060584757,eng,416,109447,2859,2/1/2001,William Morrow Paperbacks +21673,Mystic River,Dennis Lehane,4.18,0593047508,9780593047507,eng,401,44,3,3/5/2001,Bantam Press +21682,Coronado: Stories,Dennis Lehane,3.38,006113967X,9780061139673,eng,240,2907,261,8/8/2006,William Morrow +21683,Prayers for Rain (Kenzie & Gennaro #5),Dennis Lehane,4.09,0380730367,9780380730360,eng,375,16329,619,5/2/2000,HarperTorch +21685,A Drink Before the War (Kenzie & Gennaro #1),Dennis Lehane,3.95,0156029022,9780156029025,eng,282,29089,1523,9/15/2003,Mariner Books +21686,Shutter Island,Dennis Lehane,4.09,038073186X,9780380731862,eng,369,134985,6300,4/27/2004,HarperTorch +21703,The Best American Mystery Stories 2002,James Ellroy/Otto Penzler/John Biguenet/Michael Connelly/Thomas H. Cook/Sean Doolittle/Brendan DuBois/David Edgerley Gates/Joe Gores/James Grady/Clark Howard/Stuart M. Kaminsky/Joe R. Lansdale/Michael Malone/Annette Meyers/Joyce Carol Oates/Robert B. Parker/F.X. Toole/Daniel Waterman/Scott Wolven/Fred Melton,3.58,0618258078,9780618258079,eng,1,0,0,10/15/2002,Mariner Books +21704,The Black Dahlia (L.A. Quartet #1),James Ellroy,3.75,0446698873,9780446698870,eng,348,70771,1815,8/16/2006,Mysterious Press +21705,The Black Dahlia Files: The Mob the Mogul and the Murder That Transfixed Los Angeles,Donald H. Wolfe,3.84,0060582502,9780060582500,en-US,448,635,57,9/5/2006,Harper Paperbacks +21710,Corroborating Evidence: The Black Dahlia Murder,William T. Rasmussen,3.39,0865344922,9780865344921,eng,234,12,1,10/30/2005,Sunstone Press +21712,Childhood Shadows: The Hidden Story of the Black Dahlia Murder,Mary Pacios,3.50,1585004847,9781585004843,eng,292,50,4,12/19/1999,Authorhouse +21717,Triptych (Will Trent #1),Karin Slaughter,4.13,0385339461,9780385339469,eng,393,42325,2011,8/15/2006,Delacorte Press +21718,Blindsighted (Grant County #1),Karin Slaughter,4.09,0380820889,9780380820887,eng,418,53996,2171,10/1/2002,HarperTorch +21719,Kisscut (Grant County #2),Karin Slaughter,4.09,0060534044,9780060534042,eng,436,25675,1096,9/30/2003,HarperTorch +21720,Beyond Reach (Grant County #6),Karin Slaughter,4.19,038533947X,9780385339476,eng,404,19136,979,7/31/2007,Delacorte Press +21721,A Faint Cold Fear (Grant County #3),Karin Slaughter,4.08,0060534052,9780060534059,eng,422,25119,900,7/27/2004,Harper +21722,Faithless (Grant County #5),Karin Slaughter,4.12,0440242916,9780440242918,en-US,549,21130,708,7/25/2006,Dell Publishing Company +21723,Like A Charm,Karin Slaughter/Peter Robinson/John Connolly/Denise Mina/Mark Billingham,3.48,0060583312,9780060583316,en-US,384,22,4,5/26/2015,William Morrow Paperbacks +21725,Like a Charm,Karin Slaughter/Denise Mina/John Harvey/Kelley Armstrong/John Connolly/Emma Donoghue/Jane Haddam/Laura Lippman/Peter Robinson/Fidelis Morgan/Peter Moore Smith/Lynda La Plante/Jerrilyn Farmer/Lee Child/Mark Billingham,3.48,0099462257,9780099462255,eng,384,1322,88,6/3/2004,Arrow +21735,The Enemy (Jack Reacher #8),Lee Child/Dick Hill,4.16,1593553943,9781593553944,eng,14,178,35,5/11/2004,Brilliance Audio +21739,The Visitor (Jack Reacher #4),Lee Child/Hayward Morse/Garrick Hagon,4.09,1860428789,9781860428784,eng,15,4,0,10/1/2004,Soundings +21742,Tripwire (Jack Reacher #3),Lee Child/Dick Hill,4.09,1567408346,9781567408348,eng,3,16,3,7/8/1999,Nova Audio Books +21743,Killing Floor (Jack Reacher #1),Lee Child/Dick Hill,4.05,159355558X,9781593555580,en-US,3,124,27,4/10/2004,Brilliance Audio +21745,Without Fail (Jack Reacher #6),Lee Child/Dick Hill,4.15,1590860624,9781590860625,eng,14,64395,1617,5/17/2002,Brilliance Audio +21746,The Enemy (Jack Reacher #8),Lee Child/Dick Hill,4.16,1590864093,9781590864098,eng,14,4,0,5/11/2004,Brilliance Audio +21747,One Shot (Jack Reacher #9),Lee Child/Dick Hill,4.21,1593555199,9781593555191,eng,12,138,26,6/14/2005,Brilliance Audio +21749,Bad Luck and Trouble (Jack Reacher #11),Lee Child,4.18,0739340670,9780739340677,eng,13,53,15,5/15/2007,Random House Audio +21751,The Enemy (Jack Reacher #8),Lee Child,4.16,1423319613,9781423319610,en-US,6,10,3,4/28/2007,Brilliance Audio +21752,The Visitor (Jack Reacher #4),Lee Child/Hayward Morse,4.09,1860429165,9781860429163,eng,14,7,1,5/1/2002,Soundings +21753,Echo Burning (Jack Reacher #5),Lee Child,4.01,1423319524,9781423319528,eng,5,40,14,2/28/2007,Brilliance Audio +21756,Tripwire (Jack Reacher #3),Lee Child/Dick Hill,4.09,1593358725,9781593358723,en-US,14,3,1,11/25/2004,Brilliance Audio +21758,The Enemy (Jack Reacher #8),Lee Child/Dick Hill,4.16,1593354746,9781593354749,eng,14,3,2,6/10/2004,Brilliance Audio +21759,Tripwire (Jack Reacher #3),Lee Child/Dick Hill,4.09,1593555601,9781593555603,eng,14,11,1,11/25/2004,Brilliance Audio +21763,Tripwire (Jack Reacher #3),Lee Child/Dick Hill,4.09,1593357389,9781593357382,eng,14,18,4,11/25/2004,Brilliance Audio +21764,The Enemy (Jack Reacher #8),Lee Child/Dick Hill,4.16,1593353154,9781593353155,eng,14,1,0,6/10/2004,Brilliance Audio +21765,Blood on the Moon: The Assassination of Abraham Lincoln,Edward Steers Jr.,4.13,0813191513,9780813191515,eng,360,497,58,10/1/2005,University Press of Kentucky +21766,The Blood of the Moon: Understanding the Historic Struggle Between Islam and Western Civilization,George Grant,3.69,0785265430,9780785265436,eng,224,70,8,12/16/2001,Thomas Nelson +21767,Blood on the Moon (Lloyd Hopkins #1),James Ellroy,3.44,140009528X,9781400095285,eng,272,1612,100,5/10/2005,Vintage +21768,Blood Moon Over Bengal,Morag McKendrick Pippin,3.47,0843954523,9780843954524,eng,337,20,6,10/1/2004,Leisure Books +21773,Blood Moon Over Britain,Morag McKendrick Pippin,3.44,0843955821,9780843955828,eng,323,17,4,12/1/2005,Leisure Books +21776,The Silent Gondoliers,William Goldman,3.81,0345442636,9780345442635,eng,128,1339,136,1/2/2001,Del Rey +21779,The Season: A Candid Look at Broadway,William Goldman,4.10,0879100230,0073999768442,eng,448,291,35,7/1/2004,Limelight +21782,Heat,William Goldman,3.37,0446300004,9780446300001,eng,244,242,17,9/1/1986,Warner Books (NY) +21783,Tinsel,William Goldman,3.19,0440187354,9780440187356,eng,399,258,14,6/15/1980,Dell +21784,William Goldman: Four Screenplays,William Goldman,4.29,155783198X,0073999254907,en-US,504,17,1,5/1/2000,Applause Books +21787,The Princess Bride,William Goldman,4.26,0345418263,9780345418265,eng,456,703676,13878,7/15/2003,Ballantine Books +21799,Hype and Glory,William Goldman/P. Gethers,3.67,0679734783,9780679734789,eng,306,129,14,3/13/1991,Villard +21803,La princesa prometida,William Goldman,4.26,8427030975,9788427030978,spa,480,39,7,6/14/2005,Planeta Publishing +21806,Boys and Girls Together,William Goldman,3.67,0345439732,9780345439734,eng,768,753,59,7/31/2001,Ballantine Books +21819,Wait Till Next Year: The Story of a Season When What Should've Happened Didn't and What Could've Gone Wrong Did,William Goldman/Mike Lupica,3.94,0553053191,9780553053197,en-US,363,90,11,11/1/1988,Bantam +21823,The Princess Bride: S. Morgenstern's Classic Tale of True Love and High Adventure,William Goldman,4.26,0151730857,9780151730858,eng,283,460,73,9/1/1973,Harcourt Brace Jovanovich +21829,Creepers,David Morrell,3.66,1593153570,9781593153571,en-CA,388,4513,515,9/26/2005,CDS Books +21830,The Totem,David Morrell,3.58,0446691909,9780446691901,eng,448,1152,76,4/1/2003,Grand Central Publishing +21832,The League of Night and Fog (Mortalis #3),David Morrell,4.10,0446691925,9780446691925,eng,448,2564,64,4/1/2003,Grand Central Publishing +21836,Scavenger (Frank Balenger #2),David Morrell,3.60,1593154410,9781593154417,eng,368,1760,190,3/13/2007,Vanguard Press +21837,The Fraternity of the Stone (Mortalis #2),David Morrell,4.16,074723891X,9780747238911,eng,448,2646,68,7/16/1992,Headline +21838,The Brotherhood of the Rose (Mortalis #1),David Morrell,4.14,0747238901,9780747238904,eng,416,5422,163,7/16/1992,Headline Book Publishing +21841,The Protector (Cavanaugh #1),David Morrell,3.94,0446530689,9780446530682,eng,401,2222,80,5/19/2003,Warner Books (NY) +21845,Assumed Identity,David Morrell,3.78,0446600709,9780446600705,eng,512,1118,46,9/1/1994,Vision +21848,Double Image,David Morrell,3.55,2253172286,9782253172284,fre,510,3,1,4/10/2002,Le Livre de Poche +21862,La Cinquième profession,David Morrell,3.99,2253060704,9782253060703,fre,539,9,2,6/1/1992,Le Livre de Poche +21874,The Last Kingdom (The Saxon Stories #1),Bernard Cornwell/Jamie Glover,4.25,0061126578,9780061126574,eng,6,16,1,7/25/2006,HarperAudio +21895,The Last Kingdom (The Saxon Stories #1),Bernard Cornwell/Tom Sellwood,4.25,0792734750,9780792734758,en-GB,13,48,19,2/1/2005,Audiogo +21906,The Last Kingdom (The Saxon Stories #1),Bernard Cornwell/Jamie Glover,4.25,0060759259,9780060759254,eng,6,39,9,1/25/2005,HarperAudio +21928,Time To Hunt (Bob Lee Swagger #3),Stephen Hunter/Beau Bridges,4.26,055345580X,9780553455809,eng,0,11,1,5/18/1998,Random House Audio +21930,Black Light (Bob Lee Swagger #2),Stephen Hunter/Beau Bridges,4.13,055347748X,9780553477481,en-US,4,17,0,5/1/1996,Random House Audio Publishing Group +21931,The Day Before Midnight,Stephen Hunter/Philip Bosco,4.01,0553452118,9780553452112,eng,0,1,0,12/1/1989,Random House Audio +21932,Hot Springs (Earl Swagger #1),Stephen Hunter/Jay O. Sanders,4.13,0743500261,9780743500265,eng,0,3,0,6/1/2000,Simon & Schuster Audio +21933,Point Of Impact (Bob Lee Swagger #1),Stephen Hunter/Beau Bridges,4.27,0739344242,9780739344248,eng,0,15,1,1/9/2007,RH Audio +21934,Dirty White Boys,Stephen Hunter/Will Patten,4.05,1570421927,9781570421921,eng,0,1,1,5/1/2006,Hachette Audio +21947,Bevor es Nacht wird. Ein Leben in Havanna,Reinaldo Arenas,4.17,3423129867,9783423129862,ger,400,16,2,7/1/2002,dtv +21969,The Book of the Dead (Pendergast #7; Diogenes #3),Douglas Preston/Lincoln Child/Scott Brick,4.13,1594832285,9781594832284,eng,0,112,16,5/30/2006,Grand Central Publishing +21972,Relic (Pendergast #1),Douglas Preston/Lincoln Child,4.02,1423330412,9781423330417,eng,473,152,41,2/25/2007,Brilliance Audio +21974,The Wheel of Darkness (Pendergast #8),Douglas Preston/Lincoln Child,3.93,1594839417,9781594839412,en-US,0,41,9,8/28/2007,Grand Central Publishing +21980,Tyrannosaur Canyon,Douglas Preston/Scott Sowers,3.80,1593977794,9781593977795,eng,12,79,18,8/23/2005,MacMillan Audio +21991,Waterworks,E.L. Doctorow/Sam Waterston,3.44,0679433724,9780679433729,eng,0,16,2,5/31/1994,Random House Audio +21996,The Devil in the White City: Murder Magic and Madness at the Fair That Changed America,Erik Larson/Tony Goldwyn,3.99,0739303406,9780739303405,eng,447,421575,23793,2/11/2003,Random House Audio Publishing Group +22017,King Icahn,Mark Stevens/Carol Bloom Stevens,3.97,0525936130,9780525936138,eng,336,35,1,6/1/1993,Dutton Books +22026,The Sicilian,Mario Puzo,3.97,0345441702,9780345441706,eng,416,16557,502,5/1/2001,Ballantine Books +22027,The Dark Arena,Mario Puzo,3.35,0345441699,9780345441690,eng,288,1554,54,5/1/2001,Ballantine Books +22028,Omerta,Mario Puzo,3.71,0345432401,9780345432407,eng,369,12374,330,5/1/2001,Ballantine Books +22035,Fools Die,Mario Puzo,3.72,0451160193,9780451160195,eng,544,5197,215,10/1/1979,Signet +22036,The Godfather,Mario Puzo/Peter Bart/Robert Thompson,4.37,0451217403,9780451217400,eng,448,180,17,10/4/2005,New American Library +22037,The Fortunate Pilgrim,Mario Puzo,3.83,0345476727,9780345476722,eng,304,3232,222,9/28/2004,Ballantine Books +22060,On the Road to Perdition — Oasis Sanctuary and Detour — (Road to Perdition #2),Max Allan Collins/José Luis García-López/Steve Lieber/Josef Rubinstein/Rob Leigh/Bob Lappan,3.66,1401203574,9781401203573,eng,294,168,14,12/1/2004,DC Comics +22061,Oasis (On the Road to Perdition #1),Max Allan Collins/Steve Lieber/Josef Rubinstein/Rob Leigh/José Luis García-López/Bob Lappan,3.55,1401200680,9781401200688,eng,96,76,5,5/1/2003,DC Comics +22063,Double Dealer (CSI: Crime Scene Investigation #1),Max Allan Collins/Mike Flaherty,3.67,0743444043,9780743444040,en-US,320,1029,53,4/1/2003,Pocket Books +22065,The London Blitz Murders (Disaster Series #5),Max Allan Collins,3.72,0425198057,9780425198056,eng,272,209,35,5/4/2004,Berkley +22067,The Last Quarry (Quarry #7),Max Allan Collins,3.93,0843955937,9780843955934,eng,201,673,68,8/1/2006,Hard Crime Case +22068,Snake Eyes (CSI: Crime Scene Investigation #8),Max Allan Collins,3.77,0743496655,9780743496650,en-US,288,457,18,9/1/2006,Pocket Star +22070,A Killing in Comics (Jack & Maggie Starr #1),Max Allan Collins/Terry Beatty,3.65,042521365X,9780425213650,eng,272,151,29,5/1/2007,Berkley Trade +22072,The War of the Worlds Murder (Disaster Series #6),Max Allan Collins,3.71,0425204014,9780425204016,eng,256,196,38,7/5/2005,Berkley +22076,From a Buick 8,Stephen King,3.45,0743211375,9780743211376,eng,356,53587,1330,9/24/2002,Scribner +22077,The Michael Crichton Collection: Jurassic Park / The Lost World / The Andromeda Strain,Michael Crichton/Chris Noth/Anthony Heald,4.29,0375415807,9780375415807,eng,0,107,3,6/9/2000,Random House Audio +22082,Jurassic Park,Michael Crichton,4.02,0345418956,9780345418951,en-US,400,27,5,6/23/1997,Ballantine Books +22095,Binary,John Lange,3.53,0394479874,9780394479873,eng,213,94,10,12/31/1972,Alfred A. Knopf +22114,Un train d'or pour la Crimée,Michael Crichton,3.86,226607007X,9782266070072,fre,342,16,3,1/13/1999,Pocket +22120,The Voices of Morebath: Reformation and Rebellion in an English Village,Eamon Duffy,3.69,0300098251,9780300098259,eng,232,361,39,8/11/2003,Yale University Press +22121,Imperial Life in the Emerald City: Inside Iraq's Green Zone,Rajiv Chandrasekaran,4.02,1400044871,9781400044870,eng,320,4545,477,9/19/2006,Knopf +22123,The Coming Economic Collapse: How You Can Thrive When Oil Costs $200 a Barrel,Stephen Leeb/Glen C. Strathy,3.40,0446699004,9780446699006,en-US,211,34,3,2/1/2007,Business Plus +22126,Betrayal of Trust: The Collapse of Global Public Health,Laurie Garrett/Steven M. Wolinsky,4.12,0786884401,9780786884407,eng,768,1126,50,8/15/2001,Hachette Books +22127,Crash Proof: How to Profit from the Coming Economic Collapse,Peter D. Schiff/John Downes,3.78,0470043601,9780470043608,eng,272,1086,89,2/1/2007,John Wiley & Sons +22128,Patriots (The Coming Collapse),James Wesley, Rawles,3.63,156384155X,9781563841552,eng,342,38,4,1/15/1999,Huntington House Publishers +22133,The World the Text and the Critic,Edward W. Said/إدوارد سعيد,4.18,0674961870,9780674961876,eng,336,198,6,6/10/2006,Harvard University Press +22135,Culture and Imperialism,Edward W. Said,4.15,0679750541,9780679750543,eng,380,4053,123,5/31/1994,Vintage +22141,La economía Long Tail,Chris Anderson/Federico Villegas Silva Lezama,3.81,8493464260,9788493464264,spa,318,24,3,7/1/2007,Ediciones Urano +22146,Prioritizing Web Usability,Jakob Nielsen/Hoa Loranger,3.94,0321350316,9780321350312,en-US,406,599,16,4/20/2006,New Riders Publishing +22148,Homepage Usability: 50 Websites Deconstructed,Jakob Nielsen/Marie Tahir,3.74,073571102X,9780735711020,eng,336,341,12,11/15/2001,New Riders Publishing +22155,Let My People Go Surfing: The Education of a Reluctant Businessman,Yvon Chouinard,4.22,0143037838,9780143037835,eng,272,7838,681,9/5/2006,Penguin Books +22160,And Then There Were None,Agatha Christie/Hugh Fraser,4.26,1572704497,9781572704497,eng,0,214,49,10/15/2004,Audiogo +22163,The Wild Trees: A Story of Passion and Daring,Richard Preston,4.09,1400064899,9781400064892,eng,294,5588,942,8/23/2007,Random House (NY) +22166,The Boat of Dreams: A Christmas Story,Richard Preston/George Henry Jennings,3.29,074324592X,9780743245920,eng,111,115,22,10/28/2003,Touchstone Books +22175,Strange Pilgrims,Gabriel García Márquez,4.03,1400034698,9781400034697,eng,208,6952,422,11/14/2006,Vintage +22176,Doce cuentos peregrinos,Gabriel García Márquez,4.03,1400034949,9781400034949,spa,192,3205,195,11/14/2006,Vintage +22186,Would I Lie to You (Gossip Girl #10),Cecily von Ziegesar,3.59,0316011835,9780316011839,eng,192,7948,135,10/4/2006,Little Brown Young Readers +22188,Gossip Girl (Gossip Girl #1),Cecily von Ziegesar,3.52,0316910333,9780316910330,eng,224,54400,2271,4/1/2002,Little Brown and Company +22192,All I Want is Everything (Gossip Girl #3),Cecily von Ziegesar,3.55,0316912123,9780316912129,eng,240,16452,412,5/7/2003,Poppy +22193,You're the One That I Want (Gossip Girl #6),Cecily von Ziegesar,3.71,0316735167,9780316735162,eng,224,17875,204,10/6/2004,Little Brown Young Readers +22195,The Zero,Jess Walter,3.51,0060898658,9780060898656,eng,336,1976,297,8/29/2006,Harper +22196,Zero: The Biography of a Dangerous Idea,Charles Seife,3.96,0285635948,9780285635944,eng,248,131,19,10/12/2000,Souvenir Press +22197,Zero Debt: The Ultimate Guide to Financial Freedom,Lynnette Khalfani,3.74,1932450750,9781932450750,eng,204,49,10,8/1/2004,Advantage World Press +22198,The Hunt for Zero Point: Inside the Classified World of Antigravity Technology,Nick Cook,4.12,0767906284,9780767906289,en-US,320,323,37,12/18/2007,Broadway Books +22199,Year Zero,Jeff Long,3.60,1416534423,9781416534426,eng,416,2164,139,7/1/2006,Atria Books +22200,Count Zero (Sprawl #2),William Gibson,4.01,0441013678,9780441013678,en-US,308,37360,799,3/7/2006,Ace Books +22201,Triple Zero (Star Wars: Republic Commando #2),Karen Traviss,4.24,0345490096,9780345490094,eng,393,5130,163,2/28/2006,Del Rey Books +22202,Bravo Two Zero,Andy McNab,4.09,0552153575,9780552153577,eng,416,9151,269,11/1/2005,Corgi +22205,This Lullaby,Sarah Dessen,4.03,0142501557,9780142501559,eng,345,163599,4453,3/8/2004,Speak +22207,Lullabies for Little Criminals,Heather O'Neill,3.98,0060875070,9780060875077,eng,330,18419,1371,10/17/2006,Harper Perennial +22208,Hush! A Thai Lullaby,Minfong Ho/Holly Meade,4.03,0531071669,9780531071663,eng,32,1315,197,3/1/2000,Scholastic Inc. +22209,Lullaby Town (Elvis Cole #3),Robert Crais,4.14,0752817000,9780752817002,eng,296,8359,319,4/1/2008,Orion +22219,The Iliad (SparkNotes Literature Guides),SparkNotes/Homer,3.65,1586633716,9781586633714,eng,88,23,3,1/10/2002,SparkNotes +22221,The Iliad,Homer,3.86,0471377589,9780471377580,eng,150,3834,134,10/28/1999,John Wiley & Sons +22225,The Princess Bride (Long Tall Texans #15),Diana Palmer,3.89,0373192827,9780373192823,eng,192,634,32,1/23/1998,Silhouette Romance +22226,The Sultan's Bought Bride (Princess Brides #1),Jane Porter,3.74,037312418X,9780373124183,eng,192,224,20,8/25/2004,Harlequin Presents +22227,The Sheik & the Princess Bride (Desert Rogues #8),Susan Mallery,3.95,0373246471,9780373246472,eng,256,506,22,10/25/2004,Silhouette Special Edition +22229,The Prince Kidnaps a Bride (Lost Princesses #3),Christina Dodd,3.79,0060561181,9780060561185,eng,384,2103,84,11/28/2006,Avon +22230,Stargirl (Stargirl #1),Jerry Spinelli,3.76,0440416779,9780440416777,eng,186,1969,252,5/11/2004,Laurel Leaf +22233,Love Stargirl (Stargirl #2),Jerry Spinelli,3.82,0375813756,9780375813757,en-US,274,713,110,8/14/2007,Knopf Books for Young Readers +22235,Stargirl LitPlans on CD,Mary B. Collins,4.86,158337292X,9781583372920,eng,210,5,0,9/15/2005,Teacher's Pet Publications +22237,Son of the Mob (Son of the Mob #1),Gordon Korman,3.72,0786815930,9780786815937,eng,262,5977,620,9/1/2004,Little Brown Books for Young Readers +22238,Hollywood Hustle (Son of the Mob #2),Gordon Korman,3.64,0786809191,9780786809196,eng,268,1615,145,4/1/2006,Hyperion Paperbacks +22239,For the Sins of My Father: A Mafia Killer His Son and the Legacy of a Mob Life,Albert Demeo/Mary Jane Ross,4.05,0767906896,9780767906890,eng,288,966,108,9/9/2003,Broadway Books +22242,El ojo de fuego,Lewis Perdue,3.66,848974615X,9788489746152,spa,496,18,1,2/1/2007,Puzzle-Via Magna +22265,Neptune Noir: Unauthorized Investigations into Veronica Mars,Rob Thomas/Leah Wilson/Heather Havrilesky/Amy Berner/Lynne Edwards/John Ramos/Alafair Burke/Chris McCubbin/Lawrence Watt-Evans/Lani Diane Rich/Geoff Klock/Judy Fitzwater/Evelyn Vaughn/Joyce Millman/Amanda Ann Klein/Kristen Kidder/Jesse Hassenger/Gwen Ellery/Misty Hook/Samantha Bornemann,3.63,1933771135,9781933771137,eng,224,925,112,4/10/2007,Smart Pop +22268,The Soloist,Nicholas Christopher,3.30,1593761228,9781593761226,eng,320,56,9,11/27/2006,Counterpoint +22277,Kenang-Kenangan Seorang Geisha (Memoirs of a Geisha),Arthur Golden,4.11,9833346685,9789833346684,msa,784,28,6,7/1/2006,Marshall Cavendish Editions +22278,Memoirs of a Geisha,Arthur Golden,4.11,0701169699,9780701169695,eng,452,57,8,10/5/2000,Chatto & Windus +22283,Survivor,Chuck Palahniuk,3.92,009928264X,9780099282648,eng,289,49307,1637,8/3/2000,Vintage +22284,Diary,Chuck Palahniuk,3.61,1400032814,9781400032815,eng,262,65139,2120,9/14/2004,Anchor +22285,Rant,Chuck Palahniuk,3.81,0385517874,9780385517874,eng,320,55592,2516,5/1/2007,Doubleday Books +22286,Clown Girl,Monica Drake/Chuck Palahniuk,3.39,0976631156,9780976631156,eng,297,6015,327,1/4/2007,Hawthorne Books +22287,Choke,Chuck Palahniuk,3.70,0099422689,9780099422686,en-GB,293,1557,115,8/1/2002,Vintage +22288,Haunted,Chuck Palahniuk,3.59,1400032822,9781400032822,eng,419,78280,3745,4/11/2006,Anchor +22289,Fugitives and Refugees: A Walk in Portland Oregon,Chuck Palahniuk,3.51,1400047838,9781400047833,en-US,176,8460,415,7/8/2003,Crown Journeys/Crown Publishers/Crown Publishing Group/Random House +22292,Haunted,Chuck Palahniuk/Erik Darling/Arthur Morey/Scott Brick/Lorna Raver/Marc Cashman/Kimberly Farr/Renee Randman,3.59,0739302868,9780739302866,eng,14,57,23,5/10/2005,Random House Audio +22293,Nonfiction,Chuck Palahniuk,3.57,0224063022,9780224063029,eng,233,213,15,8/5/2004,Jonathan Cape +22296,Haunted,Chuck Palahniuk,3.59,0224064452,9780224064453,eng,416,173,15,5/1/2005,Jonathan Cape +22297,Survivant,Chuck Palahniuk/Freddy Michalski,3.92,2070756270,9782070756278,fre,365,14,0,2/4/2001,Gallimard +22298,Fantasmas,Chuck Palahniuk/Javier Calvo,3.59,9879397509,9789879397503,spa,442,116,13,8/28/2006,Mondadori +22302,Error humano,Chuck Palahniuk/Javier Calvo,3.57,8439711867,9788439711865,spa,253,11,1,5/31/2005,Mondadori +22304,Life After God,Douglas Coupland,3.79,0743231511,9780743231510,eng,291,9882,338,7/1/2002,Simon & Schuster +22306,City of Glass: Douglas Coupland's Vancouver,Douglas Coupland,3.83,1550548182,9781550548181,en-US,152,807,40,5/1/2003,Douglas & McIntyre +22307,Terry: Terry Fox and His Marathon of Hope,Douglas Coupland,4.34,1553651529,9781553651529,eng,176,256,22,8/4/2005,Douglas & McIntyre +22311,All Families Are Psychotic,Douglas Coupland,3.67,0007117531,9780007117536,eng,279,361,32,7/1/2002,Harper Perennial +22312,Shampoo Planet,Douglas Coupland,3.50,0743231538,9780743231534,eng,282,8283,202,3/1/2008,Scribner Book Company +22321,All Tomorrow's Parties (Bridge #3),William Gibson,3.91,0425190447,9780425190449,eng,339,13020,316,2/4/2003,Berkley Books +22322,Spook Country (Blue Ant #2),William Gibson,3.69,0399154302,9780399154300,eng,371,16342,1258,8/7/2007,Putnam Adult +22323,Burning Chrome (Sprawl #0),William Gibson/Bruce Sterling/Jonathan Davis/Dennis Holland/Kevin Pariseau/Victor Bevine/Jay Snyder/Brian Nishil/L.J. Ganser/Oliver Wyman/Eric Michael Summerer/Marc Vietor,4.06,0060539828,9780060539825,eng,224,30566,585,7/29/2003,Harper Voyager +22325,Idoru (Bridge #2),William Gibson,3.80,0425190455,9780425190456,eng,308,17632,388,1/7/2003,Berkley Trade +22326,Virtual Light (Bridge #1),William Gibson,3.85,0140157727,9780140157727,eng,304,18228,358,10/26/1996,Penguin Books Ltd +22331,Stable Strategies and Others,Eileen Gunn/Howard Waldrop/William Gibson,3.77,189239118X,9781892391186,eng,208,104,19,9/1/2004,Tachyon Publications +22332,Cyberpunk and Cyberculture: Science Fiction and the Work of William Gibson,Dani Cavallaro,3.77,0485006073,9780485006070,eng,258,62,4,9/13/2001,Bloomsbury Academic +22337,The Neil Gaiman Audio Collection,Neil Gaiman,4.24,0060732989,9780060732981,eng,1,1666,208,8/31/2004,HarperFestival +22338,The Day I Swapped My Dad for Two Goldfish,Neil Gaiman/Dave McKean,4.03,0060587032,9780060587031,en-US,64,284,31,9/26/2006,HarperCollins +22339,Death: The Time of Your Life (Death of the Endless #2),Neil Gaiman/Chris Bachalo/Mark Buckingham/Mark Pennington/Claire Danes,4.22,1563893339,9781563893339,eng,95,12377,198,12/1/1997,Vertigo +22344,Creatures of the Night,Neil Gaiman/Michael Zulli,3.83,1569719365,9781569719367,eng,46,1706,171,12/27/2004,Dark Horse Books +22345,New X-Men Volume 4: Riot at Xavier's,Grant Morrison/Frank Quitely,4.06,0785110674,9780785110675,eng,120,2113,54,11/15/2006,Marvel +22347,The Invisibles Volume 1: Say You Want a Revolution,Grant Morrison/Steve Yeowell/Jill Thompson/Dennis Cramer/Peter Milligan,3.95,1563892677,9781563892677,eng,224,8822,372,6/1/1996,DC Comics +22348,The Mystery Play,Grant Morrison/Jon J. Muth,3.44,1563891891,9781563891892,en-US,80,688,40,8/1/1995,Vertigo +22350,Kid Eternity,Grant Morrison/Duncan Fegredo,3.41,1401209335,9781401209339,eng,144,693,44,2/1/2006,Vertigo +22351,New X-Men Volume 1: E Is for Extinction,Grant Morrison/Frank Quitely,4.06,0785108114,9780785108115,eng,144,7602,135,9/27/2006,Marvel +22354,Seven Soldiers of Victory Volume 1,Grant Morrison/Ryan Sook/Mick Gray/Frazer Irving/J.H. Williams III/Simone Bianchi/Cameron Stewart,3.79,1401209254,9781401209254,eng,224,2046,98,1/4/2006,DC Comics +22355,Doom Patrol Vol. 1: Crawling from the Wreckage (Doom Patrol #1),Grant Morrison/Richard Case/Doug Braithwaite/Scott Hanna/Carlos Garzon/John Nyberg,4.08,1563890348,9781563890345,eng,192,5447,235,4/17/2000,Vertigo +22356,The Filth,Grant Morrison/Chris Weston/Gary Erskine,3.75,1401200133,9781401200138,en-US,320,3907,266,6/1/2004,Vertigo +22360,Doom Patrol Vol. 5: Magic Bus,Grant Morrison/Richard Case/Ken Steacy/Stan Woch/Philip Bond/Mark McKenna/Scott Hanna,4.27,1401212026,9781401212025,eng,203,1363,52,4/1/2007,Vertigo +22362,JLA Vol. 1: New World Order,Grant Morrison/Howard Porter/John Dell,3.98,156389369X,9781563893698,en-US,93,3714,96,4/1/1997,DC Comics +22363,Batman: Gothic,Grant Morrison/Klaus Janson,3.79,1563890283,9781563890284,eng,128,4294,123,7/1/1998,DC Comics +22364,JLA: Earth 2,Grant Morrison/Frank Quitely,3.97,1563896311,9781563896316,eng,96,5165,143,10/1/2000,DC Comics +22365,New X-Men: Omnibus,Grant Morrison/Marc Silvestri/Chris Bachalo/John Paul Leon/Frank Quitely/Leinil Francis Yu/Igor Kordey/Ethan Van Sciver/Keron Grant/Tom Derenick/Phil Jimenez,4.23,0785123261,9780785123262,eng,1096,2952,112,12/6/2006,Marvel +22366,Superfolks,Robert Mayer/Grant Morrison,3.48,0312339925,9780312339920,eng,240,429,57,3/9/2005,St. Martin's Griffin +22373,Kill Your Boyfriend,Grant Morrison/Philip Bond/D'Israeli/Daniel Vozzo,3.57,156389453X,9781563894534,en-US,55,1269,66,12/31/1998,DC Comics Vertigo +22374,Batman: Arkham Asylum - A Serious House on Serious Earth,Grant Morrison/Dave McKean,4.10,1401204252,9781401204259,eng,216,51984,1469,1/11/2005,DC Comics +22380,JLA: Tierra 2,Grant Morrison/Frank Quitely/Rafael De la Iglesia,3.97,987224975X,9789872249755,spa,96,7,2,11/25/2005,Sticker Design (DC Comics) +22390,Doom Patrol Vol. 4: Musclebound,Grant Morrison/Richard Case/Mike Dringenberg/Mark McKenna/Jamie Hewlett/Steve Yeowell/Rian Hughes,4.15,1401209998,9781401209995,eng,256,2322,77,8/30/2006,Vertigo +22392,New X-Men Volume 7: Here Comes Tomorrow,Grant Morrison/Marc Silvestri,3.75,0785113452,9780785113454,eng,112,1797,55,11/15/2006,Marvel +22394,The Invisibles Vol. 7: The Invisible Kingdom,Grant Morrison/Philip Bond/Warren Pleece/Sean Phillips/Jay Stephens/Frank Quitely/Steve Yeowell,4.20,1401200192,9781401200190,en-US,288,3346,83,12/1/2002,DC Comics Vertigo +22398,The Invisibles Vol. 3: Entropy in the U.K.,Grant Morrison/Phil Jimenez/John Stokes/Tommy Lee Edwards/Paul Johnson/Steve Yeowell/Dick Giordano/Mark Buckingham/Mark Pennington,4.21,1563897288,9781563897283,en-US,232,4084,86,8/1/2001,Vertigo +22399,Invisible,Pete Hautman,3.84,0689869037,9780689869037,eng,160,2311,347,11/28/2006,Simon Pulse +22401,The Invisibles Vol. 4: Bloody Hell in America,Grant Morrison/Phil Jimenez/John Stokes,4.17,1563894440,9781563894442,en-US,104,3882,74,2/1/1998,Vertigo +22406,The Invisibles Vol. 6: Kissing Mister Quimper,Grant Morrison/Chris Weston/Ivan Reis,4.24,1563896001,9781563896002,en-US,224,3852,63,2/1/2000,DC Comics Vertigo +22408,Invisible Residents: The Reality of Underwater UFOs,Ivan T. Sanderson/David Hatcher Childress,3.73,1931882207,9781931882200,en-US,100,62,7,9/15/2005,Adventures Unlimited Press +22409,The Invisibles Vol. 5: Counting to None,Grant Morrison/Phil Jimenez/John Stokes,4.19,1563894890,9781563894893,en-US,240,4270,67,3/1/1999,Vertigo +22414,The Invisible Heart: An Economic Romance,Russell Roberts/Russ Roberts,3.74,0262681358,9780262681353,eng,282,609,90,2/22/2002,MIT Press +22417,Transmetropolitan Vol. 2: Lust for Life,Warren Ellis/Darick Robertson,4.34,1563894815,9781563894817,eng,208,15496,281,2/1/1999,Vertigo +22418,Transmetropolitan Vol. 3: Year of the Bastard,Warren Ellis/Darick Robertson/Rodney Ramos,4.41,1563895684,9781563895685,eng,144,13360,193,9/1/1999,Vertigo +22420,Transmetropolitan Vol. 5: Lonely City,Warren Ellis/Darick Robertson/Rodney Ramos/Patrick Stewart,4.41,1563897229,9781563897221,eng,144,11372,146,7/1/2001,Vertigo +22421,Transmetropolitan Vol. 4: The New Scum,Warren Ellis/Darick Robertson/Rodney Ramos/Keith Akin,4.39,1563896273,9781563896279,eng,133,13331,146,9/1/2000,Vertigo +22423,Transmetropolitan Vol. 8: Dirge,Warren Ellis/Darick Robertson/Rodney Ramos,4.47,1563899531,9781563899539,eng,140,9963,90,4/1/2003,Vertigo +22424,Transmetropolitan Vol. 10: One More Time,Warren Ellis/Darick Robertson/Rodney Ramos,4.51,1401202179,9781401202170,eng,144,10308,184,6/1/2004,Vertigo +22425,Transmetropolitan Vol. 9: The Cure,Warren Ellis/Darick Robertson/Rodney Ramos,4.44,1563899884,9781563899881,eng,144,10331,90,12/1/2003,Vertigo +22426,Transmetropolitan Vol. 7: Spider's Thrash,Warren Ellis/Darick Robertson/Rodney Ramos/Darren Aronofsky,4.32,1563898942,9781563898945,eng,144,12633,88,11/1/2002,Vertigo +22431,Created in Darkness by Troubled Americans: The Best of McSweeney's Humor Category,Dave Eggers/Kevin Shay/Lee Epstein/Suzanne Kleid/McSweeney's Publishing,3.75,1400076854,9781400076857,eng,249,1791,146,6/14/2005,Vintage +22434,The Fabric of the Cosmos: Space Time and the Texture of Reality,Brian Greene,4.11,0141011114,9780141011110,en-US,592,340,22,2/24/2005,Penguin +22436,The Meaning of Relativity (Science Library),Albert Einstein/Brian Greene,4.32,0691120277,9780691120270,en-US,200,26,2,11/21/2004,Princeton University Press +22438,The Fabric of the Cosmos: Space Time and the Texture of Reality,Brian Greene,4.11,0736697500,9780736697507,eng,16,19,5,2/24/2004,Books on Tape +22443,Underground! The Disinformation Guide to Ancient Civilizations Astonishing Archaeology and Hidden History,Preston Peet,3.84,1932857192,9781932857191,eng,343,157,5,10/1/2005,Disinformation Company +22445,Under the Influence: The Disinformation Guide to Drugs,Preston Peet,3.64,1932857001,9781932857009,eng,312,58,3,1/1/2004,The Disinformation Company (NYC) +22448,You are Being Lied To: The Disinformation Guide to Media Distortion Historical Whitewashes and Cultural Myths,Russ Kick,3.87,0966410076,9780966410075,eng,399,1010,34,4/1/2001,Disinformation Company +22459,The Origin of Species,Charles Darwin/Philip Appleman,3.98,0393978672,9780393978674,en-US,134,33,3,3/15/2002,W.W. Norton & Company +22460,Red Herrings and White Elephants: The Origins of the Phrases We Use Every Day,Albert Jack/Ann Page,3.73,0060843373,9780060843373,en-US,272,71,5,11/1/2005,Harper +22461,The Origin of Species,Charles Darwin/Julian Huxley,3.98,0451529065,9780451529060,eng,576,805,75,9/2/2003,Signet Classics +22463,The Origin of Species,Charles Darwin,3.98,0785819118,9780785819110,eng,703,78431,1355,5/1/2004,Castle Books +22470,The Origin of Satan: How Christians Demonized Jews Pagans and Heretics,Elaine Pagels,3.90,0679731180,9780679731184,eng,240,5729,209,4/30/1996,Vintage +22472,Discourse on the Origin of Inequality,Jean-Jacques Rousseau,3.82,0486434141,9780486434148,eng,73,9975,210,6/4/2004,Dover Publications +22473,On the Origins of War and the Preservation of Peace,Donald Kagan,4.01,0385423756,9780385423755,eng,573,520,30,1/1/1996,Anchor +22474,The Origins of Totalitarianism,Hannah Arendt,4.28,0805242252,9780805242256,eng,674,77,11,3/1/2004,Schocken Books +22478,The Origin of Consciousness in the Breakdown of the Bicameral Mind,Julian Jaynes,4.25,0618057072,9780618057078,eng,491,3473,426,8/15/2000,Mariner Books +22482,Final Fantasy Origins - Official Strategy Guide,Casey Loe/Laura Parkinson,3.96,0744002532,9780744002539,eng,256,25,1,4/9/2003,Bradygames +22483,Social Origins of Dictatorship and Democracy: Lord and Peasant in the Making of the Modern World,Barrington Moore Jr./James C. Scott/Edward Friedman,3.98,0807050733,9780807050736,eng,592,823,37,9/1/1993,Beacon Press +22485,Smithsonian Intimate Guide to Human Origins,Carl Zimmer,4.02,0061196673,9780061196676,eng,176,173,17,2/6/2007,Harper Perennial +22486,Economic Origins of Dictatorship and Democracy,Daron Acemoğlu/James A. Robinson,3.97,0521855268,9780521855266,eng,416,158,10,10/1/2005,Cambridge University Press +22489,African Origins of the Major "Western Religions",Yosef A.A. Ben-Jochannan,4.54,0933121296,9780933121294,eng,363,129,6,12/1/1991,Black Classic Press +22493,The Origins of the Civil Rights Movements: Black Communities Organizing for Change,Aldon D. Morris,4.05,0029221307,9780029221303,en-US,368,151,13,9/15/1986,Free Press +22495,The Origin of the Bible,F.F. Bruce/Philip W. Comfort/Carl F.H. Henry/J.I. Packer,3.86,0842383670,9780842383677,en-US,352,79,11,12/17/2003,Tyndale House Publishers +22499,Country of Origin,Don Lee,3.47,039332706X,9780393327069,eng,320,317,41,4/17/2005,W. W. Norton Company +22508,The Making of a Philosopher: My Journey Through Twentieth-Century Philosophy,Colin McGinn,3.65,0060957603,9780060957605,eng,256,226,31,7/8/2003,Harper Perennial +22514,The Beatles and Philosophy: Nothing You Can Think that Can't Be Thunk,Michael Baur/Steven Baur/James S. Spiegel,3.63,0812696069,9780812696066,eng,288,157,14,10/25/2006,Open Court +22515,The Gospel According to the Beatles,Steve Turner,3.77,0664229832,9780664229832,eng,254,126,23,8/3/2006,Westminster John Knox Press +22538,JPod,Douglas Coupland,3.69,1596911042,9781596911048,en-US,448,617,72,5/16/2006,Bloomsbury +22539,Hairstyles of the Damned,Joe Meno,3.72,188845170X,9781888451702,eng,270,5298,468,9/1/2004,Akashic Books/Punk Planet Books +22541,Just Visiting This Planet: Merlin Answers More Questions about Everything Under the Sun Moon and Stars,Neil deGrasse Tyson/Stephen Tyson,4.17,0385488378,9780385488372,eng,352,86,4,7/13/1998,Main Street Books +22542,Merlin's Tour of the Universe,Neil deGrasse Tyson,4.02,0385488351,9780385488358,eng,318,305,27,7/14/1997,Main Street Books +22543,Death by Black Hole: And Other Cosmic Quandaries,Neil deGrasse Tyson,4.10,0393062244,9780393062243,eng,384,9837,552,1/17/2007,W. W. Norton Company +22547,Tales from the Dark Tower,Joseph Vargo/Christine Filipak/Eric Muss-Barnes/Jalone J. Haessig/Joseph Iorillo/Robert Michaels/Russell Novotny/James Pipik,4.23,0967575605,9780967575605,en-US,282,54,5,10/1/2003,Monolith Graphics +22549,The Dark Tower (The Dark Tower #7),Stephen King,4.28,0340827211,9780340827215,eng,686,362,40,9/21/2004,Hodder & Stoughton +22550,The Gunslinger,Stephen King,3.96,0670032549,9780670032549,eng,231,2309,230,6/23/2003,Viking +22553,Gunslinger Girl Vol. 1,Yu Aida/Hiroshi Aida,3.87,1413900208,9781413900200,eng,175,911,42,12/29/2003,ADV Manga +22554,Gunslinger,Ed Dorn,4.11,0822309327,9780822309321,eng,224,247,24,8/22/1989,Duke University Press Books +22557,Wasteland of Flint,Thomas Harlan,3.79,0765341131,9780765341136,eng,512,291,38,2/1/2004,Tor Books +22559,Cities in Dust (Wasteland #1),Antony Johnston/Christopher Mitten,3.55,1932664599,9781932664591,eng,160,576,73,4/20/2010,Oni Press +22562,Slim to None: A Journey Through the Wasteland of Anorexia Treatment,Jennifer Hendricks/Gordon Hendricks,3.63,0071433716,9780071433716,eng,384,580,21,2/4/2004,McGraw-Hill Education +22575,Sit Walk Stand,Watchman Nee,4.42,0842358935,9780842358934,eng,80,2663,141,11/4/1977,Tyndale House Publishers +22576,Prayers for the Assassin (Assassin Trilogy #1),Robert Ferrigno,3.76,141650768X,9781416507680,eng,458,791,95,10/31/2006,Pocket Star Books +22580,Voices From the Street,Philip K. Dick,3.29,0765316927,9780765316929,en-US,301,698,104,1/23/2007,Tor Books +22583,The Minority Report: 18 Classic Stories,Philip K. Dick/James Tiptree Jr.,4.19,0806523794,9780806523798,eng,380,456,40,5/1/2002,Citadel +22584,Flow My Tears the Policeman Said,Philip K. Dick,3.91,1857983416,9781857983418,eng,204,26767,1075,11/8/2001,Gollancz +22586,The Crack in Space,Philip K. Dick,3.46,1400030064,9781400030064,eng,188,1878,142,3/8/2005,Vintage +22590,Ubik,Philip K. Dick/David Alabort/Manuel Espín,4.09,8498000831,9788498000832,spa,288,63422,2486,5/1/2006,La factoría de ideas +22591,The Best of Philip K. Dick,Philip K. Dick/John Brunner,4.22,0345253590,9780345253590,eng,450,622,33,2/12/1978,Del Rey Books (NY) +22595,Vulcan's Hammer,Philip K. Dick,3.52,1400030129,9781400030125,eng,165,1561,97,8/10/2004,Vintage +22602,Carly's Sound,Ali Vali,4.21,1933110457,9781933110455,eng,212,454,11,6/1/2006,Bold Strokes Books +22616,The System of Objects,Jean Baudrillard/James Benedict,4.01,1844670538,9781844670536,eng,224,1002,27,1/17/2006,Verso +22618,The Intelligence of Evil or the Lucidity Pact,Jean Baudrillard/Chris Turner,3.89,1845203348,9781845203344,eng,215,247,9,12/1/2005,Bloomsbury Academic +22620,Introducing Baudrillard,Chris Horrocks/Zoran Jevtić,3.32,1840460873,9781840460872,eng,176,165,25,8/13/1997,Icon Books +22623,Existentialism and Human Emotions,Jean-Paul Sartre,3.84,0806509023,9780806509020,eng,96,4190,147,12/1/2000,Citadel +22624,Nausea,Jean-Paul Sartre/James Wood/Robert Baldick,3.92,014118549X,9780141185491,eng,253,1590,140,11/30/2000,Penguin Books +22626,From Socrates to Sartre: The Philosophic Quest,T.Z. Lavine,3.94,0553251619,9780553251616,eng,426,932,70,1/1/1985,Bantam +22632,The Trial and Death of Socrates (Euthyphro Apology Crito Phaedo (death scene only)),Plato/G.M.A. Grube/John M. Cooper,4.08,0872205541,9780872205543,eng,58,26252,344,6/1/2001,Hackett Publishing Company +22633,The Trial of Queen Caroline: The Scandalous Affair that Nearly Ended a Monarchy,Jane Robins,3.39,0743255909,9780743255905,eng,384,52,8,8/7/2006,Free Press +22649,Bookends,Jane Green,3.72,0767907817,9780767907811,eng,368,37153,822,5/27/2003,Broadway Books +22656,Jemima J.: For those who love Faking Friends and My Sweet Revenge by Jane Fallon,Jane Green,3.65,0140276904,9780140276909,eng,450,683,66,8/6/1998,Penguin Books +22669,Open House,Elizabeth Berg,3.70,0613997638,9780613997638,eng,0,0,0,5/1/2001,Turtleback Books +22677,Feeling Better Getting Better Staying Better: Profound Self-Help Therapy for Your Emotions,Albert Ellis,3.76,1886230358,9781886230354,eng,272,51,6,6/1/2001,Impact +22680,American Sphinx: The Character of Thomas Jefferson,Joseph J. Ellis,3.92,0679764410,9780679764410,eng,440,20178,590,4/7/1998,Vintage +22681,Line Of Vision,David Ellis,3.81,0425183769,9780425183762,en-US,448,609,82,2/5/2002,G.P. Putnam's Sons +22686,The Other Woman,Jane Green,3.70,0452287146,9780452287143,eng,389,29112,651,6/6/2006,Berkley +22687,No Other Woman (No Other #2),Shannon Drake,3.78,0380781360,9780380781362,eng,391,299,7,6/1/1996,Avon Books +22690,The Other Woman (Dundee Idaho #7),Brenda Novak,4.11,0373713444,9780373713448,eng,299,560,33,5/9/2006,Harlequin Special Releases +22691,The Other Woman,Ann O'Leary,3.64,1562802348,9781562802349,eng,213,77,6,4/28/1999,Naiad Press +22697,Sins of a Shaker Summer (Sister Rose Callahan #3),Deborah Woodworth,3.52,0380792044,9780380792047,eng,272,58,6,3/9/1999,Avon +22715,InuYasha Ani-Manga Vol. 1 (Inuyasha Ani-Manga #1),Rumiko Takahashi,4.36,1591162025,9781591162025,eng,206,5862,55,1/14/2004,VIZ Media LLC +22718,Pusteblume,Marian Keyes,3.81,3453189345,9783453189348,ger,560,59,0,5/1/2001,Heyne +22724,¿Quién te lo ha contado?,Marian Keyes,3.79,8497936736,9788497936736,spa,648,169,9,12/30/2005,DeBolsillo +22725,Une vie de rêve,Marian Keyes,3.69,271443813X,9782714438133,fre,593,11,4,5/4/2005,Pocket +22726,Por los pelos,Marian Keyes,3.81,1400002214,9781400002214,spa,592,34,5,9/17/2002,Plaza y Janes +22727,Under the Duvet,Marian Keyes,3.52,0141007478,9780141007472,eng,304,401,43,7/28/2009,Penguin UK +22733,Rachel se va de viaje (La familia Walsh #2),Marian Keyes,3.95,8497599179,9788497599177,spa,595,204,21,3/30/2003,DeBolsillo +22736,Yeats ist tot!,Joseph O'Connor/Diethard Herles/Pauline McLynn/Gerard Stembridge/Frank McCourt/Conor McPherson/Gene Kerrigan/Gina Moxley/Marian Keyes/Anthony Cronin/Owen O'Neill/Hugo Hamilton/Charlie O'Neill/Tom Humphries/Donal O'Kelly,3.40,3548603254,9783548603254,ger,332,11,2,4/1/2003,List Taschenbuch +22739,Le Club de la dernière chance,Marian Keyes,3.81,2266130609,9782266130608,fre,608,6,0,6/5/2003,Pocket +22741,Les vacances de Rachel (Walsh Family #2),Marian Keyes/Roxane Azimi,3.95,2266108271,9782266108270,fre,563,7,1,5/2/2002,Pocket +22743,Rachel se va de viaje (La familia Walsh #2),Marian Keyes,3.95,840132954X,9788401329548,spa,594,7,0,1/31/2003,DeBolsillo +22745,Auszeit für Engel Walsh Family #3),Marian Keyes,3.75,3453868579,9783453868571,ger,477,16,1,2/1/2003,Heyne +22763,Open House,Elizabeth Berg,3.70,0099461269,9780099461265,en-GB,314,61,6,9/29/2003,Arrow Books +22774,Slightly Settled (Slightly #2),Wendy Markham,3.68,0373250479,9780373250479,en-US,312,4756,84,1/23/2004,Red Dress Ink +22784,犬夜叉 8,Rumiko Takahashi,4.26,4091252087,9784091252081,jpn,192,16,0,11/18/1998,小学館 +22786,犬夜叉 7,Rumiko Takahashi,4.27,4091252079,9784091252074,jpn,192,15,0,8/8/1998,小学館 +22789,犬夜叉 24,Rumiko Takahashi,4.26,4091256449,9784091256447,jpn,192,11,1,12/18/2001,小学館 +22799,犬夜叉 28,Rumiko Takahashi,4.29,4091256481,9784091256485,jpn,192,12,1,12/5/2002,小学館 +22801,犬夜叉 4,Rumiko Takahashi,4.29,4091252044,9784091252043,jpn,192,15,0,12/10/1997,小学館 +22802,犬夜叉 22,Rumiko Takahashi,4.25,4091256422,9784091256423,jpn,192,13,1,8/9/2001,小学館 +22803,犬夜叉 26,Rumiko Takahashi,4.28,4091256465,9784091256461,jpn,192,11,1,6/18/2002,小学館 +22804,犬夜叉 12,Rumiko Takahashi,4.25,4091255825,9784091255822,jpn,192,13,0,9/18/1999,小学館 +22805,犬夜叉 17,Rumiko Takahashi,4.25,4091255876,9784091255877,jpn,192,14,1,8/9/2000,小学館 +22807,犬夜叉 14,Rumiko Takahashi,4.30,4091255841,9784091255846,jpn,192,13,1,2/18/2000,小学館 +22816,犬夜叉 10,Rumiko Takahashi,4.28,4091252109,9784091252104,jpn,192,15,0,4/17/1999,小学館 +22817,犬夜叉 1,Rumiko Takahashi,4.27,409125201X,9784091252012,jpn,192,41,3,4/18/1997,小学館 +22820,犬夜叉 27,Rumiko Takahashi,4.28,4091256473,9784091256478,jpn,192,12,1,9/18/2002,小学館 +22821,The Return of Lum Volume 3: Sweet Revenge (Urusei Yatsura #4),Rumiko Takahashi,3.97,1569311935,9781569311936,en-US,216,32,1,3/8/1997,Viz Media +22822,The Return of Lum Volume 5: Feudal Furor (Urusei Yatsura #6),Rumiko Takahashi,4.04,1569312109,9781569312100,en-US,200,27,0,12/6/1997,Viz Media +22826,Lamu: Urusei Yatsura 3,Rumiko Takahashi,4.08,8484497283,9788484497288,spa,416,38,0,8/30/2005,Glénat +22831,The Return of Lum Volume 1: Urusei Yatsura (Urusei Yatsura #2),Rumiko Takahashi,4.11,1569310351,9781569310359,eng,208,72,4,6/5/1995,Viz Media +22832,Lum: Urusei Yatsura. Perfect Collection (Urusei Yatsura #1),Rumiko Takahashi,3.97,156931019X,9781569310199,en-US,400,131,7,6/5/1997,Viz Media +22834,らんま½ 12,Rumiko Takahashi,4.06,409126512X,9784091265128,jpn,176,0,0,9/18/2002,小学館 [Shōgakukan] +22835,Ranma 1/2 Vol. 12 (Ranma ½ (US 2nd) #12),Rumiko Takahashi,4.11,1591162866,9781591162865,eng,200,1102,19,8/17/2004,VIZ Media LLC +22861,Your and My Secret Vol. 1,Ai Morinaga,3.54,1413901433,9781413901436,eng,174,406,31,7/6/2004,ADV Manga +22867,A Man Rides Through (Mordant's Need #2),Stephen R. Donaldson,4.02,0345459849,9780345459848,eng,672,11246,148,6/3/2003,Del Rey +22868,The One Tree (The Second Chronicles of Thomas Covenant #2),Stephen R. Donaldson,3.98,0006163831,9780006163831,en-GB,479,174,3,11/18/1996,Fontana +22871,The Gap Into Madness: Chaos and Order (Gap #4),Stephen R. Donaldson,4.15,0553071793,9780553071795,eng,617,4544,69,6/1/1994,Spectra +22874,The Gap Into Vision: Forbidden Knowledge (Gap #2),Stephen R. Donaldson,3.99,0553297600,9780553297607,en-US,480,5020,101,7/21/2010,Bantam +22875,The One Tree (The Second Chronicles of Thomas Covenant #2),Stephen R. Donaldson,3.98,0345418476,9780345418470,eng,496,15389,109,6/23/1997,Del Rey +22877,The Gap Into Power: A Dark and Hungry God Arises (Gap #3),Stephen R. Donaldson,4.08,0553562606,9780553562606,eng,518,5460,89,10/21/2009,Spectra +22883,Pretty Face Vol. 1,Yasuhiro Kano,3.83,1421513684,9781421513683,eng,192,494,40,8/7/2007,VIZ Media LLC +22885,Not Just a Pretty Face: Dolls and Human Figurines in Alaska Native Cultures,Molly C. Lee/Angela J. Linn/Chase Hensel/James H. Barker,3.50,1889963852,9781889963853,eng,80,2,0,3/1/2006,University of Alaska Press +22888,Just Another Pretty Face (Hollywood Dynasty #2),Candace Schuler,3.89,0373255594,9780373255597,eng,215,17,1,7/23/1993,Harlequin Temptation +22889,Skylight Confessions,Alice Hoffman,3.64,0316058785,9780316058780,eng,264,6754,744,1/1/2007,Little Brown and Company +22892,The Foretelling,Alice Hoffman,3.84,0316154091,9780316154093,eng,182,2646,247,9/1/2006,Little Brown Books for Young Readers +22893,Incantation,Alice Hoffman,3.88,0316010197,9780316010191,eng,166,5653,800,10/1/2006,Little Brown Books for Young Readers +22896,Practical Magic (Practical Magic #1),Alice Hoffman,3.78,0425190374,9780425190371,eng,286,54261,4232,8/5/2003,Penguin +22898,The Probable Future,Alice Hoffman,3.83,0345455916,9780345455918,eng,352,11910,965,6/1/2004,Ballantine Books +22904,The Complete Stories,Franz Kafka/Nahum N. Glatzer/John Updike/Willa Muir/Edwin Muir/Tania Stern/James Stern/Ernst Kaiser/Eithne Wilkins,4.35,0805210555,9780805210552,eng,486,20028,381,11/14/1995,Schocken +22911,Amerika,Franz Kafka/Willa Muir/Edwin Muir/Klaus Mann/E.L. Doctorow,3.75,0805210644,9780805210644,eng,336,17981,522,7/2/1996,Schocken +22912,Collected Stories,Franz Kafka/Willa Muir/Edwin Muir/Gabriel Josipovici,4.35,0679423036,9780679423034,eng,566,445,30,10/26/1993,Knopf +22913,Kafka: Toward a Minor Literature,Gilles Deleuze/Félix Guattari/Franz Kafka,4.17,0816615152,9780816615155,eng,136,1287,45,10/31/1986,Univ Of Minnesota Press +22914,The Annotated Brothers Grimm,Jacob Grimm/Wilhelm Grimm/Maria Tatar/A.S. Byatt/George Cruikshank/Paul Hey/Walter Crane/Warwick Goble/Kay Nielsen/Arthur Rackham,4.46,0393058484,9780393058482,eng,462,3132,103,9/17/2004,W. W. Norton Company +22915,The Complete Brothers Grimm Fairy Tales,Jacob Grimm/Wilhelm Grimm,4.30,0517229250,9780517229255,en-US,680,4420,165,10/3/2006,Gramercy Books +22916,The Complete Fairy Tales of The Brothers Grimm,Jacob Grimm/Wilhelm Grimm/Jack D. Zipes/Johnny Gruelle,4.30,0553382160,9780553382167,eng,762,877,55,1/1/2003,Bantam +22931,Beyond Innocence (Beyond Duet #1),Emma Holly,3.62,0515130990,9780515130997,en-US,295,1421,68,7/1/2001,Jove +22932,Emma Vol. 01,Kaoru Mori/森 薫,3.83,1401211321,9781401211325,eng,183,3515,339,9/20/2006,CMX +22944,Drum Into Silence (Drums of Chaos #3),Jo Clayton/Kevin Andrew Murphy,3.41,0812551249,9780812551242,en-GB,399,1,0,2/1/2004,Tor Fantasy +22945,Dance Down the Stars (Duel of Sorcery: Dancer #3),Jo Clayton,3.74,0886776171,9780886776176,eng,368,35,0,9/1/1994,DAW +22947,Drum Calls (Drums of Chaos #2),Jo Clayton,3.72,0812551230,9780812551235,eng,341,29,1,7/1/1998,Tor Books +22948,Fire in the Sky (Diadem: Shadowsong #1),Jo Clayton,3.87,0886776503,9780886776503,eng,352,63,2,5/1/1995,DAW +22950,Quester's Endgame,Jo Clayton,3.98,0886771382,9780886771386,eng,372,159,6,7/1/1986,DAW +22951,Shadowkill (Diadem: Shadith's Quest #3),Jo Clayton/Jo Clayton,3.99,0886774675,9780886774677,eng,400,68,1,4/1/1991,DAW +22966,Lidia's Family Table,Lidia Matticchio Bastianich/David Nussbaum/Christopher Hirsheimer,4.22,1400040353,9781400040353,eng,448,532,23,11/23/2004,Knopf Publishing Group +22967,Lidia's Italy,Lidia Matticchio Bastianich/Tanya Bastianich Manuali/David Nussbaum/Christopher Hirsheimer,4.21,1400040361,9781400040360,en-US,384,637,24,4/10/2007,Knopf Publishing Group +22969,La Cucina Di Lidia: Recipes and Memories from Italy's Adriatic Coast,Lidia Matticchio Bastianich/Jay Jacobs,4.14,0767914228,9780767914222,en-GB,288,48,3,4/8/2003,Clarkson Potter +22991,Blood Wedding and Yerma,Federico García Lorca/W.S. Merwin/Langston Hughes,3.84,1559360801,9781559360807,en-US,160,885,32,5/1/1994,Theatre Communications Group +22994,Selected Verse,Federico García Lorca/Christopher Maurer,4.43,0374528551,9780374528553,eng,432,189,14,6/9/2004,Farrar Straus and Giroux +23000,Operation Wandering Soul,Richard Powers,3.61,006097611X,9780060976118,eng,352,379,33,4/2/2002,Harper Perennial +23001,Galatea 2.2,Richard Powers,3.72,0312423136,9780312423131,eng,329,2155,191,1/1/2004,Picador +23002,Three Farmers on Their Way to a Dance,Richard Powers,3.82,0060975091,9780060975098,eng,352,742,49,12/1/1994,Harper Perennial +23003,Christian Theology: An Introduction,Alister E. McGrath,4.04,1405153601,9781405153607,eng,534,1178,48,11/13/2006,Blackwell Publishers +23007,The Time of Our Singing,Richard Powers,4.25,0099453835,9780099453833,eng,631,1836,245,2/5/2004,Vintage +23009,The Christian Theology Reader,Alister E. McGrath,4.17,140515358X,9781405153584,eng,744,244,11,9/1/2006,Blackwell Publishers +23010,Prisoner's Dilemma,Richard Powers,3.87,0060977086,9780060977085,en-US,352,543,45,4/2/2002,Harper Perennial +23011,In the Beginning: The Story of the King James Bible and How it Changed a Nation a Language and a Culture,Alister E. McGrath,3.97,0385722168,9780385722162,eng,354,515,76,2/19/2002,Anchor +23013,Gain,Richard Powers,3.77,0099284464,9780099284468,eng,355,710,54,11/1/2001,Vintage +23017,Presidential Power and the Modern Presidents: The Politics of Leadership from Roosevelt to Reagan,Richard E. Neustadt,3.77,0029227968,9780029227961,eng,384,293,17,3/1/1991,Free Press +23022,The Grotesque,Patrick McGrath,3.62,0679776214,9780679776215,eng,178,815,58,1/28/1997,Vintage +23023,Port Mungo,Patrick McGrath,3.32,1400075483,9781400075485,eng,242,412,36,6/14/2005,Vintage +23032,Entre Amis: An Interactive Approach,Michael D. Oates/Larbi Oukada,3.39,0618506918,9780618506910,eng,528,23,4,3/17/2005,Heinle +23036,Experience,Martin Amis,3.96,0099285827,9780099285823,eng,401,71,5,4/5/2001,Vintage +23037,Heavy Water and Other Stories,Martin Amis,3.39,037570115X,9780375701153,eng,208,1071,49,3/14/2000,Vintage +23042,Visiting Mrs Nabokov and Other Excursions,Martin Amis,3.70,0099461870,9780099461876,eng,288,545,16,4/7/2005,Vintage +23045,Intimacy And Other Stories,Hanif Kureishi,3.58,057121200X,9780571212002,eng,205,46,3,7/9/2001,Faber and Faber +23046,The Buddha of Suburbia,Hanif Kureishi,3.73,0571200435,9780571200436,en-US,284,384,25,4/5/2000,Faber and Faber +23056,Image-Music-Text,Roland Barthes/Stephen Heath,4.10,0006861350,9780006861355,eng,220,3209,41,9/13/1993,Fontana Press +23057,Camera Lucida: Reflections on Photography,Roland Barthes/Richard Howard,3.97,0795000375,9780795000379,eng,119,75,5,6/1/2001,Hill and Wang +23060,The Fashion System,Roland Barthes/Matthew Ward/Richard Howard,3.54,0520071778,9780520071773,eng,351,228,10,7/25/1990,University of California Press +23061,The Responsibility of Forms: Critical Essays on Music Art and Representation,Roland Barthes/Richard Howard,3.95,0520072383,9780520072381,eng,320,93,3,2/7/1991,University of California Press +23063,The Pleasure of the Text,Roland Barthes/Richard Miller,4.02,0224011871,9780224011877,eng,80,19,1,2/12/1976,Jonathan Cape +23065,How to Travel with a Salmon & Other Essays,Umberto Eco/William Weaver,3.85,0099428636,9780099428633,eng,229,110,12,4/16/2001,Vintage +23066,How to Travel with a Salmon and Other Essays,Umberto Eco/William Weaver,3.85,0151001367,9780151001361,eng,248,3532,153,12/1/1994,Houghton Mifflin +23080,Le Nom de la rose,Umberto Eco/Jean-Noël Schifano,4.12,2253033138,9782253033134,fre,755,745,49,11/2/1983,Le Livre de Poche +23114,Os libros arden mal,Manuel Rivas,3.36,849782461X,9788497824613,glg,741,36,2,6/24/2006,Edicións Xerais de Galicia S.A. +23158,The Age of Access: The New Culture of Hypercapitalism Where All of Life Is a Paid-For Experience,Jeremy Rifkin/Ralph Fowler,3.82,1585420824,9781585420827,eng,320,228,12,3/5/2001,"Tarcher" +23183,The Book of Questions,Pablo Neruda/William O'Daly,4.04,1556591608,9781556591600,eng,96,2180,224,4/1/2001,Copper Canyon Press +23186,Bugs for Lunch/Insectos para el almuerzo,Margery Facklam/Sylvia Long/Liliana Valenzuela,3.78,1570915067,9781570915062,spa,32,4,1,7/1/2002,Charlesbridge +23194,My Story as told by Water: Confessions Druidic Rants Reflections Bird-watchings Fish-stalkings Visions Songs and Prayers Refracting Light from Living Rivers in the Age of the Industrial Dark,David James Duncan,4.10,1578050499,9781578050499,eng,304,679,53,7/17/2001,Sierra Club Books +23201,Pilgrims and Other Stories,Elizabeth Gilbert,3.13,0330351745,9780330351744,eng,288,1411,182,4/9/1998,Picador +23202,The Last American Man,Elizabeth Gilbert,3.81,0142002836,9780142002834,eng,271,7966,960,5/27/2003,Riverhead Books +23203,Pilgrims Pa,Elizabeth Gilbert,3.13,0395924855,9780395924853,eng,224,10,2,9/17/1998,Mariner Books +23204,Stern Men,Elizabeth Gilbert,3.41,061812733X,9780618127337,eng,304,4308,542,6/8/2001,Mariner Books +23206,A Writer's Workbook: Daily Exercises for the Writing Life,Caroline Sharp/Elizabeth Gilbert,3.72,031228621X,9780312286217,eng,176,152,16,6/14/2002,St. Martin's Griffin +23217,Size 14 Is Not Fat Either (Heather Wells #2),Meg Cabot,3.83,0060525126,9780060525125,eng,344,27424,1038,11/28/2006,William Morrow Paperbacks +23218,Missing You (1-800-Where-R-You #5),Meg Cabot,4.17,0060874309,9780060874308,eng,268,11056,366,12/26/2006,HarperTempest +23219,Queen of Babble (Queen of Babble #1),Meg Cabot,3.69,0060851988,9780060851989,eng,309,60787,1693,5/23/2006,William Morrow +23220,Size 12 Is Not Fat (Heather Wells #1),Meg Cabot,3.74,0060525118,9780060525118,eng,345,75856,2408,12/27/2005,William Morrow Paperbacks +23221,How to Be Popular,Meg Cabot,3.55,0060880120,9780060880125,eng,288,19363,876,8/31/2006,HarperTempest +23222,Valentine Princess (The Princess Diaries #7.75),Meg Cabot,3.67,0060847182,9780060847180,eng,96,9517,219,12/12/2006,HarperTeen +23224,Darkest Hour (The Mediator #4),Meg Cabot,4.17,0060725141,9780060725143,eng,316,30471,671,12/28/2004,HarperCollins +23226,She Went All the Way,Meg Cabot,3.70,0060085444,9780060085445,eng,357,12470,441,12/3/2002,Avon +23227,Are We There Yet?,David Levithan,3.49,037582846X,9780375828461,eng,215,3089,281,7/12/2005,Alfred A. Knopf +23228,Boy Meets Boy,David Levithan,3.84,0375832998,9780375832994,eng,185,59799,3373,5/10/2005,Alfred A. Knopf +23229,This Is Push: New Stories from the Edge,David Levithan/Patricia McCormick/Matthue Roth/Kevin Waltman/Samantha Schutz/Coe Booth/Eddie de Oliveira/Tanuja Desai Hidier/Kevin Brooks/Chris Wooding/Markus Zusak/Brian James/Kristen Kemp/Eireann Corrigan/Christopher Krovatin/Billy Merrell,3.63,0439890284,9780439890281,eng,240,223,23,2/1/2007,Push +23232,The Realm of Possibility,David Levithan,3.93,0375836578,9780375836572,eng,210,14625,1190,5/9/2006,Ember +23233,Ten Things I Hate about You,David Levithan,4.11,0439087309,9780439087308,eng,170,1435,65,6/1/1999,Scholastic +23235,Where We Are What We See: The Best Young Writers and Artists in America,David Levithan,3.76,0439736463,9780439736466,eng,288,41,0,5/1/2005,Push +23236,Aphrodite's Passion (Superhero Central #2),Julie Kenner,3.62,0505524740,9780505524744,eng,352,534,33,4/1/2002,Love Spell +23237,The Manolo Matrix (Codebreaker Trilogy #2),Julie Kenner,3.62,0743496140,9780743496148,eng,352,651,34,2/1/2006,Downtown Press +23238,The Cat's Fancy,Julie Kenner,3.57,0505523973,9780505523976,eng,391,244,27,8/1/2000,Love Spell +23239,Demons Are Forever (Demon-Hunting Soccer Mom #3),Julie Kenner,3.89,0425215385,9780425215388,eng,292,2368,162,7/3/2007,Berkley Publishing Group +23240,Aphrodite's Secret (Superhero Central #3),Julie Kenner,3.70,0505525097,9780505525093,eng,369,410,20,5/6/2003,Love Spell +23242,The Good Ghouls' Guide to Getting Even (Beth Frasier #1),Julie Kenner,3.59,0425213919,9780425213919,eng,256,901,73,4/3/2007,Berkley Trade +23243,Aphrodite's Flame (Superhero Central #4),Julie Kenner,3.67,0505525755,9780505525758,eng,338,385,16,8/1/2004,Love Spell +23244,Carpe Demon (Demon-Hunting Soccer Mom #1),Julie Kenner,3.64,0515142212,9780515142211,eng,320,4811,585,10/31/2006,Jove +23249,Perfect Circle,Sean Stewart,3.80,1931520119,9781931520119,eng,243,679,69,6/1/2004,Small Beer Press +23257,The Great Philosophers: An Introduction to Western Philosophy,Bryan Magee/Myles Burnyeat/Martha C. Nussbaum/Anthony Kenny/Bernard Williams/Anthony Quinton/Michael Ayres/John Passmore/Geoffrey Warnock/Peter Singer/Frederick Charles Copleston/J. P. Stern/Hubert L. Dreyfus/Sidney Morgenbesser/A.J. Ayer/John Rogers Searle,4.07,019289322X,9780192893222,eng,352,359,18,1/18/2001,Oxford University Press USA +23260,Talking Philosophy: Dialogues with Fifteen Leading Philosophers,Bryan Magee/Isaiah Berlin/Charles Taylor/Herbert Marcuse/William Barrett/Anthony Quinton/A.J. Ayer/Bernard Williams/R. M. Hare/Willard Van Orman Quine/John Rogers Searle/Noam Chomsky/Hilary Putnam/Ronald Dworkin/Iris Murdoch/Ernest Gellner,4.06,0192854178,9780192854179,eng,288,24,4,10/18/2001,OUP Oxford +23261,The Story of Philosophy: A Concise Introduction to the World's Greatest Thinkers and Their Ideas,Bryan Magee,4.14,0751333328,9780751333329,eng,240,518,45,11/1/2005,DK Publishing (Dorling Kindersley) +23265,Feminist Measures: Soundings in Poetry and Theory,Lynn Keller/Lynn Keller,4.40,0472064843,9780472064847,en-US,424,5,0,12/14/1994,University of Michigan Press +23276,Taxation of Mineral Rents,Ross Garnaut,5.00,0198284543,9780198284543,eng,350,1,0,11/17/1983,Oxford University Press USA +23290,Dubliners,James Joyce/Margot Norris/Hans Walter Gabler/Walter Hettche,3.85,0393978516,9780393978513,eng,369,789,51,2/1/2006,W. W. Norton & Company +23292,Dubliners: Text Criticism and Notes,James Joyce/Robert Scholes/A. Walton Litz,3.85,0140247742,9780140247749,eng,492,331,32,8/1/1996,Penguin Books +23293,Dubliners,James Joyce/Frank McCourt/Donal Donnelly/Ciaran Hinds/Colm Meaney/Malachy McCourt,3.85,0060789565,9780060789565,eng,8,53,11,5/10/2005,Caedmon +23297,CliffsNotes on Joyce's Dubliners (Cliffs Notes),Adam Sexton/G. Tubach,3.40,0764537156,9780764537158,eng,80,5,2,4/25/2003,Cliffs Notes +23300,The Door to Time (Ulysses Moore #1),Pierdomenico Baccalario/Iacopo Bruno/Laura Zuccotti/Leah D. Janeczko/Beth Dunfey,3.93,0439774381,9780439774383,eng,239,3099,241,1/1/2006,Scholastic Inc. +23303,Ulysses S. Grant: The Unlikely Hero,Michael Korda,3.87,0060590157,9780060590154,eng,176,432,44,9/28/2004,Eminent Lives +23307,Ulysses S. Grant,Josiah Bunting/Arthur M. Schlesinger Jr.,3.89,0805069496,9780805069495,eng,208,445,40,9/8/2004,Times Books +23310,Allusions in Ulysses: An Annotated List,Weldon Thornton,4.04,0807840890,9780807840894,eng,563,22,2,9/20/1982,University of North Carolina Press +23314,Ulysses Found,Ernle Bradford,4.07,0750937254,9780750937252,eng,238,38,8,2/1/2005,History Press Ltd +23315,The Scandal of Ulysses: The Life And Afterlife of a Twentieth Century Masterpiece,Bruce Arnold,3.82,190414845X,9781904148456,eng,346,12,0,11/15/2005,The Liffey Press +23316,Round Ireland with a Fridge,Tony Hawks,3.79,0312274920,9780312274924,en-US,248,15191,838,3/7/2001,Thomas Dunne Books +23318,Discovery of the Presence of God: Devotional Nonduality,David R. Hawkins,4.61,0971500762,9780971500761,en-US,296,186,11,6/28/2007,Veritas Publishing +23319,Transcending the Levels of Consciousness: The Stairway to Enlightenment,David R. Hawkins,4.51,0971500746,9780971500747,eng,407,461,29,6/28/2006,Veritas Publishing +23322,The Eye of the I: From Which Nothing is Hidden,David R. Hawkins,4.38,0964326191,9780964326194,eng,432,752,37,6/23/2001,Veritas Publishing +23331,Letters to J. D. Salinger,Chris Kubica/Chris Kubica,3.50,0299178005,9780299178000,eng,270,26,1,3/4/2002,University of Wisconsin Press +23336,J.D. Salinger's Catcher in the Rye (Modern Critical Interpretations),Harold Bloom,3.58,0791056643,9780791056646,eng,176,18,2,12/31/2000,Chelsea House Publications +23352,Lord of the Flies,William Golding,3.68,0812416112,9780812416114,en-US,208,479,57,7/1/1959,Perfection Learning +23377,Where Is Baby's Mommy? (A Lift-the-Flap Book),Karen Katz,4.15,0689835612,9780689835612,eng,14,434,28,4/1/2001,Little Simon +23378,Counting Christmas,Karen Katz,3.53,0689849257,9780689849251,eng,32,154,26,10/1/2003,Margaret K. McElderry Books +23391,Running from the Deity (Pip & Flinx #11),Alan Dean Foster,3.81,0345461614,9780345461612,eng,280,1045,26,11/28/2006,Del Rey Books +23392,Lost and Found,Alan Dean Foster,3.68,0345461274,9780345461278,eng,256,722,65,5/31/2005,Del Rey Books +23393,Reunion (Pip & Flinx #8),Alan Dean Foster,3.87,0345418689,9780345418685,eng,352,1366,33,2/26/2002,Del Rey +23398,The Dig,Alan Dean Foster,3.40,0727852663,9780727852663,eng,336,2,0,1/1/1998,Severn House Publishers +23404,Regarding the Fountain: A Tale in Letters of Liars and Leaks,Kate Klise/M. Sarah Klise,4.20,0380793474,9780380793471,eng,144,3208,306,3/9/1999,HarperCollins +23410,Pimsleur German Level 1 CD: [Lessons 1-30],Pimsleur Language Programs,4.23,0743518365,9780743518369,eng,16,58,10,4/1/2010,Pimsleur +23418,The Architecture of Happiness,Alain de Botton,3.86,0375424431,9780375424434,eng,280,7101,540,10/3/2006,Pantheon Books +23419,The Consolations of Philosophy,Alain de Botton,4.01,0679779175,9780679779179,en-US,265,13499,812,4/3/2001,Vintage +23420,How Proust Can Change Your Life,Alain de Botton,3.76,0679779159,9780679779155,eng,208,10270,877,4/28/1998,Vintage +23421,Kiss & Tell,Alain de Botton,3.56,0312155611,9780312155612,eng,258,828,46,5/15/1997,Picador +23423,The Consolations of Philosophy,Alain de Botton,4.01,0140276610,9780140276619,eng,272,763,70,3/1/2001,Penguin +23425,Status Anxiety,Alain de Botton,3.91,0375725350,9780375725357,eng,306,7957,535,5/10/2005,Vintage +23426,On Love,Alain de Botton,3.98,0802142400,9780802142405,eng,194,11297,853,1/6/2006,Grove Press +23438,Miracle at St. Anna,James McBride,3.74,1573229717,9781573229715,en-US,336,2141,303,1/7/2003,Riverhead Books +23439,Die Farbe von Wasser,James McBride,4.09,342661278X,9783426612781,ger,317,38,1,2/1/2001,Droemer Knaur +23453,Dragons of Winter Night (Dragonlance: Chronicles #2),Margaret Weis/Tracy Hickman,4.12,0786930675,9780786930678,en-US,361,424,20,7/1/2003,Wizards of the Coast +23454,Dragons of Winter Night (Dragonlance: Chronicles #2),Margaret Weis/Tracy Hickman,4.12,1932796789,9781932796780,eng,358,35536,401,4/10/2007,Devil's Due Publishing +23460,Dragon's Treasure,Elizabeth A. Lynn,3.54,0441012590,9780441012596,eng,336,170,11,9/27/2005,Ace +23461,Watchtower (Chronicles of Tornor #1),Elizabeth A. Lynn,3.57,0743498097,9780743498098,eng,224,646,35,12/1/2004,iBooks +23468,Letters to a Young Artist,Anna Deavere Smith,4.02,1400032385,9781400032389,eng,240,543,50,1/24/2006,Anchor +23475,The Hip Chick's Guide to Macrobiotics: A Philosophy for Achieving a Radiant Mind and a Fabulous Body,Jessica Porter/Michio Kushi,3.69,1583332057,9781583332054,eng,289,424,53,9/9/2004,Avery Publishing Group +23479,La casa en Mango Street,Sandra Cisneros/Elena Poniatowska,3.63,0613046889,9780613046886,spa,110,35,5,10/18/1994,Turtleback Books +23491,Kurt Vonnegut's Cat's Cradle (Modern Critical Interpretations),Harold Bloom/Terry Southern/David H. Goldsmith/James Lundquist/Lawrence R. Broer/Peter J. Reed/Loree Rackstraw/William S. Doxey/Jerome Klinkowitz/Richard Giannone/John L. Simons/Leonard Mustazza/Zoltan Ab di-Nagy/Peter Freese/Wendy B. Faris,4.35,0791063372,9780791063378,eng,258,14,2,6/15/2002,Chelsea House Publications +23492,The Dharma Bums,Jack Kerouac/Ann Douglas,3.92,0143039601,9780143039600,eng,187,2055,172,4/5/2007,Penguin Classics +23503,The Alchemist's Daughter,Katharine McMahon,3.25,0307335852,9780307335852,eng,346,3565,451,10/24/2006,Broadway Books +23504,The Art of Fullmetal Alchemist: The Anime,Hiromu Arakawa/Akira Watanabe/Eric Searleman,4.44,1421507668,9781421507668,eng,96,266,8,10/17/2006,VIZ Media LLC +23506,Fullmetal Alchemist Vol. 11 (Fullmetal Alchemist #11),Hiromu Arakawa/Akira Watanabe,4.59,1421508389,9781421508382,eng,192,7655,129,1/16/2007,VIZ Media LLC +23512,Astronomy Today,Eric Chaisson/Steve McMillan,3.99,0131445960,9780131445963,eng,2,128,4,7/26/2004,Prentice Hall +23515,Astronomy For Dummies,Stephen P. Maran,3.84,0764584650,9780764584657,eng,318,285,27,5/6/2005,Wiley Publishing Inc. +23516,Astronomy: A Self-Teaching Guide,Dinah L. Moché,3.89,0471265187,9780471265184,eng,343,113,10,2/24/2004,John Wiley & Sons +23517,Astronomy: A Beginner's Guide to the Universe,Eric Chaisson/Steve McMillan,3.88,013187165X,9780131871656,eng,499,159,8,2/24/2006,Benjamin Cummings +23518,Bad Astronomy,Philip Plait,4.04,0471409766,9780471409762,eng,277,5247,234,3/5/2002,Wiley +23520,The Complete World of Greek Mythology,Richard Buxton,4.24,0500251215,9780500251218,eng,256,1598,46,6/28/2004,Thames & Hudson +23521,Mythology: Timeless Tales of Gods and Heroes,Edith Hamilton,4.00,0446607258,9780446607254,eng,330,1747,192,8/1/1999,Warner +23522,Mythology,Edith Hamilton/Steele Savage,4.00,0316341517,9780316341516,eng,497,35634,1552,9/14/1998,Little Brown and Company +23524,Mythology: The DC Comics Art of Alex Ross,Alex Ross/Geoff Spear/Chip Kidd,4.33,0375714626,9780375714627,eng,320,1994,37,11/8/2005,Pantheon +23525,Norse Mythology: A Guide to the Gods Heroes Rituals and Beliefs,John Lindow,4.11,0195153820,9780195153828,eng,365,1107,33,10/17/2002,Oxford University Press USA +23526,Classic Myths to Read Aloud: The Great Stories of Greek and Roman Mythology Specially Arranged for Children Five and Up by an Educational Expert,William F. Russell,4.12,0517588374,9780517588376,eng,272,249,44,4/28/1992,Broadway Books +23533,Snapshots From Hell: The Making Of An MBA,Peter M. Robinson,3.70,1857880781,9781857880786,en-US,296,582,43,4/26/2005,Nicholas Brealey +23545,Watchmen on the Walls,Hannah Hurnard,4.02,0805413995,9780805413991,eng,184,39,6,3/1/1998,B&H Publishing Group +23547,America (The Book): A Citizen's Guide to Democracy Inaction (Teacher's Edition),Jon Stewart/Scott C. Jacobson,4.02,0446691860,9780446691864,en-GB,227,1827,116,9/25/2006,Warner Books +23548,The Children's Book of America,William J. Bennett/Michael Hague,4.19,0684849305,9780684849300,en-US,112,95,13,11/2/1998,Simon & Schuster +23549,The Journal of Scott Pendleton Collins: A World War 2 Soldier,Walter Dean Myers,3.96,0439050138,9780439050135,eng,140,1132,181,6/1/1999,Scholastic Inc. +23552,The New Big Book of America,Todd Davis/Marc Frey,5.00,0762412631,9780762412631,eng,56,2,1,3/21/2002,Courage Books +23558,Awake in the Dark: The Best of Roger Ebert,Roger Ebert/David Bordwell,4.20,0226182002,9780226182001,eng,512,416,30,9/15/2006,University of Chicago Press +23563,Ebert's "Bigger" Little Movie Glossary,Roger Ebert/Ray Ebert,3.87,0836282892,9780836282894,en-US,228,82,9,12/3/2005,Andrews McMeel Publishing +23573,The Perfect London Walk,Roger Ebert/Daniel Curley/Jack Lane,4.26,0836279298,9780836279290,eng,123,40,6,1/1/1986,Andrews McMeel Publishing +23576,The Truth with Jokes,Al Franken,3.86,0452287677,9780452287679,eng,386,7469,201,10/1/2006,Plume Books +23577,Lies & the Lying Liars Who Tell Them: A Fair & Balanced Look at the Right,Al Franken,3.81,0452285216,9780452285217,en-US,421,25235,723,7/27/2004,Plume Books +23581,Still More George W. Bushisms: "Neither in French nor in English nor in Mexican",Jacob Weisberg/Al Franken,3.37,0743251008,9780743251006,eng,96,56,11,11/4/2003,Fireside +23582,You're Good Enough You're Smart Enough & Doggone It People Like You!,Al Franken,3.89,0553470949,9780553470949,en-US,0,18,0,10/1/1992,Random House Audio Publishing Group +23584,I'm Good Enough I'm Smart Enough & Doggone It People Like Me!,Al Franken/Melody Beattie/Stuart Smalley,3.82,0440504708,9780440504702,en-US,352,359,35,10/1/1992,Dell +23588,J.R.R. Tolkien: Artist and Illustrator,Wayne G. Hammond/Christina Scull/J.R.R. Tolkien,4.14,0618083618,9780618083619,en-US,224,8140,32,10/18/2000,Mariner Books +23589,The J.R.R. Tolkien Companion and Guide,Christina Scull/Wayne G. Hammond,4.64,0618391134,9780618391134,eng,2264,45,0,11/2/2006,Houghton Mifflin Harcourt +23591,The Children of Húrin,J.R.R. Tolkien/Christopher Tolkien/Alan Lee,3.97,0618894640,9780618894642,eng,313,2681,225,4/17/2007,Houghton Mifflin Harcourt +23596,Tales Before Tolkien: The Roots of Modern Fantasy,Douglas A. Anderson/Frank R. Stockton/Ludwig Tieck/Richard Garnett/H. Rider Haggard/Andrew Lang/William Hope Hodgson/E.A. Wyke-Smith/David Lindsay/Clemence Housman/George MacDonald/Arthur Machen/A. Merritt/L. Frank Baum/Kenneth Morris/William Morris/James Branch Cabell/Lord Dunsany/Francis Stevens/E.H. Knatchbull-Hugessen/E. Nesbit,3.93,0345458567,9780345458568,eng,528,1130,42,11/29/2005,Del Rey +23598,The J.R.R. Tolkien Companion and Guide Volume 1: Chronology,Christina Scull/Wayne G. Hammond,4.51,0618391029,9780618391028,eng,1002,40,2,11/2/2006,Houghton Mifflin Harcourt +23600,Sauron Defeated: The History of The Lord of the Rings Part Four (The History of Middle-Earth #9),J.R.R. Tolkien/Christopher Tolkien,4.01,0395606497,9780395606490,eng,496,2572,41,10/27/1992,Houghton Mifflin Harcourt +23601,The J.R.R. Tolkien Companion and Guide Volume 2: Reader's Guide,Wayne G. Hammond/Wayne G. Hammond,4.46,0618391010,9780618391011,eng,1262,31,2,11/2/2006,Houghton Mifflin Harcourt +23603,Tales from the Perilous Realm,J.R.R. Tolkien,4.08,0007149123,9780007149124,eng,178,3242,162,9/2/2002,HarperCollins Publishers +23608,Tolkien: Man and Myth: A Literary Life,Joseph Pearce,4.05,0898708257,9780898708257,eng,256,467,31,12/1/2001,Ignatius Press +23617,Roverandom,J.R.R. Tolkien/Christina Scull/Wayne G. Hammond,3.87,0007149115,9780007149117,eng,116,8775,413,9/2/2002,HarperCollins Publishers +23625,The History of Middle-Earth Index (The History of Middle-Earth #13),J.R.R. Tolkien/Christopher Tolkien,4.25,0007137435,9780007137435,eng,484,51,3,8/5/2002,HarperCollins +23627,The Lost Road and Other Writings (The History of Middle-earth #5),J.R.R. Tolkien/Christopher Tolkien,3.97,0261102257,9780261102255,eng,455,97,10,6/5/2002,HarperCollins +23637,Tolkien's Modern Middle Ages,Jane Chance/Alfred Siewers,3.62,1403969736,9781403969736,eng,264,16,2,11/19/2005,Palgrave Macmillan +23640,Understanding The Lord of the Rings: The Best of Tolkien Criticism,Rose A. Zimbardo/Neil D. Isaacs,4.02,0618422536,9780618422531,eng,304,2067,17,5/12/2005,Mariner Books +23643,Faërie,J.R.R. Tolkien/Francis Ledoux,3.54,2266102710,9782266102711,fre,217,89,2,11/20/2003,Pocket +23653,The Hobbit or There and Back Again,J.R.R. Tolkien/Alan Lee,4.27,026110330X,9780261103306,eng,289,559,55,9/15/1997,Houghton Mifflin Company +23685,Ranma 1/2 Vol. 36 (Ranma ½ (US 2nd) #36),Rumiko Takahashi,4.14,142150507X,9781421505077,eng,182,863,33,11/1/2006,Viz Media +23686,Ranma ½ Vol. 1 (Ranma ½ (US 2nd) #1),Rumiko Takahashi,4.15,1569319626,9781569319628,eng,304,29058,309,5/7/2003,VIZ Media LLC +23689,Ranma 1/2 Vol. 35 (Ranma ½ (US 2nd) #35),Rumiko Takahashi,4.10,1421505061,9781421505060,eng,208,752,13,8/8/2006,VIZ Media LLC +23692,Ranma 1/2 Vol. 34 (Ranma ½ (US 2nd) #34),Rumiko Takahashi,4.08,1421505053,9781421505053,eng,182,782,13,5/1/2006,Viz Media +23693,Ranma 1/2 Vol. 7 (Ranma ½ (US 2nd) #7),Rumiko Takahashi,4.13,1591161290,9781591161295,eng,184,1392,39,2/4/2004,Viz Media +23697,Mermaid Saga Vol. 2,Rumiko Takahashi,4.05,1591164842,9781591164845,eng,208,92,3,9/21/2004,VIZ Media LLC +23700,The Mermaids Singing,Lisa Carey,3.77,0380815591,9780380815593,en-US,288,1859,231,11/6/2001,William Morrow Paperbacks +23703,Maison Ikkoku Volume 15 (Maison Ikkoku #15),Rumiko Takahashi,4.36,1421502798,9781421502793,en-US,208,257,11,2/14/2006,VIZ Media LLC +23704,Maison Ikkoku Volume 14 (Maison Ikkoku #14),Rumiko Takahashi,4.30,1421501422,9781421501420,eng,240,245,6,12/13/2005,VIZ Media LLC +23706,Maison Ikkoku Volume 12 (Maison Ikkoku #12),Rumiko Takahashi,4.27,1591168694,9781591168690,eng,323,250,3,8/9/2005,VIZ Media LLC +23707,Maison Ikkoku Volume 5 (Maison Ikkoku #5),Rumiko Takahashi,4.22,1591163196,9781591163190,en-US,208,300,5,6/2/2004,Viz Media +23708,Maison Ikkoku Volume 6 (Maison Ikkoku #6),Rumiko Takahashi,4.19,1591164222,9781591164227,en-US,208,291,4,8/17/2004,Viz Media +23709,Maison Ikkoku Volume 11 (Maison Ikkoku #11),Rumiko Takahashi,4.28,159116804X,9781591168041,eng,232,252,4,6/7/2005,VIZ Media LLC +23710,Maison Ikkoku Volume 9 (Maison Ikkoku #9),Rumiko Takahashi,4.19,1591166179,9781591166177,en-US,232,272,4,2/9/2005,VIZ Media LLC +23717,Rumic World Trilogy Volume 3 (Rumic World Trilogy #3),Rumiko Takahashi,3.88,1569312060,9781569312063,eng,192,69,1,11/5/1997,Viz Media +23720,Nausicaä of the Valley of the Wind Vol. 4 (Nausicaä of the Valley of the Wind #4),Hayao Miyazaki/David Lewis/Toren Smith/Kaori Inoue/Joe Yamazaki/Walden Wong/Izumi Evers,4.59,1591163528,9781591163527,eng,134,1956,38,6/2/2004,VIZ Media +23721,Nausicaä of the Valley of the Wind Vol. 6 (Nausicaä of the Valley of the Wind #6),Hayao Miyazaki/Matt Thorn/Kaori Inoue/Joe Yamazaki/Walden Wong/Izumi Evers,4.62,1591163544,9781591163541,eng,159,1776,33,8/10/2004,VIZ Media +23722,Nausicaä of the Valley of the Wind Vol. 5 (Nausicaä of the Valley of the Wind #5),Hayao Miyazaki/Matt Thorn/Kaori Inoue/Joe Yamazaki/Walden Wong/Izumi Evers,4.61,1591164125,9781591164128,eng,151,1904,28,6/30/2004,VIZ Media +23724,Nausicaä of the Valley of the Wind Vol. 7 (Nausicaä of the Valley of the Wind #7),Hayao Miyazaki/Matt Thorn/Kaori Inoue/Joe Yamazaki/Walden Wong/Izumi Evers,4.61,1591163552,9781591163558,eng,223,1716,79,9/7/2004,VIZ Media +23734,Nausicaä De La Vallée Du Vent Tome 4,Hayao Miyazaki,4.59,2723433927,9782723433921,fre,144,29,2,6/12/2001,Glénat +23740,Nausicaä de la vallée du vent tome 3,Hayao Miyazaki,4.56,2723433919,9782723433914,fre,144,32,3,2/20/2001,Glénat +23751,Homer's Daughter,Robert Graves,3.81,0897330595,9780897330596,en-US,283,416,34,8/30/2005,Academy Chicago Publishers +23753,The Absolute Sandman Volume One,Neil Gaiman/Mike Dringenberg/Chris Bachalo/Michael Zulli/Kelly Jones/Charles Vess/Colleen Doran/Malcolm Jones III/Steve Parkhouse/Daniel Vozzo/Lee Loughridge/Steve Oliff/Todd Klein/Dave McKean/Sam Kieth,4.65,1401210821,9781401210823,eng,612,15640,512,11/1/2006,Vertigo +23754,Preludes & Nocturnes (The Sandman #1),Neil Gaiman/Sam Kieth/Mike Dringenberg/Malcolm Jones III/Todd Klein/Karen Berger,4.24,1563892278,9781563892271,eng,233,171841,3781,12/1/1998,Vertigo +23756,Berlin Diary: The Journal of a Foreign Correspondent 1934-1941,William L. Shirer/Gordon A. Craig,4.29,0801870569,9780801870569,eng,627,3574,198,4/17/2002,Johns Hopkins University Press +23757,This Is Berlin: Reporting from Nazi Germany 1938-40,William L. Shirer/John Keegan/Inga Shirer Dean,4.24,1585672793,9781585672790,en-US,478,155,5,5/30/2002,Overlook TP +23758,The Nightmare Years: 1930-40 (20th Century Journey #2),William L. Shirer,4.24,1841581224,9781841581224,eng,654,844,41,3/5/2008,Birlinn +23763,The Collapse of the Third Republic,William L. Shirer,4.21,0306805626,9780306805622,eng,1082,531,40,3/21/1994,Da Capo Press +23774,Something Borrowed (Darcy & Rachel #1),Emily Giffin,3.85,0312321198,9780312321192,en-US,322,24522,4032,4/1/2005,St. Martin's Griffin +23777,Something Borrowed Something Blue,Elaine Barbieri/Constance O'Banyon/Evelyn Rogers/Bobbi Smith,3.94,084394725X,9780843947250,eng,394,17,1,6/1/2000,Leisure Books +23784,The Major Plays,Anton Chekhov/Ann Dunnigan/Rosamund Bartlett/Robert Brustein,4.18,0451530373,9780451530370,eng,406,102,16,12/5/2006,Signet +23785,The Complete Plays,Anton Chekhov/Laurence Senelick,4.47,0393048853,9780393048858,eng,1060,222,12,1/3/2006,W. W. Norton & Company +23788,Anton Chekhov's Selected Plays,Anton Chekhov/Laurence Senelick,4.01,0393924653,9780393924657,eng,674,97,10,10/25/2004,W. W. Norton & Company +23790,Short Stories,Anton Chekhov/Ralph E. Matlaw,4.35,0393090027,9780393090024,eng,384,2633,105,4/17/1979,W. W. Norton & Company +23791,Ward No. 6 and Other Stories,Anton Chekhov/David Plante/Constance Garnett,4.33,1593080034,9781593080037,en-US,400,6988,173,7/1/2003,Barnes Noble Classics +23793,The Dark Descent,David G. Hartwell/Clive Barker/Ray Bradbury/John Collier/Shirley Jackson/Stephen King/Joyce Carol Oates,4.25,0312862172,9780312862176,eng,1011,1991,65,1/15/1997,Tor Books +23796,The Medusa in the Shield,David G. Hartwell/Robert Aickman/Charlotte Perkins Gilman/William Faulkner/Robert Smythe Hichens/Richard Matheson/Joanna Russ/Dennis Etchison/D.H. Lawrence/Tanith Lee/Flannery O'Connor/Ramsey Campbell/Thomas M. Disch/Henry James/Theodore Sturgeon/Clive Barker/Edgar Allan Poe/Stephen King/Michael Bishop/H.P. Lovecraft/J. Sheridan Le Fanu,3.88,0812509668,9780812509663,eng,498,49,6,11/15/1991,Tor Books +23797,A Fabulous Formless Darkness,David G. Hartwell/Fritz Leiber/Fitz-James O'Brien/Shirley Jackson/Ambrose Bierce/Edith Wharton/Algernon Blackwood/Thomas M. Disch/Robert Aickman/Philip K. Dick/Gene Wolfe/Charles Dickens/Stephen King/Joyce Carol Oates/Walter de la Mare/Ivan Turgenev/Robert W. Chambers/Oliver Onions,4.18,0812509676,9780812509670,eng,608,31,5,1/15/1992,Tor Books +23799,The Dark Descent Vol 1: The Color of Evil,David G. Hartwell,4.12,0246136677,9780246136671,eng,304,2,0,9/19/1990,Grafton +23801,Bargaining for Advantage: Negotiation Strategies for Reasonable People,G. Richard Shell,3.95,0143036971,9780143036975,en-US,320,4560,85,5/2/2006,Penguin Books +23802,Bargaining for Advantage: Negotiation Strategies for Reasonable People,G. Richard Shell,3.95,0140281916,9780140281910,eng,304,37,1,6/1/2000,Penguin Books +23809,The Silence of the Lambs and Red Dragon,Thomas Harris,4.48,1850522316,9781850522317,eng,534,293,9,11/1/1991,Peerage Books +23811,The Silence of the Lambs,Yvonne Tasker,4.27,0851708714,9780851708713,eng,96,510,14,3/29/2002,British Film Institute +23814,King Solomon's Mines (Allan Quatermain #1),H. Rider Haggard,3.80,0812966295,9780812966299,eng,264,34623,1168,12/10/2002,Modern Library +23816,Mine All Mine!: A Book About Pronouns,Ruth Heller,4.09,0698117972,9780698117976,en-US,48,117,24,10/1/1999,Puffin Books +23818,A Faith Like Mine,Laura Buller/D.K. Publishing,3.91,0756611776,9780756611774,eng,80,50,19,8/15/2005,DK Children +23824,Speaks the Nightbird (Matthew Corbett #1),Robert R. McCammon,4.13,1880216620,9781880216620,en-US,726,145,31,9/1/2002,River City Publishing +23827,The Bishop's Boys: A Life of Wilbur and Orville Wright,Tom D. Crouch,4.17,039330695X,9780393306958,eng,608,143,28,4/17/2003,W. W. Norton Company +23832,The Insomnia Answer: A Personalized Program for Identifying and Overcoming the Three Types of Insomnia,Paul Glovinsky/Art Spielman,3.93,0399532978,9780399532979,en-US,272,47,13,12/5/2006,TarcherPerigee +23835,Cognitive Behavioral Treatment of Insomnia: A Session-By-Session Guide,Michael L. Perlis/Carla Jungquist/Michael T. Smith,4.05,0387222529,9780387222523,eng,182,2,1,6/1/2005,Springer +23837,Healing Therapies for Overcoming Insomnia,Peter Van Houten/Rich McCord,3.60,1565891740,0798499100096,eng,175,8,1,2/23/2005,Crystal Clarity Publishers +23840,The Attraction,Douglas Clegg,3.62,0843954116,9780843954111,eng,324,386,34,4/1/2006,Leisure Books +23841,Nightmare House (Harrow House #1),Douglas Clegg,3.36,084395177X,9780843951776,en-GB,340,971,101,5/1/2004,Leisure Books +23843,The Abandoned (Harrow House #4),Douglas Clegg,3.45,0843954108,9780843954104,eng,370,229,23,5/1/2005,Leisure Books +23845,The Nightmare Chronicles,Douglas Clegg,3.75,084394580X,9780843945805,en-US,360,409,32,9/1/1999,Leisure Books +23846,Mischief (Harrow House #2),Douglas Clegg,3.49,0843947667,9780843947663,eng,359,385,29,9/1/2000,Leisure Books +23847,Purity (Dark Coming of Age #1),Douglas Clegg,3.79,1881475719,9781881475712,eng,118,99,12,6/2/2000,Cemetery Dance Publications +23848,The Hour Before Dark,Douglas Clegg,3.76,0843951427,9780843951424,eng,370,1034,78,9/1/2003,Leisure Books +23849,The Halloween Man,Douglas Clegg,3.36,0843944390,9780843944396,eng,360,583,71,10/1/1998,Leisure Books +23856,The Sisters: The Saga of the Mitford Family,Mary S. Lovell,3.97,0393324141,9780393324143,eng,611,8132,589,5/20/2003,W.W. Norton & Company +23859,Soldiers of Salamis,Javier Cercas/Anne McLean,3.81,1582344728,9781582344720,eng,213,429,71,1/10/2005,Bloomsbury USA +23870,Spandau: The Secret Diaries,Albert Speer,4.13,0026995018,9780026995016,eng,463,6,2,2/5/1976,Macmillan Publ. Co. +23875,El coronel no tiene quien le escriba,Gabriel García Márquez,3.75,0307350436,9780307350435,spa,104,19205,711,2/7/2006,Plaza & Janés +23876,Of Love and Other Demons,Gabriel García Márquez,3.98,0517405091,9780517405093,eng,160,35045,1116,5/2/1995,Penguin Group (USA) +23877,Noticia de un secuestro,Gabriel García Márquez,3.85,0307350509,9780307350503,spa,336,1444,80,2/7/2006,Plaza y Janes +23878,Chronicle of a Death Foretold,Gabriel García Márquez/Gregory Rabassa,3.97,140003471X,9781400034710,eng,120,69912,2789,10/7/2003,Vintage +23882,Ojos de perro azul,Gabriel García Márquez,3.74,0307350517,9780307350510,spa,192,3303,116,2/7/2006,Plaza y Janes +23884,The General in His Labyrinth,Gabriel García Márquez/Edith Grossman,3.68,1400043336,9781400043330,eng,248,11939,389,10/26/2004,Everyman's Library +23886,La increíble y triste historia de la cándida Eréndira y de su abuela desalmada,Gabriel García Márquez,3.90,0307350363,9780307350367,spa,160,21,1,2/7/2006,Plaza y Janés +23887,The Autumn of the Patriarch,Gabriel García Márquez/Gregory Rabassa,3.85,0060882867,9780060882860,eng,255,12336,492,3/14/2006,Harper Perennial Modern Classics +23894,Cien años de soledad,Gabriel García Márquez,4.07,0307350274,9780307350275,spa,512,52,7,2/7/2006,Plaza y Janes +23895,El amor en los tiempos del cólera,Gabriel García Márquez,3.91,8467204362,9788467204360,spa,430,54,1,1/1/1985,Círculo de Lectores +23900,Relato de un náufrago,Gabriel García Márquez,3.78,0307350401,9780307350404,spa,172,2095,121,2/7/2006,Plaza y Janes +23903,Relato de Um Náufrago,Gabriel García Márquez/Remy Gorga Filho,3.78,8501011207,9788501011206,por,134,43,2,4/15/1995,Record +23912,The Complete Poems,William Blake/Alicia Suskin Ostriker,4.24,0140422153,9780140422153,eng,1072,7738,48,11/24/1977,Penguin Classics +23913,The Marriage of Heaven and Hell,William Blake,4.24,0486281221,9780486281223,eng,48,7163,245,9/1/1994,Dover Publications +23917,The Stranger from Paradise: A Biography of William Blake,G.E. Bentley Jr.,4.06,0300100302,9780300100303,eng,632,79,10,4/10/2003,Paul Mellon Centre BA +23919,The Complete Stories and Poems,Edgar Allan Poe,4.38,0385074077,9780385074070,eng,821,183869,1226,8/15/1984,Doubleday & Company Inc. +23920,Complete Tales and Poems,Edgar Allan Poe,4.38,0785814531,9780785814535,eng,864,1864,110,11/29/2009,Castle Books +23922,The Edgar Allan Poe Audio Collection,Edgar Allan Poe,4.39,0694524190,9780694524198,eng,5,289,64,10/1/2000,Harper Audio +23925,18 Best Stories by Edgar Allan Poe,Edgar Allan Poe/Vincent Price/Chandler Brossard,4.02,0440322278,9780440322276,eng,288,412,37,4/15/1965,Dell +23926,Complete Poems (Library of Classic Poets),Edgar Allan Poe,4.17,0517082454,9780517082454,en-US,128,198,11,3/20/2001,Gramercy +23928,Edgar Allan Poe A to Z,Dawn B. Sova,4.33,081604161X,9780816041619,eng,320,8,0,4/1/2001,Checkmark Books +23929,Selected Letters 1940-1956,Jack Kerouac/Ann Charters,4.13,0140234446,9780140234442,eng,656,804,21,3/1/1996,Penguin (Non-Classics) +23930,The Wild Boys,William S. Burroughs,3.60,0802133312,9780802133311,eng,193,2977,124,1/12/1994,Grove Press +23931,Nova Express (The Nova Trilogy #3),William S. Burroughs,3.67,0802133304,9780802133304,eng,192,2541,70,1/21/1994,Grove Press +23932,Last Words: The Final Journals,William S. Burroughs/James Grauerholz,3.98,0802137784,9780802137784,eng,273,490,20,1/3/2001,Grove Press +23937,The Soft Machine (The Nova Trilogy #1),William S. Burroughs,3.35,0802133290,9780802133298,eng,184,5892,204,1/13/1994,Grove Press +23940,Junky,William S. Burroughs/Oliver Harris/Allen Ginsberg,3.83,0142003166,9780142003169,eng,208,47105,1052,4/1/2003,Penguin +23942,Queer,William S. Burroughs,3.59,0330300164,9780330300162,eng,160,9811,279,12/17/1998,Penguin Books +23944,Cities of the Red Night,William S. Burroughs,3.77,0312278462,9780312278465,en-GB,332,3893,196,5/4/2001,Picador +23945,William S. Burroughs Throbbing Gristle Brion Gysin,V. Vale/Andrea Juno/William S. Burroughs/Throbbing Gristle/Brion Gysin,4.26,1889307157,9781889307152,eng,140,1290,17,1/10/2008,Re/Search Publications +23946,Burroughs Live: The Collected Interviews 1960-1997,William S. Burroughs/Sylvère Lotringer,4.36,1584350105,9781584350101,eng,675,124,5,12/7/2001,Semiotext(e) +23948,My Education: A Book of Dreams,William S. Burroughs,3.70,0140094547,9780140094541,eng,193,1055,47,6/1/1996,Penguin Books +23950,Trainspotting (Mark Renton #2),Irvine Welsh,4.09,0393057240,9780393057249,en-US,340,533,45,10/17/2002,W. W. Norton Company +23952,Trainspotting,Murray Smith,4.03,0851708706,9780851708706,eng,96,75,5,3/29/2002,British Film Institute +23955,Trainspotting,Irvine Welsh/Eric Lindor Fall,4.09,2020336464,9782020336468,fre,344,59077,857,3/6/1998,Seuil +23961,Marabou Stork Nightmares,Irvine Welsh,3.86,0393315630,9780393315639,eng,288,8726,267,1/17/1997,W. W. Norton Company +23963,You'll Have Had Your Hole,Irvine Welsh,3.51,0413728609,9780413728609,eng,76,227,5,4/2/1998,Bloomsbury Methuen Drama +23964,Ecstasy,Irvine Welsh/Alain Defossé,3.55,2020416409,9782020416405,fre,358,12,2,6/10/2000,Points +23966,Filth,Irvine Welsh,3.73,0393318680,9780393318685,eng,393,21997,643,9/17/1998,W. W. Norton Company +23968,The Female Brain,Louann Brizendine,3.83,0767920090,9780767920094,eng,304,8655,1203,8/1/2006,Morgan Road Books +23975,Imaginary Friends,Nora Ephron,3.54,1400034221,9781400034222,eng,144,200,19,3/18/2003,Vintage +23979,Scribble Scribble: Notes on the Media,Nora Ephron,3.70,0553122754,9780553122756,eng,163,326,27,3/1/1979,Bantam Books +23984,Life Amongst the Modocs,Joaquin Miller/Alan Rosenus/Malcolm Margolin,4.32,0930588797,9780930588793,eng,456,19,6,1/1/1997,Urion Press +23989,Devil's Backbone,Terry C. Johnston,4.17,0312925743,9780312925741,eng,448,105,6,8/15/1991,St. Martin's Press +24001,Soldados de Salamina,Javier Cercas,3.81,8483101610,9788483101612,spa,209,4382,235,9/1/2001,Tusquets +24006,Rule #1: The Simple Strategy for Successful Investing in Only 15 Minutes a Week!,Phil Town,4.02,0307336131,9780307336132,eng,320,1373,90,3/21/2006,Crown Business +24010,Laguna I Love You: The Best of "Our Town",John Weld/Phil Interlandi,0.00,1564741575,9781564741578,eng,285,0,0,3/1/1996,Fithian Press +24028,Dirty Italian: Everyday Slang from "What's Up?" to "F*%# Off!",Gabrielle Ann Euvino/Lindsay Mack,4.00,1569755663,9781569755662,eng,163,46,0,10/28/2006,Ulysses Press +24037,The Deep (Dive #2),Gordon Korman,3.78,0439507235,9780439507233,eng,148,1436,55,7/1/2003,Scholastic +24040,The Discovery (Dive #1),Gordon Korman,3.72,0439507227,9780439507226,eng,141,1858,135,6/1/2003,Apple Paperbacks (Scholastic) +24043,New York City's Best Dive Bars: Drinking and Diving in the Five Boroughs,Wendy Mitchell/June Kim,3.75,0970312539,9780970312532,eng,160,16,2,7/1/2003,Gamble Guides +24047,The Stowaway Solution (On The Run #4),Gordon Korman,4.11,0439651395,9780439651394,eng,160,2041,82,10/1/2005,Scholastic +24048,The Abduction (Kidnapped #1),Gordon Korman,3.99,043984777X,9780439847773,eng,144,3306,263,5/1/2006,Scholastic Books +24050,The Fugitive Factor (On The Run #2),Gordon Korman,4.13,0439651379,9780439651370,eng,160,2499,151,6/1/2005,Scholastic +24052,Chasing The Falconers (On The Run #1),Gordon Korman,4.05,0439651360,9780439651363,eng,154,4598,371,4/1/2005,Scholastic Inc. +24054,Losing Joe's Place,Gordon Korman,4.05,0590427695,9780590427692,eng,233,797,46,10/1/1991,Scholastic Paperbacks +24056,Something Fishy at Macdonald Hall (Macdonald Hall #7),Gordon Korman,4.06,0590255223,9780590255226,eng,208,919,13,9/1/2000,Scholastic Paperbacks +24058,The Zucchini Warriors (Macdonald Hall #5),Gordon Korman,4.01,0590441744,9780590441742,eng,208,1160,42,6/1/1991,Scholastic +24060,The Contest (Everest Trilogy),Gordon Korman,3.85,0613589459,9780613589451,eng,137,12,2,8/1/2002,Turtleback Books +24062,The Deep (Dive Trilogy),Gordon Korman,3.78,0613674839,9780613674836,eng,148,0,0,7/1/2003,Turtleback Books +24064,No More Dead Dogs,Gordon Korman,3.71,0439294843,9780439294843,eng,180,12,2,9/1/2001,Scholastic Inc +24065,Radio Fifth Grade,Gordon Korman,3.55,0590419277,9780590419277,eng,192,522,47,8/1/1991,Scholastic Paperbacks +24066,The Climb (Everest Trilogy),Gordon Korman,3.90,061358466X,9780613584661,eng,151,3,0,7/1/2002,Turtleback Books +24073,The Contest (Everest #1),Gordon Korman,3.85,0439401399,9780439401395,eng,96,3561,230,8/1/2002,Scholastic Paperbacks +24079,Casino Royale (James Bond #1),Ian Fleming,3.73,0340425679,9780340425671,eng,188,56,8,10/1/1988,Coronet +24087,The Eternal Flame (Merlin #11),T.A. Barron/David Elliot,4.22,0399242139,9780399242137,eng,377,2506,48,10/19/2006,Philomel Books +24089,The Ivy Tree,Carolyn Brown,4.24,0803494661,9780803494664,eng,192,20,1,2/1/2001,Montlake Romance +24093,Street Magic (The Circle Opens #2),Tamora Pierce,4.15,0590396439,9780590396431,eng,300,21070,286,11/15/2006,Scholastic +24094,Wolf-Speaker (Immortals #2),Tamora Pierce,4.21,1416903445,9781416903444,eng,344,44061,661,6/1/2005,Simon Pulse +24096,Leonardo's Notebooks,Leonardo da Vinci/H. Anna Suh,3.93,1579124577,9781579124571,eng,352,36003,121,8/1/2005,Black Dog & Leventhal +24100,The Golden Notebook,Doris Lessing,3.76,006093140X,9780060931407,eng,640,16000,1219,2/3/1999,Harper Perennial Modern Classics +24115,Gödel Escher Bach: An Eternal Golden Braid,Douglas R. Hofstadter,4.29,0140289208,9780140289206,eng,777,330,26,3/30/2000,Penguin Books +24119,M Is for Mayflower: A Massachusetts Alphabet,Margot Theis Raven/Jeannie Brett,4.00,1585360724,9781585360727,eng,40,27,4,10/1/2002,Sleeping Bear Press +24121,Mayflower Treasure Hunt (A to Z Mysteries: Super Edition #2),Ron Roy/John Steven Gurney,4.19,0375839372,9780375839375,en-US,114,965,39,8/28/2007,Random House Books for Young Readers +24124,William Shakespeare’s: Romeo and Juliet (Shakespeare Retellings #4),Bruce Coville/Dennis Nolan,3.97,0803724624,9780803724624,eng,40,179,17,10/1/1999,Dial Books +24126,Jennifer Hecate Macbeth William McKinley and Me Elizabeth,E.L. Konigsburg,3.79,1416933964,9781416933960,eng,128,54,11,2/27/2007,Aladdin Paperbacks +24127,Death of a Charming Man (Hamish Macbeth #10),M.C. Beaton,3.79,0446403385,9780446403382,eng,176,3618,223,7/1/1995,Grand Central Publishing +24136,The Merchant of Venice,William Shakespeare/Robert Smith/Jonathan Morris,3.80,0521618754,9780521618755,eng,196,1549,36,8/1/2005,Cambridge University Press +24137,Catherine Called Birdy,Karen Cushman,3.71,0060739428,9780060739423,eng,224,33557,1280,6/1/2004,HarperTrophy +24147,How to Build a Time Machine,Paul Davies,3.82,0141005343,9780141005348,eng,148,67,9,7/2/2002,Penguin +24149,Around the World in 8 1/2 Days (Judy Moody #7),Megan McDonald/Peter H. Reynolds,4.15,0763628328,9780763628321,eng,157,3408,113,7/25/2006,Candlewick Press (MA) +24152,Judy Moody M.D.: The Doctor is In! (Judy Moody #5),Megan McDonald/Peter H. Reynolds,4.08,0763626155,9780763626150,eng,176,4554,151,3/14/2006,Candlewick Press +24154,Judy Moody Predicts the Future (Judy Moody #4),Megan McDonald/Peter H. Reynolds,4.07,0763623431,9780763623432,eng,160,93,13,2/3/2005,Candlewick Press +24155,Judy Moody Declares Independence (Judy Moody #6),Megan McDonald/Peter H. Reynolds,4.08,076362800X,9780763628000,eng,160,3884,132,1/26/2010,Candlewick +24156,Judy Moody Gets Famous! (Judy Moody #2),Megan McDonald/Peter H. Reynolds,4.04,0763619310,9780763619312,eng,126,8405,309,4/1/2003,Candlewick Press +24157,Judy Moody Saves the World! (Judy Moody #3),Megan McDonald/Peter H. Reynolds,4.03,0763620874,9780763620875,eng,160,6077,254,4/1/2004,Candlewick Press +24172,Amelia's Notebook (Amelia's Notebooks #1),Marissa Moss,4.01,1416909052,9781416909057,eng,40,5305,166,2/1/2006,Simon Schuster/Paula Wiseman Books +24173,Amelia's 6th-Grade Notebook (Amelia's Notebooks #15),Marissa Moss,4.02,068987040X,9780689870408,en-US,80,625,30,7/1/2005,Simon Schuster/Paula Wiseman Books +24178,Charlotte's Web,E.B. White/Garth Williams/Rosemary Wells,4.17,0064410935,9780064410939,eng,184,1300470,14739,10/1/2001,HarperCollinsPublishers +24179,Charlotte's Web,E.B. White/Garth Williams/Rosemary Wells,4.17,0061127760,9780061127762,en-US,224,227,18,10/31/2006,HarperCollins +24180,Charlotte's Web,E.B. White/Garth Williams/Kate DiCamillo,4.17,0060882611,9780060882617,en-US,192,220,21,10/31/2006,HarperCollins +24183,Charlotte's Web: Wilbur Finds a Friend,Jennifer Frantz/E.B. White/Aleksey Ivanov/Olga Ivanov,4.13,0060882816,9780060882815,eng,32,64,9,10/31/2006,HarperCollins +24188,Secrets of the Scorpion,Jed Carleton/Shawn Carman/Seth Mason/Robert Lee/Travis Heerman/Aaron Medwin/Matthew S. Armstrong/D.J. Trindle/Cris Dornaus/Eric Steiger,3.68,1887953795,9781887953795,eng,96,44,0,4/1/2003,Alderac Entertainment Group (AEG) +24192,The Runaway Jury,John Grisham,3.98,0385339690,9780385339698,eng,358,249884,1691,4/25/2006,Delta +24196,The Boys Start the War (Boy/Girl Battle #1),Phyllis Reynolds Naylor,4.02,0440418410,9780440418412,eng,144,1551,111,1/8/2002,Yearling +24198,The Boys Start the War the Girls Get Even,Phyllis Reynolds Naylor,4.13,0440409713,9780440409717,eng,10,366,23,6/1/1994,Yearling Books +24202,Boys Against Girls (Sweet Valley Twins #17),Francine Pascal/Jamie Suzanne,3.47,0553175262,9780553175264,eng,104,4,1,9/23/1988,Bantam Books +24205,Boys Against Girls (Sweet Valley Twins #17),Francine Pascal/Jamie Suzanne,3.47,0553155717,9780553155716,eng,104,18,2,3/1/1988,Bantam +24213,Alice's Adventures in Wonderland & Through the Looking-Glass,Lewis Carroll/John Tenniel/Martin Gardner,4.07,0451527747,9780451527745,eng,239,381097,6041,12/1/2000,Penguin Group (USA) +24215,Alice's Adventures in Wonderland: A Pop-Up Adaptation,Robert Sabuda/Lewis Carroll,4.33,0689847432,9780689847431,en-US,12,21875,111,10/1/2003,Little Simon +24217,Alice's Adventures in Wonderland and Through the Looking Glass,Lewis Carroll/John Tenniel/Tan Lin,4.07,1593080158,9781593080150,eng,286,2791,273,12/15/2003,Barnes & Noble Classics +24218,Alice's Adventures in Wonderland,Lewis Carroll/Helen Oxenbury,4.02,0763620491,9780763620493,eng,208,65,5,3/1/2003,Candlewick Press +24220,Alice's Adventures in Wonderland and Through the Looking-Glass (Alice's Adventures in Wonderland #1-2),Lewis Carroll/Hugh Haughton/John Tenniel,4.07,0141439769,9780141439761,eng,378,3409,228,3/27/2003,Penguin Books +24221,Alice's Adventures in Wonderland,Lewis Carroll/Helen Oxenbury,4.02,0763608041,9780763608040,eng,207,226,27,10/6/1999,Candlewick Press (MA) +24223,The Art of Warfare,Sun Tzu/Roger T. Ames,3.97,034536239X,9780345362391,eng,336,824,55,3/2/1993,Ballantine Books +24244,The Black Ice (Harry Bosch #2; Harry Bosch Universe #2),Michael Connelly,4.08,0446613444,9780446613446,eng,448,45274,1619,12/1/2003,Vision +24248,Black Ice (Ice #1),Anne Stuart,3.71,0778321711,9780778321712,eng,377,8284,628,4/26/2005,Mira Books +24249,A Cavern of Black Ice (Sword of Shadows #1),J.V. Jones,3.87,076534551X,9780765345516,eng,769,7919,163,3/1/2005,Tor Fantasy +24253,White Sky Black Ice (Nathan Active Mystery #1),Stan Jones,3.77,1569473331,9781569473337,eng,284,644,116,7/1/2003,Soho Crime +24255,Thus Spake the Corpse: An Exquisite Corpse Reader 1988-98 Vol 1 Poetry & Essays,Andrei Codrescu/Laura Rosenthal,3.83,1574231006,9781574231007,en-US,417,18,1,7/1/1999,Black Sparrow Press +24257,Thus Spoke Zarathustra,Friedrich Nietzsche,4.06,1845882423,9781845882426,eng,128,911,40,12/1/2006,Nonsuch Publishing +24268,A World Lit Only by Fire,William Manchester/Barrett Whitener,3.85,0786160446,9780786160440,en-US,10,38,4,3/1/2007,Blackstone Audiobooks +24270,War Comes to Willy Freeman (Arabus Family Saga #1),James Lincoln Collier/Christopher Collier,3.59,0440495040,9780440495048,eng,192,258,53,1/1/1987,Yearling +24271,Skellig (Skellig #1),David Almond,3.80,0440229081,9780440229087,eng,208,17160,1782,9/11/2001,Laurel Leaf +24273,Skellig: The Play,David Almond,3.61,0340854332,9780340854334,eng,128,42,3,11/13/2003,Hodder Children's Books +24281,Les Misérables,Victor Hugo/Charles E. Wilbour,4.17,0679600124,9780679600121,en-US,1260,728,122,9/5/1992,Modern Library +24283,Les Misérables,Victor Hugo/Charles E. Wilbour/James K. Robinson,4.30,0449300021,9780449300022,eng,400,4917,352,12/12/1982,Ballantine Books +24284,Les Misérables,Victor Hugo/Charles E. Wilbour/Peter Washington,4.17,0375403175,9780375403170,eng,1480,8004,474,3/31/1998,Everyman's Library +24288,Les Miserables (Stepping Stones),Monica Kulling/Victor Hugo,4.28,067986668X,9780679866688,eng,112,554,52,3/14/1995,Random House +24296,Because Of Winn Dixie,Kate DiCamillo,4.04,0439250722,9780439250726,eng,182,235,36,3/1/2000,Candlewick Press +24297,At the Edge of the World (Crispin #2),Avi,3.69,078685152X,9780786851522,en-US,234,2566,254,8/8/2006,Little Brown Books for Young Readers +24298,The Story of Avis,Elizabeth Stuart Phelps/Carol Phillips,3.55,0813510996,9780813510996,eng,250,180,14,6/1/1985,Rutgers University Press +24300,Poppy,Avi,3.96,0689837186,9780689837180,eng,163,6894,501,5/3/2005,Scholastic +24304,Poppy's Return,Avi/Brian Floca,3.99,0060000147,9780060000141,eng,256,1110,71,8/22/2006,HarperCollins +24305,The Secret School,Avi,3.79,0152046992,9780152046996,eng,176,3695,384,8/1/2003,HMH Books for Young Readers +24307,The Pen Is Mightier Than The Sword (The Amazing Days of Abby Hayes #6),Anne Mazer/Monica Gesue,3.96,0439178827,9780439178822,eng,128,1072,20,12/1/2001,Scholastic Paperbacks +24308,Have Wheels Will Travel (The Amazing Days of Abby Hayes #4),Anne Mazer/Monica Gesue,3.96,0439178789,9780439178785,eng,144,975,26,4/1/2001,Scholastic Paperbacks +24309,Out of Sight Out of Mind (The Amazing Days of Abby Hayes #9),Anne Mazer/Monica Gesue/Joyce White,3.88,0439353688,9780439353687,en-US,144,595,11,12/1/2002,Scholastic Paperbacks +24312,The Best Is Yet to Come (The Amazing Days of Abby Hayes Super Special #1),Anne Mazer,4.05,1417629754,9781417629756,eng,144,460,17,6/1/2004,Turtleback Books +24315,Violet Makes A Splash (Sister Magic),Anne Mazer/Bill Brown,3.96,0439872472,9780439872478,en-US,112,120,5,7/1/2007,Scholastic Paperbacks +24316,The Trouble With Violet,Anne Mazer/Bill Brown,3.89,0439872464,9780439872461,eng,112,223,36,7/1/2007,Scholastic Paperbacks +24330,Knowledge Is Power (The Amazing Days of Abby Hayes: #15),Anne Mazer,3.97,1417629762,9781417629763,eng,97,23,0,7/1/2004,Turtleback Books +24335,The Trumpet of the Swan,E.B. White/Fred Marcellino,4.08,0064408671,9780064408677,eng,252,63915,1825,10/3/2000,HarperCollins +24337,Ella Enchanted (Ella Enchanted #1),Gail Carson Levine,3.98,0590920685,9780590920681,eng,232,364091,8754,9/1/1998,Scholastic Books +24345,Sachs & Violens,Peter David/George Pérez,3.26,1401210503,9781401210502,en-US,128,66,9,12/6/2006,DC Comics +24346,Nicomachean Ethics,Aristotle/Joe Sachs,3.94,1585100358,9781585100354,eng,240,238,29,1/1/2002,Focus +24374,Harper Lee's To Kill a Mockingbird (Bloom's Guides),Harold Bloom/Harper Lee,4.41,0791077640,9780791077641,eng,98,4687,19,6/30/2004,Chelsea House Publications +24378,His Dark Materials,Nicholas Wright/Philip Pullman,4.02,185459768X,9781854597687,eng,236,38,4,4/1/2004,Nick Hern Books +24379,His Dark Materials: New Edition,Nicholas Wright/Philip Pullman,4.02,1854598317,9781854598318,eng,192,17,1,4/1/2005,Nick Hern Books +24381,His Dark Materials Trilogy (Northern Lights; The Subtle Knife; The Amber Spyglass),Philip Pullman,4.26,0439994349,9780439994347,eng,1016,341,22,11/16/2001,Hippo/Scholastic +24384,The Cricket in Times Square,George Selden/Garth Williams,4.02,0440228891,9780440228899,eng,134,55747,1374,5/11/1999,Yearling +24394,Lucie Babbidge's House,Sylvia Cassedy,3.73,038071812X,9780380718122,eng,242,162,21,4/1/1993,HarperCollins Publishers +24403,Nine Horses,Billy Collins,4.17,0375755209,9780375755200,eng,144,4107,246,10/14/2003,Random House Trade +24406,The Apple that Astonished Paris,Billy Collins,4.20,155728024X,9781557280244,eng,61,542,43,2/1/1999,University of Arkansas Press +24414,The Circle (Dan Lenson #3),David Poyer,4.09,0312929641,9780312929640,en-US,543,354,8,6/15/1993,St. Martin's Paperbacks +24424,The Sorority: Samantha (Sorority Trilogy #3),Tamara Thorne,3.72,0786015411,9780786015412,eng,288,183,18,8/1/2003,Pinnacle +24431,Trickster's Choice (Daughter of the Lioness #1),Tamora Pierce,4.27,0439968089,9780439968089,eng,453,43090,800,9/17/2004,Scholastic Press +24432,Trickster's Choice (Daughter of the Lioness #1),Tamora Pierce/Trini Alvarado,4.27,0307283798,9780307283795,eng,12,74,20,12/13/2005,Listening Library +24438,Video Girl Ai Vol. 15: Len's Story,Masakazu Katsura,3.75,142150295X,9781421502953,en-US,208,134,0,4/4/2006,VIZ Media +24441,The Ships of Earth (Homecoming Saga #3),Orson Scott Card,3.54,0812532635,9780812532630,eng,351,9326,125,1/15/1995,Tor Books +24442,Heathersleigh Homecoming (Secrets of Heathersleigh Hall #3),Michael R. Phillips,4.33,0764222376,9780764222375,eng,429,194,15,10/1/1999,Bethany House Publishers +24450,Bait and Switch: The (Futile) Pursuit of the American Dream,Barbara Ehrenreich,3.48,0805081240,9780805081244,eng,248,4002,473,7/25/2006,St. Martin's Press +24455,For Her Own Good: Two Centuries of the Experts' Advice to Women,Barbara Ehrenreich/Deirdre English,3.97,1400078008,9781400078004,en-US,410,2126,123,1/4/2005,Anchor +24457,Fear of Falling: The Inner Life of the Middle Class,Barbara Ehrenreich,3.91,0060973331,9780060973339,eng,292,331,23,9/26/1990,Harper Perennial +24459,On Duties (De Officiis),Marcus Tullius Cicero/Walter Miller,3.96,0674990331,9780674990333,eng,448,111,11,1/1/1913,Harvard University Press +24472,Peony in Love,Lisa See,3.60,140006466X,9781400064663,eng,273,37411,3719,6/26/2007,Random House +24473,See How She Dies,Lisa Jackson,3.90,0821776053,9780821776056,eng,510,2949,146,8/1/2004,Zebra Books +24475,Chuck Klosterman IV: A Decade of Curious People and Dangerous Ideas,Chuck Klosterman,3.85,0743284887,9780743284882,en-US,374,14639,667,9/5/2006,Scribner Book Company +24476,Fargo Rock City: A Heavy Metal Odyssey in Rural North Dakota,Chuck Klosterman,3.80,0743406567,9780743406567,eng,288,12448,526,5/1/2002,Scribner +24478,i am 8-bit: Art Inspired by Classic Videogames of the '80s,Jon M. Gibson/Chuck Klosterman,4.11,0811853195,9780811853194,en-US,156,114,12,3/30/2006,Chronicle Books +24497,No Idle Hands: The Social History of American Knitting,Anne Macdonald,4.02,0345362535,9780345362537,eng,512,456,61,5/19/1990,Ballantine +24510,How to be Idle,Tom Hodgkinson,3.81,0060779683,9780060779689,en-US,289,103,14,5/10/2005,Harpercollins +24517,The Stuffed Owl: An Anthology of Bad Verse,D.B. Wyndham-Lewis/Charles Lee/Billy Collins/Max Beerbohm,3.73,1590170385,9781590170380,eng,264,69,9,4/30/2003,NYRB Classics +24520,The Complete Aubrey/Maturin Novels (5 Volumes),Patrick O'Brian,4.70,039306011X,9780393060119,eng,6576,1338,81,10/17/2004,W. W. Norton Company +24521,The Hundred Days (Aubrey & Maturin #19),Patrick O'Brian,4.35,0393319792,9780393319798,eng,281,5325,150,11/17/1999,W. W. Norton Company +24524,The Final Unfinished Voyage of Jack Aubrey (Aubrey & Maturin #21),Patrick O'Brian/Richard Snow,3.99,039306025X,9780393060256,eng,144,2194,121,10/17/2004,W. W. Norton Company +24525,The Truelove (Aubrey & Maturin #15),Patrick O'Brian,4.36,0393310167,9780393310160,eng,304,6025,139,7/17/1993,W. W. Norton Company +24526,Blue at the Mizzen (Aubrey & Maturin #20),Patrick O'Brian,4.38,039332107X,9780393321074,eng,262,2375,95,9/17/2000,W. W. Norton Company +24530,Field Guide to Home Buying in America,Mark LeVine/Michael Pollan/Stephen M. Pollan,2.50,0671639617,9780671639617,eng,256,4,1,5/15/1988,Touchstone +24546,Gilliam on Gilliam (Directors on Directors),Terry Gilliam/Ian Christie,4.10,0571202802,9780571202805,eng,294,264,13,11/15/1999,Faber Faber +24562,The Adventures of Baron Munchausen: The Illustrated Screenplay,Terry Gilliam/Charles McKeown,3.52,155783041X,9781557830418,eng,238,11,0,4/1/1989,Rowman & Littlefield Publishers +24565,The Complete Monty Python's Flying Circus: All the Words Vol. 2,Graham Chapman/John Cleese/Terry Gilliam/Eric Idle/Terry Jones/Michael Palin,4.44,0679726489,9780679726487,eng,384,1212,18,11/12/1989,Pantheon +24566,The Pythons Autobiography by The Pythons,Graham Chapman/John Cleese/Terry Gilliam/Eric Idle/Terry Jones/Michael Palin/Bob McCabe,4.08,0312311451,9780312311452,eng,368,70,9,11/15/2005,St. Martin's Griffin +24568,The Complete Monty Python's Flying Circus: All the Words: Volume 1,Graham Chapman/Eric Idle/Terry Gilliam/John Cleese/Terry Jones/Michael Palin/Roger Wilmut,4.38,0679726470,9780679726470,eng,352,3172,40,11/12/1989,Pantheon +24569,The Gangs of New York,Herbert Asbury/Jorge Luis Borges,3.60,1560252758,9781560252757,eng,384,2835,209,10/30/2001,Basic Books +24572,All Around the Town,Herbert Asbury,3.62,1560255218,9781560255215,eng,364,95,3,10/24/2003,Basic Books +24580,The Adventures of Tom Sawyer and Adventures of Huckleberry Finn,Mark Twain/Shelly Fisher Fishkin,4.08,0451528646,9780451528643,eng,520,33489,453,12/3/2002,Signet Classics +24581,The Adventures of Tom Sawyer (Adventures of Tom and Huck #1),Mark Twain/Scott McKowen,3.91,1402714602,9781402714603,eng,224,1507,105,10/1/2004,Sterling +24583,The Adventures of Tom Sawyer (Adventures of Tom and Huck #1),Mark Twain/Guy Cardwell/John Seelye,3.91,0143039563,9780143039563,eng,244,667590,6783,2/28/2006,Penguin Classics +24589,The Moon in Hiding (The Green Lion Trilogy #2),Teresa Edgerton,4.00,0441542158,9780441542154,eng,208,162,4,9/1/1989,Ace +24591,The Short Stories Vol 3,Ernest Hemingway/Stacy Keach,3.77,0743527291,9780743527293,eng,5,80,6,3/1/2003,Simon Schuster Audio +24594,Selections from the Oakland Tribune Archives (Images of America: California),Annalee Allen,3.00,073854678X,9780738546780,eng,128,2,1,10/30/2006,Arcadia Publishing (SC) +24596,Sebastopol (Images of America: California),Western Sonoma County Historical Society,4.40,0738528528,9780738528526,eng,128,4,1,9/21/2003,Arcadia Publishing (SC) +24597,Center City Philadelphia in the 19th Century (Images of America: Pennsylvania),Library Company of Philadelphia,4.44,0738544922,9780738544922,eng,128,9,1,10/23/2006,Arcadia Publishing (SC) +24598,Juneau and Sauk Counties: 1850-2000 (Images of America: Wisconsin),Jacqueline Ann/Sheila Z.,2.67,0738519383,9780738519388,eng,128,3,0,3/5/2002,Arcadia Publishing +24601,Paris Spleen,Charles Baudelaire/Louise Varèse,4.30,0811200078,9780811200073,eng,118,7792,176,1/17/1970,New Directions +24603,The Writer of Modern Life: Essays on Charles Baudelaire,Walter Benjamin/Michael W. Jennings/Rodney Livingstone/Edmund F.N. Jephcott/Harry Zohn/Howard Eiland,4.30,0674022874,9780674022874,eng,307,267,4,11/1/2006,Belknap Press +24604,Flowers of Evil and Other Works/Les Fleurs du Mal et Oeuvres Choisies : A Dual-Language Book (Dover Foreign Language Study Guides) (English and French Edition),Charles Baudelaire/Wallace Fowlie,4.35,0486270920,9780486270920,fre,304,569,24,5/1/1992,Dover Publications +24605,On Wine and Hashish,Charles Baudelaire/Andrew Brown/Margaret Drabble,3.93,1843910179,9781843910176,eng,88,751,17,9/1/2002,Hesperus Press +24606,Intimate Journals,Charles Baudelaire/Christopher Isherwood/W.H. Auden,3.73,0486447782,9780486447780,eng,128,217,27,6/16/2006,Dover Publications +24607,The Painter of Modern Life and Other Essays (Phaidon Arts and Letters),Charles Baudelaire/Jonathon Mayne,3.96,0714833657,9780714833651,eng,310,639,14,8/24/1995,Phaidon Press +24612,Candide,Voltaire/Larousse,3.77,2038717001,9782038717006,fre,240,217,15,5/1/2007,Larousse Kingfisher Chambers +24613,Candide,Voltaire/Mona Mulhair,3.77,0743280547,9780743280549,fre,286,3,1,10/1/2005,Kaplan +24614,The Handbook (The Encheiridion),Epictetus/Nicholas P. White,4.23,0915145693,9780915145690,eng,35,708,57,6/1/1983,Hackett Publishing Company Inc. +24617,A Manual for Living,Epictetus/Sharon Lebell,4.23,0062511114,9780062511119,eng,96,171,14,6/23/1994,HarperOne +24620,Discourses Books 3-4. The Enchiridion (Loeb Classical Library #218),Epictetus/William A. Oldfather,4.34,0674992407,9780674992405,eng,576,110,7,1/1/1928,Harvard University Press (Cambridge) +24626,A Stranger Came Ashore,Mollie Hunter/Lisa Falkenstern,3.82,0064400824,9780064400824,eng,163,464,49,4/6/1977,HarperCollins Publishers +24634,Rob Roy MacGregor,Nigel Tranter,3.93,1897784317,9781897784310,eng,192,100,3,9/1/2012,Neil Wilson Publishing +24635,Rob Roy,Walter Scott,3.70,0543899403,9780543899408,eng,537,4,0,11/16/2000,Adamant Media Corporation +24636,From Glencoe to Stirling: Rob Roy the Highlanders & Scotlands Chivalric Age (Tales of a Scottish Grandfather 3),Walter Scott/George Grant,3.70,1581821298,9781581821291,eng,288,12,1,10/20/2000,Cumberland House Publishing +24647,Myths of the Norsemen: Retold from the Old Norse Poems and Tales,Roger Lancelyn Green/Alan Langford,4.00,0140367381,9780140367386,eng,262,425,27,11/1/1994,Puffin Books +24655,D'Aulaires' Book of Norse Myths,Ingri d'Aulaire/Edgar Parin d'Aulaire/Michael Chabon,4.39,159017125X,9781590171257,eng,154,3485,260,5/31/2005,New York Review of Books +24657,Penguin Book Of Norse Myths: Gods Of The Vikings,Kevin Crossley-Holland,4.20,0140258698,9780140258691,en-GB,276,116,9,1/7/1997,Penguin UK +24658,The Prose Edda,Snorri Sturluson/Jesse L. Byock,4.17,0140447555,9780140447552,eng,180,8625,321,7/28/2005,Penguin Classics +24660,Exploring the Northern Tradition: A Guide to the Gods Lore Rites and Celebrations From the Norse German and Anglo-Saxon Traditions,Galina Krasskova/Swain Wódening,3.83,1564147916,9781564147912,eng,224,443,29,5/15/2005,New Page Books +24666,Tales of the Norse Gods,Barbara Leonie Picard/Rosamund Fowler,4.05,0192751166,9780192751164,en-GB,160,43,4,3/22/2001,Oxford University Press USA +24671,The Tristan Betrayal,Robert Ludlum,3.84,0312990685,9780312990688,eng,505,5942,150,10/17/2004,St. Martin's Paperbacks +24674,Isolde Queen of the Western Isle (Tristan and Isolde #1),Rosalind Miles,3.64,1400047862,9781400047864,eng,360,2260,151,6/24/2003,Broadway Books +24676,The Ultimate Guide to Anal Sex for Women,Tristan Taormino,4.11,1573442216,9781573442213,eng,180,382,26,1/27/2006,Cleis Press +24682,Oh The Places You’ll Go!,Dr. Seuss,4.35,0007158521,9780007158522,eng,48,969,75,5/6/2003,HarperCollinsChildren’sBooks +24686,Toys Go Out: Being the Adventures of a Knowledgeable Stingray a Toughy Little Buffalo and Someone Called Plastic (Toys #1),Emily Jenkins/Paul O. Zelinsky,3.94,0375836047,9780375836046,eng,116,3983,513,9/12/2006,Schwartz & Wade Books +24692,Melville: His World and Work,Andrew Delbanco,4.04,0375702970,9780375702976,eng,448,273,37,9/12/2006,Vintage +24703,Racso and the Rats of NIMH (Rats of NIMH #2),Jane Leslie Conly/Leonard B. Lubin,3.77,0064402452,9780064402453,eng,288,3314,95,9/1/1988,HarperCollins +24704,R-T Margaret and the Rats of NIMH (Rats of NIMH #3),Jane Leslie Conly/Leonard B. Lubin,3.54,0064403874,9780064403870,eng,272,662,29,9/30/1991,HarperCollins +24711,The Dance of the Dissident Daughter,Sue Monk Kidd,3.95,006064589X,9780060645892,eng,256,5645,603,8/20/2002,HarperOne +24723,Talk Talk,T. Coraghessan Boyle,3.42,0670037702,9780670037704,en-US,340,4094,497,7/6/2006,Viking Books +24724,Drop City,T. Coraghessan Boyle/Richard Poe,3.85,0142003808,9780142003800,eng,497,10333,879,1/27/2004,Penguin Books +24725,Tooth and Claw,T. Coraghessan Boyle,3.82,0143037439,9780143037439,eng,304,1193,95,6/27/2006,Penguin Books +24727,East Is East,T. Coraghessan Boyle,3.64,0140131671,9780140131673,eng,384,2098,113,8/1/1991,Penguin Books +24729,After the Plague: and Other Stories,T. Coraghessan Boyle,3.86,0142001414,9780142001417,eng,303,1253,108,12/31/2002,Penguin Books +24733,Descent of Man,T. Coraghessan Boyle,3.96,0140299947,9780140299946,eng,240,605,44,7/27/1990,Penguin Books +24736,World's End,T. Coraghessan Boyle,4.01,0140299939,9780140299939,eng,480,3270,218,7/20/1990,Penguin Books +24737,If the River Was Whiskey: Stories,T. Coraghessan Boyle,3.94,0670826901,9780670826902,eng,224,34,3,5/24/1989,Viking Books +24739,If the River Was Whiskey,T. Coraghessan Boyle,3.94,0140119507,9780140119503,eng,240,1038,69,5/1/1990,Penguin Books +24749,American Writers Supplement VIII,Jay Parini/August Wilson,0.00,0684806371,9780684806372,eng,400,0,0,5/1/2001,Gale Cengage +24751,Greasy Lake & Other Stories,T. Coraghessan Boyle,3.94,0140077812,9780140077810,eng,240,1065,52,5/6/1986,Penguin Books +24753,L'Orient c'est l'Orient,T. Coraghessan Boyle,3.64,2246442613,9782246442615,fre,370,0,0,9/1/1993,Grasset +24761,An Acceptable Time (Time Quintet #5),Madeleine L'Engle,3.82,0440208149,9780440208143,eng,343,16434,639,12/1/1990,Laurel Leaf Books +24762,Conversations with Kurt Vonnegut,William Rodney Allen/Kurt Vonnegut Jr.,4.05,0878053573,9780878053575,en-US,305,3,1,1/1/1988,University Press of Mississippi +24763,So Yesterday,Scott Westerfeld,3.58,1595140328,9781595140326,eng,256,10390,820,9/8/2005,Razorbill +24765,Specials (Uglies #3),Scott Westerfeld,3.77,0689865406,9780689865404,eng,384,151825,6730,5/9/2006,Simon Pulse +24767,Touching Darkness (Midnighters #2),Scott Westerfeld,3.89,0060519568,9780060519568,eng,439,17135,675,3/1/2006,Harper Teen +24768,Pretties (Uglies #2),Scott Westerfeld,3.85,0689865392,9780689865398,eng,370,211060,8890,11/1/2005,Simon & Schuster Simon Pulse +24769,Blue Noon (Midnighters #3),Scott Westerfeld,3.85,0060519592,9780060519599,eng,384,14798,718,2/6/2007,Eos +24770,Uglies (Uglies #1),Scott Westerfeld,3.86,0689865384,9780689865381,eng,425,516152,20708,2/8/2005,Simon Pulse +24771,Evolution's Darling,Scott Westerfeld,3.51,1568581491,9781568581491,eng,290,444,56,4/3/2000,Running Press +24775,The Butterfly Tattoo,Philip Pullman,3.19,0330397966,9780330397964,eng,186,1048,83,9/2/2005,Young Picador +24777,Count Karlstein,Philip Pullman/Diana Bryan,3.50,0375803483,9780375803482,eng,256,1712,116,2/22/2000,Yearling +24779,The Castle of Llyr (The Chronicles of Prydain #3),Lloyd Alexander,4.08,0805080503,9780805080506,eng,174,30401,723,5/16/2006,Square Fish +24780,The Book of Three (The Chronicles of Prydain #1),Lloyd Alexander,3.99,0805080481,9780805080483,en-US,190,64278,2525,5/16/2006,Square Fish +24781,The High King (The Chronicles of Prydain #5),Lloyd Alexander,4.25,080508052X,9780805080520,eng,253,48088,954,5/16/2006,Square Fish +24782,Taran Wanderer (The Chronicles of Prydain #4),Lloyd Alexander,4.14,0805080511,9780805080513,eng,222,34770,840,5/16/2006,Square Fish +24783,Westmark (Westmark #1),Lloyd Alexander,3.92,0141310685,9780141310688,eng,184,4222,180,1/14/2002,Firebird Books +24784,The Black Cauldron (The Chronicles of Prydain #2),Lloyd Alexander,4.13,080508049X,9780805080490,eng,182,53962,1200,5/16/2006,Square Fish +24785,The Foundling and Other Tales of Prydain,Lloyd Alexander,3.93,0805080538,9780805080537,eng,98,3637,157,5/16/2006,Square Fish +24786,The Prydain Companion: A Reference Guide to Lloyd Alexander's Prydain Chronicles,Michael O. Tunnell/Lloyd Alexander,4.22,0805072713,9780805072716,eng,281,83,4,4/1/2003,Henry Holt and Company +24787,A Lloyd Alexander Collection,Lloyd Alexander,4.24,0525467777,9780525467779,eng,752,89,7,5/21/2001,Dutton Children's Books +24788,The Philadelphia Adventure,Lloyd Alexander,3.88,0142301442,9780142301449,eng,150,571,10,7/8/2002,Puffin Books +24789,Libra,Don DeLillo/Michel Courtois-Fourcy,3.99,2742731105,9782742731107,fre,656,8,1,1/1/2001,Babel +24796,Zorro,Isabel Allende/Margaret Sayers Peden/محمدعلی مهمان‌نوازان,3.76,006078721X,9780060787219,eng,677,16324,1145,5/3/2005,HarperLargePrint +24800,House of Leaves,Mark Z. Danielewski,4.10,038560310X,9780385603102,eng,705,97710,7357,3/7/2000,Random House +24804,A Parchment of Leaves,Silas House,4.18,0345464974,9780345464972,eng,304,3192,357,8/26/2003,Ballantine Books +24807,The Areas of My Expertise: An Almanac of Complete World Knowledge Compiled with Instructive Annotation and Arranged in Useful Order,John Hodgman,3.82,1594482225,9781594482229,eng,255,12002,741,9/5/2006,Penguin Books +24812,The Complete Calvin and Hobbes,Bill Watterson,4.82,0740748475,9780740748479,eng,1456,32213,930,9/6/2005,Andrews McMeel Publishing +24813,The Calvin and Hobbes Tenth Anniversary Book,Bill Watterson,4.63,0836204387,9780836204384,eng,208,49122,368,9/5/1995,Andrews McMeel Publishing +24814,It's a Magical World (Calvin and Hobbes #11),Bill Watterson,4.76,0836221362,9780836221367,eng,176,23875,303,9/1/1996,Andrews McMeel Publishing +24816,Homicidal Psycho Jungle Cat (Calvin and Hobbes #9),Bill Watterson,4.72,0836217691,9780836217698,eng,176,15365,290,9/6/1994,Andrews McMeel Publishing +24818,The Days Are Just Packed,Bill Watterson,4.69,0836217357,9780836217353,eng,176,20308,244,9/1/1993,Andrews McMeel Publishing +24819,The Calvin And Hobbes: Tenth Anniversary Book,Bill Watterson,4.63,0751515574,9780751515572,eng,208,303,12,2/1/2008,Time Warner Books UK +24820,Calvin and Hobbes: Sunday Pages 1985-1995: An Exhibition Catalogue,Bill Watterson,4.71,0740721356,9780740721359,eng,96,3613,85,9/17/2001,Andrews McMeel Publishing +24827,Ship of Fools,Richard Paul Russo,3.74,0441008933,9780441008933,eng,370,2192,206,12/31/2001,Ace +24828,The Rosetta Codex,Richard Paul Russo,3.21,0441013309,9780441013302,en-US,384,22,2,12/6/2005,Ace Trade +24832,The Illustrated Man,Ray Bradbury,4.14,0553105574,9780553105575,eng,186,89,7,1/1/1976,Bantam Books +24835,The Sot-Weed Factor,John Barth,4.09,1903809509,9781903809501,eng,756,5911,257,3/1/2005,Atlantic Books (UK) +24836,The Floating Opera and The End of the Road,John Barth,4.03,0385240899,9780385240895,eng,442,1933,115,3/11/1997,Anchor Books +24840,Chimera,John Barth,3.73,0618131701,9780618131709,en-US,308,1775,86,11/20/2001,Mariner Books +24842,Letters,John Barth,3.81,1564780619,9781564780614,eng,772,212,15,10/1/1994,Dalkey Archive Press +24850,Scar Lover,Harry Crews,3.79,0671797867,9780671797867,eng,288,797,39,2/23/1993,Touchstone +24858,Narcisse et Goldmund,Hermann Hesse,4.20,2253000043,9782253000044,fre,251,229,19,1/1/1991,Le Livre de Poche +24863,Demian,Hermann Hesse/Stanley Appelbaum,4.13,0486420426,9780486420424,mul,256,28,3,6/11/2002,Dover Publications +24865,The Ship Avenged,S.M. Stirling,4.06,0671877666,9780671877668,eng,364,3217,29,2/1/1997,Baen Books +24866,Dragon's Kin (Pern #17),Anne McCaffrey/Todd McCaffrey,3.92,0345462009,9780345462008,eng,298,8100,185,12/28/2004,Del Rey +24873,Dragonflight (Pern: Dragonriders of Pern #1),Anne McCaffrey/Dick Hill,4.10,1597379514,9781597379519,en-US,8,118,20,9/25/2005,Brilliance Audio +24875,House of Stairs,William Sleator,3.85,0140345809,9780140345803,eng,176,3423,447,4/1/1991,Puffin Books +24878,Oddballs,William Sleator,3.87,0140374388,9780140374384,eng,144,269,43,6/1/1995,Puffin Books +24880,Hell Phone,William Sleator,3.50,0810954796,9780810954793,en-US,252,570,88,9/26/2006,Harry N. Abrams +24881,The Beasties,William Sleator,3.83,0141306394,9780141306391,eng,208,846,90,10/1/1999,Puffin Books +24884,The Duplicate,William Sleator,3.68,0141304316,9780141304311,eng,154,484,40,6/1/1999,Puffin Books +24885,Strange Attractors,William Sleator,3.72,0140345825,9780140345827,eng,176,230,7,4/1/1991,Puffin Books +24887,Parasite Pig (Interstellar Pig #2),William Sleator,3.64,0142400866,9780142400869,en-US,224,355,31,2/9/2004,Firebird +24888,The Boy Who Couldn't Die,William Sleator,3.68,0810987902,9780810987906,eng,161,1683,247,4/1/2005,Harry N. Abrams +24889,Among the Dolls,William Sleator,3.65,0765352397,9780765352392,eng,96,548,84,5/2/2006,Starscape +24893,That's Silly,William Sleator/Lawrence Di Fiori,3.60,0525409815,9780525409816,eng,46,5,2,4/14/1981,Dutton Books +24894,Once Said Darlene,William Sleator/Steven Kellogg,3.62,0525364102,9780525364108,eng,55,8,0,3/22/1979,Dutton Books +24898,Boltzmon!,William Sleator,3.62,0525461310,9780525461319,eng,160,86,5,9/1/1999,Dutton Juvenile +24899,Interstellar Pig (Interstellar Pig #1),William Sleator,3.88,0340850620,9780340850626,eng,200,2115,197,12/6/2001,Hodder Children's Books +24904,A Birthday for Frances,Russell Hoban/Lillian Hoban,4.24,0099432447,9780099432449,eng,32,2256,71,6/6/2002,Harper Collins +24905,Pilgermann,Russell Hoban,4.02,0747556407,9780747556404,en-GB,240,256,13,1/2/2002,Bloomsbury Publishing PLC +24908,How Tom Beat Captain Najork and His Hired Sportsmen (Captain Najork #1),Russell Hoban/Quentin Blake,4.29,1567923224,9781567923223,eng,32,307,42,10/1/2006,David R. Godine +24910,World's Fair,E.L. Doctorow,3.83,0452275725,9780452275720,eng,304,3178,229,5/1/1996,Plume +24914,The March,E.L. Doctorow,3.80,0812976150,9780812976151,eng,363,8266,831,9/12/2006,Random House Trade Paperbacks +24917,Three Complete Novels: Billy Bathgate/World's Fair/Loon Lake,E.L. Doctorow,4.29,0517100789,9780517100783,eng,658,17,3,5/8/1994,Wings +24920,The Discomfort Zone: A Personal History,Jonathan Franzen,3.40,0374299196,9780374299194,eng,195,4760,532,9/5/2006,Farrar Straus Giroux +24922,A Confederacy of Dunces,John Kennedy Toole,3.89,0140282688,9780140282689,eng,397,540,47,2/26/2003,Penguin Books Limited (UK) +24923,A Confederacy of Dunces,John Kennedy Toole/Walker Percy,3.89,0141182865,9780141182865,eng,338,1561,169,3/30/2000,Penguin Classics +24925,La conjura de los necios,John Kennedy Toole,3.89,8496333604,9788496333604,spa,462,70,6,1/10/2006,Quinteto +24929,Lost,Gregory Maguire/Douglas Smith,2.82,0060988649,9780060988647,eng,340,13152,904,9/17/2002,William Morrow Paperbacks +24930,The Dream Stealer,Gregory Maguire/Diana Bryan,3.64,0618181881,9780618181889,eng,132,433,56,10/21/2002,Clarion Books +24933,Four Stupid Cupids (The Hamlet Chronicles #4),Gregory Maguire/Elaine Clayton,3.52,0064410722,9780064410724,eng,224,111,11,12/4/2001,HarperCollins +24937,Wicked: The Grimmerie,David Cote/Stephen Schwartz/Joan Marcus/Winnie Holzman,4.18,1401308201,9781401308209,eng,192,49109,290,10/26/2005,Hachette Books +24939,A Little Bit Wicked (Last Man Standing #1),Victoria Alexander,3.80,006088262X,9780060882624,eng,359,2209,88,12/26/2006,Avon +24942,My Wicked Wicked Ways,Errol Flynn/Jeffrey Meyers,4.02,1845130499,9781845130497,eng,438,1583,115,2/25/2005,Aurum +24944,The Wonderful Story of Henry Sugar and Six More,Roald Dahl,4.14,0553152645,9780553152647,eng,215,60,7,1/18/1984,Bantam Books +24945,The Wonderful Story Of Henry Sugar and Six More,Roald Dahl,4.14,0141311495,9780141311494,eng,224,252,21,9/27/2001,Puffin Books +24949,Danny The Champion of the World,Roald Dahl/Jill Bennett,4.09,0553152890,9780553152890,eng,196,7,3,6/1/1984,Yearling +24951,Danny the Champion of the World,Roald Dahl,4.09,0435122215,9780435122218,eng,208,20,1,9/1/2009,Heinemann Library +24953,Danny The Champion Of The World,Roald Dahl/Quentin Blake,4.09,022406469X,9780224064699,eng,256,107,9,11/7/2002,Jonathan Cape +24955,Danny Champion Du Monde,Roald Dahl,4.09,201321894X,9782013218948,fre,281,7,0,9/5/2001,Hachette +24956,The Science of the Hitchhiker's Guide to the Galaxy,Michael Hanlon,3.60,0230008909,9780230008908,eng,208,168,16,8/8/2006,Palgrave Macmillan +24958,The Dark Is Rising Sequence,Susan Cooper,4.28,0140316884,9780140316889,eng,786,266,16,10/25/1984,Puffin Books (Penguin Books) +24964,The Essential Kierkegaard,Søren Kierkegaard/Howard Vincent Hong/Edna Hatlestad Hong,4.20,0691019401,9780691019406,eng,524,1807,44,6/19/2000,Princeton University Press +24965,Fear and Trembling,Søren Kierkegaard/Alastair Hannay,4.00,0143037579,9780143037576,eng,160,14185,559,5/30/2006,Penguin Books +24968,Fear and Trembling/Repetition,Søren Kierkegaard/Edna Hatlestad Hong/Howard Vincent Hong,4.23,0691020264,9780691020266,eng,420,4731,96,6/1/1983,Princeton University Press +24970,Either/Or: A Fragment of Life,Søren Kierkegaard/Victor Eremita/Alastair Hannay,4.17,0140445773,9780140445770,eng,640,6405,127,12/1/1992,Penguin Classics +24978,Inside Job,Connie Willis,3.67,1596060247,9781596060241,eng,99,1442,180,6/1/2005,Subterranean Press +24979,Miracle and Other Christmas Stories,Connie Willis,3.90,0553580485,9780553580488,eng,336,1681,199,10/31/2000,Bantam +24980,Lincoln's Dreams,Connie Willis,3.52,0553270257,9780553270259,eng,245,3542,303,6/1/1992,Bantam Doubleday Dell Publishing Company Inc. +24982,Uncharted Territory,Connie Willis,3.51,0553562940,9780553562941,eng,149,1240,122,6/1/1994,Spectra +24984,Passage,Connie Willis,3.69,0553580515,9780553580518,eng,780,7331,753,1/2/2002,Bantam +24985,Bellwether,Connie Willis,3.92,0553562967,9780553562965,eng,248,9419,1110,6/2/1997,Spectra +25002,Writing Degree Zero,Roland Barthes/Annette Lavers/Colin Smith/Susan Sontag,3.88,0809013843,9780809013845,eng,96,19,0,5/1/1977,Hill and Wang +25005,New Worlds Ancient Texts: The Power of Tradition and the Shock of Discovery,Anthony Grafton,3.62,0674618769,9780674618763,eng,296,71,4,3/15/1995,Belknap Press +25012,The Book of My Life,Girolamo Cardano/Jean Stoner/Anthony Grafton,3.75,1590170164,9781590170168,en-GB,320,72,12,10/31/2002,NYRB Classics +25013,A Crack in the Edge of the World,Simon Winchester,3.78,0060572000,9780060572006,eng,419,5413,499,10/10/2006,Harper Perennial +25014,The Map That Changed the World: William Smith and the Birth of Modern Geology,Simon Winchester,3.82,0060931809,9780060931803,eng,329,10452,539,7/30/2002,Perennial +25015,The River at the Center of the World: A Journey Up the Yangtze & Back in Chinese Time,Simon Winchester,3.92,0312423373,9780312423377,eng,416,1398,95,4/1/2004,Picador +25016,Outposts: Journeys to the Surviving Relics of the British Empire,Simon Winchester,3.79,0060598611,9780060598617,eng,400,1209,106,6/15/2004,Harper Perennial +25017,Krakatoa: The Day the World Exploded: August 27 1883,Simon Winchester,3.87,0060838590,9780060838591,eng,464,15680,1074,7/5/2005,Harper Perennial +25021,How the Irish Saved Civilization,Thomas Cahill,3.81,0340637870,9780340637876,en-GB,256,91,13,3/3/2003,Sceptre +25023,Irish Traditional Cooking: Over 300 Recipes from Ireland's Heritage,Darina Allen/Regina Sexton,4.19,190492011X,9781904920113,eng,288,200,7,12/22/2004,Kyle Books +25025,The Scotch-Irish: A Social History,James Graham Leyburn,3.97,0807842591,9780807842591,eng,377,210,25,8/30/1989,University of North Carolina Press +25027,Irish Blessings,Ashley Shannon,4.05,0762404787,9780762404780,eng,128,29,2,2/22/1999,Running Press +25032,Classical Drawing Atelier: A Contemporary Guide to Traditional Studio Practice,Juliette Aristides,4.12,0823006573,9780823006571,eng,160,3686,24,11/1/2006,Watson-Guptill +25033,Common Herbs for Natural Health,Juliette De Bairacli Levy/Heather Wood,4.45,0961462094,9780961462093,eng,223,113,7,4/11/1996,Ash Tree Publishing +25034,The Complete Herbal Handbook for the Dog and Cat,Juliette De Bairacli Levy,4.31,0571161154,9780571161157,eng,368,106,7,4/8/1991,Faber Faber +25037,El rey de Les Halles,Juliette Benzoni/Francisco Rodriguez de Lecea,4.19,8466619453,9788466619455,spa,448,207,5,1/1/2007,Ediciones B +25041,The Case of the Snowboarding Superstar (Jigsaw Jones #29),James Preller/R.W. Alley/Jamie Smith,3.98,0439793955,9780439793957,en-US,80,123,13,1/1/2006,Scholastic +25044,The Case Of The Kidnapped Candy (Jigsaw Jones Mystery #30),James Preller/R.W. Alley/Jamie Smith,3.75,0439896185,9780439896184,eng,80,104,6,1/1/2007,Scholastic +25045,The Case of the Marshmallow Monster (Jigsaw Jones #11),James Preller/R.W. Alley,3.92,0439184738,9780439184731,en-US,80,227,17,3/1/2001,Scholastic Paperbacks +25047,The Case of the Stinky Science Project (Jigsaw Jones #9),James Preller/John Speirs/James Preller,3.83,0439114284,9780439114288,en-US,80,162,11,3/1/2001,Scholastic Paperbacks +25048,The Case Of The Buried Treasure,James Preller/Jamie Smith/R.W. Alley,3.92,043930931X,9780439309318,eng,112,101,9,1/1/2002,Scholastic Paperbacks +25050,The Case of the Mummy Mystery (Jigsaw Jones #6),James Preller/John Speirs/R.W. Alley,3.81,0439080940,9780439080941,en-US,80,327,22,3/1/2001,Scholastic Paperbacks +25051,Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle #1),Betty MacDonald/Alexandra Boiger,4.16,0064401480,9780064401487,eng,128,48919,1089,8/14/2007,HarperCollins +25052,Mrs. Piggle-Wiggle's Magic (Mrs. Piggle Wiggle #2),Betty MacDonald/Alexandra Boiger,4.16,0064401510,9780064401517,eng,192,13359,236,8/14/2007,HarperCollins +25053,Hello Mrs. Piggle-Wiggle (Mrs. Piggle Wiggle #4),Betty MacDonald/Alexandra Boiger,4.24,0064401499,9780064401494,eng,125,14745,203,8/14/2007,HarperCollins +25055,Mrs. Piggle-Wiggle Treasury (Mrs. Piggle Wiggle #1-2 #4),Betty MacDonald/Hilary Knight,4.46,0060248122,9780060248123,eng,392,922,86,6/15/1995,HarperCollins +25059,Brightness Reef (Uplift Storm Trilogy #1),David Brin,3.90,0553573306,9780553573305,eng,661,8963,153,10/1/1996,Spectra +25060,Brightness Falls,Jay McInerney,3.74,0747553718,9780747553717,eng,432,46,0,8/6/2001,Bloomsbury +25061,This Side of Brightness,Colum McCann,3.85,0312421974,9780312421977,eng,304,2506,264,1/1/2003,Picador +25065,Dazzling Brightness (Greek Myths #1),Roberta Gellis,3.84,0786000236,9780786000234,eng,446,196,16,6/1/1994,Pinnacle +25069,Bright Lights Big City,Jay McInerney/Sylvie Durastanti,3.77,2879290937,9782879290935,fre,192,68,5,10/14/1997,Editions de l'Olivier +25074,How it Ended,Jay McInerney,3.49,0747553564,9780747553564,eng,196,762,56,8/6/2009,Bloomsbury Publishing PLC +25078,Savage Inequalities: Children in America's Schools,Jonathan Kozol,4.25,0060974990,9780060974992,eng,272,15923,666,6/12/1992,Harper Perennial +25083,Skipping Towards Gomorrah: The Seven Deadly Sins and the Pursuit of Happiness in America,Dan Savage,3.81,0452284163,9780452284166,eng,320,3090,195,9/30/2003,Penguin Books +25084,Savage Love: Straight Answers from America's Most Popular Sex Columnist,Dan Savage,3.85,0452278155,9780452278158,en-GB,352,900,61,10/1/1998,Penguin Books +25099,The Doll's House (The Sandman #2),Neil Gaiman/Steve Parkhouse/Chris Bachalo/Michael Zulli/Mike Dringenberg/Malcolm Jones III/Todd Klein/Clive Barker,4.44,1563892251,9781563892257,eng,232,63599,1518,3/10/1999,Vertigo +25100,Dream Country (The Sandman #3),Neil Gaiman/Kelley Jones/Charles Vess/Colleen Doran/Malcolm Jones III/Steve Erickson,4.24,156389226X,9781563892264,eng,111,84421,1201,2/5/1999,DC Comics +25101,Season of Mists (The Sandman #4),Neil Gaiman/Matt Wagner/George Pratt/Dick Giordano/Kelley Jones/P. Craig Russell/Mike Dringenberg/Malcolm Jones III/Todd Klein/Harlan Ellison,4.54,1563890356,9781563890352,eng,217,50951,1038,3/10/1999,Vertigo +25102,A Game of You (The Sandman #5),Neil Gaiman/Shawn McManus/Colleen Doran/Bryan Talbot/George Pratt/Stan Woch/Dick Giordano/Todd Klein,4.43,1563890933,9781563890932,eng,192,43065,876,3/10/1999,Vertigo +25103,World's End (The Sandman #8),Neil Gaiman/Mike Allred/Gary Amaro/Mark Buckingham/David Giordano/Tony Harris/Steve Leialoha/Vince Locke/Shea Anton Pensa/Alec Stevens/Bryan Talbot/John Watkiss/Todd Klein/Michael Zulli/Stephen King,4.47,1563891700,9781563891700,eng,160,36629,675,7/16/1999,Vertigo +25104,The Wake (The Sandman #10),Neil Gaiman/Michael Zulli/Jon J. Muth/Charles Vess/Mikal Gilmore,4.52,1563892871,9781563892875,eng,191,37038,767,9/3/1999,Vertigo +25106,Fables & Reflections (The Sandman #6),Neil Gaiman/Bryan Talbot/Stan Woch/P. Craig Russell/Shawn McManus/John Watkiss/Jill Thompson/Duncan Eagleson/Kent Williams/Todd Klein,4.45,1563891069,9781563891069,eng,263,40736,776,3/10/1999,DC Comics +25109,Common Ground: A Turbulent Decade in the Lives of Three American Families,J. Anthony Lukas,4.28,0394746163,9780394746166,eng,688,2061,194,8/12/1986,Vintage +25112,Common Ground: The Water Earth and Air We Share,Molly Bang,3.74,0590100564,9780590100564,eng,40,98,29,10/1/1997,Blue Sky Press +25118,Uncommon Ground: Rethinking the Human Place in Nature,William Cronon,4.16,0393315118,9780393315110,eng,560,664,23,10/17/1996,W. W. Norton Company +25120,Uncommon Grounds (Maggy Thorsen Mystery #1),Sandra Balzo,3.61,1410402363,9781410402363,en-US,245,187,41,9/1/2005,Five Star Trade +25129,The Ecological Approach to Visual Perception,James J. Gibson,4.26,0898599598,9780898599596,eng,348,139,12,9/1/1986,Psychology Press +25142,Fucked By Rock + Cd,Mark Manning,3.96,1840680733,9781840680737,eng,205,1,0,10/1/2001,Creation Books +25148,The Fuck-Up,Arthur Nersesian,3.55,0671027638,9780671027636,eng,304,10655,414,5/1/1999,MTV Books +25150,Pledged: The Secret Life of Sororities,Alexandra Robbins,3.18,1401300464,9781401300463,en-US,384,245,30,4/14/2004,Hyperion +25152,Uzumaki: Spiral into Horror Vol. 1,Junji Ito/伊藤潤二,4.32,1569317143,9781569317143,eng,208,12618,774,10/6/2001,Viz Media +25153,Uzumaki: Spiral into Horror Vol. 2.,Junji Ito/伊藤潤二,4.33,1591160332,9781591160335,eng,208,7275,286,7/6/2002,Viz Media +25154,Uzumaki: Spiral Into Horror Vol. 3,Junji Ito/伊藤潤二,4.27,1591160480,9781591160489,eng,250,6790,337,10/6/2002,Viz Media +25170,Dust (Richard Jury #21),Martha Grimes,3.64,0670037869,9780670037865,eng,342,2612,286,2/1/2007,Viking Books +25171,The Old Wine Shades (Richard Jury #20),Martha Grimes,3.60,0451220722,9780451220721,eng,391,2628,273,3/6/2007,Signet +25172,The Dirty Duck (Richard Jury #4),Martha Grimes,3.94,0451411390,9780451411396,eng,320,3861,140,6/1/2004,Onyx +25173,Belle Ruin (Emma Graham #3),Martha Grimes,3.50,0451219449,9780451219442,eng,368,1158,118,9/1/2006,Berkley Books +25174,Jerusalem Inn (Richard Jury #5),Martha Grimes,3.96,0451411617,9780451411617,eng,320,3542,154,11/2/2004,Onyx +25175,The Anodyne Necklace (Richard Jury #3),Martha Grimes,4.04,0451410890,9780451410894,eng,310,6046,174,1/6/2004,Onyx +25176,The Man With a Load of Mischief (Richard Jury #1),Martha Grimes,3.99,0451410815,9780451410818,eng,272,14812,461,2/4/2003,Berkley Books +25177,The Five Bells and Bladebone (Richard Jury #9),Martha Grimes,3.93,0451410386,9780451410382,eng,334,2884,97,6/1/2002,NAL +25179,Blankets,Craig Thompson,4.05,1891830430,9781891830433,eng,592,86159,5727,8/18/2003,Top Shelf Productions +25190,Beauty's Release (Sleeping Beauty #3),A.N. Roquelaure/Anne Rice,3.71,0452281458,9780452281455,eng,238,23970,570,5/1/1999,Penguin Books +25191,A Personal Matter,Kenzaburō Ōe/John Nathan,3.89,0802150616,9780802150615,eng,165,7081,543,1/13/1994,Grove Press +25192,Teach Us To Outgrow Our Madness,Kenzaburō Ōe/John Nathan,3.86,0714530484,9780714530482,eng,276,44,1,3/4/2000,Marion Boyars Publishers +25198,Rouse Up O Young Men of the New Age!,Kenzaburō Ōe,3.69,1843540789,9781843540786,eng,272,282,25,7/10/2003,Atlantic Books +25200,Silence,Shūsaku Endō/William Johnston,4.08,0800871863,9780800871864,eng,201,17485,2100,1/1/1999,Taplinger Publishing +25201,Deep River,Shūsaku Endō/Van C. Gessel,3.92,081121320X,9780811213202,eng,216,1567,182,5/1/1994,New Directions Publishing Corporation +25210,The Golden Country,Shūsaku Endō/Francis Mathy,3.79,0804833370,9780804833370,eng,128,47,4,8/15/2003,Tuttle Publishing +25216,Eden: It's an Endless World Volume 3 (Eden: It's an Endless World #3),Hiroki Endo,4.20,1593075294,9781593075293,eng,224,421,14,5/16/2006,Dark Horse Manga +25225,The Samurai,Shūsaku Endō/Van C. Gessel,3.96,0811213463,9780811213462,eng,272,1689,157,4/17/1997,New Directions +25226,Tuck Everlasting,Natalie Babbitt,3.87,0374480133,9780374480134,en-US,139,1538,184,3/1/2005,Farrar Straus Giroux +25241,The Philosophy of History,Georg Wilhelm Friedrich Hegel/J. Sibree/C.J. Friedrich/Charles Hegel,3.82,0486437558,9780486437552,eng,480,2762,71,9/10/2004,Dover Publications +25242,Reason in History,Georg Wilhelm Friedrich Hegel/Robert S. Hartman,3.65,0023513209,9780023513206,eng,95,451,17,12/24/1995,Pearson +25244,The Essential Writings,Georg Wilhelm Friedrich Hegel,3.86,0061318310,9780061318313,ger,368,71,6,4/21/1977,Harper Perennial +25245,Introduction to the Philosophy of History with Selections from The Philosophy of Right,Georg Wilhelm Friedrich Hegel/Leo Rauch,3.76,0872200566,9780872200562,eng,106,1088,52,6/1/1988,Hackett Publishing Company Inc. +25246,Hegel: A Very Short Introduction,Peter Singer,3.86,019280197X,9780192801975,eng,131,1141,122,12/6/2001,Oxford University Press +25248,Elements of the Philosophy of Right,Georg Wilhelm Friedrich Hegel/Allen W. Wood/Raymond Geuss,3.87,0521348889,9780521348881,eng,569,2882,48,10/25/1991,Cambridge University Press +25252,Von Helden Und Schelmen: Tall Tales and Legends for Intermediate Students of German,Kurt Reiter,4.00,0844222593,9780844222592,ger,88,4,2,1/1/1989,McGraw-Hill/Glencoe +25257,Mein Urgroßvater die Helden und ich,James Krüss,4.30,3551552711,9783551552716,ger,250,16,1,12/1/2002,Carlsen +25260,American Dragons: Twenty-five Asian American Voices,Laurence Yep/Kam Mak/Ann Tashi Slater,3.45,0064406032,9780064406031,eng,256,66,10,9/7/1995,HarperCollins Publishers +25268,The Rainbow People,Laurence Yep/David Wiesner,3.75,0064404412,9780064404419,eng,208,206,47,8/30/1992,HarperCollins +25278,Child of the Owl (Golden Mountain Chronicles #7),Laurence Yep,3.61,006440336X,9780064403368,eng,288,437,31,5/8/2001,HarperCollins +25279,Dragon's Gate (Golden Mountain Chronicles #3),Laurence Yep,3.67,0064404897,9780064404891,en-US,352,1845,128,1/23/2001,HarperCollins +25282,Man Who Tricked a Ghost,Laurence Yep/Isadore Seltzer,3.83,081673030X,9780816730308,eng,32,39,6,9/13/1997,Troll Communications +25286,The Dragon Prince: A Chinese Beauty & the Beast Tale,Laurence Yep/Kam Mak,3.93,0064435180,9780064435185,eng,32,355,44,1/9/1999,HarperCollins +25295,The Legend of Huma (Dragonlance: Heroes #1),Richard A. Knaak,4.03,078693137X,9780786931378,en-US,379,17274,113,1/1/2004,Wizards of the Coast +25296,The Dark Mirror (The Bridei Chronicles #1),Juliet Marillier,3.97,0765348756,9780765348753,en-US,561,7525,376,3/6/2007,Tor Fantasy +25299,Investing in Real Estate,Andrew James McLean/Gary W. Eldred,3.82,0471741205,9780471741206,eng,314,200,12,11/1/2005,John Wiley & Sons +25307,No god but God: The Origins Evolution and Future of Islam,Reza Aslan,4.12,0812971892,9780812971897,eng,310,16918,1107,1/10/2006,Random House Trade +25319,Flashman on the March (The Flashman Papers #12),George MacDonald Fraser,4.08,1400096464,9781400096466,en-US,352,1646,66,11/14/2006,Anchor +25320,March Upcountry (Empire of Man #1),David Weber/John Ringo,4.18,0743435389,9780743435383,eng,608,9721,239,5/1/2002,Baen +25321,King of the Middle March,Kevin Crossley-Holland,3.82,0439266017,9780439266017,eng,432,1334,47,3/1/2006,Scholastic Inc. +25329,The Dobe Ju/'hoansi,Richard B. Lee,3.58,0155063332,9780155063334,eng,272,356,25,2/4/2002,Wadsworth Publishing Company +25332,Ju-on Volume 1 (呪怨 #1),Kei Ohishi/Joe Swift,3.82,159582071X,9781595820716,eng,240,348,31,9/19/2006,Dark Horse Manga +25344,Get Out of My Life but First Could You Drive Me & Cheryl to the Mall?,Anthony E. Wolf,3.96,0374528535,9780374528539,eng,240,1380,250,8/21/2002,Farrar Straus and Giroux +25347,Out of Egypt (Christ the Lord #1),Anne Rice,3.58,0345436830,9780345436832,eng,350,11519,981,10/31/2006,Ballantine Books +25348,Get Out of Your Mind and Into Your Life: The New Acceptance and Commitment Therapy,Steven C. Hayes/Spencer Smith,4.05,1572244259,9781572244252,eng,224,1506,86,11/1/2005,New Harbinger Publications +25349,The Out-of-Sync Child Has Fun: Activities for Kids with Sensory Processing Disorder,Carol Stock Kranowitz/T.J. Wylie,4.22,0399532714,9780399532719,en-US,352,1223,65,8/1/2006,TarcherPerigee +25350,Out of the Silent Planet (The Space Trilogy #1),C.S. Lewis,3.93,0007157150,9780007157150,eng,224,58756,2528,12/5/2005,HarperCollins +25352,Coming Out,Danielle Steel,3.51,0385338325,9780385338325,eng,210,4160,241,6/27/2006,Delacorte Press +25353,Shutting Out the Sky: Life in the Tenements of New York 1880-1924,Deborah Hopkinson,4.05,0439375908,9780439375900,eng,144,195,37,10/1/2003,Orchard Books +25355,Art Out of Time: Unknown Comics Visionaries 1900-1969,Dan Nadel,4.05,0810958384,9780810958388,eng,320,226,24,6/1/2006,Abrams +25359,The Out-of-Sync Child Has Fun: Activities for Kids with Sensory Integration Dysfunction,Carol Stock Kranowitz/T.J. Wylie/Trude Turnquist,4.22,0399528431,9780399528439,en-US,352,148,9,1/7/2003,Perigee Trade +25363,Shout Out Loud! 3,Satosumi Takaguchi,3.92,1598163183,9781598163186,eng,190,88,2,12/12/2006,TokyoPop +25365,Out,Natsuo Kirino/Stephen Snyder,3.92,1400078377,9781400078370,eng,400,18671,1894,1/4/2005,Vintage +25367,Disparitions,Natsuo Kirino,3.81,2268042618,9782268042619,fre,453,104,9,5/27/2002,Bertrand +25368,Die Umarmung des Todes,Natsuo Kirino,3.92,3442309174,9783442309177,ger,607,6,2,3/1/2003,Goldmann +25372,Are We There Yet?,David Levithan,3.49,0375839569,9780375839566,en-US,215,117,19,12/24/2008,Random House Children's Books +25373,Nick & Norah's Infinite Playlist,Rachel Cohn/David Levithan,3.71,0375835318,9780375835315,eng,183,65091,2971,5/23/2006,Alfred A. Knopf Books for Young Readers +25375,How to Make Money Like a Porn Star,Neil Strauss/Jenna Jameson,3.32,0060884053,9780060884055,en-US,128,164,6,9/26/2006,It Books +25376,The Mystery Method: How to Get Beautiful Women Into Bed,Mystery/Neil Strauss,3.70,0312360118,9780312360115,en-US,240,2208,116,2/6/2007,St. Martin's Press +25378,The Dirt: Confessions of the World's Most Notorious Rock Band,Neil Strauss/Vince Neil/Nikki Sixx/Mick Mars/Tommy Lee,4.16,0060989157,9780060989156,eng,431,28405,1794,7/9/2002,Dey Street Books +25379,Mémoires de l'Enfer,Marilyn Manson/Neil Strauss/Gilles Vaugeois,3.89,2207249107,9782207249109,fre,269,78,3,11/15/2000,Denoël +25395,Una Vida Con Proposito Volumen 6,Rick Warren,4.35,1417499737,9781417499731,spa,56,26,3,5/31/2005,Vida +25401,Maya,Jostein Gaarder/James Anderson,3.60,0753811464,9780753811467,eng,352,3704,136,5/10/2011,Phoenix +25403,The Orange Girl,Jostein Gaarder/James Anderson,3.92,0753819929,9780753819920,eng,151,12162,709,7/6/2005,Phoenix +25406,Sophie's World,Jostein Gaarder/Paulette Møller,3.92,0374530718,9780374530716,en-US,518,4399,515,3/20/2007,Farrar Straus and Giroux +25407,That Same Flower: Floria Aemilia's Letter to St. Augustine,Jostein Gaarder/Anne Born,3.67,0374253846,9780374253844,eng,167,70,12,2/28/1998,Farrar Straus and Giroux +25409,Identity and Violence: The Illusion of Destiny,Amartya Sen/Λία Βουτσοπούλου,3.84,0393329291,9780393329292,eng,240,1227,124,2/17/2007,W. W. Norton Company +25419,When I Was Puerto Rican,Esmeralda Santiago,4.02,0679756760,9780679756767,eng,274,8632,560,10/11/1994,Vintage Books USA +25426,Delwau Duon: Peintiadau Nicholas Evans = Symphonies in Black: The Paintings of Nicholas Evans,Nicholas Evans/Rhonda Evans,5.00,0862431352,9780862431358,wel,150,1,0,6/22/1987,Y Lolfa +25431,Psychonavigation: Techniques for Travel Beyond Time,John Perkins,4.10,089281800X,9780892818006,eng,144,65,3,9/1/1999,Destiny Books +25433,The Stress-free Habit: Powerful Techniques for Health & Longevity from the Andes Yucatan & the Far East,John Perkins,3.84,0892812923,9780892812929,en-US,104,17,1,5/1/1989,Healing Arts Press +25435,Let Justice Roll Down,John M. Perkins/Shane Claiborne,4.35,0830743073,9780830743070,eng,219,767,89,12/6/2006,Regal Books +25440,The Namesake: A Portrait of the Film Based on the Novel by Jhumpa Lahiri,Mira Nair/Jhumpa Lahiri,4.05,1557047413,9781557047410,eng,144,621,26,12/1/2006,Newmarket +25444,The Collected Poems of Robert Penn Warren,Robert Penn Warren/John Burt/Harold Bloom,4.37,0807123331,9780807123331,eng,838,173,10,10/1/1998,LSU Press +25449,The Cave,Robert Penn Warren/James H. Justus/Xavier Pàmies,3.73,0813191556,9780813191553,eng,424,95,16,2/24/2006,University Press of Kentucky +25454,The Glass Castle,Jeannette Walls/Julia Gibson,4.27,1419341049,9781419341045,eng,10,14,6,11/1/2005,Recorded Books +25457,The Little Baby Snoogle-Fleejer,Jimmy Carter/Amy Carter,3.17,0812927311,9780812927313,eng,24,42,11,11/21/1995,Crown +25458,Keeping Faith: Memoirs of a President,Jimmy Carter,3.83,1557283303,9781557283306,en-US,640,247,13,7/1/1995,University of Arkansas Press +25460,Animal Vegetable Miracle: A Year of Food Life,Barbara Kingsolver/Steven L. Hopp/Camille Kingsolver/Richard A. Houser,4.04,0060852550,9780060852559,eng,370,86290,9497,5/1/2007,HarperCollins Publishers +25463,The Essential John Nash,John F. Nash/Harold William Kuhn/Sylvia Nasar,3.89,0691096104,9780691096100,eng,244,78,4,3/18/2007,Princeton University Press +25473,Z for Zachariah,Robert C. O'Brien,3.66,1416939210,9781416939214,eng,250,1030,231,7/10/2007,Simon Pulse +25489,The Anatomy of Human Destructiveness,Erich Fromm,4.21,080501604X,9780805016048,eng,576,2102,38,2/15/1992,Holt Paperbacks +25491,Escape from Freedom,Erich Fromm,4.24,0805031499,9780805031492,eng,301,7201,292,9/15/1994,Holt McDougal +25492,The Art of Being,Erich Fromm/Rainer Funk,4.09,0826406734,9780826406736,eng,144,2464,87,9/1/1994,Bloomsbury Academic +25494,Man for Himself: An Inquiry into the Psychology of Ethics,Erich Fromm,4.17,0415307716,9780415307710,eng,272,1437,30,4/24/2003,Routledge Taylor & Francis Books Ltd imprint +25495,Psychoanalysis and Religion,Erich Fromm/محمود منقذ الهاشمي,4.02,0300000898,9780300000894,en-US,126,865,32,9/10/1959,Yale University Press (New Haven CT) +25510,The Days of Vengeance: An Exposition of the Book of Revelation,David H. Chilton,4.18,0930462092,9780930462093,eng,754,120,28,1/1/1987,Dominion Press +25516,Malinche,Laura Esquivel/Jordi Castells,3.28,0743290348,9780743290340,spa,189,99,20,2/7/2006,Atria Books +25517,Malinche,Laura Esquivel/Jordi Castells/Ernesto Mestre-Reed,3.28,074329033X,9780743290333,en-US,191,3172,304,5/2/2006,Atria Books +25534,Faulkner: A Biography,Joseph Blotner,4.13,1578067324,9781578067329,eng,778,82,10,5/4/2005,University Press of Mississippi +25553,The Best Bug Parade,Stuart J. Murphy/Holly Keller,3.51,0064467007,9780064467001,en-US,40,85,16,3/27/1996,HarperCollins +25563,Flight Dreams (Mark Manning Mystery #1),Michael Craft,3.73,1575668548,9781575668543,eng,230,150,13,6/16/2000,Kensington +25564,Eye Contact (Mark Manning Mystery #2),Michael Craft,3.78,1575664259,9781575664255,eng,342,112,6,6/1/1999,Kensington +25565,Hot Spot (Mark Manning Mystery #6),Michael Craft,3.85,0312313640,9780312313647,eng,288,80,1,6/4/2003,Minotaur Books +25566,Body Language (Mark Manning Mystery #3),Michael Craft,3.91,1575665549,9781575665542,eng,273,111,6,5/1/2000,Kensington +25587,The Second World War,Winston S. Churchill/John Keegan,4.45,039541685X,9780395416853,eng,4736,1493,99,5/9/1986,Mariner Books +25589,Memoirs of the Second World War,Winston S. Churchill/Denis Kelly,4.39,0395599687,9780395599686,eng,1088,438,39,9/17/1991,Mariner Books +25618,Six Degrees of Separation,John Guare,4.00,0822210347,9780822210344,eng,74,242,14,12/1/1995,Dramatists Play Service +25623,Amarse con los ojos abiertos,Jorge Bucay/Silvia Salinas,3.73,8479019395,9788479019396,spa,237,1425,59,3/1/2004,Alfaguara +25639,McGraw-Hill's SAT I (McGraw-Hill's SAT I),Christopher Black/Mark Anestis,3.67,007146235X,9780071462358,eng,890,0,0,10/1/2005,McGraw-Hill Companies +25652,The Best Recipes in the World: More Than 1 000 International Dishes to Cook at Home,Mark Bittman,3.98,0767906721,9780767906722,eng,757,1813,40,10/11/2005,Broadway Books +25653,The Minimalist Cooks at Home: Recipes That Give You More Flavor from Fewer Ingredients in Less Time,Mark Bittman,3.90,0767909267,9780767909266,eng,240,261,20,9/10/2002,Broadway Books +25663,The Soldiers' Tale: Bearing Witness to Modern War,Samuel Hynes,3.80,0140261540,9780140261547,eng,336,82,10,4/1/1998,Penguin Books USA Inc. +25669,How the Irish Saved Civilization: The Untold Story of Ireland's Heroic Role from the Fall of Rome to the Rise of Medieval Europe,Thomas Cahill,3.81,0385418493,9780385418492,eng,246,36446,1486,2/1/1996,Bantam Doubleday Dell (NYC) +25672,Confessions of Saint Augustine (Paraclete Living Library),Augustine of Hippo/J.M. Lelen,3.92,0899421695,9780899421698,eng,448,13,4,1/1/1997,Catholic Book Publishing +25673,City of God,Augustine of Hippo/Henry Bettenson,3.92,0140448942,9780140448948,eng,1186,8754,300,11/27/2003,Penguin Books Ltd +25685,An Odyssey in Learning and Perception,Eleanor J. Gibson,4.50,026257103X,9780262571036,eng,654,0,0,2/3/1994,Bradford Book +25688,Complete Works of Tacitus,Tacitus/Alfred J. Church/William Jackson Brodribb/Moses Hadas,4.29,0075536390,9780075536390,eng,773,280,13,9/1/1964,McGraw-Hill Humanities/Social Sciences/Languages +25689,The Agricola and The Germania,Tacitus/Harold Mattingly/S.A. Handford,3.99,0140442413,9780140442410,eng,174,4013,110,2/28/1971,Penguin Books +25692,Agricola / Germania / Dialogue on Oratory,Tacitus/Maurice Hutton/Robert Maxwell Ogilvie/E.H. Warmington/William Peterson/Michael Winterbottom,3.95,0674990390,9780674990395,mul,384,87,7,1/1/1914,Harvard University Press +25693,Agricola/Germany,Tacitus/Anthony Richard Birley,3.99,0192833006,9780192833006,eng,224,29,2,9/23/1999,Oxford University Press +25698,An Inquiry into the Nature and Causes of the Wealth of Nations,Adam Smith,3.88,0553585975,9780553585971,eng,1264,21524,635,3/4/2003,Arlington House +25701,The Wealth of Nations,Adam Smith/Robert B. Reich,3.88,0679783369,9780679783367,eng,1184,1165,62,7/12/2000,Modern Library +25707,Aquinas's Shorter Summa: Saint Thomas's Own Concise Version of His Summa Theologica,Thomas Aquinas,4.14,1928832431,9781928832430,eng,412,213,8,12/1/2005,Sophia Institute Press +25708,Saint Thomas Aquinas,G.K. Chesterton/Anton C. Pegis,4.14,0385090021,9780385090025,en-US,167,2987,175,1/15/1974,Image +25709,Summa Theologica 5 Vols,Thomas Aquinas,4.12,0870610635,9780870610639,eng,3020,2734,84,1/1/1981,Christian Classics +25711,Selected Writings,Thomas Aquinas/Ralph McInerny,3.91,0140436324,9780140436327,eng,841,626,22,6/25/1998,Penguin Classics +25713,Selected Philosophical Writings,Thomas Aquinas/Timothy McDermott,3.86,0192835858,9780192835857,eng,496,238,9,8/20/1998,Oxford University Press +25715,Treatise on Happiness,Thomas Aquinas/John A. Oesterle,3.83,0268018499,9780268018498,eng,224,76,3,1/1/1984,University of Notre Dame Press +25719,New Jewish Wedding Revised,Anita Diamant,3.96,0743202554,9780743202558,eng,288,694,64,3/6/2001,Scribner +25721,How to Be a Jewish Parent: A Practical Handbook for Family Life,Anita Diamant/Karen Kushner,3.93,0805211160,9780805211160,eng,352,52,5,9/5/2000,Schocken Books Inc +25725,Every Second Counts,Lance Armstrong/Sally Jenkins,3.52,0224064738,9780224064736,en-US,246,274,28,7/1/2004,Yellow Jersey +25737,The Collected Stories of Isaac Bashevis Singer,Isaac Bashevis Singer/Herb Johnson,4.37,0374517886,9780374517885,eng,624,1665,92,8/1/1983,Farrar Straus and Giroux +25740,Der Golem,Isaac Bashevis Singer,3.75,349175710X,9783491757103,ger,64,2,0,2/1/2001,Patmos +25741,Collected Stories III: One Night in Brazil to The Death of Methuselah,Isaac Bashevis Singer/Ilan Stavans,4.61,1931082634,9781931082631,eng,915,23,4,7/8/2004,Library of America +25743,The Slave,Isaac Bashevis Singer/Cecil Hemley,4.18,0374506809,9780374506803,eng,320,2040,150,10/1/1988,Farrar Straus and Giroux +25744,Collected Stories I: Gimpel the Fool to The Letter Writer,Isaac Bashevis Singer/Ilan Stavans,4.49,1931082618,9781931082617,eng,832,63,8,7/8/2004,Library of America +25752,Blind Flight,Hilary H. Milton,3.63,0590321145,9780590321143,en-US,122,25,5,12/1/1982,Scholastic +25756,Tornado!,Hilary H. Milton,3.60,0531045420,9780531045428,eng,147,10,3,1/1/1983,Franklin Watts +25772,From the Age of Discovery to a World at War (America: The Last Best Hope #1),William J. Bennett,4.24,1595550550,9781595550552,eng,573,1069,132,5/23/2006,Nelson Current +25777,Democracy in America Volume 2,Alexis de Tocqueville/Eduardo Brandão/Phillips Bradley/Luann Walther,4.17,0679728260,9780679728269,eng,506,316,19,8/11/1990,Vintage +25779,On Democracy Revolution and Society,Alexis de Tocqueville/John Stone/Stephen Mennell,4.12,0226805271,9780226805276,eng,402,25,0,9/15/1982,University Of Chicago Press +25780,The Two Tocquevilles Father and Son,R.R. Palmer,2.00,0691054959,9780691054957,eng,254,1,0,4/1/1987,Princeton University Press +25781,The Iron Dragon's Daughter,Michael Swanwick,3.69,0380972336,9780380972333,eng,424,2530,182,2/28/2012,Avon Books +25788,The Book of Five Rings,Miyamoto Musashi/Thomas Cleary,4.07,1570627487,9781570627484,eng,144,192,10,4/13/1993,Shambhala +25789,The Book of Five Rings,Miyamoto Musashi/Thomas Cleary,4.07,1590302486,9781590302484,eng,166,926,74,1/11/2005,Shambhala +25790,The Lord of the Rings Sketchbook,Alan Lee/Ian McKellen,4.27,0618640142,9780618640140,eng,192,9853,72,10/19/2005,Houghton Mifflin Harcourt +25794,Birthday (Ring #4),Kōji Suzuki/Glynne Walley,3.67,1932234292,9781932234299,eng,216,866,37,12/12/2006,Vertical +25800,The Book of Five Rings,Miyamoto Musashi/William Scott Wilson/Shiro Tsujimura,4.07,4770028016,9784770028013,eng,157,455,43,3/1/2002,Kodansha International +25802,The Deception of the Emerald Ring (Pink Carnation #3),Lauren Willig,3.91,0525949771,9780525949770,eng,400,8615,499,12/1/2006,Dutton Books +25803,Only the Ring Finger Knows: The Ring Finger Falls Silent (Only the Ring Finger Knows #3),Satoru Kannagi/Hotaru Odagiri,4.04,1569708843,9781569708842,en-US,250,352,12,10/26/2006,Digital Manga Publishing +25804,Only the Ring Finger Knows: The Left Hand Dreams of Him (Only the Ring Finger Knows #2),Satoru Kannagi/Hotaru Odagiri,3.94,1569708851,9781569708859,eng,242,529,17,7/5/2006,Digital Manga Publishing +25806,1000 Rings: Inspiring Adornments for the Hand,Marthe Le Van/Robert W. Ebendorf/Lark Books,4.23,1579905080,9781579905088,eng,416,82,9,8/1/2004,Lark Books +25807,The Postman Always Rings Twice,James M. Cain,3.80,0752861743,9780752861746,eng,116,23157,1287,9/9/2010,Orion +25809,The Ring Bearer,Laura Godwin/John Wallace,3.44,078685510X,9780786855100,en-US,32,17,2,2/20/2006,Disney-Hyperion +25810,Legend of the Five Rings RPG,Rich Wulf/Shawn Carman/Seth Mason/Rob Vaux/Katie Yates/Brian Yoon/Fred Wan/D.J. Trindle,3.78,1594720355,9781594720352,eng,318,169,6,6/6/2005,Alderac Entertainment Group +25811,The Lord of the Rings and Philosophy: One Book to Rule Them All,Gregory Bassham/Eric Bronson,4.28,0812695453,9780812695458,eng,240,4913,40,8/4/2003,Open Court +25812,The Ruby Ring,Diane Haeger,3.70,1400051738,9781400051731,eng,371,1070,70,4/5/2005,Broadway Books +25814,Only the Ring Finger Knows: The Lonely Ring Finger (Only the Ring Finger Knows #1),Satoru Kannagi/Hotaru Odagiri/Allison Markin Powell,3.99,1569709041,9781569709047,eng,210,925,37,3/28/2006,Digital Manga Publishing +25815,The Rings of Saturn,W.G. Sebald/Michael Hulse,4.26,0099448920,9780099448921,eng,304,419,50,7/1/1995,Vintage +25816,Only the Ring Finger Knows,Satoru Kannagi/Hotaru Odagiri/Sachiko Sato,4.10,1569709807,9781569709801,eng,208,3299,57,8/1/2004,Digital Manga Publishing +25817,The Ring Volume 1,Misao Inagaki/Hiroshi Takahashi,3.63,1593070543,9781593070540,eng,304,389,32,11/25/2003,Dark Horse Manga +25841,The Road To War 1933 39,Andrew Hunt,0.00,0340774770,9780340774779,eng,128,0,0,4/1/2000,Hodder & Stoughton Educational Division +25848,The Drifting Classroom Vol. 5 (Drifting Classroom),Kazuo Umezu,3.87,1421509571,9781421509570,en-US,192,388,15,4/17/2007,VIZ Media LLC +25849,The Drifting Classroom Vol. 1,Kazuo Umezu,3.79,1421507226,9781421507224,en-US,190,1535,107,8/8/2006,VIZ Media LLC +25850,The Drifting Classroom Vol. 6 (The Drifting Classroom),Kazuo Umezu,3.87,142150958X,9781421509587,en-US,192,366,13,6/19/2007,VIZ Media LLC +25852,The Drifting Classroom Vol. 7 (The Drifting Classroom),Kazuo Umezu,3.92,1421509598,9781421509594,en-GB,192,343,11,8/21/2007,VIZ Media LLC +25853,The Drifting Classroom Vol. 2 (Drifting Classroom),Kazuo Umezu,3.98,1421507234,9781421507231,en-US,188,724,34,10/10/2006,VIZ Media LLC +25855,The Drifting Classroom Vol. 4 (Drifting Classroom),Kazuo Umezu,3.91,1421509563,9781421509563,en-US,192,412,20,2/20/2007,VIZ Media LLC +25863,The Franco-Prussian War,Michael Eliot Howard,4.09,0415266718,9780415266710,eng,532,202,13,11/11/2001,Routledge/Taylor & Francis Ltd. +25866,My Uncle Napoleon,Iraj Pezeshkzad/Dick Davis/Azar Nafisi,4.16,0812974433,9780812974430,eng,509,790,113,4/11/2006,Modern Library +25868,Hadji Murad,Leo Tolstoy/Aylmer Maude/Louise Maude/Azar Nafisi,3.84,0812967119,9780812967111,eng,153,176,32,7/8/2003,Modern Library +25869,Shahnameh: The Persian Book of Kings,Abolqasem Ferdowsi/Dick Davis/Azar Nafisi,4.51,0143104934,9780143104933,eng,886,246,21,3/1/2007,Penguin +25875,Killer 7 Official Strategy Guide,Brady Games,4.00,0744004446,9780744004441,eng,128,2,0,7/8/2005,BradyGames +25879,Castlevania: Curse of Darkness Official Strategy Guide,Brady Games,3.70,0744006457,9780744006452,eng,176,10,0,10/28/2005,BradyGames +25880,World of Warcraft Atlas,Brady Games,4.09,0744004411,9780744004410,eng,192,245,5,9/20/2005,BradyGames +25881,Manhunt Official Strategy Guide,Tim Bogenn,4.00,0744003229,0752073003227,eng,175,4,0,11/25/2003,Bradygames +25884,The Road to Jerusalem (The Knight Templar #1),Jan Guillou/Anna Paterson,4.00,0752848372,9780752848372,eng,320,4406,160,12/5/2002,Orion +25886,Buddhism: A Concise Introduction,Huston Smith/Philip Novak,3.90,0060730676,9780060730673,eng,256,418,44,12/14/2004,HarperOne +25895,Cleansing the Doors of Perception: The Religious Significance of Entheogenic Plants and Chemicals,Huston Smith,4.01,1591810086,9781591810087,eng,173,194,11,9/12/2003,Sentient Publications +25903,I'll Be Home Before Midnight and I Won't Get Pregnant,Anthony E. Wolf,0.00,0394755669,9780394755663,eng,288,0,0,5/12/1988,Knopf Doubleday Publishing Group +25905,Beneath the Wheel,Hermann Hesse/Michael E. Roloff,3.85,031242230X,9780312422301,eng,192,8494,289,7/1/2003,Picador +25919,Love Mode Vol. 3,Yuki Shimizu,4.15,1598160125,9781598160123,eng,184,585,14,7/3/2006,Blu +25921,Love Mode Vol. 1,Yuki Shimizu,3.93,1598160109,9781598160109,eng,192,1417,41,11/8/2005,Blu +25922,Love Mode Vol. 5,Yuki Shimizu,4.32,1598160141,9781598160147,eng,192,582,10,5/1/2007,Blu +25923,Love Mode Vol. 2,Yuki Shimizu,4.23,1598160117,9781598160116,eng,204,768,18,3/7/2006,Blu +25924,Love Mode Vol. 6,Yuki Shimizu,4.23,159816015X,9781598160154,eng,192,441,7,8/1/2007,Blu +25930,Balzac And The Little Chinese Seamstress,Dai Sijie/Ina Rilke,3.64,0099452243,9780099452249,eng,172,223,22,4/17/2002,Random House (Vintage) +25932,Lost Illusions (La Comédie Humaine),Honoré de Balzac/Ellen Marriage/George Saintsbury,4.16,1406506583,9781406506587,eng,656,6422,161,5/1/2006,Dodo Press +25933,The Black Sheep,Honoré de Balzac/Donald Adamson,3.99,0140442375,9780140442373,eng,339,1483,68,5/27/1976,Penguin Classics +25934,A Harlot High and Low,Honoré de Balzac/Rayner Heppenstall,4.06,0140442324,9780140442328,eng,554,1546,64,9/26/1985,Penguin Classics +25936,The Unknown Masterpiece,Honoré de Balzac,3.87,1425462219,9781425462215,eng,48,11,3,12/8/2005,Kessinger Publishing +25937,The Girl With The Golden Eyes,Honoré de Balzac,3.35,1419163868,9781419163869,eng,72,801,56,6/17/2004,Kessinger Publishing +25941,Le Chef-D'Œuvre Inconnu,Honoré de Balzac,3.87,2868050131,9782868050137,fre,49,10,0,1/19/1998,Findakly +25946,Cousin Pons,Honoré de Balzac/Herbert J. Hunt,3.98,0140442057,9780140442052,eng,336,942,48,5/25/1978,Penguin Classics +25955,The Medium is the Massage,Marshall McLuhan/Quentin Fiore/Jerome Agel,3.94,1584230703,9781584230700,eng,160,12098,295,8/1/2001,Gingko Press +25956,Essential McLuhan,Marshall McLuhan/Eric McLuhan/Frank Zingrone,4.05,0415162459,9780415162456,eng,416,8,0,6/7/1997,Routledge +25961,Understanding Media: The Extensions of Man,Marshall McLuhan/W. Terrence Gordon/Philip B. Meggs,4.12,1584230738,9781584230731,en-US,616,120,11,11/1/2003,Gingko Press +25965,The Best American Sports Writing 2006,Michael Lewis/Glenn Stout,3.75,0618470220,9780618470228,eng,416,84,5,10/11/2006,Mariner Books +25992,Kinfolk,Pearl S. Buck,4.19,1559211563,9781559211567,eng,408,496,41,1/1/2004,Moyer Bell and its subsidiaries +25993,Pearl S. Buck: A Cultural Biography,Peter Conn,4.17,0521639891,9780521639897,eng,500,101,11,1/28/1998,Cambridge University Press +25996,The Mother,Pearl S. Buck,4.04,1559210915,9781559210911,eng,304,1783,93,1/1/2004,Moyer Bell and its subsidiaries +26009,Glamorama,Bret Easton Ellis,3.46,3453190149,9783453190146,ger,832,46,0,2/22/2010,KiWi +26012,Glamorama,Bret Easton Ellis/Pierre Guglielmina,3.46,2264031913,9782264031914,fre,537,56,5,2/15/2001,10/18 +26023,Bright Lights Big Ass,Jen Lancaster,4.06,0451221257,9780451221254,eng,380,28940,1632,5/1/2007,NAL +26046,Morrigan's Cross (Circle Trilogy #1),Nora Roberts,4.14,0515141658,9780515141658,eng,321,46146,1158,8/29/2006,Jove +26047,Rebellion (The MacGregors #0.1),Nora Roberts,3.92,0373285434,9780373285433,eng,395,6650,150,11/21/2006,Silhouette +26048,Dream Makers: Untamed / Less of a Stranger,Nora Roberts,3.80,0373285248,9780373285242,eng,411,989,32,9/19/2006,Silhouette Books +26049,Spellbound (Once Upon #1),Nora Roberts,3.80,0515140775,9780515140774,eng,96,6798,162,9/27/2005,Jove +26050,Angels Fall,Nora Roberts,4.00,0399153721,9780399153723,eng,391,37314,1040,7/11/2006,Putnam +26051,True Betrayals / Montana Sky / Sanctuary,Nora Roberts,4.40,0399147314,9780399147319,eng,852,667,5,6/4/2001,Putnam Adult +26052,First Impressions,Nora Roberts,3.73,0373285388,9780373285389,eng,301,5641,315,10/24/2006,Silhouette Books +26053,Public Secrets,Nora Roberts,4.03,0553589474,9780553589474,eng,481,11035,418,3/27/2012,Bantam Books +26054,The MacGregors: Serena & Caine (The MacGregors #1 -2),Nora Roberts,4.09,0373285132,9780373285136,eng,441,11070,150,1/28/2006,Mira +26055,The MacGregors: Alan & Grant (The MacGregors #3-4),Nora Roberts,4.11,037328523X,9780373285235,eng,458,9423,90,6/16/2006,Mira +26064,Kissing in Manhattan,David Schickler,3.61,0385335679,9780385335676,eng,288,2665,304,8/27/2002,Dial Press Trade Paperback +26069,Making Democracy Work: Civic Traditions in Modern Italy,Robert D. Putnam,3.83,0691037388,9780691037387,eng,280,604,34,6/16/1994,Princeton University Press +26071,The Comparative Study of Political Elites,Robert D. Putnam,3.75,0131541951,9780131541955,eng,246,4,1,1/1/1976,Prentice Hall +26075,A Random Walk Down Wall Street,Burton G. Malkiel,4.10,0393057828,9780393057829,en-US,416,50,6,4/17/2003,W. W. Norton Company +26079,A Random Walk Down Wall Street,Burton G. Malkiel/Christopher Flavin,4.10,0393019993,9780393019995,eng,377,9,1,1/1/1985,W. W. Norton & Company +26085,Identity Crisis,Brad Meltzer/Rags Morales/Michael Bair/Joss Whedon,4.04,1401204589,9781401204587,eng,288,18289,614,8/16/2006,DC Comics +26088,Superman: Secret Identity,Kurt Busiek/Stuart Immonen,4.24,1401204511,9781401204518,eng,208,6368,307,4/9/2013,DC Comics +26090,The Dissociative Identity Disorder Sourcebook,Deborah Bray Haddock,4.16,0737303948,9780737303940,eng,336,276,19,8/21/2001,McGraw-Hill Education +26092,Double Identity,Margaret Peterson Haddix,4.02,0689873743,9780689873744,eng,224,276,52,10/1/2005,Simon Schuster Books for Young Readers +26093,Identity,Milan Kundera/Linda Asher,3.68,0060175648,9780060175641,eng,176,266,31,4/21/1998,Harper +26097,Slowness,Milan Kundera/Linda Asher,3.66,0060928417,9780060928414,eng,156,9760,402,4/11/1997,Harper Perennial +26101,Laughable Loves,Milan Kundera/Suzanne Rappaport,3.87,0571206921,9780571206926,eng,287,14928,470,8/21/2000,Faber & Faber +26123,Learned Optimism: How to Change Your Mind and Your Life,Martin E.P. Seligman,4.00,1400078393,9781400078394,eng,319,13891,628,1/3/2006,Vintage +26130,Homer Price,Robert McCloskey,4.08,0142404152,9780142404157,en-US,149,279,24,12/29/2005,Puffin Books +26131,The Classical World: An Epic History from Homer to Hadrian,Robin Lane Fox,3.91,0465024963,9780465024964,eng,672,1315,69,10/9/2006,Basic Books +26133,The Children's Homer: The Adventures of Odysseus and the Tale of Troy,Padraic Colum/Willy Pogány,3.90,0689868839,9780689868832,eng,256,109,15,7/1/2004,Aladdin +26134,The Coalwood Way: A Memoir (Coalwood #2),Homer Hickam,4.14,0440237165,9780440237167,eng,400,1193,103,9/4/2001,Island Books +26146,Man's Search for Meaning,Viktor E. Frankl/Ilse Lasch/Harold S. Kushner/William J. Winslade,4.36,0807014273,9780807014271,eng,165,3023,303,6/1/2006,Beacon Press +26147,Man's Search for Meaning,Viktor E. Frankl/Ilse Lasch/Gordon W. Allport,4.36,1844132390,9781844132393,eng,160,1959,198,5/6/2004,Rider +26154,Good Grief: The Story of Charles M. Schulz,Rheta Grimsley Johnson,3.72,0886875536,9780886875534,eng,256,20,1,12/31/1989,Pharos Books +26156,Peanuts: The Art of Charles M. Schulz,Chip Kidd/Jean Schulz/Charles M. Schulz/Geoff Spear,4.38,0375714634,9780375714634,eng,368,592,39,10/28/2003,Pantheon +26165,Autobiography of a Yogi,Paramahansa Yogananda,4.23,8120818946,9788120818941,eng,516,9,0,10/1/2002,Motilal Banarsidass +26175,To the Last Man: A Novel of the First World War,Jeff Shaara,4.22,0345461363,9780345461360,eng,636,4809,315,8/30/2005,Ballantine Books +26184,African Nights,Kuki Gallmann,3.80,0060954833,9780060954833,eng,336,313,19,3/22/2000,William Morrow Paperbacks +26187,Angels & Demons (Robert Langdon #1),Dan Brown,3.89,0743486226,9780743486224,eng,572,5738,630,7/28/2003,Atria Books +26189,Letters of St. Augustine,Augustine of Hippo,4.36,0800730305,9780800730307,eng,255,20,2,3/1/1992,Fleming H. Revell Company +26190,Love and Saint Augustine,Hannah Arendt/Joanna Vecchiarelli Scott/Judith Chelius Stark,3.91,0226025977,9780226025971,eng,254,95,10,4/26/1998,University of Chicago Press +26197,Healthy Cooking for IBS: 100 Delicious Recipes to Keep You Symptom-Free,Sophie Braimbridge/Erica Jankovich,2.62,1584794941,9781584794943,eng,144,2,1,4/1/2006,Harry N. Abrams +26206,Me vs. Me,Sarah Mlynowski,3.67,0373895887,9780373895885,eng,311,1725,120,7/25/2006,Red Dress Ink +26207,Spells & Sleeping Bags (Magic in Manhattan #3),Sarah Mlynowski,4.05,0385733879,9780385733878,eng,324,4370,221,6/26/2007,Delacorte Books for Young Readers +26210,Bras & Broomsticks (Magic in Manhattan #1),Sarah Mlynowski,3.73,0385731841,9780385731843,en-GB,310,8709,534,6/13/2006,Delacorte Press +26211,Monkey Business,Sarah Mlynowski,3.67,0778300854,9780778300854,eng,400,1,0,4/15/2005,Mira books +26212,Frogs & French Kisses (Magic in Manhattan #2),Sarah Mlynowski,3.97,0385731825,9780385731829,eng,288,4863,221,6/13/2006,Delacorte Press +26214,Big Anthony and the Magic Ring,Tomie dePaola,4.10,0156119072,9780156119078,en-US,32,462,35,4/25/1979,HMH Books for Young Readers +26216,Patrick: Patron Saint of Ireland,Tomie dePaola,4.08,0823410773,9780823410774,en-US,30,89,5,1/1/1992,Holiday House +26226,The Rattle-Rat,Janwillem van de Wetering,3.97,1569471037,9781569471036,eng,293,174,8,7/1/2003,Soho Press +26229,Robert Van Gulik: His Life His Work,Janwillem van de Wetering/Arthur P. Yin,3.57,156947124X,9781569471241,eng,149,39,5,7/1/1998,Soho Press +26236,Revolutionary Girl Utena Vol. 2: To Plant,Chiho Saito,4.00,1591162068,9781591162063,eng,200,1292,20,3/10/2004,VIZ Media LLC +26237,Revolutionary Girl Utena Vol. 3: To Sprout,Chiho Saito/Be-Pas,4.05,1591162076,9781591162070,eng,200,1153,16,2/4/2004,VIZ Media LLC +26239,Revolutionary Girl Utena Vol. 4: To Bud,Chiho Saito,4.06,1591160685,9781591160687,eng,192,1060,18,10/1/2003,VIZ Media LLC +26240,Revolutionary Girl Utena Vol. 5: To Blossom,Chiho Saito/Lillian Olsen/Be-Papas,4.02,1591161452,9781591161455,eng,168,1017,33,3/3/2004,VIZ Media LLC +26252,The Enneads,Plotinus/Stephen MacKenna/John M. Dillon,4.06,014044520X,9780140445206,eng,688,2481,35,6/27/1991,Penguin Classics +26253,Ennead IV (Plotinus IV),Plotinus/A.H. Armstrong,4.52,0674994884,9780674994881,eng,464,27,3,1/1/1984,Loeb Classical Library 443 +26254,Anaximander Heraclitus Parmenides Plotinus Lao-Tzu Nagarjuna (from Great Philosophers 2),Karl Jaspers/Ralph Manheim,3.92,0156075008,9780156075008,eng,138,42,4,10/23/1974,Harvest Books/Harcourt +26274,The Cultural Cold War: The CIA and the World of Arts and Letters,Frances Stonor Saunders,4.01,1565846648,9781565846647,eng,509,13,1,4/1/2001,The New Press +26289,Trust Fund,Stephen W. Frey,3.72,0345428307,9780345428301,eng,358,607,22,1/2/2002,Fawcett Books +26292,The Chairman (Christian Gillette #1),Stephen W. Frey,3.98,0345457617,9780345457615,eng,415,2173,89,12/27/2005,Fawcett Books +26296,The Mystery of the Ancient Pyramid: Cairo Egypt (Around the World in 80 Mysteries),Carole Marsh,3.61,0635034700,9780635034700,eng,128,27,4,3/6/2006,Gallopade International +26298,The Mystery in the Rocky Mountains,Carole Marsh,3.73,063502389X,0710430023622,eng,145,34,6,4/1/2001,Carole Marsh Mysteries +26301,The Mystery on the Mighty Mississippi,Carole Marsh,3.50,0635023911,0710430023639,eng,142,26,1,4/1/2001,Carole Marsh Mysteries +26314,Medal of Honor: Rising Sun (Prima's Official Strategy Guide),Mark Cohen,3.67,0761542914,9780761542919,eng,96,3,1,11/18/2003,Prima Games +26321,The Elder Scrolls IV: Oblivion -- Revised & Expanded (Xbox360 PC) (Prima Official Game Guide),Peter Olafson,4.29,076155548X,9780761555483,eng,432,57,4,9/10/2007,Prima Games +26324,Social Intelligence: The New Science of Human Relationships,Daniel Goleman,3.98,0553803522,9780553803525,eng,403,10327,318,9/26/2006,Bantam Books +26327,The Power of Truth: A Leading with Emotional Intelligence Conversation with Warren Bennis,Daniel Goleman/Warren Bennis,3.82,1593979746,9781593979744,eng,0,11,2,11/14/2006,Macmillan Audio +26329,Emotional Intelligence: Why It Can Matter More Than IQ,Daniel Goleman,4.01,055380491X,9780553804911,eng,384,63501,1663,9/26/2006,Bantam +26330,Healing Emotions: Conversations with the Dalai Lama on Mindfulness Emotions and Health,Daniel Goleman,4.04,1590300106,9781590300107,eng,288,302,8,1/14/2003,Shambhala +26344,The MacMillan Bible Atlas,Yohanan Aharoni/Michael Avi-Yonah,4.32,0025006053,9780025006058,en-US,215,14,2,3/17/1993,Webster's New World +26348,Paris 1919: Six Months that Changed the World,Margaret MacMillan/Richard Holbrooke,4.08,0375760520,9780375760525,eng,570,9679,640,9/9/2003,Random House Trade +26384,Scripta Minora: Hiero/Agesilaus/Constitution of the Lacedaemonians/Ways & Means/Cavalry Commander/Art of Horsemanship/On Hunting/Constitution of the Athenians,Xenophon/Edgar C. Marchant/G.W. Bowersock,4.00,0674992024,9780674992023,en-US,576,19,2,1/1/1925,Harvard University Press +26401,Primary English: Knowledge and Understanding,Jane Medwell/David Wray,3.87,1844450937,9781844450930,eng,218,1,0,4/1/2007,Learning Matters +26407,The Philosophy of Hegel,Georg Wilhelm Friedrich Hegel/Carl Joachim Friedrich,3.37,0075536552,9780075536550,eng,552,15,4,2/1/1965,McGraw-Hill +26410,Wissenschaft der Logik: Die Lehre Vom Begriff (1816),Georg Wilhelm Friedrich Hegel,4.78,3787307672,9783787307678,ger,337,0,0,1/1/1994,F. Meiner +26415,Existentialism from Dostoevsky to Sartre,Walter Kaufmann,4.08,0452009308,9780452009301,en-US,384,5011,88,3/1/1975,Plume +26417,Anti-Semite and Jew: An Exploration of the Etiology of Hate,Jean-Paul Sartre/Michael Walzer/George J. Becker,3.80,0805210474,9780805210477,eng,176,631,60,4/25/1995,Schocken +26420,CSS: The Definitive Guide,Eric A. Meyer,4.00,0596527330,9780596527334,en-US,518,961,29,11/1/2006,O'Reilly Media +26422,Fullmetal Alchemist Vol. 14 (Fullmetal Alchemist #14),Hiromu Arakawa/Akira Watanabe,4.59,142151379X,9781421513799,eng,192,8634,118,8/14/2007,VIZ Media LLC +26425,Fullmetal Alchemist: The Abducted Alchemist (Fullmetal Alchemist #2),Makoto Inoue/Hiromu Arakawa/Alexander O. Smith/Rich Amtower,4.57,1421502224,9781421502229,eng,240,2779,19,1/10/2006,VIZ Media LLC +26426,Fullmetal Alchemist Vol. 12 (Fullmetal Alchemist #12),Hiromu Arakawa/Akira Watanabe,4.60,1421508397,9781421508399,eng,192,7480,119,3/20/2007,VIZ Media LLC +26436,Programming in C,Stephen G. Kochan,3.96,0672326663,0752063326664,eng,576,222,16,7/8/2004,Sams +26438,Java: An Introduction to Problem Solving and Programming,Walter J. Savitch,3.85,0131492020,9780131492028,en-US,1060,26,1,12/1/2004,Prentice Hall +26439,Absolute C++,Walter J. Savitch,3.83,0321468937,9780321468932,eng,943,36,4,3/1/2007,Addison Wesley +26447,The Odyssey,Homer/Edward McCrorie/Richard P. Martin,3.76,0801882672,9780801882678,eng,472,57,2,8/23/2005,Johns Hopkins University Press +26448,The Odyssey (New Translations from Antiquity),Homer/Edward McCrorie/Richard P. Martin,3.76,0801868548,9780801868542,grc,472,6,1,4/8/2004,Johns Hopkins University Press +26449,Bulfinch's Mythology,Thomas Bulfinch/Richard P. Martin,4.10,0062700251,9780062700254,eng,768,66,7,12/24/1991,Collins Reference +26451,Teaching Reading Comprehension to Students with Learning Difficulties,Janette K. Klingner/Sharon R. Vaughn/Alison Boardman,3.79,1593854463,9781593854461,eng,178,23,1,4/12/2007,The Guilford Press +26470,Seven Gothic Tales,Isak Dinesen/Karen Blixen,3.93,0141187190,9780141187198,eng,368,85,12,10/31/2002,Penguin Classics +26471,Last Tales,Isak Dinesen/Karen Blixen,4.11,0679736409,9780679736400,eng,352,332,22,12/3/1991,Vintage +26472,Isak Dinesen: The Life of a Storyteller,Judith Thurman,4.06,0312135254,9780312135256,en-US,512,1041,53,10/15/1995,Picador +26474,Out of Africa / Shadows on the Grass,Isak Dinesen/Karen Blixen,4.24,0679724753,9780679724759,eng,462,9298,312,10/23/1989,Vintage +26475,Letters from Africa 1914-1931,Isak Dinesen/Karen Blixen/Frans Lasson/Anne Born,4.21,0226153118,9780226153117,eng,516,489,12,4/15/1984,University Of Chicago Press +26480,Witness,Karen Hesse,3.72,0439272009,9780439272001,eng,161,4667,703,3/1/2003,Scholastic Paperbacks +26481,The Cats In Krasinski Square,Karen Hesse/Wendy Watson,4.13,0439435404,9780439435406,eng,32,955,195,8/1/2004,Scholastic Press +26482,The Music of Dolphins,Karen Hesse,3.82,0590897985,9780590897983,eng,181,6015,566,2/1/1998,Scholastic Paperbacks +26503,Verbatim: From the bawdy to the sublime the best writing on language for word lovers grammar mavens and armchair linguists,Erin McKean,3.59,015601209X,9780156012096,eng,372,124,17,10/17/2001,Mariner Books +26506,Sisters,Danielle Steel,3.85,0385340222,9780385340229,eng,341,15495,1037,2/13/2007,Delacorte Press +26511,The Long Road Home,Danielle Steel,4.00,0552145025,9780552145022,en-GB,476,7407,297,3/4/1999,Corgi +26522,Three Plays of Euripides: Alcestis/Medea/The Bacchae,Euripides/Paul Roche,3.97,0393093123,9780393093124,eng,144,243,23,2/17/1974,W.W. Norton & Company +26525,Leadership Challenge,James M. Kouzes,4.05,0787983500,9780787983505,eng,50,0,0,12/1/2004,Pfeiffer & Company +26571,The Kestrel (Westmark #2),Lloyd Alexander,3.98,0141310693,9780141310695,eng,244,2742,104,6/10/2002,Firebird Books +26573,The God in the Moon (Age of Conan: Hyborian Adventures: A Soldier's Quest #1),Richard A. Knaak,3.74,0441014224,9780441014224,en-GB,297,59,4,7/25/2006,Ace Books +26575,Firedrake (Dragonrealm #1),Richard A. Knaak,3.78,0595092144,9780595092147,eng,276,638,39,6/1/2000,Backinprint.com +26576,Night of Blood (Dragonlance: The Minotaur Wars #1),Richard A. Knaak/Margaret Weis,3.91,0786931965,9780786931965,eng,372,1307,22,2/1/2004,Wizards of the Coast +26578,The Eye of Charon (Age of Conan: Hyborian Adventures: A Soldier's Quest #2),Richard A. Knaak,3.91,0441014453,9780441014453,en-GB,288,43,4,9/26/2006,Ace +26579,Children of the Drake (Dragonrealm: Origins #2),Richard A. Knaak,3.88,059509208X,9780595092086,eng,292,167,8,5/1/2000,Backinprint.com +26581,Sleeping Beauty Trilogy (Sleeping Beauty #1-3),A.N. Roquelaure/Anne Rice,3.99,0452156610,9780452156616,eng,724,10891,230,5/1/1999,Plume +26583,Beauty's Punishment,A.N. Roquelaure/Anne Rice,3.62,0452266629,9780452266629,eng,233,426,30,6/1/1984,Plume +26586,The Land of the Dead (Tales from the Odyssey #2),Mary Pope Osborne/Homer/Troy Howell,3.97,0786809299,9780786809295,eng,112,400,32,9/1/2003,Little Brown Books for Young Readers +26587,The One-Eyed Giant (Tales from the Odyssey #1),Mary Pope Osborne/Homer/Troy Howell,3.88,0786809280,9780786809288,en-US,112,782,84,9/1/2003,Little Brown Books for Young Readers +26588,Tsunamis and Other Natural Disasters (Magic Tree House Research Guide #15),Mary Pope Osborne/Natalie Pope Boyce/Salvatore Murdocca,4.03,0375832211,9780375832215,en-GB,128,466,15,2/27/2007,Random House Books for Young Readers +26590,The Final Battle (Tales from the Odyssey #6),Mary Pope Osborne/Troy Howell,4.08,0786809949,9780786809943,en-US,112,263,17,7/1/2005,Little Brown Books for Young Readers +26591,Ancient Greece and the Olympics (Magic Tree House Research Guide #10),Mary Pope Osborne/Natalie Pope Boyce/Salvatore Murdocca,4.05,0375823786,9780375823787,eng,119,1073,30,6/8/2004,Random House Books for Young Readers +26592,Ancient Rome and Pompeii (Magic Tree House Research Guide #14),Mary Pope Osborne/Natalie Pope Boyce/Salvatore Murdocca,4.07,0375832203,9780375832208,eng,128,659,30,4/25/2006,Random House for Young Readers +26593,Haunted Castle on Hallows Eve (Magic Tree House #30),Mary Pope Osborne/Salvatore Murdocca,4.04,1400091055,9781400091058,eng,0,7,0,8/10/2004,Listening Library (Audio) +26595,Earthquake in the Early Morning (Magic Tree House #24),Mary Pope Osborne/Salvatore Murdocca,3.94,067989070X,9780679890706,eng,96,6816,227,6/15/2010,Random House for Young Readers +26596,E.E. Cummings: Complete Poems 1904-1962 (Revised Corrected and Expanded Edition),E.E. Cummings/George J. Firmage,4.35,0871401525,9780871401526,eng,1136,19542,184,4/17/1994,Liveright/W.W. Norton & Company Inc. +26599,Selected Poems,E.E. Cummings/Richard S. Kennedy,4.22,0871401541,9780871401540,eng,208,12438,264,8/17/2007,Liveright +26603,Tulips & Chimneys,E.E. Cummings/Richard S. Kennedy,4.38,0871401657,9780871401656,eng,208,1206,49,8/17/1996,Liveright Publishing Corp. +26638,Kokopelli: The Magic Mirth and Mischief of an Ancient Symbol,Dennis Slifer/R. Carlos Nakai,3.69,1423601742,9781423601746,eng,240,19,4,4/5/2007,Gibbs Smith +26653,The Coal Tattoo,Silas House,4.04,0345480058,9780345480057,eng,368,1789,144,8/30/2005,Ballantine Books +26654,Clay's Quilt,Silas House,3.95,0345450698,9780345450692,eng,320,2685,235,2/26/2002,Ballantine Books +26666,Things Pondered: From the Heart of a Lesser Woman,Beth Moore,4.09,0805427317,9780805427318,en-US,160,283,24,4/1/2004,B Books +26670,Scholastic Success with 4th Grade Workbook,Terry Cooper,4.12,0439569729,9780439569729,en-US,416,8,0,6/1/2003,Teaching Resources +26673,The Punisher Vol. 6: Confederacy of Dunces,Garth Ennis,4.00,0785113444,9780785113447,eng,144,289,11,4/1/2004,Marvel Comics Group +26689,Thunderbird Falls (Walker Papers #2),C.E. Murphy,3.85,0373802358,9780373802357,eng,408,5729,256,4/25/2006,Luna Books +26690,Coyote Dreams (Walker Papers #3),C.E. Murphy,4.00,0373802722,9780373802722,eng,408,5810,200,4/24/2007,Luna Books +26695,Savage Anamoly: The Power of Spinoza’s Metaphysics and Politics,Antonio Negri/Michael Hardt,3.96,0816636702,9780816636709,eng,304,49,3,12/1/1999,Univ Of Minnesota Press +26696,Time for Revolution,Antonio Negri/Matteo Mandarini,3.70,0826479316,9780826479310,eng,271,45,2,5/1/2005,Bloomsbury Academic +26697,The Philosophy of Antonio Negri Volume One: Resistance in Practice,Timothy S. Murphy/Abdul-Karim Mustapha,4.12,0745323375,9780745323374,eng,265,8,1,7/20/2005,Pluto Press +26722,Act of Treason (Mitch Rapp #9),Vince Flynn,4.29,0743270371,9780743270373,en-US,432,38757,826,10/10/2006,Atria Books +26723,Act of Treason (Mitch Rapp #9),Vince Flynn,4.29,1416542264,9781416542261,eng,467,768,47,8/28/2007,Pocket Books +26725,Act of Treason (Mitch Rapp #9),Vince Flynn,4.29,1585479004,9781585479009,eng,462,10,1,1/1/2007,Center Point +26738,President Dad Volume 2,Ju-Yeon Rhim,3.49,1595322353,9781595322357,en-US,168,73,1,3/8/2005,TokyoPop +26748,Game of Shadows: Barry Bonds BALCO and the Steroids Scandal that Rocked Professional Sports,Mark Fainaru-Wada/Lance Williams,3.81,1592402682,9781592402687,en-US,348,165,24,3/1/2007,Avery +26759,Dark Water,Kōji Suzuki/Glynne Walley,3.61,1932234225,9781932234220,eng,279,2433,146,6/6/2006,Vertical +26766,Dark Water's Embrace (Mictlan #1),Stephen Leigh,3.77,0380794780,9780380794782,eng,331,78,10,3/1/1998,Harper Voyager +26768,In Dark Waters,Mary Burton,3.81,0373274483,9780373274482,eng,249,95,10,6/28/2005,Silhouette Books +26779,Oswald Chambers Abandoned to God: The Life Story of the Author of My Utmost for His Highest,David McCasland/Oswald Chambers,4.45,1572930500,9781572930506,eng,352,1372,87,9/1/1998,Our Daily Bread Publishing +26780,Mandie and the Abandoned Mine (Mandie #8),Lois Gladys Leppard,3.96,0871239329,9780871239327,eng,160,1369,17,5/1/1987,Bethany House Publishers +26784,Abandoned Prayers: The Incredible True Story of Murder Obsession and Amish Secrets,Gregg Olsen,3.79,0312982011,9780312982010,eng,399,1458,98,6/16/2003,St. Martin's True Crime +26800,C++ Programmer's Notebook,Jim Keogh/John Shapley Gray,3.00,0130887013,9780130887016,eng,528,3,0,8/16/2001,Prentice Hall PTR +26805,The Sibley Field Guide to Birds of Western North America,David Allen Sibley,4.69,0679451218,9780679451211,en-US,473,730,36,4/29/2003,Alfred A. Knopf +26821,The National Geographic Society: 100 Years of Adventure & Discovery,C.D.B. Bryan,4.11,0810982196,9780810982192,en-US,528,10,2,9/1/2001,Abradale Books/Harry N. Abrams +26827,Park Profiles: Grand Canyon Country (Park Profiles),National Geographic Society,4.10,0792270320,9780792270324,eng,200,10,1,1/19/2010,National Geographic +26829,Canada's Incredible Coasts,Donald J. Crump/William R. Gray,3.71,0870448293,9780870448294,eng,199,7,0,11/1/1993,National Geographic Society +26832,Shout Out Loud! 2,Satosumi Takaguchi,3.95,1598163175,9781598163179,eng,194,91,2,8/1/2006,Blu +26833,Shout Out Loud! 5,Satosumi Takaguchi,3.93,1598163205,9781598163209,en-GB,192,83,6,10/1/2007,Blu +26835,Can't Win With You 1,Satosumi Takaguchi/Yukine Honami,3.57,1569708126,9781569708125,eng,176,77,3,8/15/2007,Digital Manga Publishing +26836,叫んでやるぜ! (1) (あすかコミックスCL-DX),Satosumi Takaguchi/Satosumi Takaguchi,3.68,4048526456,9784048526456,jpn,165,2,0,2/1/1996,角川書店 (Kadokawa Shoten) +26839,叫んでやるぜ! (2) (ASUKA COMICS CL-DX),Satosumi Takaguchi/Satosumi Takaguchi,3.95,4048527851,9784048527859,jpn,178,2,0,3/1/1997,角川書店 (Kadokawa Shoten) +26841,Soups,Norman Kolpas/Allan Rosenberg/Chuck Williams/Laurie Wertz,3.88,0783502508,9780783502502,eng,108,17,2,5/24/1999,Time-Life Books +26842,Pies and Tarts,Chuck Williams/Laurie Wertz/John Phillip Carroll,3.82,0783502001,9780783502007,eng,108,18,2,5/24/1999,Time Life Medical +26853,The Fate of Reason: German Philosophy from Kant to Fichte,Frederick C. Beiser,4.52,067429503X,9780674295032,eng,410,118,8,10/15/1993,Harvard University Press +26860,Michael's Golden Rules,Deloris Jordan/Roslyn M. Jordan/Michael Jordan/Kadir Nelson,3.93,0689870167,9780689870163,eng,32,83,22,1/23/2007,Simon Schuster/Paula Wiseman Books +26871,Confessions of an Actor,Laurence Olivier,3.69,0671417010,9780671417017,eng,348,279,19,12/31/1982,Simon & Schuster +26904,For Lust of Knowing: The Orientalists and Their Enemies,Robert Irwin,3.72,0140289232,9780140289237,eng,304,10,0,1/25/2007,Penguin +26908,The Arabian Nightmare,Robert Irwin,3.84,1585672173,9781585672172,eng,282,411,32,4/30/2002,Harry N. Abrams +26913,The Plot Against America,Philip Roth,3.77,0224074539,9780224074537,eng,391,337,47,9/30/2004,Jonathan Cape +26919,Continental Drift,Russell Banks,3.87,0060854944,9780060854942,eng,408,2824,299,3/13/2007,Harper Perennial Modern Classics +26920,The Darling,Russell Banks,3.78,0060957352,9780060957353,en-US,400,1986,246,10/11/2005,Harper Perennial +26922,Affliction,Russell Banks/Pierre Furlan,3.99,2742722807,9782742722808,fre,486,63,1,12/29/1999,Babel +26930,Success Stories,Russell Banks,3.72,0060927194,9780060927196,en-US,192,155,11,4/26/1996,Harper Perennial +26931,Cloudsplitter,Russell Banks,3.91,0060930861,9780060930868,eng,758,3618,425,1/27/1999,Harper Perennial +26934,A Multitude of Sins,Richard Ford,3.75,037572656X,9780375726569,eng,304,1183,74,2/4/2003,Vintage +26950,The Custom of the Country,Edith Wharton/Linda Wagner-Martin,4.03,0143039709,9780143039709,eng,370,7717,742,9/28/2006,Penguin Classics +26968,Quicksand,Nella Larsen,3.68,0486451402,9780486451404,eng,125,181,29,9/15/2006,Dover Publications +26973,Their Eyes Were Watching God,Zora Neale Hurston/Ruby Dee,3.91,0060776536,9780060776534,en-US,7,421,99,11/23/2004,Caedmon +26979,Novels and Stories,Zora Neale Hurston/Cheryl A. Wall,4.37,0940450836,9780940450837,eng,1054,564,30,2/1/1995,Library of America +26994,Plato on Knowledge and Reality,Nicholas P. White,3.67,0915144220,9780915144228,eng,272,6,0,6/15/1976,Hackett Publishing Company Inc. +26996,A Companion to Plato's Republic,Nicholas P. White,3.67,0915144921,9780915144921,eng,288,25,0,5/1/1979,Hackett Publishing Company Inc. +26999,Something Rotten (Thursday Next #4),Jasper Fforde,4.16,014303541X,9780143035411,eng,385,27382,1138,7/26/2005,Penguin Books +27000,Lost in a Good Book (Thursday Next #2),Jasper Fforde,4.14,0142004030,9780142004036,eng,399,42454,2156,2/4/2004,Penguin Books +27001,The Well of Lost Plots (Thursday Next #3),Jasper Fforde,4.10,0143034359,9780143034353,eng,375,31540,1434,8/3/2004,Penguin Books +27002,First Among Sequels (Thursday Next #5),Jasper Fforde,4.02,0670038717,9780670038718,eng,363,20630,1310,7/24/2007,Viking Adult +27003,The Eyre Affair (Thursday Next #1),Jasper Fforde,3.91,0142001805,9780142001806,eng,374,97343,8068,2/25/2003,Penguin Books +27005,The Eyre Affair (Thursday Next #1),Jasper Fforde,3.91,034073356X,9780340733561,eng,373,3689,566,7/19/2001,Hodder and Stoughton +27006,Chop Shop (Bug Man #2),Tim Downs,4.22,1582294011,9781582294018,eng,352,923,75,7/1/2004,Howard Books +27009,Shoofly Pie (Bug Man #1),Tim Downs,4.18,1582293082,9781582293080,eng,371,1425,130,7/1/2003,Howard Books +27023,RG Veda Vol. 01,CLAMP,3.72,1595324844,9781595324849,eng,197,820,31,4/12/2005,Tokyopop +27036,Augustine,Henry Chadwick,3.71,0192875345,9780192875341,eng,128,14,3,6/19/1986,Oxford University Press USA +27038,The Church in Ancient Society: From Galilee to Gregory the Great (History of the Christian Church),Henry Chadwick,4.19,0199265771,9780199265770,en-GB,744,15,1,7/3/2003,OUP Oxford +27039,East and West: The Making of a Rift in the Church from Apostolic Times until the Council of Florence (History of the Christian Church),Henry Chadwick,3.88,0199280169,9780199280162,en-US,316,4,1,5/12/2005,OUP Oxford +27049,Satan in Goray,Isaac Bashevis Singer/Jacob Sloan/Ruth R. Wisse,3.85,0374524793,9780374524791,eng,288,853,54,7/31/1996,Farrar Straus and Giroux +27051,Lights Out,Peter Abrahams,3.65,0345445783,9780345445780,eng,352,208,16,6/25/2002,Fawcett Books +27052,Behind the Curtain (Echo Falls #2),Peter Abrahams,3.90,0060737042,9780060737047,en-US,352,30,4,4/25/2006,HarperCollins +27054,Red Message,Peter Abrahams,3.12,0380898039,9780380898039,eng,320,8,2,4/1/1986,Avon Books +27059,Her Smoke Rose Up Forever,James Tiptree Jr.,4.21,1892391201,9781892391209,eng,508,3190,325,11/1/2004,Tachyon Publications +27066,The Starry Rift,James Tiptree Jr.,3.81,0312890214,9780312890216,eng,250,232,25,9/1/1994,Orb Books +27091,Teaching to Transgress: Education as the Practice of Freedom,bell hooks,4.37,0415908086,9780415908085,eng,216,5162,325,9/14/1994,Routledge +27092,Desde mi cielo,Alice Sebold/Aurora Echevarría,3.81,0307209431,9780307209436,spa,336,28,3,10/12/2004,Debolsillo +27118,The Roman Empire,Colin Wells,3.58,0674777700,9780674777705,en-US,384,110,7,8/11/1995,Harvard University Press +27126,Bitter Is the New Black: Confessions of a Condescending Egomaniacal Self-Centered Smartass Or Why You Should Never Carry A Prada Bag to the Unemployment Office,Jen Lancaster,3.90,0451217608,9780451217608,eng,400,44607,4114,3/7/2006,NAL +27149,Economics,Paul Krugman/Robin Wells,3.99,0716799561,9780716799566,eng,1088,120,5,4/6/2007,Worth Publishers +27150,Development Geography and Economic Theory,Paul Krugman,4.00,026261135X,9780262611350,eng,127,81,3,8/21/1997,MIT Press +27151,Pop Internationalism,Paul Krugman,3.68,0262611333,9780262611336,eng,221,310,16,2/24/1997,MIT Press +27167,An Unquiet Grave (Louis Kincaid #7),P.J. Parrish,4.13,0786016078,9780786016075,eng,384,614,68,2/1/2006,Pinnacle +27168,Island Of Bones (Louis Kincaid #5),P.J. Parrish,4.02,0786016051,9780786016051,eng,384,586,62,1/1/2004,Pinnacle +27170,Dead Of Winter (Louis Kincaid #2),P.J. Parrish,3.95,0786011890,9780786011896,eng,416,773,86,1/1/2001,Pinnacle +27171,Thicker Than Water (Louis Kincaid #4),P.J. Parrish,4.09,0786014202,9780786014200,eng,380,414,37,1/1/2003,Pinnacle +27189,Teleportation: From Star Trek to Tesla,Commander X/Tim R. Swartz,2.83,1892062437,9781892062437,eng,139,2,1,8/20/2012,Inner Light - Global Communications +27194,Pictures Showing What Happens on Each Page of Thomas Pynchon's Novel Gravity's Rainbow,Zak Smith/Steve Erickson,4.10,0977312798,9780977312795,en-GB,784,490,41,11/30/2006,Tin House Books +27200,Sailing the Wine-Dark Sea: Why the Greeks Matter,Thomas Cahill,3.77,0385495544,9780385495547,eng,352,2470,233,7/27/2004,Anchor +27204,The Gospel According to Luke,Anonymous/Thomas Cahill,4.64,0802136184,9780802136183,eng,81,169,17,10/29/1999,Grove Press +27208,The Third Policeman,Flann O'Brien/Denis Donoghue,4.01,156478214X,9781564782144,eng,200,12452,1179,3/1/1999,Dalkey Archive Press +27222,The Landmark Thucydides: A Comprehensive Guide to the Peloponnesian War,Thucydides/Robert B. Strassler/Richard Crawley/Victor Davis Hanson,3.90,0684827905,9780684827902,eng,713,1751,170,9/10/1998,Free Press +27236,Six Haunted Hairdos (The Hamlet Chronicles #2),Gregory Maguire/Elaine Clayton,3.53,0064407209,9780064407205,eng,176,92,7,8/18/1999,HarperCollins +27243,Dancing in the Flames: The Dark Goddess in the Transformation of Consciousness,Marion Woodman/Elinor Dickson,4.24,1570623139,9781570623134,eng,256,375,24,5/6/1997,Shambhala +27247,The Complete Book of Home Site and Office Security: Selecting Installing and Troubleshooting Systems and Devices,Bill Phillips,3.50,0071467440,9780071467445,eng,309,2,0,8/1/2006,McGraw-Hill Education +27252,Pope Joan,Donna Woolfolk Cross,4.08,0345416260,9780345416261,eng,422,56471,3809,6/9/2009,Ballantine Books (NY) +27253,Pope Joan: Translated & Adapted from the Greek,Emmanuel Rhoides/Lawrence Durrell,3.92,0720610656,9780720610659,eng,200,266,19,3/1/2000,Peter Owen Publishers +27266,Glass Houses (The Morganville Vampires #1),Rachel Caine,3.92,0451219945,9780451219947,eng,239,83997,3992,10/3/2006,NAL Jam +27269,The Glass House (Captain Lacey #3),Ashley Gardner,4.04,0425199436,9780425199435,eng,256,1123,62,12/7/2004,Berkley +27277,Glass House,Philip Johnson/Toshio Nakamura,4.00,1580931863,9781580931861,eng,256,14,2,5/10/2007,The Monacelli Press +27293,The Echo of Greece,Edith Hamilton,4.09,0393002314,9780393002317,eng,224,29,3,2/17/1964,W.W. Norton +27295,Three Greek Plays: Prometheus Bound/Agamemnon/The Trojan Women,Euripides/Aeschylus/Edith Hamilton,4.06,0393002039,9780393002034,en-US,240,77,13,11/28/1958,W.W. Norton & Company +27297,The Analects,Confucius/D.C. Lau,3.83,0140443487,9780140443486,eng,249,12131,319,9/27/1979,Penguin Books Ltd +27298,The Twentieth Wife (Taj Mahal Trilogy #1),Indu Sundaresan,4.04,0743428188,9780743428187,en-US,380,11380,1253,2/18/2003,Washington Square Press +27299,La Emperatriz tras el velo (Trilogía Taj Mahal #1),Indu Sundaresan/Alberto Coscarelli,4.04,8425337607,9788425337604,spa,382,2,1,4/30/2003,Grijalbo Mondadori Sa +27303,A History of God: The 4 000-Year Quest of Judaism Christianity and Islam,Karen Armstrong,3.87,0345384563,9780345384560,eng,496,1343,144,8/9/1994,Ballantine Books +27304,Buddha,Karen Armstrong,3.89,0143034367,9780143034360,eng,240,3783,286,9/28/2004,Penguin Books +27306,Islam: A Short History,Karen Armstrong,4.02,081296618X,9780812966183,eng,230,7660,448,8/6/2002,Modern Library +27308,The Spiral Staircase: My Climb Out of Darkness,Karen Armstrong,3.99,0385721277,9780385721271,eng,306,5755,575,2/22/2005,Anchor +27309,The Battle for God: A History of Fundamentalism,Karen Armstrong,3.93,0345391691,9780345391698,eng,480,5677,254,1/30/2001,Ballantine Books +27310,Muhammad: A Biography of the Prophet,Karen Armstrong,4.15,0062508865,9780062508867,eng,304,4978,258,9/10/1993,HarperOne +27313,The Analects of Confucius: A Philosophical Translation,Confucius/Henry Rosemont Jr./Roger T. Ames,3.83,0345434072,9780345434074,eng,352,180,16,9/7/1999,Ballantine Books +27315,Analects,Confucius/Edward Slingerland,3.83,0872206351,9780872206359,eng,312,115,17,9/15/2003,Hackett Publishing Company Inc. +27323,Hiroshima,John Hersey,3.97,0679721037,9780679721031,eng,152,52567,2358,3/4/1989,Vintage +27326,The Wall,John Hersey,4.28,0394756967,9780394756967,eng,640,1829,57,3/12/1988,Vintage Books +27333,Silent Spring,Rachel Carson/Linda Lear/Edward O. Wilson,3.97,0618249060,9780618249060,eng,378,30281,1694,10/22/2002,Mariner Books +27345,The House of Life: Rachel Carson at Work,Paul Brooks/Rachel Carson,3.95,0395517427,9780395517420,eng,350,10,1,10/18/1989,Mariner Books +27347,Under the Sea Wind (Nature Classic),Rachel Carson/Bob Hines,4.14,0140253807,9780140253801,eng,320,18,4,4/1/1996,Penguin +27356,Black Meets White,Justine Korman Fontes/Geoff Waring,3.50,0763619337,9780763619336,en-US,24,50,11,7/12/2005,Candlewick Press +27363,Back Bay (Peter Fallon #1),William Martin,3.91,0446363162,9780446363167,eng,532,1614,173,7/1/1992,Grand Central Publishing +27368,Letters from the Bay of Islands: The Story of Marianne Williams,Marianne Williams/Caroline Fitzgerald,3.72,0143019295,9780143019299,eng,270,24,2,1/1/2004,Penguin Books +27385,Since "Silent Spring",Frank Graham,3.78,0449231410,9780449231418,eng,0,1,0,6/12/1974,Fawcett +27397,A Civil Action,Jonathan Harr,3.97,0679772677,9780679772675,eng,512,13628,754,8/27/1996,Vintage +27398,The Lost Painting,Jonathan Harr,3.74,0375759867,9780375759864,en-US,320,24619,765,11/7/2006,Random House Trade Paperbacks +27399,The Lost Painting,Jonathan Harr,3.74,0375431535,9780375431531,eng,368,5,0,11/1/2005,Random House Large Print +27404,Gideon's Trumpet: How One Man a Poor Prisoner Took His Case to the Supreme Court-And Changed the Law of the United States,Anthony Lewis,3.91,0679723129,9780679723127,eng,288,2264,185,4/23/1989,Vintage +27410,The Library of Greek Mythology,Apollodorus/Robin Hard,3.98,0192839241,9780192839244,eng,336,1047,34,2/25/1999,Oxford University Press +27411,The Library 1 Books 1-3.9,Apollodorus/James George Frazer,3.93,0674991354,9780674991354,mul,464,21,2,1/1/1921,Harvard University Press (Cambridge MA)/Wm Heinemann Ltd. (London) +27413,The Library of Apollodorus: Gods and Heroes of the Greeks,Apollodorus/Selwyn Reginald Cudjoe/Leonard Baskin,3.98,0870232061,9780870232060,eng,311,11,1,9/1/1986,University of Massachusetts Press +27415,Apollodorus' Library and Hyginus' Myths: Two Handbooks of Greek Mythology,Apollodorus/Hyginus/R. Scott Smith/Stephen M. Trzaskoma,3.98,0872208206,9780872208209,eng,328,20,2,3/1/2007,Hackett Publ. Co Inc +27416,Mythographi Graeci 1: Apollodori Bibliotheca Apollodori epitoma Procli excerpta ex cycli epici carminibus Pediasmi libellus de duodecim Herculis...Graecorum et Romanorum Teubneriana,Apollodorus/Richard Wagner,0.00,3598715439,9783598715433,grc,335,0,0,7/15/1998,K.G. Saur Verlag +27418,Theogony / Works and Days,Hesiod/M.L. West,3.75,0192839411,9780192839411,eng,79,9276,163,5/13/1999,Oxford University Press +27419,The Works and Days/Theogony,Hesiod,3.75,1419188518,9781419188510,eng,48,3,0,6/17/2004,Kessinger Publishing +27420,Theogony/Works and Days/Shield,Hesiod/Apostolos N. Athanassakis,3.97,0801879841,9780801879845,eng,192,83,4,6/28/2004,Johns Hopkins University Press +27421,The Works and Days/Theogony/The Shield of Herakles,Hesiod/Richmond Lattimore,3.97,0472081616,9780472081615,eng,256,90,8,11/15/1991,University of Michigan Press +27422,The Poems,Hesiod/R.M. Frazer/Mary Sue Roniger,3.75,0806118466,9780806118468,eng,160,105,7,5/15/1983,University of Oklahoma Press +27423,Theogonia Opera et Dies Scutum Fragmenta Selecta (Classical Texts),Hesiod/Friedrich Solmsen/Reinholdo Merkelbach,4.06,0198140711,9780198140719,eng,282,9,1,9/13/1990,Clarendon Press +27424,Works of Hesiod and the Homeric Hymns,Hesiod/Daryl Hine,3.73,0226329658,9780226329659,eng,230,34,4,1/15/2005,University of Chicago Press +27425,The Georgics of Virgil,Virgil/David Ferry,3.85,0374530319,9780374530310,eng,224,85,12,5/2/2006,Farrar Straus & Giroux +27426,The Death of Virgil,Hermann Broch/Jean Starr Untermeyer,4.19,0679755489,9780679755487,eng,496,794,65,1/15/1995,Vintage +27427,The Eclogues of Virgil,Virgil/David Ferry,3.91,0374526966,9780374526962,eng,112,74,12,6/15/2000,Farrar Straus & Giroux +27428,The Art of the Personal Essay: An Anthology from the Classical Era to the Present,Phillip Lopate,4.19,0385422989,9780385422987,eng,777,48,4,1/1/1994,Anchor Books +27432,The Art of the Personal Essay: An Anthology from the Classical Era to the Present,Phillip Lopate,4.19,038542339X,9780385423397,eng,777,2136,108,1/15/1997,Anchor +27434,Waterfront: A Walk Around Manhattan,Phillip Lopate,3.71,0385497148,9780385497145,eng,450,254,34,5/10/2005,Anchor +27438,The DC Comics Encyclopedia,Scott Beatty/Robert Greenberger/Phil Jimenez/Daniel Wallace,4.29,075660592X,9780756605926,eng,352,125,6,10/4/2004,DK Publishing +27440,The Marvel Encyclopedia,Tom DeFalco/Peter Sanderson/Michael Teitelbaum/Daniel Wallace/Tom Brevoort/Andrew Darling,4.37,0756623588,9780756623586,eng,352,1049,43,10/16/2006,DK +27445,Reinventing Jesus: How Contemporary Skeptics Miss the Real Jesus and Mislead Popular Culture,J. Ed Komoszewski/Daniel B. Wallace/M. James Sawyer,4.20,082542982X,9780825429828,en-US,347,225,21,5/9/2006,Kregel Publications +27451,The Great Gatsby,F. Scott Fitzgerald/Matthew J. Bruccoli,3.91,0684801523,9780684801520,eng,216,9844,1050,6/1/1995,Scribner +27456,Daniel Deronda,George Eliot/Earl L. Dachslager/George Stade,3.84,1593082908,9781593082901,eng,784,206,47,1/30/2005,Barnes Noble Classics +27457,King Leopold's Ghost,Adam Hochschild,4.15,0618711678,9780618711673,eng,384,102,20,4/1/2006,Mariner Books +27473,The End of Days (The Earth Chronicles #7),Zecharia Sitchin,4.08,0061238236,9780061238239,eng,336,489,36,4/3/2007,William Morrow +27485,Mating in Captivity: Reconciling the Erotic and the Domestic,Esther Perel,4.15,0060753633,9780060753634,eng,272,10138,994,9/5/2006,Harper +27486,The Mating Mind: How Sexual Choice Shaped the Evolution of Human Nature,Geoffrey Miller,4.10,038549517X,9780385495172,eng,528,2144,89,4/17/2001,Anchor Books +27491,The Evolution Of Desire: Strategies of Human Mating,David M. Buss,4.08,046500802X,9780465008025,en-GB,354,1459,78,6/26/2003,Basic Books +27500,Middlesex,Jeffrey Eugenides,4.00,0965045641,9780965045643,eng,529,1081,228,9/4/2002,Farrar Straus and Giroux +27503,The Liberated Bride,A.B. Yehoshua/Hillel Halkin,3.77,0156030160,9780156030168,en-US,576,457,44,10/4/2004,Mariner Books +27507,Plan of Attack,Bob Woodward/Alice Mayhew,3.68,0743255488,9780743255486,eng,480,4603,121,10/11/2004,Simon & Schuster +27511,The Commanders,Bob Woodward,3.71,0743234758,9780743234757,eng,400,527,26,1/1/2002,Simon & Schuster +27514,Veil: The Secret Wars of the CIA 1981-1987,Bob Woodward,3.67,0743274032,9780743274036,eng,592,758,48,7/1/2005,Simon & Schuster +27515,Shadow: Five Presidents and the Legacy of Watergate,Bob Woodward,3.72,0684852632,9780684852638,eng,608,1035,42,6/6/2000,Simon & Schuster +27516,The Brethren: Inside the Supreme Court,Bob Woodward/Scott Armstrong,4.11,0743274024,9780743274029,eng,592,3841,189,7/1/2005,Simon & Schuster +27520,Katy and the Big Snow (Book & Cassette),Virginia Lee Burton,4.24,0395959918,9780395959916,eng,40,0,0,8/30/1999,Houghton Mifflin Harcourt +27523,Left Behind (Left Behind #1),Tim LaHaye/Jerry B. Jenkins,3.83,0842342702,9780842342704,eng,342,189090,3293,9/1/2000,Tyndale House Publishers +27525,Armageddon: The Cosmic Battle of the Ages (Left Behind #11),Tim LaHaye/Jerry B. Jenkins,4.03,0842332367,9780842332361,eng,395,15869,248,11/18/2003,Tyndale House Publishers +27526,Desecration (Left Behind #9),Tim LaHaye/Jerry B. Jenkins,4.01,0842332294,9780842332293,eng,432,21603,261,5/20/2002,Tyndale House Publishers +27528,Nicolae (Left Behind #3),Tim LaHaye/Jerry B. Jenkins,3.96,078622469X,9780786224692,eng,530,30129,566,12/3/2005,Thorndike Press +27533,Banker to the Poor: Micro-Lending and the Battle Against World Poverty,Muhammad Yunus/Alan Jolis,4.09,1586481983,9781586481988,eng,289,7776,737,10/16/2003,PublicAffairs +27537,Working with Emotional Intelligence,Daniel Goleman,3.81,0553378589,9780553378580,eng,400,3265,187,1/4/2000,Bantam +27539,On Intelligence,Jeff Hawkins/Sandra Blakeslee,4.12,0805078533,9780805078534,eng,261,5347,396,8/1/2005,St. Martin's Griffin +27540,The Emotional Intelligence Quick Book: Everything You Need to Know to Put Your EQ to Work,Travis Bradberry/Jean Greaves/Patrick Lencioni,3.52,0743273265,9780743273268,en-US,185,708,68,6/7/2005,Touchstone +27541,Financial Intelligence: A Manager's Guide to Knowing What the Numbers Really Mean,Karen Berman/Joe Knight/John Case,4.12,1591397642,9781591397649,eng,272,1870,92,1/1/2006,Harvard Business Review Press +27543,Artificial Intelligence: A Modern Approach,Stuart Russell/Peter Norvig,4.17,0137903952,9780137903955,eng,1132,2689,79,12/20/2002,Prentice Hall +27548,Most Likely to Succeed at Work: How Work Is Just Like High School -- Crib Notes for Getting Along and Getting Ahead Amidst Bullies Teachers' Pets Cheerleaders and Other Members of the "Class",Wilma Davidson/Jack Dougherty,3.45,0312317085,9780312317089,eng,224,11,1,6/5/2003,St. Martin's Press +27550,Walking with the Wind: A Memoir of the Movement,John Lewis/Michael D'Orso,4.49,0156007088,9780156007085,en-US,496,2052,253,10/18/1999,Mariner Books +27557,Jackie After Jack: Portrait of the Lady,Christopher Andersen/Christopher Andersen,3.95,0446607436,9780446607438,eng,592,373,27,3/1/1999,Grand Central Publishing +27566,To Battle the Gods (Jalav Amazon Warrior #5),Sharon Green,4.07,0886771285,9780886771287,eng,446,87,1,5/6/1986,DAW +27574,A Tale of Love and Darkness,Amos Oz/Nicholas de Lange,4.22,015603252X,9780156032520,eng,560,5325,520,11/1/2005,Harvest / Harcourt +27577,What Went Wrong? The Clash Between Islam & Modernity in the Middle East,Bernard Lewis,3.49,0060516054,9780060516055,eng,186,2474,257,1/7/2003,Harper Perennial +27578,Not Even Wrong: The Failure of String Theory and the Search for Unity in Physical Law,Peter Woit,3.93,0465092756,9780465092758,eng,291,1495,52,9/4/2006,Basic Books +27579,Boy Were We Wrong About Dinosaurs!,Kathleen V. Kudlinski/S.D. Schindler,3.93,0525469788,9780525469780,en-US,32,254,73,9/22/2005,Dutton Books for Young Readers +27580,There Is Nothing Wrong with You: Going Beyond Self-Hate,Cheri Huber/June Shiver,4.18,0971030901,9780971030909,eng,239,1623,101,10/1/2001,Keep It Simple Books +27582,Dead Wrong (Joanna Brady #12),J.A. Jance,4.04,0060540907,9780060540906,eng,368,4163,220,7/25/2006,William Morrow +27584,Sixty Million Frenchmen Can't Be Wrong,Jean-Benoît Nadeau/Julie Barlow,3.74,1402200455,9781402200458,eng,351,2164,212,5/1/2003,Sourcebooks +27585,The Perfect Wrong Note: Learning to Trust Your Musical Self,William Westney,4.24,1574671456,9781574671452,eng,239,191,20,6/1/2006,Hal Leonard Pub Corp +27586,In the Footsteps of Mr. Kurtz: Living on the Brink of Disaster in Mobutu's Congo,Michela Wrong,3.99,0060934433,9780060934439,eng,338,2387,115,5/28/2002,Harper Perennial +27588,Acts of Faith,Philip Caputo,3.94,0375725970,9780375725975,eng,688,1617,231,5/9/2006,Vintage +27590,Simple Acts of Faith: Heartwarming Stories of One Life Touching Another,Margaret Feinberg/Norman Rockwell,4.36,0736910735,9780736910736,en-US,48,14,3,7/1/2003,Harvest House Publishers +27599,The Cross From A Distance: Atonement In Mark's Gospel,Peter G. Bolt,3.89,083082619X,9780830826193,eng,213,50,11,12/9/2004,IVP Academic +27601,Cults in Our Midst: The Continuing Fight Against Their Hidden Menace,Margaret Thaler Singer/Robert Jay Lifton,3.95,0787967416,9780787967413,eng,432,196,25,4/11/2003,Jossey-Bass +27607,Mortals,Norman Rush,3.74,0679737111,9780679737117,en-US,736,469,57,7/13/2004,Vintage +27609,Whites,Norman Rush,3.77,0679738169,9780679738169,eng,160,382,42,9/1/1992,Vintage +27618,Hasta que te encuentre,John Irving/Carlos Milla Soler,3.63,8483103311,9788483103319,spa,1024,28,3,5/1/2006,TusQuets +27624,Howards End,E.M. Forster/Benjamin DeMott/Regina Marler,3.96,0451530462,9780451530462,eng,312,104,13,11/6/2007,Signet +27626,Women Cats: The History of a Love Affair,Michelle Lovric/Lisa Pentreath,4.23,1556525133,9781556525131,eng,66,13,1,9/1/2003,Chicago Review Press +27627,EULIS! The History of Love,Paschal Beverly Randolph,3.85,0766184153,9780766184152,eng,144,9,0,3/5/2004,Kessinger Publishing +27647,Secretos De Familia,Julia Glass,3.57,8496525031,9788496525030,spa,528,0,1,11/1/2006,Puzzle-Roca +27652,Accidental Empires,Robert X. Cringely,4.01,0887308554,9780887308550,eng,384,1570,63,9/13/1996,Harper Business +27660,The Complete ACOA Sourcebook: Adult Children of Alcoholics at Home at Work and in Love,Janet Geringer Woititz/Robert J. Ackerman,4.09,1558749608,9781558749603,en-US,500,152,12,3/8/2002,Health Communications Inc +27668,Bury the Chains,Adam Hochschild,4.28,0618619070,9780618619078,eng,496,1342,178,2/10/2006,Mariner Books +27669,Bury the Chains,Adam Hochschild,4.28,0333904915,9780333904916,eng,467,13,1,3/18/2005,MacMillan +27674,On Christian Belief (Works of Saint Augustine),Augustine of Hippo/Boniface Ramsey/Michael Fiedrowicz,4.08,1565482344,9781565482340,eng,372,12,1,12/1/2005,New City Press +27689,Mary Stewart's Merlin Trilogy (Arthurian Saga #1-3),Mary Stewart,4.39,0688003478,9780688003470,eng,928,4146,175,9/7/2004,Harper Voyager +27690,Touch Not the Cat,Mary Stewart,3.91,0060823720,9780060823726,eng,372,5029,282,11/29/2005,HarperTorch +27691,The Gabriel Hounds,Mary Stewart,3.92,0061145394,9780061145391,eng,322,3629,145,11/28/2006,HarperTorch +27692,The Wicked Day (Arthurian Saga #4),Mary Stewart,4.09,0060548282,9780060548285,eng,417,10055,244,5/1/2003,Eos +27693,The Moonspinners,Mary Stewart,4.03,0060502959,9780060502959,eng,400,6019,397,11/25/2003,HarperTorch +27694,This Rough Magic,Mary Stewart,4.05,0060747471,9780060747473,eng,373,5153,327,11/30/2004,HarperTorch +27695,Nine Coaches Waiting,Mary Stewart/Sandra Brown,4.03,1556526180,9781556526183,eng,342,10640,905,5/1/2006,Chicago Review Press +27696,Airs Above the Ground,Mary Stewart,4.05,006074748X,9780060747480,eng,384,4615,255,11/30/2004,HarperTorch +27698,Madam Will You Talk?,Mary Stewart,4.05,0060093560,9780060093563,eng,360,4460,302,11/25/2003,HarperTorch +27719,The Night of Wishes,Michael Ende/Heike Schwarzbauer/Rick Takvorian/Regina Kehn/Regina Jehn,4.12,0374455031,9780374455033,eng,216,3014,56,4/17/1995,Farrar Straus and Giroux (BYR) +27724,Mirror in the Mirror,Michael Ende/J. Maxwell Brownjohn,4.14,067080682X,9780670806829,eng,224,74,5,6/5/1986,Viking UK +27727,The Greek's Royal Mistress (Princess Brides #2),Jane Porter,3.69,0373124244,9780373124244,eng,192,167,14,9/24/2004,Harlequin Presents +27737,La Cantatrice chauve / La Leçon,Eugène Ionesco,3.90,2070362361,9782070362363,fre,150,6398,75,10/26/1972,Gallimard +27747,Death of a Perfect Wife (Hamish Macbeth #4),M.C. Beaton,3.81,0446614734,9780446614733,eng,175,4958,285,7/1/2006,Grand Central Publishing +27763,Cold Sleep (Cold Series #1),Narise Konohara/Nanao Saikawa/Douglas W. Dlin,3.73,1569708878,9781569708873,eng,226,278,14,8/9/2006,Digital Manga Publishing +27766,The Restless Sleep: Inside New York City's Cold Case Squad,Stacy Horn,3.49,0143037293,9780143037293,eng,336,331,42,7/25/2006,Penguin Books +27769,L'Étranger,Albert Camus,3.98,207030602X,9782070306022,fre,207,688,50,3/1/2005,Editions Gallimard +27776,La caída,Albert Camus/Manuel de Lope,4.04,8420637017,9788420637013,spa,128,233,20,9/19/2005,Alianza Editorial +27779,Le Premier homme,Albert Camus/Catherine Camus,3.96,2070401014,9782070401017,fre,384,293,18,2/11/2000,Gallimard +27780,Noces,Albert Camus,3.65,2070733467,9782070733460,fre,101,184,20,4/7/1993,Gallimard +27783,How to Be a Perfect Stranger: The Essential Religious Etiquette Handbook,Stuart M. Matlins,3.95,1594731403,9781594731402,eng,403,120,16,2/1/2006,Skylight Paths Publishing +27785,The Basic Political Writings,Jean-Jacques Rousseau/Donald A. Cress/Peter Gray,3.87,0872200477,9780872200470,eng,227,4786,24,11/1/1987,Hackett Publishing Company Inc. +27787,Henri Rousseau: Jungles in Paris,Christopher Green/Frances Morris/Nancy Ireson/Claire Freches-Thory,4.06,0810956993,9780810956995,eng,230,31,4,6/1/2006,Harry N. Abrams +27788,Julie or the New Heloise,Jean-Jacques Rousseau/Philip Stewart/Jean Vache,3.46,0874518253,9780874518252,en-US,728,1019,27,10/1/1997,Dartmouth College Press +27798,Anesthesiology Review,Ronald J. Faust/Roy F. Cucchiara/Denise J. Wedel/C. Thomas Wass/Stephen H. Rose/Thomas N. Spackman,3.67,0443066019,9780443066016,eng,595,12,0,9/21/2001,Churchill Livingstone +27800,Faust Part Two,Johann Wolfgang von Goethe/Philip Wayne,3.73,0140440933,9780140440935,eng,288,128,15,2/28/1960,Penguin Classics +27803,The Jew of Malta,Christopher Marlowe/H. Havelock Ellis,3.60,0486431843,9780486431840,en-US,80,2963,120,8/5/2003,Dover Publications +27804,The Trumpeter of Krakow,Eric P. Kelly/Janina Domanska,3.76,0689829922,9780689829925,eng,224,54,13,6/1/1999,Aladdin +27812,Numerical Recipes in C: The Art of Scientific Computing,William H. Press/Saul A. Teukolsky/William T. Vetterling/Brian P. Flannery,4.16,0521431085,9780521431088,eng,1020,217,8,10/30/1992,Cambridge University Press +27813,Numerical Recipes Example Book C++: The Art of Scientific Computing,William T. Vetterling/William H. Press/Saul A. Teukolsky,3.25,0521750342,9780521750349,eng,330,4,0,2/7/2002,Cambridge University Press +27819,Numerical Recipes: Example Book C,William T. Vetterling/Saul A. Teukolsky/William H. Press/Brian P. Flannery,3.75,0521437202,9780521437202,eng,336,7,0,11/27/1992,Cambridge University Press +27822,Eugene Onegin,Alexander Pushkin/James E. Falen,4.09,0192838997,9780192838995,eng,240,42668,690,10/22/1998,Oxford University Press +27823,Eugene Onegin,Alexander Pushkin/Charles Johnston/Michael Basker/John Bayley,4.09,0140448039,9780140448030,en-US,262,382,47,4/29/2003,Penguin Classics +27825,Eugene Onegin,Alexander Pushkin/Charles Johnston/John Bayley,4.09,0140443940,9780140443943,en-US,240,205,25,12/20/1979,Penguin Classics +27826,Eugene Onegin,Alexander Pushkin/Walter W. Arndt,4.09,0875011063,9780875011066,en-US,244,48,12,1/16/2009,Harry N. Abrams +27827,Eugene Onegin: A Novel in Verse (Vol. 1),Alexander Pushkin/Vladimir Nabokov,4.09,0691019053,9780691019055,eng,309,272,31,1/21/1991,Princeton University Press +27828,Eugene Onegin Vol. II (Commentary),Alexander Pushkin/Vladimir Nabokov,4.38,0691019045,9780691019048,eng,1056,45,3,1/21/1991,Princeton University Press +27829,Eugene Onegin: A Novel in Verse,Alexander Pushkin/Douglas R. Hofstadter,4.09,0465020941,9780465020942,eng,224,44,7,9/11/2000,Basic Books +27831,Eugene Onegin,Alexander Pushkin/Tom Beck,4.09,1903517281,9781903517284,eng,262,10,5,3/1/2006,Dedalus +27842,Data Structures and Algorithms in Java,Michael T. Goodrich/Roberto Tamassia,3.83,0471738840,9780471738848,en-US,720,151,8,8/1/2005,Wiley +27843,Data Structures and Algorithm Analysis in C++,Mark Allen Weiss,3.87,032144146X,9780321441461,eng,586,155,8,2/1/2006,Addison Wesley Publishing Company +27844,Data Structures and Algorithms in C++,Adam Drozdek,3.80,0534491820,9780534491826,en-US,758,18,0,9/24/2004,Course Technology +27847,Data Structures and Abstractions with Java,Frank M. Carrano/Walter J. Savitch,3.47,013237045X,9780132370455,eng,998,34,3,8/4/2006,Prentice Hall +27851,Data Structures and Algorithm Analysis in C,Mark Allen Weiss,3.85,0201498405,9780201498400,eng,528,120,11,9/19/1996,Pearson +27861,Data Structures and Algorithms in C++,Adam Drozdek,3.80,0534375979,9780534375973,en-US,528,35,5,6/30/2000,Course Technology +27862,Algorithms in C Parts 1-4: Fundamentals Data Structures Sorting Searching,Robert Sedgewick,4.16,0201314525,0785342314526,en-GB,720,140,3,9/27/1997,Addison-Wesley Professional +27877,Savage Stone Age Sticker Book (Horrible Histories),Terry Deary,4.00,0439959047,9780439959049,eng,20,9,0,8/19/2005,Scholastic +27880,The Girl the Dragon and the Wild Magic (Rhianna #1),Dave Luckett,3.86,0439411874,9780439411875,eng,119,474,31,10/1/2003,Scholastic Paperbacks +27881,Wildfire (Drinker of Souls: Wild Magic #2),Jo Clayton,3.72,0886775140,9780886775148,en-US,400,80,3,6/2/1992,DAW +27883,A Sudden Wild Magic,Diana Wynne Jones,3.75,0575601973,9780575601970,en-US,380,104,15,7/1/1997,Gollehon Books +27885,Wild Magic (Drinker of Souls: Wild Magic #1),Jo Clayton,3.71,0886774969,9780886774967,eng,368,112,4,12/3/1991,DAW +27889,Exile's Children (Exiles #1),Angus Wells,3.54,0553299034,9780553299038,eng,688,122,5,10/1/1996,Spectra +27892,Lords of the Sky,Angus Wells,3.94,0553572660,9780553572667,eng,688,288,17,10/6/1995,Spectra +27897,On a Dark Night I Left My Silent House,Peter Handke/Krishna Winston,3.27,0374175470,9780374175474,eng,186,179,14,11/8/2000,Farrar Straus Giroux +27923,Selected Writings,Augustine of Hippo/Emilie Griffin/Mary T. Clark/Francine du Plessix Gray,4.29,0060754664,9780060754662,eng,160,4,0,5/30/2006,HarperCollins (SanFrancisco) +27924,The Essential Augustine,Augustine of Hippo/Vernon J. Bourke,3.69,0915144077,9780915144075,eng,268,114,7,8/1/1978,Hackett Publishing Company (Indianapolis IN) +27932,A Mortal Bane (Magdalene La Batarde #1),Roberta Gellis,3.90,081257236X,9780812572360,eng,352,809,63,9/17/2001,Tor Books +27943,Crimes Against Nature: How George W. Bush and His Corporate Pals Are Plundering the Country and Hijacking Our Democracy,Robert F. Kennedy Jr.,4.08,0060746874,9780060746872,eng,256,72,14,8/3/2004,Harper +27971,A Lie and a Libel: The History of the Protocols of the Elders of Zion,Binjamin W. Segel/Richard S. Levy/Sergei Nilus,3.30,0803292457,9780803292451,eng,148,8,2,8/1/1996,University of Nebraska Press +27988,Citizen X: Killer Department,Robert Cullen,4.01,0804111642,9780804111645,eng,258,94,10,10/4/1993,Ivy Books +27991,A Mulligan for Bobby Jobe: A Novel,Bob Cullen,3.32,0060933526,9780060933524,eng,400,58,9,5/7/2002,Harper Perennial +27999,Close Range,Annie Proulx,3.99,0684852225,9780684852225,eng,285,12555,799,2/10/2000,Scribner +28001,Accordion Crimes,Annie Proulx,3.59,0684831546,9780684831541,eng,432,5675,456,6/17/1997,Scribner +28003,Heart Songs and Other Stories,Annie Proulx,3.94,0020360754,9780020360759,eng,203,1871,127,3/17/1995,Scribner +28004,Cider,Annie Proulx/Lew Nichols,3.64,1580175201,9781580175203,eng,224,182,25,9/8/2003,Storey Publishing LLC +28012,Authentic Happiness: Using the New Positive Psychology to Realize Your Potential for Lasting Fulfillment,Martin E.P. Seligman,3.95,0743222989,9780743222983,eng,336,8515,331,1/5/2004,Atria Books +28022,Shamanism: Archaic Techniques of Ecstasy,Mircea Eliade/Wendy Doniger/Willard R. Trask,4.22,0691119422,9780691119427,eng,610,2007,52,2/8/2004,Princeton University Press +28023,Images and Symbols: Studies in Religious Symbolism,Mircea Eliade/Philip Mairet,4.16,069102068X,9780691020686,eng,192,354,12,6/25/1991,Princeton University Press (NJ) +28025,The Myth of the Eternal Return or Cosmos and History,Mircea Eliade/Willard R. Trask,4.24,0691017778,9780691017778,eng,195,1799,64,11/21/1971,Princeton University Press +28026,Youth Without Youth & Other Novellas (Romanian Literature & Thought in Translation),Mircea Eliade/Mac L. Ricketts/Matei Călinescu,3.92,0814204570,9780814204573,eng,288,11,2,8/31/1988,Ohio State University Press +28028,Bengal Nights,Mircea Eliade/Catherine Spencer,3.93,0226204197,9780226204192,en-US,184,257,29,4/1/1995,University of Chicago Press +28029,Myth and Reality,Mircea Eliade/Willard R. Trask,4.08,1577660099,9781577660095,en-US,204,531,11,6/1/1998,Waveland Press +28052,Dark Intimacy: Hope for Those in Difficult Prayer-Experiences,David J. Hassel,4.00,0829407081,9780829407082,eng,172,1,0,6/28/1990,Loyola Press (Chicago) +28053,As Eve Said to the Serpent: On Landscape Gender and Art,Rebecca Solnit,4.09,0820324930,9780820324937,eng,240,127,6,3/17/2003,University of Georgia Press +28054,River of Shadows: Eadweard Muybridge and the Technological Wild West,Rebecca Solnit,4.15,0142004103,9780142004104,eng,320,1148,133,3/2/2004,Penguin Books +28055,Wanderlust: A History of Walking,Rebecca Solnit,3.92,0140286012,9780140286014,eng,326,226,25,6/1/2001,Penguin Books (London) +28056,Storming the Gates of Paradise: Landscapes for Politics,Rebecca Solnit,4.21,0520251091,9780520251090,en-US,416,228,30,6/18/2007,University of California Press +28061,Situationist International Anthology: Revised and Expanded Edition,Ken Knabb,4.26,0939682044,9780939682041,eng,532,678,11,3/1/2007,Bureau of Public Secrets +28067,Leaving the 20th Century: The Incomplete Work of the Situationist International,Chris Gray/Larry Law,4.10,0946061157,9780946061150,eng,136,30,2,4/20/1998,Rebel Press +28074,Barrel Fever and Other Stories,David Sedaris/Amy Sedaris,3.79,1586212214,9781586212216,en-US,3,183,47,10/1/2001,Grand Central Publishing +28078,The Birth of Venus,Sarah Dunant,3.81,0812968972,9780812968972,eng,427,87478,2908,11/30/2004,Random House +28086,One Hundred Years of Solitude,Gabriel García Márquez/Gregory Rabassa,4.07,0140157514,9780140157512,eng,422,640,65,6/11/1972,Penguin Books Ltd +28087,Gabriel García Márquez: One Hundred Years of Solitude,Michael Wood,4.54,0521316928,9780521316927,eng,132,3604,78,5/31/1990,Cambridge University Press +28093,Far Afield,Susanna Kaysen,3.81,0679753761,9780679753766,eng,352,316,50,4/19/1994,Vintage +28105,The Steps (Steps #1),Rachel Cohn,3.58,0689874146,9780689874147,eng,144,428,48,9/1/2004,Simon Schuster Books for Young Readers +28116,The Know-It-All: One Man's Humble Quest to Become the Smartest Person in the World,A.J. Jacobs,3.76,0743250621,9780743250627,eng,389,24243,2326,10/10/2005,Simon Schuster +28134,The Eden Express: A Memoir of Insanity,Mark Vonnegut/Kurt Vonnegut Jr.,3.87,1583225439,9781583225431,eng,304,2737,173,11/5/2002,Seven Stories Press +28148,A Wicked Gentleman (Cavendish Square #1),Jane Feather,3.62,1416525513,9781416525516,eng,474,1121,60,3/20/2007,Pocket Star +28158,A Picture Book of Thomas Jefferson (Picture Book Biographies) (Picture Book Biography),David A. Adler/John Wallner/Alexandra Wallner,3.75,0823408817,9780823408818,en-US,32,14,4,3/1/1991,Holiday House +28162,Bound In Blood: The Erotic Journey of a Vampire,David Thomas Lord,3.35,1575667649,9781575667645,en-US,352,71,10,5/1/2001,Kensington +28173,On Vital Reserves,William James/Stephen Vicchio,4.50,0870611518,9780870611513,eng,58,3,1,4/1/1988,Christian Classics +28184,Blue Shoes and Happiness (No. 1 Ladies' Detective Agency #7),Alexander McCall Smith,4.06,1400075718,9781400075713,eng,256,22370,952,3/13/2007,Anchor +28185,The Titan's Curse (Percy Jackson and the Olympians #3),Rick Riordan,4.35,1423101456,9781423101451,eng,312,5521,773,5/5/2007,Miramax Books +28186,The Sea of Monsters (Percy Jackson and the Olympians #2),Rick Riordan,4.24,0786856866,9780786856862,eng,279,630511,19806,4/1/2006,Hyperion Books +28187,The Lightning Thief (Percy Jackson and the Olympians #1),Rick Riordan,4.25,0786838655,9780786838653,eng,375,1766725,47951,3/1/2006,Disney Hyperion Books +28190,The Lightning Thief (Percy Jackson and the Olympians #1),Rick Riordan,4.25,0786282258,9780786282258,en-US,483,139,34,1/6/2006,Thorndike Press Large Print +28193,When Santa Fell to Earth,Cornelia Funke/Paul Howard/Oliver G. Latsch,3.76,043978204X,9780439782043,eng,167,1840,245,10/1/2006,Chicken House / Scholastic +28194,Inkheart (Inkworld #1),Cornelia Funke/Anthea Bell,3.88,0439709105,9780439709101,eng,563,324482,9360,6/1/2005,Scholastic Paperbacks +28195,Inkspell (Inkworld #2),Cornelia Funke/Anthea Bell,3.92,0439554004,9780439554008,eng,635,91475,3132,10/1/2005,The Chicken House +28196,Ghosthunters and the Incredibly Revolting Ghost (Ghosthunters #1),Cornelia Funke,3.73,0439849586,9780439849586,en-US,144,1233,146,8/1/2006,Chicken House +28200,Ghosthunters and the Muddy Monster of Doom! (Ghosthunters #4),Cornelia Funke/Helena Ragg-Kirkby,3.93,0439862698,9780439862691,eng,176,534,32,4/1/2007,Chicken House +28202,The Metaphysical Club,Louis Menand,4.07,0007126905,9780007126903,eng,560,3445,349,2/1/2010,HarperCollins Publishers +28205,Vulcan's Forge (Philip Mercer #1),Jack Du Brul,3.99,0451412109,9780451412102,en-US,372,3369,105,12/6/2005,Berkley Books +28206,Pandora's Curse (Philip Mercer #4),Jack Du Brul,4.17,0451409639,9780451409638,eng,472,1583,32,9/4/2001,Berkley Books +28207,Charon's Landing (Philip Mercer #2),Jack Du Brul,4.08,0451412117,9780451412119,en-US,496,1107,38,1/3/2006,NAL +28209,The Medusa Stone (Philip Mercer #3),Jack Du Brul,4.10,0451409221,9780451409225,eng,464,1355,43,4/1/2000,NAL +28210,River Of Ruin (Philip Mercer #5),Jack Du Brul,4.19,0451410548,9780451410542,en-US,534,1196,37,12/3/2002,Onyx Books +28211,Deep Fire Rising (Philip Mercer #6),Jack Du Brul,4.19,0451411188,9780451411181,eng,483,1059,27,12/2/2003,Berkley Books +28212,And the Band Played On: Politics People and the AIDS Epidemic,Randy Shilts/William Greider,4.37,0312241356,9780312241353,eng,656,19747,1006,4/9/2000,Stonewall Inn Editions +28213,The Band Played Dixie: Race and the Liberal Conscience at Ole Miss,Nadine Cohodas,3.96,0684827212,9780684827216,eng,309,46,5,5/5/1997,Free Press +28225,La mezzanine,Nicholson Baker,3.84,2264017694,9782264017697,fre,191,6,1,11/18/1998,10/18 +28227,Checkpoint,Nicholson Baker,2.88,1400079853,9781400079858,eng,128,654,60,4/12/2005,Vintage +28228,Double Fold: Libraries and the Assault on Paper,Nicholson Baker,3.42,0375726217,9780375726217,eng,370,846,91,4/9/2002,Vintage +28231,A Box of Matches,Nicholson Baker,3.67,0375706038,9780375706035,eng,192,1679,192,3/9/2004,Vintage +28239,Dark Star Safari: Overland from Cairo to Cape Town,Paul Theroux,3.96,0618446877,9780618446872,eng,485,11216,724,4/5/2004,Mariner Books +28240,Dark Star Safari: Overland from Cairo to Cape Town,Paul Theroux,3.96,0618134247,9780618134243,en-US,472,121,20,3/23/2003,Houghton Mifflin +28249,The Magicians' Guild (Black Magician Trilogy #1),Trudi Canavan,3.95,1841493139,9781841493138,eng,467,56333,1565,1/31/2004,Orbit +28250,The Novice (Black Magician Trilogy #2),Trudi Canavan,4.07,1841493147,9781841493145,eng,577,39521,859,7/1/2004,Orbit +28251,The High Lord (Black Magician Trilogy #3),Trudi Canavan,4.15,1841493155,9781841493152,eng,644,39692,998,11/4/2004,Orbit +28252,The Magicians' Guild (Black Magician Trilogy #1),Trudi Canavan,3.95,0732270952,9780732270957,eng,517,194,16,10/24/2001,Voyager +28254,Stone Age Economics,Marshall Sahlins,3.90,0202010996,9780202010991,eng,348,281,26,12/31/1974,Routledge +28255,How "Natives" Think: About Captain Cook For Example,Marshall Sahlins,3.64,0226733696,9780226733692,en-GB,328,64,3,10/1/1996,University of Chicago Press +28257,The Use and Abuse of Biology: An Anthropological Critique of Sociobiology,Marshall Sahlins,3.91,0472766007,9780472766000,eng,120,32,5,12/3/1976,University of Michigan Press +28259,Historical Metaphors and Mythical Realities: Structure in the Early History of the Sandwich Islands Kingdom,Marshall Sahlins,3.74,0472027212,9780472027217,en-US,84,127,7,3/16/1981,University of Michigan Press +28272,Legacy of the Darksword (The Darksword #4),Margaret Weis/Tracy Hickman,3.47,055357812X,9780553578126,eng,400,138,4,6/1/1998,Spectra +28278,When Rain Clouds Gather,Bessie Head,3.84,0435909614,9780435909611,eng,185,1063,86,6/5/1996,Heinemann Educational Books +28282,Election,Tom Perrotta,3.86,0425167283,9780425167281,eng,200,6507,398,10/1/1998,Berkley Books +28289,Joe College,Tom Perrotta,3.39,0312361785,9780312361785,eng,306,3832,256,10/1/2006,St. Martin's Griffin +28294,A Void,Georges Perec/Gilbert Adair,3.80,1567922961,9781567922967,eng,284,1736,155,11/1/2005,Verba Mundi +28295,Things: A Story of the Sixties; A Man Asleep,Georges Perec/David Bellos/Andrew Leak,3.98,1567921574,9781567921571,eng,221,1062,63,7/16/2010,David R. Godine Publisher +28296,W or the Memory of Childhood,Georges Perec/David Bellos,3.88,1567921582,9781567921588,eng,176,1472,76,7/1/2010,David R. Godine Publisher +28297,Species of Spaces and Other Pieces,Georges Perec/John Sturrock,4.28,0140189866,9780140189865,eng,292,1370,60,8/1/1998,Penguin Classics +28302,The Daring Young Man on the Flying Trapeze and Other Stories,William Saroyan,4.21,081121365X,9780811213653,eng,272,677,42,10/17/1997,New Directions +28308,My Name is Aram,William Saroyan/Don Freeman,4.15,0440362059,9780440362050,en-US,151,1045,66,6/1/1991,Laurel Press +28316,Karate Is a Thing of the Spirit,Harry Crews,3.79,068802372X,9780688023720,eng,218,238,11,12/31/1983,Quill +28336,La disparition,Georges Perec,3.80,207071523X,9782070715237,fre,319,261,28,12/31/1990,Gallimard +28340,Las Noches Blancas. El Jugador. Un Ladrón Honrado. (Sepan Cuantos #259),Fyodor Dostoyevsky,3.90,9684324162,9789684324169,spa,147,52,7,10/28/1998,Porrua +28344,Los hermanos Karamazov,Fyodor Dostoyevsky/Alexander Pushkin/Guillermo Suazo Pascual,4.32,847640509X,9788476405093,spa,805,30,4,7/1/1999,Edaf S.A. +28348,Crime and Punishment,Fyodor Dostoyevsky/Richard Pevear/Larissa Volokhonsky,4.21,0679734503,9780679734505,en-US,564,7343,730,3/2/1993,Vintage Classics +28350,I Wish That I Had Duck Feet,Theo LeSieg/Dr. Seuss/Barney Tobey,4.16,000717313X,9780007173136,eng,64,9119,140,1/5/2004,HarperCollinsChildren’sBooks +28351,And to Think That I Saw It on Mulberry Street,Dr. Seuss,4.00,0007169922,9780007169924,eng,64,19663,482,8/4/2003,Vanguard Press +28356,I'm the One That I Want,Margaret Cho,3.69,0345440145,9780345440143,eng,228,1459,132,4/30/2002,Ballantine Books +28358,Am I That Name?: Feminism And The Category Of Women In History,Denise Riley,3.64,0816642699,9780816642694,eng,136,60,7,7/22/2003,Univ Of Minnesota Press +28369,Zazie in the Metro,Raymond Queneau/Barbara Wright/Gilbert Adair,3.72,0142180041,9780142180044,eng,157,3917,195,10/25/2001,Penguin Books Ltd +28370,The Blue Flowers,Raymond Queneau,4.05,0811209458,9780811209458,eng,232,1008,37,4/17/1985,New Directions +28371,Witch Grass,Raymond Queneau/Barbara Wright,3.93,1590170318,9781590170311,eng,328,335,38,1/31/2003,NYRB Classics +28372,The Last Days,Raymond Queneau/Barbara Wright/Vivian Kogan,3.80,1564781402,9781564781406,eng,250,189,17,9/1/1996,Dalkey Archive Press +28375,The Flight of Icarus,Raymond Queneau/Barbara Wright,3.99,0811204839,9780811204835,eng,191,339,45,1/17/1973,New Directions +28377,Heartsnatcher,Boris Vian/Stanley Chapman/Raymond Queneau/John Sturrock,3.97,1564782999,9781564782991,en-GB,245,2430,77,10/3/2003,Dalkey Archive Press +28381,Dead Souls,Nikolai Gogol/Robert A. Maguire/Zlatko Crnković,3.99,0140448071,9780140448078,eng,464,47626,1221,7/29/2004,Penguin Classics +28382,Diary of a Madman and Other Stories,Nikolai Gogol,4.12,0486452352,9780486452357,eng,84,7266,210,12/29/2006,Dover Publications +28385,In the Shadow of Young Girls in Flower (In Search of Lost Time #2),Marcel Proust/James Grieve/Christopher Prendergast,4.40,0143039075,9780143039075,eng,576,5355,238,1/25/2005,Penguin Classics +28388,Proust's Way: A Field Guide to In Search of Lost Time,Roger Shattuck,3.92,0393321800,9780393321807,eng,320,241,28,8/17/2001,W. W. Norton Company +28389,Marcel Proust: A Life,William C. Carter,4.33,0300094000,9780300094008,eng,992,14,4,2/8/2002,Yale University Press +28392,Within a Budding Grove Volume 2 (Remembrance of Things Past #3),Stéphane Heuet/Stanislas Brézet/Marcel Proust,4.04,1561633429,9781561633425,eng,48,14,2,1/1/2003,ComicsLit +28393,In the Shadow of Young Girls in Flower (In Search of Lost Time #2),Marcel Proust/James Grieve,4.40,0670032778,9780670032778,en-US,576,70,17,2/2/2004,Viking Adult +28395,Remembrance of Things Past: Volume II - The Guermantes Way & Cities of the Plain,Marcel Proust/C.K. Scott Moncrieff/Terence Kilmartin,4.53,0394711831,9780394711836,en-US,1216,866,42,8/27/1982,Vintage +28396,The Illustrated Man,Ray Bradbury,4.14,0881031909,9780881031904,eng,192,27,3,11/1/1983,Turtleback Books +28400,Combray (Remembrance of Things Past #1),Stéphane Heuet/Marcel Proust/Joe Johnson,3.79,1561632899,9781561632893,eng,72,36,9,1/1/2001,Nantier Beall Minoustchine Publishing +28404,Proust And Signs: The Complete Text,Gilles Deleuze/Richard Howard,4.22,0816632588,9780816632589,eng,208,20,1,10/6/2003,Univ Of Minnesota Press +28407,Germinal,Émile Zola/Roger Pearson,4.13,0140447423,9780140447422,eng,592,23134,750,1/29/2004,Penguin Classics +28408,Taxi Driver,Amy Taubin,3.93,0851703933,9780851703930,en-US,79,130,17,3/28/2000,British Film Institute +28409,The Masterpiece,Émile Zola/Roger Pearson,3.96,0192839632,9780192839633,eng,464,1977,101,7/22/1999,Oxford University Press +28411,His Excellency (Les Rougon-Macquart #6),Émile Zola/Andrew Moore/Ernest Alfred Vizetelly,3.70,1595690557,9781595690555,eng,364,44,9,9/28/2006,MONDIAL +28413,The Ladies' Paradise,Émile Zola/Robin Buss/Brian Nelson,3.99,0192836021,9780192836021,eng,438,5525,342,9/1/2008,Oxford University Press +28416,The Conquest of Plassans (Les Rougon-Macquart #4),Émile Zola/Ernest Alfred Vizetelly,3.90,1595690484,9781595690487,fre,320,50,9,11/7/2005,MONDIAL +28417,La Bête humaine,Émile Zola/Henri Mitterand,4.06,2070418014,9782070418015,fre,462,6293,152,5/16/2001,Gallimard +28418,Taxi Driver,Paul Schrader,4.12,0571203159,9780571203154,eng,116,1030,24,2/21/2000,Faber Faber +28419,La Débâcle,Émile Zola/Robert Lethbridge/Elinor Dorday,4.01,0192822896,9780192822895,eng,592,821,52,9/28/2000,Oxford University Press +28420,The Earth,Émile Zola/Douglas Parmée,4.08,0140443878,9780140443875,eng,506,1113,70,6/26/1980,Penguin Classics +28425,Intimate Enemies,Shana Abe,3.81,0553581996,9780553581997,eng,390,401,27,6/6/2000,Bantam +28427,The Truelove Bride,Shana Abe,3.65,055358054X,9780553580549,eng,357,377,25,6/1/1999,Bantam +28428,The Secret Swan,Shana Abe,3.67,0553582003,9780553582000,eng,393,695,51,4/3/2001,Bantam +28429,The Smoke Thief (Drakon #1),Shana Abe,3.74,0553588044,9780553588040,eng,352,6780,566,9/26/2006,Bantam +28436,Strategies of Containment: A Critical Appraisal of American National Security Policy During the Cold War,John Lewis Gaddis,4.03,019517447X,9780195174472,en-US,484,552,26,7/1/2005,Oxford University Press USA +28440,A Frolic of His Own,William Gaddis,3.85,0684800527,9780684800523,eng,512,1312,106,2/10/1995,Scribner +28441,Agapē Agape,William Gaddis/Sven Birkerts/Joseph Tabbi,3.81,0142437638,9780142437636,en-US,144,914,92,9/30/2003,Penguin Classics +28455,The Review of Contemporary Fiction: Fall 2001: Gilbert Sorrentino/William Gaddis/Mary Caponegro/Margery Latimer,John O'Brien/David Andrews/John Beer/Robert L. McLaughlin/Joy Castro,3.40,1564783014,9781564783011,eng,240,5,2,9/1/2001,Dalkey Archive Press +28456,Carpenter's Gothic,William Gaddis,3.77,184354167X,9781843541677,eng,262,1128,79,2/1/2010,Atlantic Books (UK) +28457,First Love and Other Stories,Ivan Turgenev/Richard Freeborn,4.14,0192836897,9780192836892,eng,304,1245,26,10/28/1999,Oxford University Press USA +28458,Sketches from a Hunter's Album,Ivan Turgenev/Richard Freeborn,3.93,0140445226,9780140445220,eng,403,5967,109,8/30/1990,Penguin Classics +28462,Spring Torrents,Ivan Turgenev/Leonard Schapiro,3.94,014044369X,9780140443691,eng,240,2825,121,1/31/1980,Penguin Classics +28463,Home of the Gentry,Ivan Turgenev/Richard Freeborn,3.92,0140442243,9780140442243,eng,298,2152,70,12/6/2007,Penguin Classics +28466,ADHD in Adulthood: A Guide to Current Theory Diagnosis and Treatment,Margaret Weiss/Gabrielle Weiss/Lily Trokenberg Hechtman,3.40,080186822X,9780801868221,eng,376,5,0,11/6/2001,Johns Hopkins University Press +28467,Sclerotherapy and vein treatment,Robert A. Weiss/Margaret A. Weiss/Karen L. Beasley,0.00,0071485422,9780071485425,eng,248,0,0,12/30/2011,McGraw-Hill Professional Publishing +28468,Fantastic Alice,Margaret Weis/Esther M. Friesner/Roger Zelazny/Bruce Holland Rogers/Robin Wayne Bailey/Janet Pack/Lawrence Schimel/Jody Lynn Nye/Janet Asimov/Lisa Mason/Jane Lindskold/Mickey Zucker Reichert/Lawrence Watt-Evans/Peter Crowther/Gary A. Braunbeck/Connie Hirsch/Tobin Larson/Kevin T. Stein,3.40,0441002536,9780441002535,eng,291,147,14,12/1/1995,Ace Trade +28470,The Reign of Istar (Dragonlance: Tales II #1),Margaret Weis/Tracy Hickman,3.72,0786937793,9780786937790,eng,352,27,0,9/1/2005,Wizards of the Coast +28471,Dragons of the Highlord Skies (Dragonlance: The Lost Chronicles #2),Margaret Weis/Tracy Hickman,4.05,0786943335,9780786943333,eng,456,3523,99,10/23/2007,Wizards of the Coast +28480,The Players of Gilean (Dragonlance: Tales from the War of Souls #2),Margaret Weis/Tracy Hickman/Aron Eisenberg/Jean Rabe/Richard A. Knaak/Douglas Niles/Paul B. Thompson,3.69,0786929200,9780786929207,eng,340,152,4,2/1/2003,Wizards of the Coast +28482,The Hand of Chaos (The Death Gate Cycle #5),Margaret Weis/Tracy Hickman,4.06,0553563696,9780553563696,eng,446,16301,117,11/1/1993,Spectra +28483,The Seventh Gate (The Death Gate Cycle #7),Margaret Weis/Tracy Hickman,4.11,055357325X,9780553573251,eng,317,16304,148,12/1/1995,Spectra +28484,Into the Labyrinth (The Death Gate Cycle #6),Margaret Weis/Tracy Hickman,4.11,0553567713,9780553567717,eng,441,18543,124,7/1/1994,Spectra Books +28485,Elven Star (The Death Gate Cycle #2),Margaret Weis/Tracy Hickman,3.99,0553290983,9780553290981,eng,367,15512,219,7/1/1991,Spectra Books +28486,Beyond Death: The Gates of Consciousness,Stanislav Grof/Christina Grof,4.00,0500810192,9780500810194,eng,96,29,2,2/18/1980,Thames & Hudson +28488,Elven Star (The Death Gate Cycle #2),Margaret Weis/Tracy Hickman,3.99,0593021754,9780593021750,eng,367,76,5,12/1/1990,Bantam Books +28510,The Mantle of Kendis-Dai (Starshield #1),Margaret Weis/Tracy Hickman,3.57,0345397614,9780345397614,eng,353,194,7,8/30/1997,Del Rey Fantasy +28511,Warrior Angel,Margaret Weis/Lizz Weis,3.15,0060833254,9780060833251,en-US,354,242,28,2/27/2007,Avon +28514,Dragons of a Vanished Moon (Dragonlance: The War of Souls #3),Margaret Weis/Tracy Hickman,3.91,0786929502,9780786929504,eng,610,7506,82,3/1/2003,Wizards of the Coast +28522,Starshield: Sentinels,Margaret Weis/Tracy Hickman,3.57,0345397606,9780345397607,eng,421,182,6,11/17/1998,Del Rey +28524,The Soulforge (Dragonlance: Raistlin Chronicles #1),Margaret Weis,4.16,0786913142,9780786913145,eng,408,9080,144,1/1/1999,Wizards of the Coast +28529,Love and War: Tales Volume Three (Dragonlance: Tales),Margaret Weis/Tracy Hickman,3.87,078693770X,9780786937707,eng,368,43,0,6/1/2005,Wizards of the Coast +28530,New Amazons,Margaret Weis/Jane Lindskold/Linda Baker/Kathleen M. Massie-Ferch/Cynthia Ward/Lawrence C. Connolly/John Tigges/Kate Novak/Janet Pack/James Reasoner/Livia Reasoner/Nick O'Donohoe/Anne Yvonne Gilbert/Linda Mannheim/Nancy Springer/Gary A. Braunbeck/Jo Clayton/Robyn McGrew/Kevin T. Stein/Felicia Dale/Russell Davis,3.56,0886778875,9780886778873,eng,336,50,5,2/1/2000,DAW +28531,Nightsword (Starshield #2),Margaret Weis/Tracy Hickman,3.67,034542462X,9780345424624,eng,404,159,5,8/3/1999,Del Rey Fantasy +28532,Realms of Dragons: The Universes of Margaret Weis and Tracy Hickman,Denise Little/J. Robert King/Margaret Weis/Tracy Hickman/Janet Pack/Jean Rabe,4.06,0061052396,9780061052392,en-US,218,49,0,10/1/1999,HarperCollins Publishers +28533,Well of Darkness (Sovereign Stone #1),Margaret Weis/Tracy Hickman,3.67,0061020575,9780061020575,eng,562,2049,49,9/4/2001,HarperTorch +28534,The Best of Tales: Volume Two (Dragonlance Anthology),Margaret Weis/Tracy Hickman,3.82,0786927003,9780786927005,eng,416,108,2,2/1/2002,Wizards of the Coast +28536,The Search for Power (Dragonlance: Tales from the War of Souls #3),Margaret Weis,3.98,0786931930,9780786931934,eng,335,295,3,5/1/2004,Wizards of the Coast +28538,Journey Into the Void (Sovereign Stone #3),Margaret Weis/Tracy Hickman,3.86,0061020591,9780061020599,eng,578,1255,22,7/27/2004,Harper Voyager +28539,The Magic of Krynn (DragonLance: Tales I #1),Margaret Weis/Tracy Hickman/Barbara Siegel/Scott Siegel/Roger E. Moore/Warren B. Smith/Nick O'Donohoe/Richard A. Knaak/Nancy Varian Berberick/Mary L. Kirchoff/Michael Williams,3.74,0880384549,9780880384544,en-US,350,7543,39,5/15/2000,Wizards of the Coast +28540,More Leaves from the Inn of the Last Home (Dragonlance: Leaves from the Inn of the Last Home #2),Margaret Weis/Tracy Hickman,4.01,0786915161,9780786915163,en-US,256,227,1,6/1/2000,Wizards of the Coast +28541,Dragonsong (Harper Hall #1),Anne McCaffrey,4.24,141692499X,9781416924999,eng,192,40324,1001,6/1/2006,Aladdin Paperbacks +28543,Dragonsong (Pern: Harper Hall #1),Anne McCaffrey,4.24,0553120441,9780553120448,eng,176,393,57,1/1/1977,Bantam +28547,Dragonsinger (Harper Hall #2),Anne McCaffrey,4.28,0689860072,9780689860072,eng,288,34996,586,4/1/2003,Aladdin +28553,Dragondrums (Harper Hall #3),Anne McCaffrey,4.07,0689860064,9780689860065,eng,243,28120,411,4/1/2003,Simon & Schuster Aladddin Paperbacks +28557,More Twisted: Collected Stories Vol. II,Jeffery Deaver,3.84,1416541187,9781416541189,eng,433,1673,112,1/1/2007,Simon & Schuster +28558,The Coffin Dancer (Lincoln Rhyme #2),Jeffery Deaver,4.16,0743275039,9780743275033,eng,358,38,1,11/1/2004,Simon & Schuster +28559,The Stone Monkey (Lincoln Rhyme #4),Jeffery Deaver,3.96,0340734019,9780340734018,eng,511,245,20,11/1/2006,Coronet Books (GB) +28560,The Sleeping Doll (Kathryn Dance #1),Jeffery Deaver,3.93,0743260945,9780743260947,eng,428,357,58,6/5/2007,Simon & Schuster +28561,The Twelfth Card (Lincoln Rhyme #6),Jeffery Deaver,3.99,0743491564,9780743491563,en-US,576,468,36,5/1/2006,Pocket Star +28562,Hard News (Rune #3),Jeffery Deaver,3.46,0553583298,9780553583298,eng,304,982,52,1/2/2001,Bantam +28563,Death Of A Blue Movie Star (Rune #2),Jeffery Deaver,3.53,055358295X,9780553582956,eng,336,1194,50,10/31/2000,Bantam +28564,Bloody River Blues (John Pellam #2),William Jefferies/Jeffery Deaver,3.49,0671047507,9780671047504,eng,368,1003,46,12/1/2000,Pocket Books +28565,Hell's Kitchen (John Pellam #3),William Jefferies/Jeffery Deaver,3.60,0340818808,9780340818800,eng,368,52,5,2/7/2002,Hodder +28566,The Empty Chair (Lincoln Rhyme #3),Jeffery Deaver,4.05,0671026011,9780671026011,en-US,512,459,41,4/1/2001,Pocket Books +28567,Twisted: The Collected Short Stories,Jeffery Deaver,3.93,0743491599,9780743491594,eng,480,3093,205,11/1/2004,Pocket Books +28568,The Vanished Man (Lincoln Rhyme #5),Jeffery Deaver,4.10,0743437810,9780743437813,en-US,560,15135,584,7/1/2004,Pocket Books +28569,Praying for Sleep,Jeffery Deaver,3.80,0451203054,9780451203052,eng,512,3061,148,3/1/2001,Signet +28570,The Devil's Teardrop,Jeffery Deaver,4.00,0671038443,9780671038441,en-US,451,6283,268,4/1/2000,Simon & Schuster +28585,Judge Dredd (Audio Cassette),Neal Barrett Jr./Martha Banta,2.96,0553476793,9780553476798,eng,0,6,0,7/1/1995,Random House Audio +28597,Prometheus Rising,Robert Anton Wilson/Israel Regardie,4.26,1561840564,9781561840564,eng,284,5394,299,9/1/2010,New Falcon Publications +28606,Tristan Taormino's True Lust,Tristan Taormino,3.97,1573441570,9781573441575,eng,200,72,6,9/25/2002,Cleis Press +28617,A Free Enquiry Into the Vulgarly Received Notion of Nature,Robert Boyle/Michael Hunter/Edward B. Davis,3.00,0521567963,9780521567961,eng,212,2,0,7/11/1996,Cambridge University Press +28631,The Munsters: A Trip Down Mockingbird Lane,Stephen Cox/Butch Patrick/Yvonne DeCarlo,4.45,0823078949,9780823078943,eng,208,53,10,10/3/2006,Backstage Books +28634,Immortality,Milan Kundera/Peter Kussi,4.14,057114456X,9780571144563,eng,400,21769,803,1/3/1998,Faber and Faber +28635,Identity,Milan Kundera/Linda Asher,3.68,0060930314,9780060930318,eng,168,13601,611,4/21/1999,Harper Perennial +28636,The Curtain: An Essay in Seven Parts,Milan Kundera/Linda Asher,3.96,0060841869,9780060841867,eng,176,1388,109,1/30/2007,Harper +28637,The Art of the Novel,Milan Kundera/Linda Asher,3.96,0060093749,9780060093747,eng,176,3684,165,4/1/2003,Harper Perennial Modern Classics +28639,Yours in Food John Baldessari: with meditations on eating by Paul Auster David Byrne Dave Eggers David Gilbert Tim Griffin Andy Grundberg John Haskell Michael Kimmelman Michael More Glenn O'Brien Francine Prose Peter Schjeldahl Lynne Tillman,John Baldessari/Paul Auster/Francine Prose/Peter Schjeldahl/David Byrne/Dave Eggers/David Gilbert/Tim Griffin/Andy Grundberg/John Haskell/Michael Kimmelman/Glenn O'Brien/Lynne Tillman,4.00,1568984952,9781568984957,en-US,144,19,4,9/30/2004,Princeton Architectural Press +28645,You Shall Know Our Velocity,Dave Eggers,3.63,0141013451,9780141013459,eng,350,266,24,4/1/2004,Penguin +28650,Thin Air (Weather Warden #6),Rachel Caine,3.96,0451461630,9780451461636,eng,307,5875,182,8/7/2007,Roc +28657,Seven Types of Ambiguity,William Empson,3.85,0701106549,9780701106546,eng,272,7,0,12/1/1949,Chatto and Windus +28658,Traitor's Knot (Wars of Light and Shadow #7),Janny Wurts,4.20,1592220827,9781592220823,eng,574,434,7,8/30/2006,Meisha Merlin Publishing +28660,The Curse of the Mistwraith (Wars of Light and Shadow #1),Janny Wurts,3.76,0586210695,9780586210697,eng,830,4655,202,5/1/2009,HarperCollins +28664,Warhost of Vastmark (Wars of Light & Shadow #3; Arc 2 - The Ships of Merior #2),Janny Wurts,4.04,0006482074,9780006482079,eng,522,3039,34,7/1/2009,Voyager +28666,Fugitive Prince (Wars of Light and Shadow #4),Janny Wurts,3.89,0061054682,9780061054686,eng,704,62,4,9/8/1998,HarperCollins Publishers +28670,Peril's Gate (Wars of Light & Shadow #6; Arc 3 - Alliance of Light #3),Janny Wurts,4.16,0061054674,9780061054679,en-US,940,521,8,1/1/2003,HarperCollins Publishers +28671,To Ride Hell's Chasm,Janny Wurts,3.82,159222024X,9781592220243,eng,672,337,46,3/8/2005,Meisha Merlin Publishing +28674,Grand Conspiracy (Wars of Light & Shadow #5; Arc 3 - Alliance of Light #2),Janny Wurts,4.11,0007102224,9780007102228,eng,614,1416,20,11/5/2007,HarperVoyager +28687,Shadowplay (Shadowmarch #2),Tad Williams,3.90,0756403588,9780756403584,eng,656,6061,174,3/6/2007,Daw Books +28688,Shadowmarch (Shadowmarch #1),Tad Williams,3.73,0756402700,9780756402709,eng,656,126,14,11/1/2005,DAW +28689,Stone of Farewell (Memory Sorrow and Thorn #2),Tad Williams,4.09,0756402972,9780756402976,eng,608,37694,414,4/1/2005,Daw Books +28691,To Green Angel Tower (Memory Sorrow and Thorn #3),Tad Williams,4.18,0756402980,9780756402983,eng,1083,29350,320,5/3/2005,DAW +28692,The War of the Flowers,Tad Williams,3.88,075640181X,9780756401818,eng,828,7519,319,5/4/2004,DAW +28694,Shadowmarch (Shadowmarch #1),Tad Williams,3.73,0756403596,9780756403591,eng,796,9677,377,9/5/2006,DAW +28695,City of Golden Shadow (Otherland #1),Tad Williams,3.91,0886777631,9780886777630,eng,780,21714,717,1/1/1998,DAW Books +28698,To Green Angel Tower Part 2 (Memory Sorrow and Thorn #3; Part 2),Tad Williams,4.20,0886776066,9780886776060,eng,815,20025,215,7/1/1994,DAW Fantasy +28699,Traumjäger und Goldpfote,Tad Williams/Hans J. Schütz,3.97,3596283493,9783596283491,ger,380,61,0,10/1/1989,Fischer (Tb.) +28700,Falling Man,Don DeLillo,3.21,1416546022,9781416546023,eng,246,10304,1092,5/15/2007,Scribner +28701,Ratner's Star,Don DeLillo,3.49,009992840X,9780099928409,eng,448,1548,98,7/16/1992,Vintage +28715,Blood Meridian or the Evening Redness in the West,Cormac McCarthy/Harold Bloom,4.17,0679641041,9780679641049,en-US,351,1264,195,1/2/2001,Modern Library +28716,Blood Meridian,Cormac McCarthy,4.17,0330312561,9780330312561,eng,335,539,62,8/3/2007,Picador USA +28721,Cormac McCarthy's All the Pretty Horses,Harold Bloom/Amy Sickels,4.09,0791075680,9780791075685,eng,126,180,10,9/1/2003,Chelsea House Publications +28724,Four & Twenty Blackbirds (Bardic Voices #4),Mercedes Lackey,3.81,0671577786,9780671577780,eng,423,3048,34,2/1/2004,Baen Books +28725,Exile's Honor (Heralds of Valdemar #6),Mercedes Lackey,4.20,0756401135,9780756401139,en-US,431,10429,158,10/7/2003,Daw Books +28727,Spirits White as Lightning (Bedlam's Bard #5),Mercedes Lackey/Rosemary Edghill,3.95,0743436083,9780743436083,en-US,512,2026,14,5/1/2003,Baen +28728,Beyond World's End (Bedlam's Bard #4),Mercedes Lackey/Rosemary Edghill,3.93,0671318551,9780671318550,en-US,416,2508,22,12/1/2001,Baen +28729,The Dragon Quintet,Marvin Kaye/Michael Swanwick/Orson Scott Card/Mercedes Lackey/Tanith Lee/Elizabeth Moon,3.77,0765349116,9780765349118,en-US,304,573,39,5/2/2006,Tor Fantasy +28730,Fiddler Fair,Mercedes Lackey,3.90,0671878662,9780671878665,en-US,272,3289,29,3/1/1998,Baen +28733,Take a Thief (Valdemar #25),Mercedes Lackey,4.12,0756400589,9780756400583,eng,435,11911,174,10/1/2002,DAW +28734,Magic's Price (Valdemar: Last Herald-Mage #3),Mercedes Lackey,4.27,0886774268,9780886774264,eng,351,18764,320,7/3/1990,DAW Books Inc +28735,By the Sword (Valdemar),Mercedes Lackey,4.25,0886774632,9780886774639,eng,492,18531,249,2/5/1991,DAW +28736,Oathblood (Valdemar: Vows and Honor #3),Mercedes Lackey,4.06,0886777739,9780886777739,en-GB,394,9786,103,4/1/1998,DAW +28747,CivilWarLand in Bad Decline,George Saunders,4.22,0099595818,9780099595816,eng,179,12813,986,2/6/1997,Vintage +28748,The Very Persistent Gappers of Frip,George Saunders/Lane Smith,4.11,1932416374,9781932416374,eng,84,2457,356,3/29/2006,McSweeney's +28749,The Brief and Frightening Reign of Phil,George Saunders,3.70,1594481520,9781594481529,eng,130,5157,553,9/6/2005,Riverhead Books +28756,The Cheese Monkeys,Chip Kidd,3.75,0060507403,9780060507404,en-US,288,4672,512,9/3/2002,Harper Perennial +28759,Magic's Pawn (Valdemar: Last Herald-Mage #1),Mercedes Lackey,4.21,0886773520,9780886773526,eng,349,22431,736,6/6/1989,DAW Books Inc +28760,Magic's Promise (Valdemar: Last Herald-Mage #2),Mercedes Lackey,4.21,0886774012,9780886774011,eng,320,18141,278,1/2/1990,DAW Books Inc +28763,His Master's Voice,Stanisław Lem/Michael Kandel,4.11,0810117312,9780810117310,eng,199,2317,161,11/25/1999,Northwestern University Press +28764,The Chain of Chance,Stanisław Lem/Louis Iribarne,3.70,0810117304,9780810117303,en-US,179,505,37,3/28/2000,Northwestern University Press +28766,Fiasco,Stanisław Lem/Michael Kandel,4.12,0156306301,9780156306300,eng,322,2281,166,3/15/1988,Mariner Books +28767,A Perfect Vacuum,Stanisław Lem/Michael Kandel,4.18,0810117339,9780810117334,en-US,229,771,42,11/25/1999,Northwestern University Press +28768,Eden,Stanisław Lem/Marc E. Heine,3.91,0156278065,9780156278065,en-US,276,3439,132,10/31/1991,Mariner Books +28769,Tales of Pirx the Pilot,Stanisław Lem/Louis Iribarne,4.10,0156881500,9780156881500,eng,216,3941,71,11/30/1990,Mariner Books +28796,The Song of Rhiannon,Evangeline Walton,4.02,0020264739,9780020264736,eng,208,255,12,9/1/1992,Collier Books +28801,Why Did the Soviet Union Collapse?: Understanding Historical Change,Robert W. Strayer,3.44,0765600048,9780765600042,eng,240,42,3,5/21/1998,Routledge +28805,Ballad of the Whiskey Robber: A True Story of Bank Heists Ice Hockey Transylvanian Pelt Smuggling Moonlighting Detectives and Broken Hearts,Julian Rubinstein,4.02,0316010731,9780316010733,eng,352,3448,516,9/13/2005,Back Bay Books +28807,Changeling,Roger Zelazny,3.72,0743458192,9780743458191,eng,244,1815,41,1/28/2003,iBooks +28808,The Waterborn (Children of the Changeling #1),Greg Keyes/J. Gregory Keyes,3.81,0345396707,9780345396709,en-US,384,76,5,3/2/1997,Del Rey Books +28810,Social Psychology,Elliot Aronson/Robin M. Akert/Timothy D. Wilson,4.00,0132382458,9780132382458,eng,633,42,1,12/6/2006,Prentice Hall +28815,Influence: The Psychology of Persuasion,Robert B. Cialdini,4.19,006124189X,9780061241895,eng,320,76314,2580,12/26/2006,Harper Business +28819,Writings 1902-1910: The Varieties of Religious Experience / Pragmatism / A Pluralistic Universe / The Meaning of Truth / Some Problems of Philosophy / Essays,William James/Bruce Kuklick,4.21,0940450380,9780940450387,eng,1379,372,11,2/1/1988,Library of America +28821,Writings 1878–1899: Psychology: Briefer Course / The Will to Believe / Talks to Teachers and to Students / Essays,William James/Gerald Eugene Myers,4.25,0940450720,9780940450721,eng,1212,92,4,6/1/1992,Library of America +28822,The Will to Believe Human Immortality and Other Essays in Popular Philosophy,William James,4.07,0486202917,9780486202914,eng,448,455,25,6/1/1956,Dover Publications +28827,Ghost Hunters: William James and the Search for Scientific Proof of Life After Death,Deborah Blum,3.70,1594200904,9781594200908,eng,371,833,127,8/3/2006,Penguin Press +28836,The Principles of Psychology: Vols 1-2 (Works of William James),William James/Frederick Burkhardt/Rand B. Evans/Gerald Eugene Myers,4.18,0674705599,9780674705593,eng,1376,3,1,12/1/1981,Harvard University Press +28845,The Story of Philosophy,Will Durant/Grover Gardner,4.12,1572704209,9781572704206,eng,1162,31,4,9/20/2004,AudioGO +28850,The Return of the King (The Lord of the Rings #3),J.R.R. Tolkien/Rob Inglis,4.53,0788789848,9780788789847,eng,16,3529,171,7/23/2001,Recorded Books Inc. +28854,The Book of Lost Tales Part Two (The History of Middle-earth #2),J.R.R. Tolkien/Christopher Tolkien,3.86,0261102141,9780261102149,eng,385,203,12,5/7/2002,HarperCollinsPublishers +28859,The Gospel According to Jesus Christ,José Saramago/Giovanni Pontiero,4.29,186046095X,9781860460951,eng,341,13919,526,12/26/1999,Harvill Press +28860,El Evangelio Según Jesucristo,José Saramago/Basilio Losada,4.29,8466300651,9788466300650,spa,480,34,6,10/1/2001,Santillana USA Publishing Company +28862,The Prince,Niccolò Machiavelli/Rufus Goodwin/Benjamin Martinez,3.81,0937832383,9780937832387,eng,140,194545,4260,6/1/2003,Dante University of America Press +28863,The Raven Prince (Princes Trilogy #1),Elizabeth Hoyt,3.97,0446618470,9780446618472,eng,392,16024,894,11/1/2006,Warner Forever +28865,Le Petit Prince,Antoine de Saint-Exupéry,4.31,0156013983,9780156013987,fre,87,3045,215,9/4/2001,Mariner Books +28866,Dark Prince (Dark #1),Christine Feehan,4.00,0843955287,9780843955286,eng,447,44210,1942,4/5/2005,Leisure Books +28867,The Princes of Ireland (The Dublin Saga #1),Edward Rutherfurd,3.86,0345472357,9780345472359,eng,778,10514,865,3/1/2005,Ballantine Books +28868,Prince Caspian (Chronicles of Narnia #4),C.S. Lewis,3.97,0061125253,9780061125256,eng,223,1123,90,9/1/2006,HarperCollins Publishers +28869,Pégate un tiro para sobrevivir: un viaje personal por la América de los mitos,Chuck Klosterman,3.81,8439720033,9788439720034,spa,272,27,2,2/28/2006,Literatura Random House +28872,A Practical Guide to Dragons,Lisa Trumbauer/Emily Fiegenshuh,4.33,0786941642,9780786941643,eng,80,577,36,9/26/2006,Mirrorstone +28873,Dragonology (Ologies #1),Dugald A. Steer/Ernest Drake/Wayne Anderson/Helen Ward/Douglas Carrel,4.11,0763623296,9780763623296,eng,32,7726,221,10/13/2003,Candlewick Press +28876,His Majesty's Dragon (Temeraire #1),Naomi Novik,4.05,0345481283,9780345481283,eng,356,62589,4920,3/28/2006,Del Rey +28877,Red Dragon (Hannibal Lecter #1),Thomas Harris,4.04,0525945563,9780525945567,eng,348,236028,3247,5/22/2000,Dutton +28881,Lamb: The Gospel According to Biff Christ's Childhood Pal,Christopher Moore,4.25,0380813815,9780380813810,eng,444,135109,10380,5/25/2004,William Morrow / HarperCollins / Harper Perennial +28887,The Lost Tomb,Kent R. Weeks,4.09,0688172245,9780688172244,eng,384,391,26,11/9/1999,Harper Perennial +28898,Fundamentals of Heat and Mass Transfer [with IHT/FEHT 3.0 CD with User Guide Set],Frank P. Incropera/David P. DeWitt,3.99,0470055545,9780470055540,en-US,997,6,0,10/30/2006,Wiley +28899,Heat,Mike Lupica,3.98,0142407577,9780142407578,eng,220,18883,1417,3/1/2007,Puffin Books +28902,Heat and Mass Transfer,Yunus A. Cengel,4.15,007325035X,9780073250359,eng,901,188,3,1/4/2006,McGraw-Hill Science/Engineering/Math +28910,Journal of a Novel: The East of Eden Letters,John Steinbeck,4.09,0140144188,9780140144185,eng,182,1053,126,12/1/1990,Penguin Books +28913,Never Go Back,Robert Goddard,3.71,0552152110,9780552152112,eng,464,1221,85,10/23/2006,Corgi +28915,Never Go Home Again,Shannon Holmes,4.03,0743496167,9780743496162,eng,336,222,11,9/27/2005,Atria Books +28917,You Can Never Go Home Again,Dyan Sheldon,4.23,081673691X,9780816736911,en-US,166,23,4,8/1/1995,Troll Communications +28920,A Pale View of Hills,Kazuo Ishiguro,3.74,0571225373,9780571225378,eng,183,12858,1036,3/3/2005,Faber and Faber +28922,An Artist of the Floating World,Kazuo Ishiguro,3.76,0571225365,9780571225361,eng,206,15416,1152,3/3/2005,Faber and Faber +28923,When We Were Orphans,Kazuo Ishiguro,3.49,0571225403,9780571225408,eng,320,19252,1673,12/1/2007,Faber & Faber +28926,The Unconsoled,Kazuo Ishiguro,3.54,0679735879,9780679735878,eng,535,587,120,10/1/1996,Vintage International +28929,American Legal History: Cases and Materials,Kermit L. Hall/Paul Finkelman/James W. Jr. Ely,3.50,0195162250,9780195162257,eng,736,31,0,10/1/2004,Oxford University Press USA +28935,Intuition,Allegra Goodman,3.32,0385336101,9780385336109,eng,385,3248,590,3/13/2007,Dial Press +28940,Behind the Scenes at the Museum,Kate Atkinson,3.96,0312150601,9780312150600,eng,336,26443,2116,11/12/1999,Picador USA +28942,Emotionally Weird,Kate Atkinson,3.45,031227999X,9780312279998,eng,368,5308,482,7/6/2001,Picador +28944,Abandonment,Kate Atkinson/Traverse Theatre,3.61,1854596012,9781854596017,en-US,96,82,6,4/1/2000,Nick Hern Books +28947,Familienalbum,Kate Atkinson,3.96,3453212630,9783453212633,ger,507,2,0,1/1/2002,Heyne +28948,Gimpel the Fool and Other Stories,Isaac Bashevis Singer/Saul Bellow/Allegra Goodman,4.16,0374530254,9780374530259,eng,224,1715,63,1/10/2006,Farrar Straus and Giroux +28958,Ein Sommernachtsspiel,Kate Atkinson,3.72,3453152530,9783453152533,ger,410,1,0,6/1/1999,Heyne +28963,Dans les coulisses du musée,Kate Atkinson/Jean Bourdier,3.96,2253144908,9782253144908,fre,410,45,4,9/23/1998,Le Livre de Poche +28977,The Littles and the Lost Children,John Lawrence Peterson/Jacqueline Rogers/Roberta Carter Clark,3.76,0590430262,9780590430265,eng,112,302,16,1/1/1991,Scholastic Paperbacks +28978,Suffer the Little Children (Commissario Brunetti #16),Donna Leon,3.79,087113960X,9780871139603,eng,264,3456,285,5/10/2007,Atlantic Monthly Press +28979,Suffer Little Children (Sister Fidelma #3),Peter Tremayne,4.05,0451195574,9780451195579,eng,320,1348,76,2/1/1999,Signet +28988,The Wishbones,Tom Perrotta,3.50,0425169715,9780425169711,eng,288,2172,158,7/1/1999,Berkley +28991,Bad Haircut: Stories of the Seventies,Tom Perrotta,3.70,042515954X,9780425159545,eng,240,1546,110,4/1/1997,Berkley Trade +29011,One Hundred Demons,Lynda Barry,4.16,1570614598,9781570614590,en-GB,224,7703,521,8/30/2005,Sasquatch Books +29019,The Twelve Terrors of Christmas,John Updike/Edward Gorey,4.23,0764937103,9780764937101,eng,32,2552,103,5/1/2006,Pomegranate Communications +29022,The Twelve Caesars,Suetonius/Michael Grant/Robert Graves,4.05,0140449213,9780140449211,eng,363,12764,376,5/6/2003,Penguin Classics +29026,The Twelve Dancing Princesses,Marianna Mayer/Kinuko Y. Craft,4.32,068814392X,9780688143923,en-US,40,86,9,10/19/1998,HarperCollins +29031,Twelve Ordinary Men,John F. MacArthur Jr.,4.21,0849917735,9780849917738,en-US,224,2409,232,11/18/2002,Thomas Nelson +29035,Twelve Extraordinary Women Workbook,John F. MacArthur Jr.,3.92,1418505579,9781418505578,en-GB,226,46,4,3/5/2006,Thomas Nelson +29036,The Great Influenza: The Story of the Deadliest Pandemic in History,John M. Barry,3.96,0143036491,9780143036494,eng,546,17480,1459,10/4/2005,Penguin Books +29043,Paris: The Secret History,Andrew Hussey,3.81,1596913231,9781596913233,eng,485,657,87,11/28/2006,Bloomsbury USA +29044,The Secret History,Donna Tartt,4.10,1400031702,9781400031702,eng,559,234929,15790,4/13/2004,Vintage +29052,Marijuana Horticulture: The Indoor/Outdoor Medical Grower's Bible,Jorge Cervantes,4.39,187882323X,9781878823236,eng,512,431,25,3/1/2006,Van Patten Publishing +29053,The Cambridge Companion to Cervantes,Anthony J. Cascardi,3.55,0521663873,9780521663878,eng,264,11,1,10/17/2002,Cambridge University Press +29054,Exemplary Stories,Miguel de Cervantes Saavedra/Lesley Lipson,3.72,0192832433,9780192832436,eng,368,797,29,5/7/1998,Oxford University Press +29058,Cervantes in Algiers: A Captive's Tale,Maria Antonia Garcés,3.14,0826514707,9780826514707,eng,368,7,1,6/1/2005,Vanderbilt University Press +29069,Deluxe Encyclopedia of Mandolin Chords,John Baxter/Mel Bay,3.83,0786647973,9780786647972,eng,72,6,0,3/1/2000,Mel Bay Publications Inc. +29075,CSS Cookbook,Christopher Schmitt,3.88,0596527411,9780596527419,en-US,516,164,13,10/24/2006,O'Reilly Media +29081,Big Dog... Little Dog,P.D. Eastman,4.12,0375822976,9780375822971,en-US,48,93,10,5/27/2003,Random House Books for Young Readers +29083,Snow,Roy McKie/P.D. Eastman,4.15,0394800273,9780394800271,eng,72,4383,88,10/12/1962,Random House +29084,Flap Your Wings,P.D. Eastman,4.24,0375802436,9780375802430,en-US,48,1281,64,1/25/2000,Random House Books for Young Readers +29085,Sam And The Firefly (Beginner Books),P.D. Eastman,4.17,0001713191,9780001713192,eng,64,5,0,6/17/1985,Collins +29091,The Berlin Phenomenology,Georg Wilhelm Friedrich Hegel/Michael John Petry,0.00,9027712050,9789027712059,eng,210,0,0,5/31/1981,Springer +29092,The Philosophy of History,Georg Wilhelm Friedrich Hegel/J. Sibree,3.82,0486201120,9780486201122,en-US,457,31,9,6/1/1956,Dover Publications +29093,Philosophy of Right,Georg Wilhelm Friedrich Hegel/S.W. Dyde,3.87,0486445631,9780486445632,en-US,272,19,2,9/20/2005,Dover Publications +29120,The Mistress Manual: The Good Girl's Guide to Female Dominance,Mistress Lorelei,3.76,1890159190,9781890159191,eng,220,346,30,6/15/2000,Greenery Press (CA) +29122,Diary of a Mistress,Miasha,4.34,0743281594,9780743281591,en-US,182,2484,88,8/1/2006,Touchstone +29124,Mistress Masham's Repose,T.H. White/Fritz Eichenberg,3.93,1590171039,9781590171035,en-US,260,1476,124,3/7/2012,New York Review Children's Collection +29128,The Last Unicorn,Peter S. Beagle,4.17,0370006542,9780370006543,eng,224,97,17,8/1/1968,The Bodley Head Ltd +29129,The Last Unicorn,Peter S. Beagle,4.17,0345254848,9780345254849,eng,248,41,5,1/1/1969,Ballantine Books +29135,The Barbed Coil,J.V. Jones,3.92,0446606235,9780446606233,eng,667,2129,64,4/1/1999,Grand Central Publishing +29140,Melliandra,J.V. Jones,3.79,3404204077,9783404204076,ger,734,5,0,3/1/2001,Lübbe +29150,Yakitate!! Japan Volume 1,Takashi Hashiguchi,3.97,1421507196,9781421507194,en-US,208,2207,61,9/12/2006,VIZ Media LLC +29151,Yakitate!! Japan Volume 2,Takashi Hashiguchi,3.99,142150720X,9781421507200,eng,208,339,11,11/14/2006,VIZ Media LLC +29152,Yakitate!! Japan Volume 3,Takashi Hashiguchi,3.97,1421507218,9781421507217,eng,208,297,6,1/9/2007,VIZ Media LLC +29153,Yakitate!! Japan Volume 4,Takashi Hashiguchi,4.00,1421509210,9781421509211,en-US,208,274,8,3/13/2007,VIZ Media LLC +29154,Yakitate!! Japan Volume 7,Takashi Hashiguchi,3.98,1421509245,9781421509242,eng,185,239,5,9/11/2007,VIZ Media LLC +29155,Yakitate!! Japan Volume 5,Takashi Hashiguchi,4.02,1421509229,9781421509228,en-US,208,247,7,5/8/2007,VIZ Media LLC +29156,Yakitate!! Japan Volume 6,Takashi Hashiguchi,4.00,1421509237,9781421509235,eng,185,254,6,7/10/2007,VIZ Media LLC +29159,焼きたて!!ジャぱん 9 [Yakitate!! Japan 9],Takashi Hashiguchi/橋口 たかし,3.99,4091263992,9784091263995,jpn,190,2,0,10/18/2003,小学館 +29160,Brothers in Arms (Dragonlance: Raistlin Chronicles #2),Margaret Weis/Don Perrin,4.05,0786914297,9780786914296,eng,476,6387,66,8/1/1999,Wizards of the Coast +29161,A Magic-Lover's Treasury of the Fantastic,Margaret Weis/Ursula K. Le Guin/Roger Zelazny/Christopher Stasheff/Mercedes Lackey/Ray Bradbury/Andre Norton/Jack Vance/Raymond E. Feist/C.J. Cherryh/Fritz Leiber/Melanie Rawn/Marion Zimmer Bradley/Larry Niven/Zenna Henderson/Greg Bear/Orson Scott Card/Katherine Kurtz/Joe Haldeman/Robert Silverberg/F. Paul Wilson/Keith Birdsong,3.58,044667284X,9780446672849,en-US,421,132,4,1/1/1998,Aspect +29163,Dragons in the Archives: The Best of Weis & Hickman (Dragonlance Anthology),Margaret Weis/Tracy Hickman/Aron Eisenberg,3.89,078693669X,9780786936694,eng,374,74,4,11/1/2004,Wizards of the Coast +29164,Guardians of the Lost (Sovereign Stone #2),Margaret Weis/Tracy Hickman,3.78,0061020583,9780061020582,eng,652,1248,21,9/3/2002,HarperTorch +29167,The War of the Lance (DragonLance: Tales II #3),Margaret Weis/Tracy Hickman,3.90,0786937777,9780786937776,eng,343,47,0,12/1/2005,Wizards of the Coast +29173,The Dragons at War (Dragonlance Dragons #2),Margaret Weis/Tracy Hickman/Adam Lesh,4.02,0786904917,9780786904914,eng,339,2909,10,5/1/1996,TSR Inc./Wizards of the Coast +29185,Earth Air Fire Water (Tales from the Eternal Archives #2),Margaret Weis/Janet Pack/Bruce Holland Rogers/Nina Kiriki Hoffman/Tanya Huff/Linda P. Baker/Michelle Sagara West/Nancy Varian Berberick/Mark A. Garland/Lawrence Schimel/Donald J. Bingle/Jane Lindskold/Kristine Kathryn Rusch/Edward Carmien/Jean-François Podevin/Robyn McGrew/Carrie Channell,3.39,0886778573,9780886778576,eng,320,28,6,11/1/1999,DAW +29187,Time of the Twins (Dragonlance: Legends #1),Margaret Weis/Tracy Hickman,4.15,0786931582,9780786931583,eng,389,28217,298,3/1/2004,Wizards of the Coast +29204,A Certain Justice (Adam Dalgliesh #10),P.D. James,3.93,0770429912,9780770429911,eng,688,6877,374,3/28/2006,Seal Books +29205,A Certain Justice (Abe Glitsky #1),John Lescroart,4.01,0451217764,9780451217769,eng,624,2993,107,2/7/2006,Signet +29209,The Color of Water: A Black Man's Tribute to His White Mother,James McBride,4.09,1573225789,9781573225786,eng,291,92989,4663,1/14/2004,Riverhead Books +29222,Lost Prophet: The Life and Times of Bayard Rustin,John D'Emilio,4.21,0226142698,9780226142692,eng,592,595,44,10/1/2004,University of Chicago Press +29227,Answers to Questions Teachers Ask about Sensory Integration: Forms Checklists and Practical Tools for Teachers and Parents,Stacey Szklut/Carol Stock Kranowitz/Lynn Balzer-Martin,4.11,1931615039,9781931615037,eng,63,18,1,1/1/2002,Sensory Resources +29248,Kevin Trudeau's Mega Memory: How to Release Your Superpower Memory in 30 Minutes Or Less a Day,Kevin Trudeau,3.54,0688153879,9780688153878,eng,368,128,15,8/16/2005,William Morrow Paperbacks +29251,Still Here: Embracing Aging Changing and Dying,Ram Dass/Richard Alpert,4.11,1573228710,9781573228718,en-US,224,861,81,6/1/2001,Riverhead Books +29252,Paths to God: Living the Bhagavad Gita,Ram Dass/Richard Alpert,4.34,1400054036,9781400054039,en-US,352,616,49,10/25/2005,Harmony +29253,Here We All Are,Ram Dass/Richard Alpert,4.21,1401910440,9781401910440,en-GB,0,61,6,12/15/2005,Hay House +29254,Be Here Now,Ram Dass/Richard Alpert,4.29,0517543052,9780517543054,en-US,416,20343,692,10/12/1971,Lama Foundation (San Cristobal NM) +29255,The Only Dance There Is,Ram Dass/Richard Alpert,4.24,0385084137,9780385084130,en-US,192,713,30,3/5/1974,Anchor +29256,Journey of Awakening: A Meditator's Guidebook,Ram Dass/Richard Alpert,4.17,0553285726,9780553285727,en-US,448,898,52,7/1/1990,Bantam +29257,A Spiritual Journey,Ram Dass/Richard Alpert,4.16,1593976720,9781593976729,en-US,0,68,4,8/1/2005,Macmillan Audio +29260,Finding and Exploring Your Spiritual Path: An Exploration of the Pleasures and Perils of Seeking Personal Enlightenment,Ram Dass/Richard Alpert,3.95,0940687569,9780940687561,eng,0,21,1,5/15/1989,Macmillan Audio +29285,Make Way for McCloskey,Robert McCloskey/Leonard S. Marcus,4.46,067005934X,9780670059348,eng,144,129,8,10/21/2004,Viking Books for Young Readers +29286,Burt Dow Deep-Water Man,Robert McCloskey,4.10,014050978X,9780140509786,en-US,64,673,55,3/1/1989,Puffin Books +29289,Lentil,Robert McCloskey,4.13,0140502874,9780140502879,eng,64,4076,104,4/27/1978,Puffin Books +29290,Time of Wonder,Robert McCloskey,4.08,0140502017,9780140502015,en-US,64,4380,308,6/15/1985,Puffin Books +29312,Riddley Walker,Russell Hoban,4.03,074755904X,9780747559047,eng,236,305,44,2/1/2010,Bloomsbury +29313,Sector 7,David Wiesner,4.21,0395746566,9780395746561,eng,48,5066,523,9/20/1999,Clarion Books +29320,Wind Child,Nancy Harding,3.08,0671646192,9780671646196,eng,331,13,1,7/1/1990,Pocket Books +29324,The Catswold Portal,Shirley Rousseau Murphy,4.06,0060765402,9780060765408,eng,432,888,69,1/25/2005,Harper Voyager +29325,Cat Laughing Last (Joe Grey #7),Shirley Rousseau Murphy,4.22,0061015628,9780061015625,eng,368,654,43,11/5/2002,Avon +29326,Cat Seeing Double (Joe Grey #8),Shirley Rousseau Murphy,4.25,006101561X,9780061015618,eng,384,582,22,10/28/2003,Avon +29358,Charlie Wilson's War: The Extraordinary Story of How the Wildest Man in Congress and a Rogue CIA Agent Changed the History of our Times,George Crile,4.01,0802141242,9780802141248,eng,560,6049,648,4/22/2004,Grove Press +29359,Charlie Wilson's War: The Extraordinary Story of the Largest Covert Operation in History,George Crile/Christopher Lane,4.01,0786179953,9780786179954,en-US,10,24,7,10/1/2005,Blackstone Audiobooks +29362,Charlie Wilson's War: The Extraordinary Story of the Largest Cover Operation in History,George Crile,4.01,0613998057,9780613998055,eng,550,4,0,4/22/2004,Turtleback Books +29367,The Fourth Crusade: And the Sack of Constantinople,Jonathan Phillips,4.04,1844130800,9781844130801,eng,416,25,6,4/7/2005,Pimlico +29378,Practical Ethics,Peter Singer,4.05,052143971X,9780521439718,eng,411,2036,80,1/29/1993,Cambridge University Press +29380,Animal Liberation,Peter Singer,4.25,0060011572,9780060011574,eng,352,5325,357,12/1/2001,Ecco Press +29390,Boudicca: The Warrior Queen,M.J. Trow,3.57,075093400X,9780750934008,en-US,250,71,8,2/1/2005,Sutton Publishing +29393,Our Band Could Be Your Life: Scenes from the American Indie Underground 1981-1991,Michael Azerrad,4.18,0316787531,9780316787536,eng,522,12472,573,7/2/2002,Back Bay Books +29394,Cursor's Fury (Codex Alera #3),Jim Butcher,4.36,0441014348,9780441014347,eng,442,50427,1053,12/5/2006,Ace Hardcover +29395,Sharpe's Fury (Sharpe #11),Bernard Cornwell,4.10,0060530480,9780060530488,eng,352,6057,136,8/22/2006,Harper +29396,Furies of Calderon (Codex Alera #1),Jim Butcher,4.12,044101268X,9780441012688,eng,504,84357,3322,6/28/2005,Ace +29404,Your Child and Jesus: A Family Activity Book,Rick Osborne/Kevin Miller,0.00,080242855X,9780802428554,eng,112,0,0,9/13/1999,Moody Publishers +29406,To the Friend who Didn't Save my Life,Hervé Guibert/Linda Cloverdale,3.92,1852423285,9781852423285,eng,240,110,15,1/1/1998,Serpent's Tail +29412,The Mistress's Daughter,A.M. Homes,3.28,0670038385,9780670038381,en-US,256,3282,518,4/5/2007,Viking +29421,Layer Cake,J.J. Connolly,3.98,0802141684,9780802141682,eng,344,1000,68,8/31/2004,Grove Press Black Cat +29434,Self-Made Man: One Woman's Journey Into Manhood and Back Again,Norah Vincent,3.33,0670034665,9780670034666,eng,290,4104,656,1/19/2006,Viking Books +29435,Nixon Agonistes: The Crisis of the Self-Made Man,Garry Wills,4.12,0618134328,9780618134328,eng,640,430,32,11/14/2002,Mariner Books +29442,The Man Who Changed Everything: The Life of James Clerk Maxwell,Basil Mahon,4.13,0470861711,9780470861714,eng,256,500,46,10/15/2004,Wiley +29446,Baghdad Without a Map and Other Misadventures in Arabia,Tony Horwitz,3.98,0452267455,9780452267459,eng,285,3653,196,1/1/1992,Plume Books +29456,Night Train to Memphis (Vicky Bliss #5),Elizabeth Peters,4.07,0446602485,9780446602488,eng,368,3874,192,12/1/1995,Grand Central Publishing +29460,Sociology in Our Times,Diana Kendall,3.21,0495006858,9780495006855,eng,742,1,0,1/1/2006,Wadsworth Publishing Company +29470,Iberia: Spanish Travels and Reflections,James A. Michener/Robert Vavra,3.71,0394429826,9780394429823,en-US,818,39,8,4/12/1968,Random House +29471,Journey,James A. Michener,3.81,0449218473,9780449218471,eng,336,1597,133,10/1/1994,Fawcett +29474,You Remind Me of You: A Poetry Memoir,Eireann Corrigan,3.95,0439297710,9780439297714,eng,128,993,106,2/1/2002,Push +29478,Remind Me Again Why I Need A Man,Claudia Carroll,3.30,0061140538,9780061140532,eng,384,689,128,5/1/2007,Harper +29484,Strange Candy (Anita Blake Vampire Hunter #0.5),Laurell K. Hamilton,3.76,0425212017,9780425212011,en-US,257,15360,314,10/3/2006,Berkley Publishing Group +29486,Candy Girl: A Year in the Life of an Unlikely Stripper,Diablo Cody,3.54,1592402739,9781592401821,en-US,212,11149,1560,1/2/2007,Gotham +29487,Candy Licker,Noire,4.39,0345486471,9780345486479,eng,304,2623,131,12/27/2005,One World/Ballantine +29488,Candy,Luke Davies,4.09,0345423879,9780345423870,en-US,304,5838,301,6/16/1998,Ballantine Books +29489,Hard Candy,Angela Knight/Sheri Gilmore/Morgan Hawke,3.99,1596321288,9781596321281,en-US,350,564,23,6/30/2005,Loose Id LLC +29490,Candy,Mian Mian/Andrea Lingenfelter,3.32,0316563560,9780316563567,en-US,279,1169,95,7/15/2003,Back Bay Books +29497,Demon Diary Volume 01,Kara/Lee Chi-Hyong,3.95,1591821541,9781591821540,eng,192,4685,78,5/6/2003,TokyoPop +29498,Demon Diary Volume 03,Kara/Lee Yun-Hee,4.07,1591821568,9781591821564,eng,187,1296,20,9/9/2003,TokyoPop +29499,Demon Diary Volume 02,Kara/Jee-Hyung Lee,4.14,159182155X,9781591821557,eng,199,1672,26,7/8/2003,TokyoPop +29500,Demon Diary Volume 04,Kara/Lee Yun-Hee,4.10,1591821576,9781591821571,eng,192,1182,15,11/4/2003,TokyoPop +29501,The End of Faith: Religion Terror and the Future of Reason,Sam Harris,3.93,0393327655,9780393327656,en-US,348,29971,1480,9/17/2005,W. W. Norton Company +29506,Prisoner's Dilemma: John von Neumann Game Theory and the Puzzle of the Bomb,William Poundstone/John von Neumann,3.91,038541580X,9780385415804,eng,320,1323,94,1/1/1993,Anchor +29512,Lost Continents,L. Sprague de Camp,3.65,0486226689,9780486226682,en-US,363,108,10,6/1/1970,Dover Publications (NYC) +29514,The Lost Continent,Edgar Rice Burroughs,3.68,1600961509,9781600961502,eng,108,1235,59,7/30/2008,Waking Lion Press +29516,The Lost Continent: The Story of Atlantis,Charles John Cutcliffe Wright Hyne/Gary Hoppenstand/Harry Turtledove,3.78,0803273320,9780803273320,eng,260,19,1,11/1/2002,Bison Books +29519,Conspiracy of Fools,Kurt Eichenwald,4.23,0767911792,9780767911795,eng,784,4511,309,12/27/2005,Broadway Books +29526,The Death and Rebirth of the Seneca,Anthony F.C. Wallace,3.66,039471699X,9780394716992,eng,416,102,5,4/12/1972,Vintage +29529,Rebirth Volume 5,Kang-Woo Lee/Lauren Na,4.03,1591822203,9781591822202,eng,184,102,2,12/2/2003,TokyoPop +29533,Satan Burger,Carlton Mellick III,3.56,0971357234,9780971357235,eng,230,1691,129,11/1/2001,Eraserhead Press +29534,The Strategy of Satan: How to Detect and Defeat Him,Warren W. Wiersbe,4.37,0842366652,9780842366656,en-US,162,440,45,7/20/1979,Tyndale House Publishers +29537,The Black Stallion and Satan (The Black Stallion #5),Walter Farley,4.12,0679813462,9780679813460,eng,224,6280,53,4/14/1992,Yearling +29545,Satan: His Psychotherapy and Cure by the Unfortunate Dr. Kassler J.S.P.S.,Jeremy Leven,4.13,059514506X,9780595145065,eng,496,519,52,11/1/2000,Backinprint.com +29547,Everyone Worth Knowing,Lauren Weisberger,3.40,1416543007,9781416543008,en-US,448,67653,1680,12/26/2006,Pocket Books +29549,The Lost Blogs: From Jesus to Jim Morrison--The Historically Inaccurate and Totally Fictitious Cyber Diaries of Everyone Worth Knowing,Paul Davidson,3.61,0446697389,9780446697385,eng,288,30,5,11/29/2009,Warner Books +29551,Happy Are the Peace Makers (Blackie Ryan #5),Andrew M. Greeley,3.79,0515110752,9780515110753,eng,300,369,16,4/1/1993,Jove Books +29561,The Truth Will Set You Free: Overcoming Emotional Blindness and Finding Your True Adult Self,Alice Miller/Andrew Edwin Jenkins,4.06,0465045855,9780465045853,eng,224,501,32,12/10/2002,Basic Books +29565,The Stone Raft,José Saramago,3.80,1860467210,9781860467219,eng,272,3224,180,6/1/2000,Panther +29566,Baltasar and Blimunda,José Saramago/Giovanni Pontiero,3.92,1860469019,9781860469015,eng,346,105,14,9/20/2001,Vintage Classics +29569,You: The Owner's Manual: An Insider's Guide to the Body That Will Make You Healthier and Younger,Michael F. Roizen/Mehmet C. Oz,3.82,0060765313,9780060765316,en-US,417,3170,286,1/1/2005,Collins Publishers +29571,You: On a Diet: The Owner's Manual for Waist Management,Michael F. Roizen/Mehmet C. Oz,3.66,0743292545,9780743292542,en-US,370,4403,405,10/31/2006,Free Press +29579,Foundation (Foundation #1),Isaac Asimov,4.16,0553803719,9780553803716,eng,244,349846,6561,6/1/2004,Bantam +29580,Second Foundation (Foundation #3),Isaac Asimov,4.26,0553803735,9780553803730,eng,256,119224,1708,6/1/2004,Bantam Spectra +29581,Foundation and Empire (Foundation #2),Isaac Asimov,4.22,0553803727,9780553803723,eng,256,126226,2034,6/1/2004,Spectra Books +29582,Foundation and Earth (Foundation #5),Isaac Asimov,4.05,0553587579,9780553587579,eng,500,46112,890,8/31/2004,Spectra +29584,Foundations of Clinical Research: Applications to Practice,Leslie Gross Portney,4.12,0838526950,9780838526958,eng,742,18,1,1/1/2000,Prentice Hall +29587,Down and Out in the Magic Kingdom,Cory Doctorow,3.56,076530953X,9780765309532,eng,208,10810,1068,12/5/2003,Tor Books +29588,Someone Comes to Town Someone Leaves Town,Cory Doctorow,3.51,0765312808,9780765312808,en-US,315,2956,321,5/30/2006,Tor Books +29589,Eastern Standard Tribe,Cory Doctorow,3.48,0765310457,9780765310453,en-US,223,3213,213,4/1/2005,Tor Books +29593,A Place So Foreign and Eight More,Cory Doctorow/Bruce Sterling,3.72,1568582862,9781568582863,eng,243,860,43,9/8/2003,Four Walls Eight Windows Press +29597,Through Painted Deserts: Light God and Beauty on the Open Road,Donald Miller,3.92,0785209824,9780785209829,eng,256,8931,444,8/14/2005,Thomas Nelson +29603,20 000 Leagues Under the Sea,Ron Miller/Jules Verne/Paul Wright,3.76,0751370738,9780751370737,eng,64,34,4,10/8/1998,Prentice Hall +29613,Codebreakers' Victory: How the Allied Cryptographers Won World War II,Hervie Haufler,4.18,0451209796,9780451209795,eng,352,45,3,11/4/2003,NAL Trade +29616,All Night Long,Jayne Ann Krentz,3.96,0399153055,9780399153051,eng,416,7438,257,1/3/2006,G.P. Putnam's Sons +29617,White Lies (Arcane Society #2),Jayne Ann Krentz,4.01,039915373X,9780399153730,eng,371,7604,328,2/1/2007,G.P. Putnam's Sons +29619,Ghost Hunter (Ghost Hunters #3),Jayne Castle/Jayne Ann Krentz,4.14,0515141402,9780515141405,eng,327,4349,170,5/30/2006,Jove Books +29620,The Pirate / The Adventurer / The Cowboy,Jayne Ann Krentz,3.89,0373771711,9780373771714,eng,362,262,7,4/25/2006,Harlequin +29621,Midnight Jewels,Jayne Ann Krentz,3.75,0446692476,9780446692472,eng,425,1306,35,7/1/2003,Warner Books +29622,The Wedding Night,Jayne Ann Krentz,3.45,1551668513,9781551668512,eng,256,795,23,11/23/2001,MIRA +29623,After Glow (Ghost Hunters #2),Jayne Castle/Jayne Ann Krentz,4.14,0515136948,9780515136944,eng,343,4149,138,2/24/2004,Jove Books +29624,Orchid (St. Helen's #3),Jayne Castle/Jayne Ann Krentz,4.15,0671569023,9780671569020,eng,327,3748,102,5/1/1998,Pocket Books +29625,The Origin of Consciousness in the Breakdown of the Bicameral Mind,Julian Jaynes,4.25,0713912545,9780713912548,en-GB,467,7,1,6/1/1979,Allen Lane +29627,The Future of the Universe,Jack Meadows,3.80,1852339462,9781852339463,eng,175,5,0,12/1/2006,Springer +29632,Micro Eco-Farming: Prospering from Backyard to Small Acreage in Partnership with the Earth,Barbara Berst Adams,3.76,0963281437,9780963281432,eng,174,68,5,5/1/2005,New World Publishing +29633,The Quiet American: Text and Criticism,Graham Greene/John Clark Pratt,3.97,014024350X,9780140243505,eng,515,225,17,1/1/1996,Penguin Books +29639,The Quiet American,Graham Greene/Zadie Smith,3.97,0099478390,9780099478393,eng,198,1344,156,10/7/2004,Vintage Books/Vintage Classics +29641,The End of the Affair,Graham Greene/Monica Ali,3.94,0099478447,9780099478447,eng,160,38283,3002,10/7/2004,Vintage Classics +29658,Postwar: A History of Europe Since 1945,Tony Judt,4.34,0143037757,9780143037750,eng,933,8017,571,9/5/2006,Penguin Books +29680,The Coen Brothers: Interviews,William Rodney Allen,3.82,1578068894,9781578068890,eng,208,73,3,8/18/2006,University Press of Mississippi +29685,The Hermeneutical Spiral: A Comprehensive Introduction to Biblical Interpretation,Grant R. Osborne,3.94,0830828265,9780830828265,eng,624,410,37,12/1/2006,IVP Academic +29694,Raising the Bar: Ministry to Youth in the New Millennium,Alvin L. Reid,3.86,082543632X,9780825436321,en-US,208,42,3,4/7/2004,Kregel Academic & Professional +29705,The Book of Other People,Zadie Smith/David Mitchell/George Saunders/Colm Tóibín/Aleksandar Hemon/Nick Hornby/Hari Kunzru/Toby Litt/Chris Ware,3.38,0143038184,9780143038184,eng,304,2546,328,1/2/2008,Penguin Books +29718,The Confusions of Young Törless,Robert Musil/Shaun Whiteside/J.M. Coetzee,3.73,0142180009,9780142180006,eng,176,4374,179,9/27/2001,Penguin +29719,Robinson Crusoe,Daniel Defoe/J.M. Coetzee,3.67,0192100335,9780192100337,eng,306,125,3,9/16/1999,Oxford University Press +29720,Doubling the Point: Essays and Interviews,J.M. Coetzee/David Attwell,4.05,0674215184,9780674215184,en-US,438,85,2,8/12/1992,Harvard University Press +29724,Fantastic! Wow! and Unreal!: A Book About Interjections and Conjunctions,Ruth Heller,4.22,0698118758,9780698118751,en-US,32,84,11,10/23/2000,Puffin Books +29726,Don DeLillo's White Noise: A Reader's Guide,Leonard Orr,3.92,0826414745,9780826414748,eng,96,76,9,4/10/2003,Bloomsbury Academic +29734,Letting Go,Philip Roth,3.70,0679764178,9780679764175,eng,630,1103,88,9/2/1997,Vintage +29737,My Life as a Man,Philip Roth,3.73,067974827X,9780679748274,eng,334,1561,101,1/13/1994,Vintage +29738,Patrimony,Philip Roth,4.17,0679752935,9780679752936,eng,240,2531,202,6/3/1996,Vintage +29741,The Great American Novel,Philip Roth,3.63,0679749063,9780679749066,eng,416,180,22,4/11/1995,Vintage +29743,The Professor of Desire,Philip Roth/Νίκος Παναγιωτόπουλος,3.66,0099389010,9780099389019,eng,272,2016,113,10/5/1995,Vintage +29745,Deception,Philip Roth,3.34,0099801906,9780099801900,eng,208,1524,118,1/17/2006,Vintage +29746,When She Was Good,Philip Roth,3.53,0679759255,9780679759256,eng,320,1748,149,1/31/1995,Vintage +29776,The Dying Animal,Philip Roth,3.63,0099422697,9780099422693,eng,156,5910,437,3/7/2002,Vintage +29788,For the Relief of Unbearable Urges,Nathan Englander,3.93,0375704434,9780375704437,eng,205,2418,229,3/21/2000,Vintage +29791,The Ministry of Special Cases,Nathan Englander,3.66,0375404937,9780375404931,eng,339,2509,368,4/24/2007,Knopf Publishing Group +29797,The Pilgrim's Progress,John Bunyan,4.00,0486426750,9780486426754,eng,324,87175,1875,2/10/2003,Dover Publications +29800,Scott Pilgrim Volume 1: Scott Pilgrim's Precious Little Life,Bryan Lee O'Malley,4.17,1932664084,9781932664089,eng,168,155863,3267,8/18/2004,Oni Press +29806,The Pilgrim's Regress,C.S. Lewis/Michael Hague,3.88,0802806414,9780802806413,eng,219,6276,362,1/10/1992,William B. Eerdmans Publishing Company +29811,Little Pilgrim's Progress: From John Bunyan's Classic,Helen L. Taylor,4.26,0802449247,9780802449245,eng,336,2065,136,2/1/2006,Moody Publishers +29819,The Landing of the Pilgrims,James Daugherty,3.41,0394846974,9780394846972,eng,160,611,69,2/12/1981,Random House Books for Young Readers +29820,Little Pilgrim's Progress,Helen L. Taylor/John Bunyan,4.26,0802449263,9780802449269,eng,256,212,20,3/8/1989,Moody Publishers +29823,From Nomads to Pilgrims: Stories from Practicing Congregations,Diana Butler Bass,4.00,1566993237,9781566993234,eng,179,13,0,12/30/2005,Rowman & Littlefield Publishers +29838,The New York Times Guide to Essential Knowledge,John D. Leonard/The New York Times,4.10,0312313675,9780312313678,en-US,1104,157,10,11/5/2004,St. Martin's Press +29841,New York 2000: Architecture and Urbanism Between the Bicentennial and the Millennium,Robert A.M. Stern/David Fishman/Jacob Tilove,4.44,1580931774,9781580931779,eng,1520,16,0,11/1/2006,The Monacelli Press +29842,Forgotten New York: Views of a Lost Metropolis,Kevin Walsh,4.16,0060754001,9780060754006,eng,384,200,20,9/26/2006,Collins Reference +29845,The Historical Atlas of New York City: A Visual Celebration of Nearly 400 Years of New York City's History,Eric Homberger/Alice Hudson,4.06,0805078428,9780805078428,eng,192,308,22,7/1/2005,Holt Paperbacks +29868,La toile de Charlotte,E.B. White/Garth Williams/Catherine Chaine,4.17,221102288X,9782211022880,fre,192,13,0,4/1/1997,l'ecole des loisirs +29873,This Is New York,Miroslav Sasek,4.29,0789308843,9780789308849,en-GB,64,385,38,5/30/2003,Universe +29879,They Dare to Speak Out: People and Institutions Confront Israel's Lobby,Paul Findley,4.07,155652482X,9781556524820,eng,416,106,5,5/1/2003,Lawrence Hill Books +29881,Famous Last Words,Timothy Findley,3.99,057120905X,9780571209057,eng,416,1400,57,8/20/2001,Faber Faber +29898,The Wars,Timothy Findley,3.88,0571207995,9780571207992,eng,218,6467,245,8/20/2001,Faber and Faber +29900,Into the Void (Spelljammer: The Cloakmaster Cycle #2),Nigel Findley,3.54,1560761547,9781560761549,en-US,311,257,12,9/1/1991,TSR +29905,Essential Dialogues of Plato,Plato/Benjamin Jowett/Pedro De Blas,4.05,159308269X,9781593082697,eng,624,4853,14,10/5/2005,Barnes Noble Classics +29906,The Collected Dialogues,Plato/Edith Hamilton/Huntington Cairns,4.23,0691097186,9780691097183,eng,1776,704,31,9/15/1963,Princeton University Press (NJ) +29907,Republic,Plato/Benjamin Jowett/Elizabeth Watson Scharffenberger,3.94,1593080972,9781593080976,eng,496,392,33,8/1/2005,Barnes Noble Classics +29908,The Republic,Plato/Tom Griffith,3.94,0460873822,9780460873826,eng,240,7,1,11/15/1993,Orion Publishing Group Ltd. +29914,Inner Circle (Carol Ashton Mysteries #8),Claire McNab,3.74,156280135X,9781562801359,eng,196,72,1,10/1/1996,Naiad Press +29917,The Rising Tide (World War II: 1939-1945 #1),Jeff Shaara,4.11,034546141X,9780345461414,eng,576,5709,390,11/7/2006,Ballantine Books +29919,Jeff Shaara's Civil War Battlefields: Discovering America's Hallowed Ground,Jeff Shaara,4.11,0345464885,9780345464880,eng,288,584,59,4/25/2006,Ballantine Books +29920,Rise to Rebellion,Jeff Shaara,4.18,0345427548,9780345427540,eng,492,5745,383,6/29/2004,Ballantine Books +29922,Gone for Soldiers: A Novel of the Mexican War,Jeff Shaara,4.14,0345427513,9780345427519,eng,424,191,18,7/3/2001,Ballantine Books +29923,The Last Full Measure (The Civil War Trilogy #3),Jeff Shaara,4.24,0345434811,9780345434814,eng,640,13438,314,5/2/2000,Ballantine Books +29927,A Farewell to Arms?: Beyond the Good Friday Agreement,Adrian Guelke/Michael Cox/Fiona Stephen,4.33,0719071151,9780719071157,eng,624,0,0,4/18/2006,Manchester University Press +29932,When Smoke Ran Like Water: Tales Of Environmental Deception And The Battle Against Pollution,Devra Davis/Mitchell Gaynor,4.02,0465015220,9780465015221,en-US,352,249,29,12/25/2003,Basic Books +29934,What Work Is,Philip Levine,4.27,0679740589,9780679740582,eng,77,2102,90,4/21/1992,Knopf +29936,The Simple Truth,Philip Levine/Harry Ford,4.21,0679765840,9780679765844,eng,69,656,52,9/3/1996,Knopf +29941,Fiskadoro,Denis Johnson,3.54,0060976098,9780060976095,en-US,221,1513,116,5/30/2000,Harper Perennial +29946,Illusions: The Adventures of a Reluctant Messiah,Richard Bach,4.15,0099427869,9780099427865,eng,144,50816,1906,3/12/2001,Arrow Books Ltd +29947,There's No Such Place As Far Away,Richard Bach/H. Lee Shapiro/دل آرا قهرمان,3.93,0385319274,9780385319270,eng,48,2737,83,1/12/1998,Delta +29949,Running from Safety: An Adventure of the Spirit,Richard Bach,3.79,0385315287,9780385315289,eng,368,1775,54,11/1/1995,Delta +29953,A Gift Of Wings,Richard Bach,3.79,0330304216,9780330304214,eng,299,1664,44,5/11/2001,Sidgwick & Jackson Ltd +29960,Winter of Magic's Return,Pamela F. Service,4.25,0449702022,9780449702024,eng,194,235,18,11/12/1986,Fawcett +29964,A Modern Utopia,H.G. Wells/Gregory Claeys/Francis Wheen,3.45,0141441127,9780141441122,eng,320,596,53,3/31/2006,Penguin Books Limited +29965,The War of the Worlds,H.G. Wells/Leon Stover,3.82,0786407808,9780786407804,eng,321,16,1,4/30/2001,McFarland & Company +29966,The Shape of Things to Come,H.G. Wells/John Clute,3.61,0141441046,9780141441047,eng,530,931,43,5/26/2006,Penguin Books Limited +29967,Floor Games (Sandplay Classics),H.G. Wells/Barbara A. Turner,3.40,0972851720,9780972851725,eng,110,46,3,9/1/2004,Temenos Press +29971,Seven Novels,H.G. Wells,4.14,0706425618,9780706425611,eng,828,4,3,1/1/1985,Octopus Books (London) +29976,Three Prophetic Science Fiction Novels,H.G. Wells/E.F. Bleiler,3.86,0844631515,9780844631516,eng,335,1,0,12/31/1975,Peter Smith Publisher Inc. +29979,Science Fiction Treasury: Six Complete Novels (complete & unabridged),H.G. Wells/George Gesner,3.94,0517436329,9780517436325,eng,688,17,1,9/19/1984,Random House Value Publishing +29981,The Island of Doctor Moreau,H.G. Wells,3.73,0553214322,9780553214321,eng,153,71933,2443,5/1/1994,Bantam Classics +29990,Notebooks of the Mind: Explorations of Thinking Revised Edition,Vera John-Steiner,3.83,0195108965,9780195108965,eng,288,17,1,1/23/1997,Oxford University Press USA +29993,The Visible Hand: The Managerial Revolution in American Business,Alfred D. Chandler Jr.,4.01,0674940520,9780674940529,en-US,624,222,26,1/1/1977,Belknap Press +29998,Crime Stories and Other Writings,Dashiell Hammett/Steven Marcus,4.39,1931082006,9781931082006,eng,934,490,30,9/10/2001,Library of America +29999,The Maltese Falcon,Dashiell Hammett,3.91,0752865331,9780752865331,eng,213,69254,2997,3/1/2005,Orion +30001,Lost Stories,Dashiell Hammett/Vince Emery/Joe Gores,3.98,0972589813,9780972589819,eng,342,201,37,9/1/2005,Vince Emery Productions +30002,The Dain Curse,Dashiell Hammett,3.83,0752851802,9780752851808,eng,256,5558,268,12/5/2002,Orion +30003,The Big Knockover: Selected Stories and Short Novels,Dashiell Hammett/Lillian Hellman/Jeff Stone,4.18,0679722599,9780679722595,eng,480,2916,83,7/17/1989,Vintage Crime/Black Lizard +30005,Red Harvest,Dashiell Hammett,3.97,0752852612,9780752852614,eng,224,17966,870,5/1/2003,Orion +30010,The Complete Stories Vol 1,Isaac Asimov,4.36,038541627X,9780385416276,eng,624,5362,115,10/1/1990,Broadway +30026,Xénocide (Ender's Saga #3),Orson Scott Card,3.79,2290315524,9782290315521,fre,573,73,3,10/18/2001,J'ai lu +30028,Edgar A. Poe: Mournful and Never-ending Remembrance,Kenneth Silverman,4.01,0060923318,9780060923310,en-US,592,295,34,12/23/2008,Harper Perennial +30029,Tales of Mystery and Madness,Edgar Allan Poe/Gris Grimly,4.34,0689848374,9780689848377,eng,135,2226,139,8/30/2011,Atheneum +30036,Elric of Melniboné (The Elric Saga #1),Michael Moorcock,3.89,0441203981,9780441203987,eng,181,20559,682,7/15/1987,Ace Books +30039,The Prize (deWarenne Dynasty #4),Brenda Joyce,3.98,0778320898,9780778320890,eng,575,1604,66,9/24/2004,Mira Books +30041,Elric of Melnibone: Bright Shadows,Charles Green/Richard Ford/Pascal Quidault,4.00,1905850581,9781905850587,eng,98,8,0,4/1/2008,Mongoose Publishing +30043,A River Runs Through it and Other Stories,Norman Maclean/Annie Proulx,4.18,0226500667,9780226500669,eng,217,18634,1147,10/1/2001,University of Chicago Press +30044,Young Men and Fire,Norman Maclean,4.08,0226500624,9780226500621,eng,301,4346,386,11/5/1993,University Of Chicago Press +30050,When the Rivers Run Dry: Water - The Defining Crisis of the Twenty-first Century,Fred Pearce,3.94,0807085731,9780807085738,eng,336,672,82,3/15/2007,Beacon Press +30051,The River Runs Black: The Environmental Challenge to China's Future,Elizabeth C. Economy,3.80,0801489784,9780801489785,eng,337,135,15,2/24/2005,Cornell University Press +30053,Only the River Runs Free (The Galway Chronicles #1),Bodie Thoene/Brock Thoene,4.09,0785263780,9780785263784,eng,271,1387,104,1/14/1997,Thomas Nelson +30055,It's Not About the Bike: My Journey Back to Life,Lance Armstrong/Sally Jenkins,3.72,0224060872,9780224060875,en-GB,294,495,42,5/3/2001,Yellow Jersey +30065,The Walking Dead Vol. 5: The Best Defense,Robert Kirkman/Charlie Adlard/Cliff Rathburn,4.29,158240612X,9781582406121,eng,136,21435,841,4/21/2009,Image Comics +30066,Being Dead Is No Excuse: The Official Southern Ladies Guide to Hosting the Perfect Funeral,Gayden Metcalfe,3.86,1401359345,9781401359348,en-US,243,1741,272,3/16/2005,Hyperion Books +30067,Drop Dead Gorgeous (Blair Mallory #2),Linda Howard,3.93,0345486587,9780345486585,eng,347,7227,301,11/28/2006,Ballantine Books +30068,The Book of the Dead (Pendergast #7; Diogenes #3),Douglas Preston/Lincoln Child,4.13,0446576980,9780446576987,eng,454,27050,947,8/14/2006,Warner Books (NY) +30069,The Walking Dead Vol. 3: Safety Behind Bars,Robert Kirkman/Charlie Adlard/Cliff Rathburn,4.30,1582404879,9781582404875,eng,136,25796,1020,6/18/2005,Image Comics +30071,The Walking Dead Book One (The Walking Dead #1-12),Robert Kirkman/Tony Moore/Charlie Adlard/Cliff Rathburn,4.35,1582406197,9781582406190,eng,304,34751,1346,10/5/2010,Image Comics +30072,The Brief History of the Dead,Kevin Brockmeier,3.67,1400095956,9781400095957,eng,252,9490,1576,1/9/2007,Vintage +30080,Beckett Football Card Price Guide,Dan Hitt/James Beckett III,0.00,1930692471,9781930692473,eng,830,0,0,9/1/2006,Beckett Media +30085,The Power of Infinite Love & Gratitude: An Evolutionary Journey to Awakening Your Spirit,Darren R. Weissman,4.11,1401917178,9781401917173,eng,298,62,14,2/1/2007,Hay House +30091,Masculinity and Male Codes of Honor in Modern France,Robert A. Nye,4.36,0520215109,9780520215108,en-US,316,14,0,11/30/1998,University of California Press +30092,The Life and Death of My Lord Gilles de Rais,Robert Nye,3.87,0349102503,9780349102504,en-GB,323,65,8,12/1/1991,Abacus Books (London) +30093,The White Wolf's Son: The Albino Underground (Elric & Oona Von Bek #3),Michael Moorcock,3.88,0446617458,9780446617451,en-US,432,283,8,9/1/2006,Grand Central Publishing +30094,Michael Moorcock's Multiverse,Michael Moorcock/Walter Simonson/Mark Reeve/John Ridgway,3.94,1563895161,9781563895166,eng,288,170,10,11/1/1999,Vertigo +30095,Gloriana,Michael Moorcock,3.65,0446691402,9780446691406,eng,496,1742,64,8/1/2004,Aspect +30097,The Eternal Champion (Eternal Champion #1),Michael Moorcock,3.95,1565041917,9781565041912,eng,484,2524,40,2/1/1996,White Wolf Games Studio +30104,The Spell,Alan Hollinghurst,3.54,0140286373,9780140286373,eng,272,1559,103,5/1/2000,Penguin Books +30106,The Swimming-Pool Library,Alan Hollinghurst,3.77,0679722564,9780679722564,eng,352,7115,322,9/19/1989,Vintage +30107,The Ivory Tower,Henry James/Alan Hollinghurst/Ezra Pound,3.29,1590170784,9781590170786,eng,296,57,7,2/29/2004,NYRB Classics +30112,America Alone: The End of the World As We Know It,Mark Steyn,4.13,0895260786,9780895260789,eng,224,3095,362,10/1/2006,Regnery Publishing +30117,Where the Sidewalk Ends: Poems and Drawings,Shel Silverstein,4.30,0060572345,9780060572341,eng,192,3587,179,2/18/2014,HarperCollins +30118,A Light in the Attic,Shel Silverstein,4.34,0060513063,9780060513061,eng,176,349247,2567,10/7/2002,Harpercollins Childrens Books +30122,The Missing Piece (The Missing Piece #1),Shel Silverstein,4.28,0060256710,9780060256715,eng,112,24366,746,1/24/2006,HarperCollins +30125,The Missing Piece Meets the Big O,Shel Silverstein,4.34,0060256575,9780060256579,eng,104,10503,505,1/24/2006,HarperCollins +30128,Lafcadio the Lion Who Shot Back,Shel Silverstein,4.15,0060256753,9780060256753,eng,112,5308,307,9/24/2013,HarperCollins +30129,A Light in the Attic (Book & CD),Shel Silverstein,4.34,0066236177,9780066236179,en-US,176,597,21,10/9/2001,HarperCollins +30134,Runny Babbit Book and Abridged CD,Shel Silverstein/Dennis Locorriere,4.12,0061130478,9780061130472,en-US,96,44,6,9/26/2006,HarperCollins +30143,L'albero,Shel Silverstein/Daniela Gamba,4.37,887782719X,9788877827197,ita,62,36,7,5/1/2000,Salani +30160,The Beginning: The Cove / The Maze (FBI Thriller #1-2),Catherine Coulter,4.20,0425205517,9780425205518,eng,544,756,34,9/6/2005,Berkley Trade +30162,Jade Star (Star #4),Catherine Coulter,3.83,0451206126,9780451206121,en-US,400,896,19,6/1/2002,Signet +30164,Double Take (FBI Thriller #11),Catherine Coulter,4.05,0399154248,9780399154249,eng,420,7456,376,6/12/2007,Putnam Adult +30165,The Valentine Legacy (Legacy #3),Catherine Coulter,3.88,0515118362,9780515118360,eng,406,2133,42,9/1/1996,Berkley Books +30174,Undead and Unwed (Undead #1),MaryJanice Davidson,3.82,1597221104,9781597221108,eng,392,89,18,12/31/2005,Wheeler Publishing +30176,Undead and Unappreciated (Undead #3),MaryJanice Davidson,3.88,1597221287,9781597221283,eng,279,67,5,12/31/2005,Wheeler Publishing +30183,Marked (House of Night #1),P.C. Cast/Kristin Cast,3.80,0312360266,9780312360269,eng,306,399152,12748,5/1/2007,St. Martin's Press +30186,Divine By Choice (Partholon #2),P.C. Cast,4.10,037380251X,9780373802517,eng,377,6435,209,11/21/2006,Luna Books +30187,Divine By Mistake (Partholon #1),P.C. Cast,4.09,0373802471,9780373802470,eng,701,8633,452,8/29/2006,Luna Books +30189,Cast in Courtlight (Chronicles of Elantra #2),Michelle Sagara,4.11,0373802447,9780373802449,eng,488,8990,294,7/18/2006,Luna +30190,Goddess of Light (Goddess Summoning #3),P.C. Cast,4.04,0425201961,9780425201961,eng,355,5594,213,4/5/2005,Berkley +30191,Brighid's Quest (Partholon #5),P.C. Cast,4.14,0373802420,9780373802425,eng,507,3344,107,11/29/2005,Luna Books +30193,Goddess of the Rose (Goddess Summoning #4),P.C. Cast,4.14,0425208915,9780425208915,eng,345,5499,248,2/7/2006,Berkley Sensation +30194,Goddess of Spring (Goddess Summoning #2),P.C. Cast,4.21,0425197492,9780425197493,eng,360,7579,446,8/3/2004,Berkley Sensation +30196,Goddess of the Sea (Goddess Summoning #1),P.C. Cast,3.87,0425192792,9780425192795,eng,368,7847,439,10/7/2003,Berkley Sensation +30199,Mysteria (Mysteria #1),MaryJanice Davidson/Susan Grant/P.C. Cast/Gena Showalter,3.73,0425211061,9780425211069,eng,340,3046,96,7/5/2006,Berkley Sensation +30200,Elphame's Choice (Partholon #4),P.C. Cast,4.03,0373802137,9780373802135,eng,551,3971,141,11/24/2004,Luna Books +30206,Loveless Vol. 1: A Kin of Homecoming,Brian Azzarello/Marcelo Frusín,3.32,1401210619,9781401210618,eng,128,516,52,5/1/2006,Vertigo +30214,Where the Mountain Casts Its Shadow: The Dark Side of Extreme Adventure,Maria Coffey/Thomas Hornbein,3.88,0312339011,9780312339012,eng,256,386,49,4/1/2005,St. Martin's Griffin +30215,Cast a Yellow Shadow (Mac McCorkle #2),Ross Thomas,3.95,0445405562,9780445405561,eng,272,206,17,2/1/1987,Mysterious Press +30220,Like a Velvet Glove Cast in Iron,Daniel Clowes,4.06,1560971169,9781560971160,eng,200,6409,280,1/17/1993,Fantagraphics +30223,Goddess of Love (Goddess Summoning #5),P.C. Cast,4.06,0425215288,9780425215289,eng,292,4475,196,6/5/2007,Berkley Books +30224,Mistral's Kiss (Merry Gentry #5),Laurell K. Hamilton,4.04,0345443586,9780345443588,en-US,212,27026,421,12/12/2006,Ballantine Books +30225,The Harlequin (Anita Blake Vampire Hunter #15),Laurell K. Hamilton,3.92,0425217248,9780425217245,en-US,422,37989,785,6/5/2007,Berkley Books +30226,A Stroke of Midnight (Merry Gentry #4),Laurell K. Hamilton,4.07,0345443608,9780345443601,en-US,385,28551,442,11/28/2006,Ballantine Books +30227,Danse Macabre (Anita Blake Vampire Hunter #14),Laurell K. Hamilton,3.82,0425207978,9780425207970,en-US,483,798,52,6/27/2006,Berkley +30228,Micah (Anita Blake Vampire Hunter #13),Laurell K. Hamilton,3.63,0515140872,9780515140873,en-US,245,39849,868,3/1/2006,Berkley Books +30229,Death of a Darklord (Ravenloft #13),Laurell K. Hamilton,3.43,0786941227,9780786941223,eng,306,2679,113,7/11/2006,Wizards of the Coast +30230,Anita Blake Vampire Hunter Collection 1-4 (Anita Blake Vampire Hunter #1-4),Laurell K. Hamilton,4.54,0515136174,9780515136173,eng,1256,3320,36,2/25/2003,Jove +30231,Little Butterfly Volume 02,Hinako Takanaga,4.18,1569709068,9781569709061,eng,170,760,8,9/19/2006,Digital Manga Publishing +30232,Little Butterfly Volume 03,Hinako Takanaga,4.21,156970905X,9781569709054,eng,184,609,6,12/6/2006,Digital Manga Publishing +30233,Little Butterfly Volume 01,Hinako Takanaga,4.07,1569709076,9781569709078,eng,184,1540,31,5/30/2006,Digital Manga Publishing +30236,The Little Butterfly,Sherry Shahan,4.03,0679888098,9780679888093,eng,24,17,6,4/14/1998,Random House Books for Young Readers +30240,A Caress of Twilight (Merry Gentry #2),Laurell K. Hamilton,4.06,0345478169,9780345478160,en-US,348,32029,596,3/15/2005,Ballantine Books +30241,Bloody Bones (Anita Blake Vampire Hunter #5),Laurell K. Hamilton,4.11,0425205673,9780425205679,eng,336,60937,959,11/1/2005,Berkley Hardcover +30242,Burnt Offerings (Anita Blake Vampire Hunter #7),Laurell K. Hamilton,4.08,0515134473,9780515134476,en-US,392,58849,832,9/24/2002,Berkley Books +30243,Seduced by Moonlight (Merry Gentry #3),Laurell K. Hamilton,4.06,0553816322,9780553816327,eng,409,28152,404,1/14/2005,Bantam +30244,The Killing Dance (Anita Blake Vampire Hunter #6),Laurell K. Hamilton,4.13,0425209067,9780425209066,en-US,368,59524,946,4/4/2006,Berkley Hardcover +30245,Cerulean Sins (Anita Blake Vampire Hunter #11),Laurell K. Hamilton,3.85,0515136816,9780515136814,en-US,529,43475,731,8/31/2004,Berkley Books +30246,Blue Moon (Anita Blake Vampire Hunter #8),Laurell K. Hamilton,4.05,0515134457,9780515134452,en-US,418,55670,835,9/24/2002,Berkley Books +30247,A Stolen Season (Alex McKnight #7),Steve Hamilton,3.96,031235360X,9780312353605,eng,304,1889,137,9/5/2006,Minotaur Books +30248,Narcissus in Chains (Anita Blake Vampire Hunter #10),Laurell K. Hamilton,3.90,0515133876,9780515133875,eng,644,49695,998,9/24/2002,Jove +30249,Sensual Phrase Vol. 15,Mayu Shinjō,4.23,1421505606,9781421505602,en-US,175,488,7,8/1/2006,Viz Media +30250,Sensual Phrase Vol. 17,Mayu Shinjō,4.24,1421505622,9781421505626,en-US,208,489,4,12/1/2006,Viz Media +30253,Sensual Phrase Vol. 3,Mayu Shinjō,4.14,1591164494,9781591164494,en-US,192,744,11,8/11/2004,Viz Media +30258,Harrison's Principles of Internal Medicine,Dennis L. Kasper/Dan L. Longo/Stephen L. Hauser/Anthony S. Fauci/Eugene Braunwald,4.35,0071391401,9780071391405,eng,2751,23,4,7/27/2004,McGraw-Hill Medical Publishing +30259,For a Few Demons More (The Hollows #5),Kim Harrison,4.33,0060788380,9780060788384,eng,456,48049,1104,3/20/2007,Harper Voyager +30260,A Fistful of Charms (The Hollows #4),Kim Harrison,4.29,0060788194,9780060788193,eng,510,47773,1109,6/27/2006,HarperTorch +30262,The Good the Bad and the Undead (The Hollows #2),Kim Harrison,4.26,0060572973,9780060572976,eng,453,54083,1602,1/25/2005,HarperTorch +30263,Every Which Way But Dead (The Hollows #3),Kim Harrison,4.29,006057299X,9780060572990,eng,501,60083,1213,6/28/2005,HarperTorch +30264,Dead Witch Walking (The Hollows #1),Kim Harrison,4.04,0060572965,9780060572969,en-US,416,99076,4091,7/1/2004,HarperTorch +30268,Dates from Hell,Kim Harrison/Lynsay Sands/Kelley Armstrong/Lori Handeland,3.78,006085409X,9780060854096,eng,416,10630,309,3/28/2006,Avon +30270,Pacto Con un Demonio,Kim Harrison,4.39,0060898720,9780060898724,spa,512,0,0,7/1/2008,HarperTorch +30271,Incubus Dreams (Anita Blake Vampire Hunter #12),Laurell K. Hamilton,3.79,0515139750,9780515139754,eng,722,41737,831,9/27/2005,Jove +30272,Schattenkuss (Meredith Gentry #1),Laurell K. Hamilton,4.01,3442356911,9783442356911,ger,573,22,0,4/2/2002,Blanvalet Taschenbuch Verlag +30273,The Lunatic Cafe (Anita Blake Vampire Hunter #4),Laurell K. Hamilton,4.12,0425201376,9780425201374,eng,352,64036,962,3/1/2005,Berkley Hardcover +30274,Circus of the Damned (Anita Blake Vampire Hunter #3),Laurell K. Hamilton,4.17,0425201392,9780425201398,eng,320,78062,1121,1/2/2007,Berkley +30279,Bite (Anita Blake Vampire Hunter #8.5; Sookie Stackhouse #5.1; Undead #2.5; Mageverse #1.5),Laurell K. Hamilton/Charlaine Harris/MaryJanice Davidson/Angela Knight/Vickie Taylor,3.77,051513970X,9780515139709,eng,297,15072,424,12/28/2004,Jove +30280,Out of this World,J.D. Robb/Laurell K. Hamilton/Susan Krinard/Maggie Shayne,4.07,0515131091,9780515131093,eng,357,6006,111,8/1/2001,Jove Books +30281,Guilty Pleasures (Anita Blake Vampire Hunter #1),Laurell K. Hamilton,4.02,0425197549,9780425197547,eng,355,115364,4037,8/3/2004,Berkley +30282,Cravings (Undead #1.5; Moon #3.5),Laurell K. Hamilton/MaryJanice Davidson/Eileen Wilks/Rebecca York,3.82,0515138150,9780515138153,eng,358,7965,188,6/29/2004,Berkley Books +30284,Nachtschwärmer (Meredith Gentry #2),Laurell K. Hamilton,4.06,3442358957,9783442358953,ger,586,13,0,5/1/2003,Blanvalet Taschenbuch Verlag +30288,Laurell K. Hamilton's Anita Blake Vampire Hunter: Guilty Pleasures vol 1,Laurell K. Hamilton/Stacie Ritchie/Jessica Ruffner/Brett Booth,4.17,0785127232,9780785127239,eng,168,7302,250,7/18/2007,Marvel +30289,The Republic,Plato/Desmond Lee/Maria Helena da Rocha Pereira/Benjamin Jowett,3.94,0140449140,9780140449143,eng,416,136467,2013,2/25/2003,Penguin Classics +30290,The Republic of Plato,Plato/Allan Bloom,3.94,0465069347,9780465069347,eng,487,1699,125,10/3/1991,Basic Books +30292,Five Dialogues: Euthyphro Apology Crito Meno Phaedo,Plato/G.M.A. Grube/John M. Cooper,4.13,0872206335,9780872206335,eng,156,15657,227,10/1/2002,Hackett Publishing Company Inc. +30293,Plato Not Prozac!: Applying Eternal Wisdom to Everyday Problems,Lou Marinoff,3.41,0060931361,9780060931360,eng,320,870,67,8/1/2000,Harper Perennial +30294,Republic,Plato/C.D.C. Reeve,3.94,0872207366,9780872207363,eng,358,500,41,9/15/2004,Hackett Publishing Company Inc. +30296,Plato's Symposium,Plato/Seth Benardete/Allan Bloom,4.04,0226042758,9780226042756,eng,199,519,32,2/1/2001,University of Chicago Press +30298,The Symposium,Plato/Christopher Gill,4.04,0140446168,9780140446166,eng,90,174,10,10/1/1999,Penguin Classics +30300,The Last Days of Socrates,Plato/Hugh Tredennick/Harold Tarrant,4.08,0140449280,9780140449280,eng,256,1686,111,3/27/2003,Penguin Classics +30314,Embracing Love Vol. 4,Youka Nitta,4.34,1933440171,9781933440170,eng,208,594,9,1/1/2007,Be Beautiful +30316,Embracing Love Vol. 5,Youka Nitta,4.36,193344018X,9781933440187,eng,216,401,9,4/1/2007,Be Beautiful +30317,Embracing the Love of God: The Path and Promise of Christian Life,James Brian Smith/Richard J. Foster,4.26,0060667419,9780060667412,eng,192,63,8,6/28/1995,HarperOne +30318,Embracing Love Vol. 6,Youka Nitta,4.33,1933440198,9781933440194,eng,216,315,7,6/1/2008,Be Beautiful +30323,Jane Eyre,Charlotte Brontë/Margaret Smith/Sally Shuttleworth,4.12,0192839659,9780192839657,eng,452,684,50,2/1/2001,Oxford University Press +30331,In the Forests of the Night,Amelia Atwater-Rhodes,3.87,0440228166,9780440228165,eng,147,13452,508,2/2/2000,Laurel Leaf Library +30334,Hawksong (The Kiesha'ra #1),Amelia Atwater-Rhodes,4.15,044023803X,9780440238034,eng,243,19722,829,9/28/2004,Laurel Leaf +30335,Demon in My View,Amelia Atwater-Rhodes,4.04,0440228840,9780440228844,eng,192,10944,390,9/11/2001,Laurel Leaf +30336,Shattered Mirror,Amelia Atwater-Rhodes,4.03,0440229405,9780440229407,eng,240,9408,254,7/8/2003,Laurel Leaf +30337,Midnight Predator,Amelia Atwater-Rhodes,4.02,0440237971,9780440237976,eng,256,8039,177,12/9/2003,Laurel Leaf Library +30340,The Pound Era,Hugh Kenner,4.37,0520024273,9780520024274,eng,624,614,29,9/18/1973,University of California Press +30343,Ricochet,Sandra Brown,3.97,1416532358,9781416532354,eng,400,15225,544,1/2/2007,Simon & Schuster +30347,The Alibi,Sandra Brown,4.04,0446618675,9780446618670,eng,564,20164,523,11/1/2006,Hachette Books +30348,A Whole New Light,Sandra Brown,3.55,055329783X,9780553297836,eng,227,2955,203,8/26/2008,Bantam (Fanfare Imprint) +30349,Where There's Smoke,Sandra Brown,3.97,0446600342,9780446600347,eng,512,5861,230,5/1/1994,Grand Central Publishing (Formerly Warner Books) +30351,22 Indigo Place,Sandra Brown,3.63,0553290851,9780553290851,eng,200,2537,79,2/25/1997,Bantam (Fanfare) +30352,Led Astray (Hellraisers #1),Erin St. Claire/Sandra Brown,3.76,0778321584,9780778321583,eng,240,2647,143,2/22/2005,Mira Books +30353,Tidings of Great Joy,Sandra Brown,3.62,0553576003,9780553576009,eng,231,1707,74,11/2/1999,Bantam +30354,A Secret Splendor,Erin St. Claire/Sandra Brown,3.66,077832284X,9780778322849,eng,280,1328,32,2/28/2006,Mira Books +30355,Love Beyond Reason,Rachel Ryan/Sandra Brown,3.64,0446616834,9780446616836,eng,272,1822,90,4/1/2005,Grand Central Publishing +30357,Words of Silk,Erin St. Claire/Sandra Brown,3.56,0446614165,9780446614160,eng,224,2677,136,4/1/2005,Grand Central Publishing +30358,Two Alone,Erin St. Claire/Sandra Brown,3.70,0778324311,9780778324317,eng,282,2155,142,2/27/2007,Mira Books +30361,Not Even for Love,Erin St. Claire/Sandra Brown,3.49,044661291X,9780446612913,eng,208,1705,95,4/1/2004,Grand Central Publishing +30362,Charade,Sandra Brown,3.94,0446601853,9780446601856,en-US,496,6044,250,7/1/1995,Hachette Books +30363,Exclusive,Sandra Brown,3.97,0446604232,9780446604239,eng,496,5852,342,7/1/1997,Grand Central Publishing +30364,Send No Flowers (Bed & Breakfast #2),Sandra Brown,3.56,0553576011,9780553576016,eng,225,2592,80,2/29/2000,Bantam +30365,The Thrill of Victory,Erin St. Claire/Sandra Brown,3.62,1551666723,9781551666723,eng,240,1097,56,2/21/2003,MIRA +30366,Heaven's Price,Sandra Brown,3.54,0553571575,9780553571578,eng,240,1828,58,11/1/1995,Bantam (Fanfare Imprint) +30367,Riley in the Morning,Sandra Brown,3.44,9792234799,9789792234794,eng,224,2268,49,11/27/2008,Gramedia Pustaka Utama +30368,The Rana Look,Sandra Brown,3.51,0553576054,9780553576054,eng,256,2437,96,12/2/2003,Bantam +30370,Texas! Sage (Texas! Tyler Family Saga #3),Sandra Brown,4.02,0553295004,9780553295009,eng,352,6114,195,2/1/1992,Bantam +30371,Temperatures Rising,Sandra Brown,3.45,0553804081,9780553804089,eng,214,2059,80,11/28/2006,Bantam Books +30373,A Kiss Remembered,Erin St. Claire/Sandra Brown,3.47,0446612618,9780446612616,eng,224,3667,164,4/1/2003,Grand Central Publishing +30376,Adam's Fall (Mason Sisters #2),Sandra Brown,3.74,0553567683,9780553567687,eng,208,3065,94,11/27/2001,Bantam +30379,Seduction by Design,Erin St. Claire/Sandra Brown,3.56,0446603104,9780446603102,eng,224,2882,116,3/1/2002,Grand Central Publishing (Formerly Warner Books) +30380,Prime Time,Rachel Ryan/Sandra Brown,3.58,0446364290,9780446364294,eng,256,2005,60,9/1/1995,Grand Central Publishing +30382,Tiger Prince,Erin St. Claire/Sandra Brown,3.78,155166531X,9781551665313,eng,304,2275,75,9/24/1999,MIRA +30383,Best Kept Secrets,Sandra Brown,3.77,0446533289,9780446533287,eng,480,5805,298,11/3/2003,Hachette Books +30384,Tomorrow's Promise,Sandra Brown,3.71,1551666014,9781551666013,eng,304,1764,69,5/25/2000,MIRA +30385,Sweet Anger,Erin St. Claire/Sandra Brown,3.59,0446603082,9780446603089,eng,320,2288,86,1/1/1999,Vision +30386,Demon Rumm,Sandra Brown,3.35,0553576070,9780553576078,eng,230,3122,144,11/29/2005,Bantam +30387,Breakfast in Bed (Bed & Breakfast #1),Sandra Brown,3.54,0553571583,9780553571585,eng,240,53,6,11/4/1996,Fanfare +30390,Above and Beyond,Erin St. Claire/Sandra Brown,3.73,077832026X,9780778320265,eng,240,2149,87,2/23/2004,Mira Books +30391,Fanta C (Mason Sisters #1),Sandra Brown,3.62,0553562746,9780553562743,eng,256,2317,63,1/21/1997,Fanfare +30392,Relentless Desire,Sandra Brown,3.63,0515068705,9780515068702,eng,183,22,4,12/31/1983,Jove Books +30394,Sunny Chandler's Return,Sandra Brown,3.59,0553576062,9780553576061,eng,256,2973,138,11/23/2004,Bantam +30397,Sandra Brown: Three Complete Novels (Best Kept Secrets Mirror Image and Slow Heat in Heaven),Sandra Brown,4.21,0517077744,9780517077740,eng,784,343,5,4/14/1992,Wings +30398,The Devil's Own (Hellraiser #2),Erin St. Claire/Sandra Brown,3.78,1551667932,9781551667935,en-US,240,65,9,2/22/2001,MIRA +30399,The Switch,Sandra Brown,3.92,0749932554,9780749932558,eng,576,9295,478,9/6/2001,Piatkus Books +30403,Play Dirty,Sandra Brown,3.92,0743289358,9780743289351,eng,404,9552,627,8/14/2007,Simon & Schuster +30410,A Secret Splendor,Erin St. Claire/Sandra Brown,3.66,1551660954,9781551660950,eng,297,18,2,1/1/1996,Mira (Mills and Boon) +30411,Texas! Trilogy,Sandra Brown,4.29,0385424701,9780385424707,eng,600,949,39,4/1/1992,Doubleday Books +30413,Betrogen,Sandra Brown,3.92,3764501359,9783764501358,ger,512,5,0,2/1/2003,Blanvalet Verlag GmbH +30415,Tempest in Eden,Sandra Brown,3.48,0446616818,9780446616812,eng,229,1560,57,4/1/2005,Warner Books (NY) +30417,The Killing of Monday Brown,Sandra West Prowell,3.45,0553569694,9780553569698,eng,320,92,11,7/1/1996,Bantam +30423,Un nuevo amanecer,Sandra Brown/Delia Mateovich,3.98,1400001048,9781400001040,spa,560,3,1,1/22/2002,Plaza y Janes +30429,Fanta C (Loveswept #217),Sandra Brown,3.62,0553218360,9780553218367,eng,192,12,1,10/1/1987,Loveswept +30432,Anhelos ocultos,Laura Jordan/Sandra Brown/Camino Estañ Requeni,3.94,8401505534,9788401505539,spa,380,32,8,3/27/1996,Cisne +30446,Schöne Lügen,Rachel Ryan/Sandra Brown,3.60,3442354994,9783442354993,ger,255,13,1,9/1/2001,Goldmann +30458,Yesterday I Cried,Iyanla Vanzant,4.23,0684867486,9780684867489,en-US,304,2311,151,3/2/2000,Atria Books +30474,The Communist Manifesto,Karl Marx/Friedrich Engels/Gareth Stedman Jones,3.55,0140447571,9780140447576,eng,288,75488,2716,6/27/2002,Penguin Classics +30475,The Communist Manifesto and Other Revolutionary Writings: Marx Marat Paine Mao Gandhi and Others,Bob Blaisdell/Karl Marx/Jean-Paul Marat/Tom Paine/Mao Zedong/Mahatma Gandhi,3.85,0486424650,9780486424651,eng,284,311,18,1/15/2003,Dover Publications +30476,The Communist Manifesto with Related Documents,Karl Marx/Friedrich Engels/John E. Toews,3.55,0312157118,9780312157111,en-US,184,97,5,2/28/1999,Bedford/St. Martin's +30477,The Communist Manifesto,Karl Marx/Friedrich Engels/Phil Gasper,3.55,1931859256,9781931859257,eng,221,138,20,10/1/2005,Haymarket Books +30480,The Communist Manifesto,Karl Marx/Friedrich Engels,3.55,1599869950,9781599869957,en-US,88,138,18,12/26/2005,Filiquarian Publishing LLC. +30482,The Communist Manifesto and Other Writings,Karl Marx/Friedrich Engels/Martin Puchner,3.65,1593083750,9781593083755,eng,224,26,0,10/1/2005,Barnes Noble Classics +30488,The Communist Manifesto,Karl Marx/Friedrich Engels/Samuel Moore,3.55,0717802418,9780717802418,eng,48,733,55,6/1/1948,International Publishers (NYC) +30491,The Communist Manifesto (Great Ideas),Karl Marx/Gareth Stedman Jones/Friedrich Engels,3.55,014303751X,9780143037514,en-US,128,251,13,5/30/2006,Penguin +30510,Paula Spencer,Roddy Doyle,3.78,0670038164,9780670038169,en-US,281,1956,186,1/1/2007,Viking Books +30512,Paddy Clarke Ha Ha Ha,Roddy Doyle,3.76,2264022442,9782264022448,eng,307,17042,586,6/4/1998,Editions 10/18 +30515,Introducing Sartre (Introducing... S.),Philip Thody/Howard Read,3.58,1840466723,9781840466720,eng,176,53,9,4/24/2002,Icon Books +30517,Colonialism and Neocolonialism,Jean-Paul Sartre/Azzedine Haddour,3.79,041537846X,9780415378468,eng,252,137,11,3/29/2006,Routledge Classics +30518,Tête-à-Tête: Simone de Beauvoir and Jean-Paul Sartre,Hazel Rowley,4.11,0060520590,9780060520595,eng,432,108,16,10/4/2005,Harper +30523,Jean-Paul Sartre: (The Giants of Philosophy),John Compton/Charlton Heston,3.86,0786169427,9780786169429,eng,3,57,4,4/1/2006,Knowledge Products +30528,Observations on the Feeling of the Beautiful and Sublime,Immanuel Kant/John T. Goldthwait,3.64,0520240782,9780520240780,eng,124,435,24,1/15/2004,University of California Press +30529,A Philosophical Enquiry into the Origin of our Ideas of the Sublime and Beautiful,Edmund Burke/Adam Phillips,3.76,0192835807,9780192835802,eng,208,1239,54,11/19/1998,Oxford University Press +30535,American Sublime: Poems,Elizabeth Alexander,3.80,1555974325,9781555974329,eng,96,196,22,10/1/2005,Graywolf Press +30536,Beauty and the Contemporary Sublime,Jeremy Gilbert-Rolfe,3.56,1581150377,9781581150377,eng,180,39,5,12/1/1999,Allworth +30537,Cigarettes Are Sublime,Richard Klein,3.81,0822316412,9780822316411,en-US,232,138,18,1/20/1995,Duke University Press Books +30542,The Art of the Ridiculous Sublime: On David Lynch's Lost Highway,Slavoj Žižek/Marek Wieczorek,3.72,0295979259,9780295979250,eng,56,275,22,4/1/2000,University of Washington Press +30551,Why Orwell Matters,Christopher Hitchens,3.93,0465030505,9780465030507,eng,211,2852,188,9/11/2003,Basic Books +30557,Shooting an Elephant,George Orwell,4.12,0141187395,9780141187396,eng,368,7029,255,6/5/2003,Penguin +30561,Ape and Essence,Aldous Huxley,3.76,0929587782,9780929587783,eng,222,3733,197,8/25/1992,Ivan R. Dee Publisher +30562,Complete Essays 1 1920-25,Aldous Huxley/Robert S. Baker/James Sexton,4.33,1566633222,9781566633222,en-GB,480,16,2,10/30/2000,Ivan R. Dee Publisher +30567,The Mottled Lizard,Elspeth Huxley,4.01,014005958X,9780140059588,eng,334,311,29,3/25/1986,Penguin Books +30569,Complete Essays 4 1936-38,Aldous Huxley/Robert S. Baker/James Sexton,4.29,156663394X,9781566633949,en-US,416,7,2,11/5/2001,Ivan R. Dee +30574,Plato in 90 Minutes,Paul Strathern,3.23,1566631270,9781566631273,eng,89,515,63,9/1/1996,Ivan R. Dee Publisher +30575,The Atlantis Dialogue,Plato/Aaron Shepard/Benjamin Jowett,3.77,0938497154,9780938497158,en-GB,46,34,3,1/1/2001,Shepard Publications +30580,Cancer Ward,Aleksandr Solzhenitsyn/Nicholas Bethell/David Burg,4.21,0679601635,9780679601630,eng,536,79,10,6/13/1995,Modern Library +30585,Despair,Vladimir Nabokov,3.92,014118454X,9780141184548,eng,163,197,23,11/30/2000,Penguin Classics +30586,Cliffs of Despair: A Journey to Suicide's Edge,Tom Hunt,3.73,0375507159,9780375507151,en-US,256,70,12,12/18/2007,Random House +30587,Inconceivable: A Woman's Triumph Over Despair and Statistics,Julia Indichova/Christiane Northrup,3.83,0767908201,9780767908207,eng,224,170,25,10/9/2001,Harmony +30590,Diary of a Man in Despair,Friedrich Reck-Malleczewen/Paul Rubens/Richard J. Evans,4.24,1590175867,9781590175866,eng,264,34,5,2/12/2013,New York Review of Books +30591,Winston S. Churchill Volume VIII: 'Never Despair ' 1945-1965,Martin Gilbert,4.25,0395419182,9780395419182,eng,1438,19,1,9/1/1988,Houghton Mifflin +30593,Pnin,Vladimir Nabokov/David Lodge,3.90,1400041988,9781400041985,eng,143,13925,848,4/6/2004,Everyman's Library +30597,The Hunchback of Notre-Dame,Victor Hugo/Walter J. Cobb,4.00,0451527887,9780451527882,eng,510,140529,2558,4/10/2001,Signet Classics +30598,The Hunchback of Notre-Dame,Victor Hugo/Catherine Liu/Elizabeth McCracken,4.00,034547242X,9780345472427,en-US,534,140,22,11/2/2004,Modern Library +30602,The Art of the Hunchback of Notre Dame,Stephen Rebello/Walt Disney Company,4.44,078686334X,9780786863341,eng,192,7,1,11/21/1997,Disney Editions +30606,Art and Culture: Critical Essays,Clement Greenberg/Janice Horne,3.90,0807066818,9780807066812,eng,288,472,15,6/1/1971,Beacon Press +30616,Readings for Meditation and Reflection,C.S. Lewis/Walter Hooper,4.32,0060652853,9780060652852,eng,176,272,27,1/5/1996,HarperOne +30621,C.S. Lewis and the Catholic Church,Joseph Pearce,3.88,0898709792,9780898709797,eng,175,165,17,3/17/2004,Ignatius Press +30622,The Collected Letters of C.S. Lewis Volume 1: Family Letters 1905-1931,C.S. Lewis/Walter Hooper,4.36,0060727632,9780060727635,eng,1072,121,21,6/29/2004,HarperOne +30626,Letters to Children,C.S. Lewis/Lyle Wesley Dorsett/Marjorie Lamp Mead/Douglas Gresham,4.19,0805420436,9780805420432,eng,128,1634,134,3/31/1999,B&H Publishing Group +30629,Cartas del diablo a su sobrino,C.S. Lewis/Miguel Marias,4.22,006114004X,9780061140044,spa,144,409,54,3/14/2006,HarperOne +30633,The Four Loves,C.S. Lewis,4.14,0006280897,9780006280897,en-US,170,34681,1084,6/5/2002,HarperCollins Publishers Ltd +30634,What Christians Believe,C.S. Lewis,4.24,0060761539,9780060761530,en-US,98,566,73,2/22/2005,HarperOne +30635,C. S. Lewis: Life Works and Legacy,Bruce L. Edwards/Diana Pavlac Glyer,4.43,0275991164,9780275991166,eng,1416,6,0,4/30/2007,Praeger +30639,Mere Christianity: Abolition of Man (Bonus Feature),C.S. Lewis/Geoffrey Howard/Robert Whitefield/Robert Whitfield,4.32,0786174366,9780786174362,eng,6,43,6,5/1/2006,Blackstone Audiobooks +30645,The Art of Listening,Erich Fromm/Rainer Funk,4.12,0826411320,9780826411327,en-US,204,290,16,9/1/1998,Bloomsbury Academic +30646,Beyond the Chains of Illusion: My Encounter with Marx and Freud,Erich Fromm/Rainer Funk,4.07,082641897X,9780826418975,eng,152,285,20,12/17/2006,Bloomsbury / Continuum +30651,The Art of Loving by Erich Fromm: A True Story of a Japanese Woman,Lala Okamoto,1.67,4990327500,9784990327507,eng,227,3,2,10/31/2006,Intercultural Publishing +30652,Marx's Concept of Man,Erich Fromm/T.B. Bottomore,4.02,0826477917,9780826477910,en-US,224,556,36,12/9/2004,Bloomsbury Academic +30658,Meditations on First Philosophy,René Descartes/Donald A. Cress,3.71,0872201929,9780872201927,eng,59,16700,353,10/1/1993,Hackett Publishing Company Inc. +30659,Meditations,Marcus Aurelius/Martin Hammond/Albert Wittstock/Diskin Clay,4.23,0140449337,9780140449334,eng,303,76332,3206,4/27/2006,Penguin Books +30666,Gulliver's Travels,Jonathan Swift/YKids,3.57,9810549415,9789810549411,en-US,148,7,0,7/1/2007,YoungJin Singapore Pte. Ltd. +30671,The Sleepwalkers: A History of Man's Changing Vision of the Universe,Arthur Koestler/Herbert Butterfield,4.25,0140192468,9780140192469,en-US,624,713,67,6/5/1990,Arkana/Penguin +30673,Darkness at Noon,Arthur Koestler/Daphne Hardy,4.04,1416540261,9781416540267,eng,273,1307,161,10/17/2006,Scribner +30675,The Thirteenth Tribe,Arthur Koestler,3.93,0330250698,9780330250696,eng,224,9,3,9/9/1977,Picador +30676,The Act of Creation,Arthur Koestler,4.26,0140191917,9780140191912,en-US,752,365,24,12/7/1990,Arkana/Penguin +30677,The Ghost in the Machine,Arthur Koestler,4.00,0140191925,9780140191929,eng,400,472,33,12/7/1990,Arkana +30678,The Case of the Midwife Toad,Arthur Koestler,3.79,0394718232,9780394718231,en-GB,187,166,16,4/12/1973,Vintage +30679,The Invisible Writing,Arthur Koestler,4.31,0099490684,9780099490685,eng,544,115,16,9/1/2005,Vintage Classics +30680,Up in the Air,Walter Kirn,2.86,0385722370,9780385722377,eng,320,3504,490,9/24/2002,Anchor +30681,Thumbsucker,Walter Kirn,3.44,0385497091,9780385497091,eng,300,1203,111,10/19/1999,Broadway Books +30697,Crazy Lady!,Jane Leslie Conly,3.64,0064405710,9780064405713,eng,192,1510,100,1/19/1995,HarperCollins +30702,Be the Person You Want to Find: Relationship and Self-Discovery,Cheri Huber/June Shiver,4.25,0963625527,9780963625526,eng,228,278,22,9/1/1997,Keep It Simple Books +30705,Making a Change for Good: A Guide to Compassionate Self-Discipline,Cheri Huber,3.93,1590302087,9781590302088,eng,128,304,36,3/13/2007,Shambhala +30712,The Total Library: Non-Fiction 1922-1986,Jorge Luis Borges/Suzanne Jill Levine/Esther Allen,4.52,0141183020,9780141183022,eng,560,164,17,1/18/2001,Penguin Books Ltd +30713,Ficciones,Jorge Luis Borges/John Sturrock/Anthony Kerringan,4.45,0679422994,9780679422990,eng,192,424,54,5/25/1993,Everyman's Library +30733,Montaigne: Essays,Michel de Montaigne/J.M. Cohen,4.16,014017897X,9780140178975,eng,416,1214,72,7/1/1993,Penguin Books +30734,The Complete Works,Michel de Montaigne/Donald M. Frame,4.44,1400040213,9781400040216,eng,1392,166,13,4/29/2003,Everyman's Library +30735,The Complete Essays,Michel de Montaigne/M.A. Screech,4.24,0140446044,9780140446043,eng,1344,10657,290,2/25/1993,Penguin Classics +30739,On Friendship,Michel de Montaigne/M.A. Screech,3.73,0143036297,9780143036296,eng,128,50,6,9/6/2005,Penguin Books +30743,To America with Love: Letters from the Underground,Abbie Hoffman/Anita Hoffman,3.96,1888996285,9781888996289,eng,224,69,3,9/1/2000,Red Hen Pr +30755,The Stories (So Far),Deborah Eisenberg,4.00,0374524920,9780374524920,eng,496,209,19,3/13/1997,Farrar Straus and Giroux +30771,Hellsing Vol. 03 (Hellsing #3),Kohta Hirano,4.37,1593072023,9781593072025,en-US,164,4831,63,6/15/2004,Dark Horse Manga +30774,Hellsing Vol. 04 (Hellsing #4),Kohta Hirano,4.28,1593072597,9781593072599,eng,208,2596,56,9/21/2004,Dark Horse Manga +30786,Verserade tankar,Lennart Hellsing/Fibben Hald,3.00,9177129334,9789177129332,swe,128,1,0,9/1/1999,Alfabeta Bokförlag +30810,Reefer Madness: Sex Drugs and Cheap Labor in the American Black Market,Eric Schlosser,3.78,0618446702,9780618446704,eng,352,5330,353,4/1/2004,Mariner Books +30811,Feeding the Future: From Fat to Famine How to Solve the World's Food Crises,Andrew Heintzman/Evan Solomon/Eric Schlosser,3.48,0887847447,9780887847448,eng,336,2,0,9/20/2006,House of Anansi Press +30812,Chew on This: Everything You Don't Want to Know About Fast Food,Eric Schlosser/Charles Wilson,3.76,0618710310,9780618710317,eng,259,3745,841,5/10/2006,Houghton Mifflin +30816,Shaken (Left Behind: The Kids #23-25),Jerry B. Jenkins/Tim LaHaye/Chris Fabry,4.32,1414302681,9781414302683,eng,384,217,2,2/1/2005,Tyndale House Publishers +30818,The Rapture: In the Twinkling of an Eye (Before They Were Left Behind #3),Tim LaHaye/Jerry B. Jenkins,4.15,1414305818,9781414305813,en-GB,351,2855,114,2/1/2007,Tyndale House Publishers +30820,Kingdom Come: The Final Victory (Left Behind #13),Tim LaHaye/Jerry B. Jenkins,3.98,0842360611,9780842360616,eng,356,4148,177,4/3/2007,Tyndale House Publishers +30821,John's Story: The Last Eyewitness (The Jesus Chronicles #1),Tim LaHaye/Jerry B. Jenkins,3.94,0399153896,9780399153891,eng,310,1144,108,12/1/2006,Putnam Adult +30822,Silenced: The Wrath of God Descends (Underground Zealot #2),Jerry B. Jenkins,4.24,0842384111,9780842384117,eng,368,1532,40,3/1/2005,Tyndale House Publishers +30836,Restless Till We Rest in You: 60 Reflections from the Writings of St. Augustine (Saints Speak Today),Augustine of Hippo,4.67,1569550344,9781569550342,eng,158,6,1,12/31/1998,Servant Publications +30851,A Woman in Berlin: Eight Weeks in the Conquered City: A Diary,Anonymous/Philip Boehm/Hans Magnus Enzensberger,4.33,0312426119,9780312426118,eng,261,6232,713,7/11/2006,Picador +30852,The Woman Warrior,Maxine Hong Kingston,3.73,0679721886,9780679721888,eng,204,21189,1195,4/23/1989,Vintage Books USA +30855,A Woman in Jerusalem,A.B. Yehoshua/Hillel Halkin,3.43,0151012261,9780151012268,en-US,256,851,132,8/14/2006,Houghton Mifflin Harcourt +30856,The Kept Woman,Susan Donovan,3.81,0312939507,9780312939502,eng,384,4037,143,6/27/2006,St. Martin's Paperbacks +30859,My Woman His Wife,Anna J.,4.38,0975306626,9780975306628,en-US,260,971,65,9/1/2006,Urban Books +30861,Woman Hollering Creek and Other Stories,Sandra Cisneros,4.04,0679738568,9780679738565,eng,192,8107,379,3/3/1992,Vintage +30868,The Bean Trees (Greer Family #1),Barbara Kingsolver,3.97,0812474945,9780812474947,eng,232,120383,5290,3/1/1989,Perfection Learning +30889,The Crazyladies of Pearl Street,Trevanian,3.77,1400080371,9781400080373,eng,384,1063,157,6/6/2006,Broadway Books +30891,The Summer of Katya,Trevanian,3.99,1400098041,9781400098040,eng,288,2257,116,6/28/2005,Broadway Books +30892,The Main,Trevanian,3.86,1400098238,9781400098231,eng,352,920,32,7/26/2005,Broadway Books +30893,The Eiger Sanction (Jonathan Hemlock #1),Trevanian,4.06,1400098025,9781400098026,eng,336,10385,152,5/10/2005,Broadway Books +30913,Time to Learn: How to Create High Schools That Serve All Students,George H. Wood/Theodore R. Sizer,3.50,0325008086,9780325008080,en-US,216,8,2,8/1/2005,Heinemann Educational Books +30923,Scoop (Occupational Hazards #1),Rene Gutteridge,3.61,1400071577,9781400071579,eng,352,460,53,10/10/2006,WaterBrook +30933,Brideshead Revisited,Evelyn Waugh,4.00,0316926345,9780316926348,eng,351,79045,3083,1/30/1982,Back Bay Books +30934,Black Mischief,Evelyn Waugh,3.76,0316917338,9780316917339,eng,304,2421,132,8/30/2002,Back Bay Books +30937,The Complete Stories of Evelyn Waugh,Evelyn Waugh,3.99,0316926604,9780316926607,eng,640,765,57,9/20/2000,Back Bay Books +30938,Helena,Evelyn Waugh/George Weigel/Amy Welborn,3.60,082942122X,9780829421224,eng,264,772,82,3/1/2005,Loyola Classics +30941,Choo Choo (Carry Along Book & Cassette Favorites),Virginia Lee Burton,3.91,0395511682,9780395511688,eng,48,0,0,4/24/1989,Houghton Mifflin +30948,The Rise of Christianity,Rodney Stark,4.04,0060677015,9780060677015,eng,272,1363,151,5/9/1997,HarperOne +30949,The Rise of Christianity : A Sociologist Reconsiders History,Rodney Stark,4.04,0691027498,9780691027494,en-US,246,44,5,6/2/1996,Princeton University Press +30965,Grand Theft Auto: San Andreas Official Strategy Guide,Rick Barba,4.04,0744004292,9780744004298,eng,272,73,5,10/25/2004,BradyGames +30966,Rounding the Mark (Inspector Montalbano #7),Andrea Camilleri/Stephen Sartarelli,4.07,014303748X,9780143037484,eng,272,2598,164,7/25/2006,Penguin Books +30968,Excursion to Tindari (Inspector Montalbano #5),Andrea Camilleri/Stephen Sartarelli,4.03,014303460X,9780143034605,eng,304,3393,194,2/1/2005,Penguin Books +30969,Voice of the Violin (Inspector Montalbano #4),Andrea Camilleri/Stephen Sartarelli,4.03,0142004456,9780142004456,eng,249,3907,254,6/29/2004,Penguin +30971,Andreas Gursky,Andreas Gursky/Peter Galassi,4.22,0870700162,9780870700163,eng,196,70,4,7/2/2002,Museum of Modern Art +30976,Moon of the Spider (Diablo #4),Richard A. Knaak,3.95,0743471326,9780743471329,en-US,336,749,16,1/1/2006,Pocket Star +30977,The Black Road (Diablo #2),Mel Odom,3.67,0743426916,9780743426916,eng,360,1224,18,4/2/2002,Star Trek +30978,Legacy of Blood (Diablo #1),Richard A. Knaak,3.77,067104155X,9780671041557,eng,355,2120,68,5/1/2001,Pocket Books +30981,The Kingdom of Shadow (Diablo #3),Richard A. Knaak,3.93,0743426924,9780743426923,eng,339,1181,24,8/1/2002,Pocket Books/Star Trek +30982,Scales of the Serpent (Diablo: The Sin War #2),Richard A. Knaak,3.86,0743471237,9780743471237,eng,327,866,31,3/27/2007,Pocket Star +30985,El Escorpion: La Marca del Diablo: El Escorpion: The Mark of the Devil,Stephen Desberg/Enrico Marini,3.84,1594970009,9781594970009,spa,56,20,2,10/1/2004,Public Square Books +30992,Diablo II Ultimate Strategy Guide,Bart G. Farkas,3.81,0744001056,9780744001051,en-GB,288,31,4,10/31/2001,Vivendi +31004,El Diablo Cojuelo,Luis Vélez de Guevara,3.06,8437604826,9788437604824,spa,192,13,2,1/11/2007,Cátedra +31016,El diablo de la botella,Robert Louis Stevenson/Diana Castellanos/Eleonora Garcia Larralde,3.74,9580408556,9789580408550,spa,77,34,2,7/15/2018,Grupo Editorial Norma S.A. +31030,Diabolo: Volume 1,Kei Kusunoki/Kaoru Ohashi,3.46,1595322329,9781595322326,en-US,199,207,9,11/1/2004,TokyoPop +31031,Japan (Lonely Planet Guide),Chris Rowthorn/Ray Bartlett/Justin Ellis,4.05,1740599241,9781740599245,eng,812,736,20,10/1/2005,Lonely Planet +31034,Pink Box: Inside Japan's Sex Clubs,Joan Sinclair/James Farrer,4.11,0810992590,9780810992597,eng,192,260,32,10/1/2006,Harry N. Abrams +31040,Japan at War: An Oral History,Haruko Taya Cook/Theodore F. Cook,4.34,1565840399,9781565840393,eng,493,718,87,10/1/1993,New Press (NY) +31049,Sister Bernadette's Barking Dog: The Quirky History and Lost Art of Diagramming Sentences,Kitty Burns Florey,3.59,1933633107,9781933633107,eng,154,705,191,10/1/2006,Melville House Publishing +31050,A Three Dog Life,Abigail Thomas,3.74,0151012113,9780151012114,en-US,182,191,47,9/5/2006,Houghton Mifflin Harcourt +31054,For the Love of a Dog: Understanding Emotion in You and Your Best Friend,Patricia B. McConnell,4.33,0345477146,9780345477149,en-US,382,2132,132,8/29/2006,Ballantine Books +31067,Malcolm X Speaks: Selected Speeches and Statements,Malcolm X/George Breitman,4.46,0802132138,9780802132130,en-US,240,5018,69,1/11/1994,Grove Weidenfeld +31071,Martin and Malcolm and America: A Dream or a Nightmare?,James H. Cone,4.37,0883448246,9780883448243,en-US,358,1311,38,9/1/1992,Orbis Books +31072,Under the Volcano,Malcolm Lowry,3.79,0060955228,9780060955229,eng,397,17894,837,4/26/2000,Harper Perennial +31076,The New Knighthood: A History of the Order of the Temple,Malcolm Barber,3.84,0521558727,9780521558723,eng,441,126,7,9/29/1995,Cambridge University Press +31080,Malcolm X: A Graphic Biography,Andrew Helfer/Randy DuBurke,3.66,0809095041,9780809095049,eng,112,601,106,11/14/2006,Hill and Wang +31082,Who Are You?: 101 Ways of Seeing Yourself,Malcolm Godwin,3.48,0140196099,9780140196092,eng,224,263,26,1/1/2000,Penguin Books +31083,Bosnia: A Short History,Noel Malcolm,4.07,0330412442,9780330412445,eng,384,38,1,8/1/2002,Pan MacMillan +31084,The Other Boleyn Girl,Philippa Gregory,4.06,0743269837,9780743269834,eng,664,3111,375,11/9/2004,Atria Books +31087,The Last Boleyn,Karen Harper,4.05,0307237907,9780307237903,eng,592,9097,205,2/28/2006,Broadway Books +31088,The Rise and Fall of Anne Boleyn,Retha M. Warnicke,3.96,0521406773,9780521406772,eng,338,1336,39,7/26/1991,Cambridge University Press +31089,The Secret Diary of Anne Boleyn,Robin Maxwell,3.80,0684849690,9780684849690,eng,281,5221,299,5/28/1998,Atria Books +31092,The Other Boleyn Girl,Philippa Gregory,4.06,0739427113,9780739427118,eng,664,1165,105,4/21/2001,Scribner +31093,Lila: An Inquiry Into Morals (Phaedrus #2),Robert M. Pirsig,3.78,0553299611,9780553299618,eng,480,5317,291,11/1/1992,Bantam +31095,Lila's Child: An Inquiry into Quality,Robert M. Pirsig/Dan Glover,3.58,1403356203,9781403356208,en-GB,600,54,5,1/14/2003,1st Book Library +31098,Swapping Lives,Jane Green,3.58,0670034800,9780670034802,eng,410,24513,916,6/13/2006,Viking Adult +31099,Babyville,Jane Green,3.62,0767912241,9780767912242,en-US,464,30815,544,3/23/2004,Broadway Books +31100,To Have and to Hold,Jane Green,3.63,0767912276,9780767912273,eng,352,22864,445,3/1/2005,Broadway Books +31101,Mr. Maybe,Jane Green,3.45,0767905202,9780767905206,eng,368,87217,832,6/11/2002,Broadway Books +31102,Straight Talking,Jane Green,3.64,0141011513,9780141011516,en-GB,304,234,12,9/5/2002,Penguin +31103,Spellbound,Jane Green,3.63,0140295941,9780140295948,en-US,439,271,30,12/4/2003,Penguin Books Ltd +31104,Babyville,Jane Green,3.62,0767912233,9780767912235,en-US,438,153,8,5/27/2003,Broadway Books +31105,This Christmas,Jane Green/Jennifer Coburn/Liz Ireland,3.19,0821778064,9780821778067,eng,480,1153,92,10/1/2009,Zebra +31107,Bookends,Jane Green,3.72,0767907809,9780767907804,eng,358,226,31,6/11/2002,Broadway Books +31113,Krik? Krak!: Récits,Edwidge Danticat/Nicole Tisserand,4.12,2857044828,9782857044826,fre,240,79,10,7/4/1997,Pygmalion Editions +31114,Homelands: Women’s Journeys Across Race Place and Time,Patricia Justine Tumang/Edwidge Danticat/Jenesha de Rivera,4.43,158005188X,9781580051880,eng,343,42,5,12/21/2006,Seal Press +31115,The Farming of Bones,Edwidge Danticat,4.07,0140280499,9780140280494,eng,312,6757,612,9/1/1999,Penguin Books +31116,The Dew Breaker,Edwidge Danticat,3.80,1400034299,9781400034291,eng,244,5891,584,3/8/2005,Vintage +31122,I Capture the Castle,Dodie Smith,4.00,0312181108,9780312181109,eng,343,65013,5954,3/31/1998,Wyatt Book +31134,Conversations with Ernest Hemingway (Literary Conversations),Ernest Hemingway/Matthew J. Bruccoli,4.15,0878052739,9780878052738,eng,204,64,6,12/1/1986,University Press of Mississippi +31153,The Rapture: Who Will Face the Tribulation,Tim LaHaye,3.50,0736909524,9780736909525,eng,256,4,1,3/1/2002,Harvest House Publishers +31154,The Regime: Evil Advances (Before They Were Left Behind #2),Tim LaHaye/Jerry B. Jenkins,4.11,141430577X,9781414305776,en-US,391,3657,107,4/1/2006,Tyndale House Publishers +31157,The Rising: Antichrist is Born (Before They Were Left Behind #1),Tim LaHaye/Jerry B. Jenkins,4.20,0842361936,9780842361934,eng,400,14475,194,10/1/2005,Tyndale House Publishers +31160,The Earth and Its Peoples: Volume II,Richard W. Bulliet/Daniel R. Headrick/David Northrup/Lyman L. Johnson/Pamela Kyle Crossley/Steven W. Hirsch/Steven Hirsch,4.07,0618471162,9780618471164,eng,34,9,0,5/9/2005,Cengage Learning +31166,The Earth and Its Peoples: A Global History Volume C: Since 1750,Richard W. Bulliet/Pamela Kyle Crossley/Steven Hirsch,2.00,0618427694,9780618427697,eng,370,1,1,2/9/2004,Cengage Learning +31171,The Life of Charlotte Brontë,Elizabeth Gaskell/Angus Easson,3.91,0192838059,9780192838056,eng,587,5549,129,6/20/2002,Oxford University Press +31172,The Juvenilia of Jane Austen and Charlotte Brontë,Jane Austen/Charlotte Brontë/Frances Beer,3.86,0140432671,9780140432671,eng,400,217,7,10/7/1986,Penguin Books +31174,Selected Works of the Brontë Sisters: Jane Eyre / Villette / Wuthering Heights / Agnes Grey / The Tenant of Wildfell Hall,Charlotte Brontë/Emily Brontë/Anne Brontë,4.38,1840220600,9781840220605,eng,1488,96,6,1/5/1998,Wordsworth Classics +31177,Morgan's Passing,Anne Tyler,3.78,0449911721,9780449911723,eng,346,4035,108,8/27/1996,Ballantine Books +31178,Back When We Were Grownups,Anne Tyler,3.52,0345477243,9780345477248,eng,336,15040,1239,10/26/2004,Ballantine Books +31180,Celestial Navigation,Anne Tyler,3.79,0449911802,9780449911808,eng,288,3403,159,8/27/1996,Ballantine Books +31181,Breathing Lessons,Anne Tyler,3.66,0345485599,9780345485595,eng,350,20474,1140,9/26/2006,Ballantine Books +31182,The Tin Can Tree,Anne Tyler,3.60,0449911896,9780449911891,eng,264,2384,91,8/27/1996,Ballantine Books +31185,Inside the Mind of Gideon Rayburn (Midvale Academy #1),Sarah Miller,3.39,0312333757,9780312333751,eng,289,1072,90,5/2/2006,St. Martin's Griffin +31186,Patience & Sarah,Isabel Miller/Emma Donoghue,3.90,1551521911,9781551521916,en-US,225,3833,166,9/1/2005,Arsenal Pulp Press +31196,The Razor's Edge,W. Somerset Maugham,4.19,1400034205,9781400034208,eng,314,29486,2137,9/9/2003,Vintage International +31200,Razor's Edge: The Unofficial History of the Falklands War,Hugh Bicheno/Richard Holmes,3.79,0753821869,9780753821862,eng,400,42,4,3/1/2007,Phoenix +31204,Tom Jones,Henry Fielding/Doreen Roberts,3.74,1853260215,9781853260216,eng,734,564,48,5/5/1992,Wordsworth Editions +31208,Clarissa Or The History of a Young Lady,Samuel Richardson/Sheila Ortiz Taylor,3.37,0451529790,9780451529794,eng,576,56,8,10/4/2005,Signet Classics +31218,The Hitchhiker's Guide to the Galaxy: The Quintessential Phase (Hitchhiker's Guide: Radio Play #5),Douglas Adams/Dirk Maggs/Simon Jones/Geoffrey McGivern/Mark Wing-Davey/Susan Sheridan/Sandra Dickinson/Stephen Moore/William Franklyn/Rula Lenska/Sam Burke,4.37,0563504072,9780563504078,eng,3,61,1,6/20/2005,BBC Audiobooks +31219,The Secret of Shambhala: In Search of the Eleventh Insight (Celestine Prophecy #3),James Redfield,4.00,0446676489,9780446676489,eng,256,4181,131,11/1/2001,Grand Central Publishing +31220,The Celestine Vision: Living the New Spiritual Awareness,James Redfield,4.07,0446675237,9780446675239,eng,288,7032,58,11/1/1999,Grand Central Publishing +31222,The Purpose of Your Life: Finding Your Place In The World Using Synchronicity Intuition And Uncommon Sense,Carol Adrienne/James Redfield,3.76,0688166253,9780688166250,eng,320,218,27,3/17/1999,William Morrow Paperbacks +31226,The Janson Directive (Paul Janson #1),Robert Ludlum,3.86,0312989385,9780312989385,eng,693,7281,259,10/19/2003,St. Martin's Paperbacks +31227,The Moscow Vector (Covert-One #6),Patrick Larkin/Robert Ludlum,3.98,0312990715,9780312990718,eng,464,6321,80,2/7/2006,St. Martin's Paperbacks +31229,The Ambler Warning,Robert Ludlum,3.72,0312990693,9780312990695,eng,632,9289,361,11/1/2006,St. Martin's Paperbacks +31235,Historical Romances: The Prince and the Pauper / A Connecticut Yankee in King Arthur’s Court / Personal Recollections of Joan of Arc,Mark Twain/Susan K. Harris,4.38,0940450828,9780940450820,eng,1050,296,13,8/1/1994,Library of America +31242,Bleak House,Charles Dickens/Nicola Bradbury/Hablot Knight Browne,4.01,0143037617,9780143037613,eng,1017,80104,2440,1/6/2006,Penguin Books +31244,Our Mutual Friend,Charles Dickens,4.07,0375761144,9780375761140,eng,801,22294,953,9/10/2002,Modern Library +31247,A Christmas Carol and Other Christmas Books,Charles Dickens/Robert Douglas-Fairhurst,3.96,0192806947,9780192806949,eng,438,156,20,11/1/2007,Oxford University Press USA +31250,Little Dorrit,Charles Dickens/Stephen J. Wall/Helen Small,3.99,0141439963,9780141439969,eng,1021,38955,1044,9/25/2003,Penguin Classics +31253,Baseball: a Literary Anthology,Nicholas Dawidoff/Ernest Lawrence Thayer/Jacques Barzun/Robert Frost/John Updike/Leroy Satchel Paige/Bill Veeck/Murray Kempton/Jimmy Breslin/Marianne Moore/Gay Talese/Tallulah Bankhead/Albert G. Spalding/Nelson Algren/William Carlos Williams/James Weldon Johnson/Thomas Wolfe/James Thurber/Philip Roth/Jim Bouton/Dave Frishberg/Roger Kahn/Roger Angell/Damon Runyon/George Plimpton/A. Bartlett Giamatti/Amiri Baraka/Annie Dillard/Stephen Jay Gould/Stephen King/Richard Ford/Don DeLillo/Lawrence S. Ritter/Ring Lardner/Carl Sandburg/Heywood Broun/Bernard Malamud/Red Smith,4.24,193108209X,9781931082099,eng,733,182,14,3/4/2002,Library of America +31259,The Bourne Ultimatum (Jason Bourne #3),Robert Ludlum,4.05,0752858491,9780752858494,eng,725,52976,702,5/6/2004,Orion +31260,The Sigma Protocol,Robert Ludlum,3.80,0312982518,9780312982515,eng,662,9567,252,10/13/2002,St. Martin's Paperbacks +31262,The Road to Gandolfo,Robert Ludlum/Michael Shepherd,3.64,0553271091,9780553271096,eng,320,5141,160,2/1/1992,Bantam +31267,The Arctic Event (Covert-One #7),James H. Cobb/Robert Ludlum,4.01,0446699071,9780446699075,eng,390,4414,127,9/26/2007,Warner Books +31270,The Altman Code (Covert-One #4),Gayle Lynds/Robert Ludlum/Don Leslie,3.95,1593978863,9781593978860,eng,0,5,1,9/30/2005,Audio Renaissance +31271,The Matlock Paper,Robert Ludlum,3.88,0752858637,9780752858630,eng,352,12533,80,8/24/2005,Orion Books +31294,Fat Pig,Neil LaBute,3.56,057121150X,9780571211500,en-US,112,2356,103,11/29/2004,Farrar Straus and Giroux +31299,Hickory Dickory Dock (Hercule Poirot #32),Agatha Christie/Hugh Fraser,3.75,1572705647,9781572705647,eng,196,13515,368,12/7/2006,AudioGO +31300,A Caribbean Mystery (Miss Marple #10),Agatha Christie,3.80,0451199928,9780451199928,eng,224,18590,770,3/1/2000,Signet +31302,Five Complete Miss Marple Novels: The Mirror Crack'd / A Caribbean Mystery / Nemesis / What Mrs. McGillicuddy Saw! / The Body in the Library,Agatha Christie,4.39,0517035804,9780517035801,eng,650,116,6,7/2/1990,Avenel Books +31303,At Bertram's Hotel,Agatha Christie,3.70,0451199936,9780451199935,eng,224,239,15,3/1/2000,Signet +31304,Nemesis (Miss Marple #12),Agatha Christie,3.85,0451200187,9780451200181,eng,224,18896,771,5/1/2000,Signet +31305,A Pocket Full of Rye: A BBC Radio 4 Full-Cast Dramatisation,Agatha Christie/Michael Bakewell/June Whitfield/Nicky Henson/Derek Waring/Natasha Pyne,3.86,0792737369,9780792737360,eng,2,38,3,4/1/2014,Blackstone Audiobooks +31306,Murder at the Vicarage (Miss Marple #1),Agatha Christie,4.05,0451201159,9780451201157,eng,256,462,55,9/1/2000,Signet +31307,Miss Marple Omnibus Vol. 3 (Murder at the Vicarage / Nemesis / Sleeping Murder / At Bertram's Hotel),Agatha Christie,4.32,0006499619,9780006499619,eng,688,138,5,7/10/1997,Harper Collins +31312,The Dance of Anger,Harriet Lerner,4.06,006074104X,9780060741044,eng,239,16897,619,5/3/2005,William Morrow & Company +31313,Dance of the Gods (Circle Trilogy #2),Nora Roberts,4.15,0515141666,9780515141665,eng,321,25065,576,10/3/2006,Jove +31314,Barnyard Dance,Sandra Boynton,4.25,1563054426,9781563054426,en-US,24,21265,480,10/1/1993,Workman Publishing Company +31316,The Dance of Intimacy: A Woman's Guide to Courageous Acts of Change in Key Relationships,Harriet Lerner,4.07,006091646X,9780060916466,eng,255,7368,185,1/1/1989,William Morrow Paperbacks +31318,4:50 from Paddington / A Pocket Full of Rye (BBC Presents: Two Miss Marple Dramas),Agatha Christie,3.94,0553525638,9780553525632,eng,3,34,3,5/4/1999,Random House Audio +31331,Blood Canticle (The Vampire Chronicles #10),Anne Rice,3.72,0099460173,9780099460176,eng,400,19036,325,11/4/2004,Arrow +31332,The Vampire Armand (The Vampire Chronicles #6),Anne Rice,3.76,0345434803,9780345434807,eng,457,59191,710,10/3/2000,Ballantine Books +31333,Violin,Anne Rice,3.28,8466302204,9788466302203,eng,289,15886,405,1/1/2002,Distribooks +31335,Cry to Heaven,Anne Rice,3.85,0345396936,9780345396938,eng,566,18067,558,4/1/1995,Ballantine Books +31340,Lasher (Lives of the Mayfair Witches #2),Anne Rice,3.86,0099471434,9780099471431,eng,400,49367,661,11/4/2004,Arrow Books +31341,Blood And Gold (The Vampire Chronicles #8),Anne Rice,3.89,0099271494,9780099271499,eng,752,28012,436,11/7/2002,Arrow +31345,Hot Stuff (Cate Madigan #1),Janet Evanovich/Leanne Banks,3.74,0312941463,9780312941468,en-US,281,9285,404,4/3/2007,St. Martin's Press +31350,Lovelock (Mayflower Trilogy #1),Orson Scott Card/Kathryn H. Kidd,3.47,031287751X,9780312877514,en-US,288,2150,85,2/1/2001,St. Martins Press-3PL +31351,Treasure Box,Orson Scott Card,3.33,006109398X,9780061093982,eng,384,3646,189,10/1/1997,Harper +31352,Songmaster,Orson Scott Card,3.74,0312876629,9780312876623,en-US,352,6399,286,12/6/2002,Orb Books +31353,Stone Tables,Orson Scott Card,3.87,1573456632,9781573456630,eng,448,1726,133,3/1/2000,Shadow Mountain +31356,William Faulkner: The Sound and the Fury and as I Lay Dying: Essays Articles Reviews,Nicolas Tredell,3.96,023112189X,9780231121897,en-US,192,4,0,12/27/2000,Columbia University Press +31358,Hart's Hope,Orson Scott Card,3.47,0425058190,9780425058190,eng,261,24,4,2/1/1983,Berkley +31360,Children of the Mind (Ender's Saga #4),Orson Scott Card,3.76,0765304740,9780765304742,eng,370,84877,1989,8/24/2002,Tor Books +31361,Maps in a Mirror: The Short Fiction of Orson Scott Card,Orson Scott Card,4.01,0765308401,9780765308405,eng,675,2940,121,1/1/2004,Orb Books +31363,How to Write Science Fiction & Fantasy,Orson Scott Card,3.90,158297103X,9781582971032,eng,140,3408,264,9/15/2001,Writer's Digest Books +31364,What Came Before He Shot Her (Inspector Lynley #14),Elizabeth George,3.56,0060545623,9780060545628,eng,560,6669,668,10/17/2006,Harper +31365,With No One as Witness (Inspector Lynley #13),Elizabeth George,4.04,0060545615,9780060545611,eng,784,9952,529,2/28/2006,Harper +31366,Deception on His Mind (Inspector Lynley #9),Elizabeth George,4.05,0553575090,9780553575095,eng,716,8028,289,10/6/1998,Bantam Books +31371,Becoming a Woman of Beauty and Strength: Esther,Elizabeth George,4.27,0736904891,9780736904896,eng,160,80,14,1/1/2001,Harvest House Publishers +31373,In Pursuit of the Proper Sinner (Inspector Lynley #10),Elizabeth George,4.10,0553575104,9780553575101,eng,718,10608,295,11/31/2000,Bantam Books +31378,A Woman's High Calling Growth and Study Guide,Elizabeth George,4.15,0736904948,9780736904940,eng,160,13,1,8/15/2001,Harvest House Publishers +31382,Living with Passion and Purpose: Luke (Woman After God's Own Heart),Elizabeth George,4.00,0736908161,9780736908160,eng,160,22,4,9/15/2005,Harvest House Publishers +31384,Loving God with All Your Mind,Elizabeth George,4.43,0736913823,9780736913829,en-US,304,1488,77,1/1/2005,Harvest House Publishers +31386,Ariel Sharon: A Life,Nir Hefez/Gadi Bloom/Mitch Ginsburg,3.72,1400065879,9781400065875,en-US,490,40,6,10/24/2006,Random House Inc. +31389,Life Management for Busy Woman: Growth and Study Guide,Elizabeth George,4.53,0736910190,9780736910194,en-GB,166,14,1,7/1/2002,Harvest House Publishers +31401,A Wife After God's Own Heart Growth and Study Guide,Elizabeth George,4.69,0736911685,9780736911689,eng,160,9,1,1/1/2004,Harvest House Publishers +31414,Lover of Unreason: Assia Wevill Sylvia Plath's Rival and Ted Hughes' Doomed Love,Yehuda Koren/Eilat Negev,3.92,0786718617,9780786718610,eng,280,639,75,12/26/2006,Da Capo Press +31420,The Journals of Sylvia Plath,Sylvia Plath/Karen V. Kukil,4.31,0571205216,9780571205219,eng,752,106,9,6/13/2013,Faber & Faber +31421,Letters Home,Sylvia Plath,4.20,0571201156,9780571201150,eng,502,2373,63,1/1/1999,Faber & Faber +31434,The Poetry of Sylvia Plath,Claire Brennan,4.25,0231124279,9780231124270,eng,202,27,0,8/29/2001,Columbia University Press +31437,Black Boy,Richard Wright/Edward P. Jones,4.05,0060834005,9780060834005,en-US,432,88,12,11/29/2005,Harper +31441,Angry Black White Boy,Adam Mansbach,3.55,1400054877,9781400054879,eng,352,614,77,3/8/2005,Broadway Books +31442,Bad Boys In Black Tie (Watson Brothers #3),Lori Foster/Erin McCarthy/Morgan Leigh,3.73,0758207743,9780758207746,eng,278,2164,70,5/1/2004,Brava +31456,The Twits,Roald Dahl/Quentin Blake,3.96,0141318309,9780141318301,eng,96,98823,2552,6/24/2004,Puffin Books +31462,Far from the Madding Crowd,Thomas Hardy/Suzanne Keen,3.94,0451528565,9780451528568,eng,400,340,33,10/1/2002,Signet Classics +31463,Far From the Madding Crowd,Thomas Hardy/Rosemarie Morgan/Shannon Russell,3.94,0141439653,9780141439655,eng,433,104912,3811,2/27/2003,Penguin Books +31465,Far From the Madding Crowd,Thomas Hardy/Suzanne B. Falck-Yi/Linda M. Shires,3.94,019280149X,9780192801494,eng,496,112,17,11/14/2002,Oxford University Press +31466,Far from the Madding Crowd,Thomas Hardy,3.94,0140620478,9780140620474,en-GB,374,320,42,3/31/1994,Penguin Books +31472,Middlemarch: An Authoritative Text Backgrounds Reviews and Criticism,George Eliot/Bert G. Hornback,3.96,0393092100,9780393092103,eng,578,47,10,9/1/1977,W. W. Norton & Company +31474,Slaughterhouse: The Shocking Story of Greed Neglect And Inhumane Treatment Inside the U.S. Meat Industry,Gail A. Eisnitz,4.35,1591024501,9781591024507,en-US,328,1250,144,11/1/2006,Prometheus Books +31476,A Dance At The Slaughterhouse (Matthew Scudder #9),Lawrence Block,4.18,0380813734,9780380813735,eng,294,3351,147,7/3/2000,Harper Paperbacks +31478,Slaughterhouse Blues: The Meat and Poultry Industry in North America,Donald D. Stull/Michael J. Broadway/Eric Schlosser,3.46,0534613039,9780534613037,en-US,172,27,1,4/17/2003,Wadsworth Publishing Company +31481,Inky The Indigo Fairy (Rainbow Magic #6),Daisy Meadows/Georgie Ripper,3.79,043974685X,9780439746854,en-US,80,2042,59,1/1/2006,Scholastic Paperbacks +31482,Sunny The Yellow Fairy (Rainbow Magic #3),Daisy Meadows/Georgie Ripper,3.82,0439744660,9780439744669,en-US,67,2364,67,7/1/2005,Little Apple +31483,Sky The Blue Fairy (Rainbow Magic #5),Daisy Meadows/Georgie Ripper,3.83,0439746841,9780439746847,en-US,80,2267,82,11/1/2005,Scholastic Paperbacks +31484,Heather The Violet Fairy (Rainbow Magic #7),Daisy Meadows/Georgie Ripper,3.86,0439746868,9780439746861,en-US,80,2263,82,2/1/2006,Scholastic Paperbacks +31486,Ruby the Red Fairy (Rainbow Magic #1),Daisy Meadows/Georgie Ripper,3.84,043973861X,9780439738613,en-US,65,4334,319,5/1/2005,Scholastic Inc. +31487,Unweaving the Rainbow: Science Delusion and the Appetite for Wonder,Richard Dawkins,4.02,0618056734,9780618056736,eng,352,9377,189,4/5/2000,Mariner Books +31488,The Rainbow Goblins,Ul De Rico,4.42,0500277591,9780500277591,eng,32,1417,149,6/17/1978,Thames Hudson +31490,The Serpent and the Rainbow,Wade Davis,3.91,0684839296,9780684839295,en-US,304,3373,293,8/5/1997,Simon Schuster +31491,The Rainbow,D.H. Lawrence/Daphne Merkin,3.69,0451530306,9780451530301,eng,544,15840,462,5/5/2009,Signet +31493,Standing in the Rainbow (Elmwood Springs #2),Fannie Flagg,4.04,0345452887,9780345452887,eng,560,13592,897,8/3/2004,Ballantine Books +31502,The Scarlet Pimpernel,Emmuska Orczy/Margaret Brantley,4.07,0743487745,9780743487740,en-US,358,348,67,7/1/2004,Simon Schuster +31505,Adventures of the Scarlet Pimpernel,Emmuska Orczy,4.03,0899664598,9780899664590,eng,256,15,0,12/1/1983,Buccaneer Books +31507,Love's Enduring Promise (Love Comes Softly #2),Janette Oke,4.19,0764228498,9780764228490,eng,239,10835,311,11/1/2003,Bethany House Publishers +31548,Of Human Bondage,W. Somerset Maugham/Benjamin DeMott/Maeve Binchy,4.13,0451530179,9780451530172,eng,684,37531,2201,1/2/2007,Signet +31555,Phantoms in the Brain: Probing the Mysteries of the Human Mind,V.S. Ramachandran/Sandra Blakeslee/Oliver Sacks,4.26,0688172172,9780688172176,eng,352,15190,532,8/18/1999,William Morrow Paperbacks +31569,Mangoes & Curry Leaves: Culinary Travels Through the Great Subcontinent,Jeffrey Alford/Naomi Duguid,4.18,1579652522,9781579652524,eng,416,631,23,11/1/2005,Artisan +31570,Curry: A Tale of Cooks and Conquerors,Lizzie Collingham,3.90,0195172418,9780195172416,eng,315,753,111,2/6/2006,Oxford University Press USA +31573,50 Great Curries of India,Camellia Panjabi,4.15,1904920357,9781904920359,eng,224,209,29,12/30/2005,Kyle Books +31578,Curries Without Worries,Sudha Koul/Warner Books,3.93,0446670782,9780446670784,eng,160,35,4,3/1/1996,Grand Central Publishing +31580,In Search of Duende,Federico García Lorca/Norman Thomas di Giovanni,4.30,0811213765,9780811213769,eng,99,616,36,4/17/1998,New Directions +31582,The Selected Poems of Federico García Lorca,Federico García Lorca,4.32,0811200914,9780811200912,mul,180,236,23,6/1/1955,New Directions Publishing Corporation +31591,Lorca & Jimenez: Selected Poems,Federico García Lorca/Juan Ramón Jiménez/Robert Bly,4.34,0807062138,9780807062135,eng,208,114,8,4/30/1997,Beacon Press +31607,Also sprach Zarathustra: Ein Buch für Alle und Keinen.,Friedrich Nietzsche,4.06,337901706X,9783379017060,ger,371,2,0,7/1/2000,Reclam Leipzig +31611,Seminar on Nietzsche's Zarathustra,C.G. Jung/James L. Jarrett,4.38,0691017387,9780691017389,eng,352,19,2,11/23/1997,Princeton University Press +31615,The Polar Express,Chris Van Allsburg,4.30,061861169X,9780618611690,en-US,32,88,13,10/19/2005,HMH Books for Young Readers +31619,Trip To The North Pole (The Polar Express: The Movie),Ellen Weiss/Doyle Partners/Robert Zemeckis,3.62,061847790X,9780618477906,eng,128,55,7,10/12/2004,HMH Books for Young Readers +31623,Blow Fly (Kay Scarpetta #12),Patricia Cornwell,3.77,0425198731,9780425198735,eng,467,31942,732,9/7/2004,Berkley +31626,The Gift of the Magi and Other Short Stories,O. Henry,4.15,0486270610,9780486270616,eng,96,4616,133,2/5/1992,Dover Publications +31628,James and the Giant Peach,Roald Dahl/Nancy Ekholm Burkert,4.01,0553150324,9780553150322,eng,154,215,16,1/1/1978,Bantam Skylark +31637,Ten Short Stories Book & Cd Pack (Penguin Student Editions),Roald Dahl,3.84,0140817786,9780140817782,eng,208,9,0,3/30/2000,Penguin Classics +31638,The Ultramarines Omnibus (Ultramarines #1-3),Graham McNeill,3.97,1844164039,9781844164035,eng,768,1691,67,12/19/2008,Games Workshop +31641,Star Wars Omnibus: X-Wing Rogue Squadron Vol. 2,Michael A. Stackpole/Jan Strnad/Ryder Windham/Jordi Ensign/John Nadeau/Gary Erskine,3.88,1593076193,9781593076191,eng,288,325,12,10/24/2006,Dark Horse Comics +31644,The Soul Drinkers Omnibus (Soul Drinkers #1-3),Ben Counter,3.77,1844164160,9781844164165,eng,767,790,37,12/26/2006,Games Workshop(uk) +31647,James and the Giant Peach,Roald Dahl/Quentin Blake,4.01,0141311355,9780141311357,eng,160,1251,91,4/5/1998,Puffin +31648,James and the Giant Peach: a Play,Richard R. George/Roald Dahl,4.00,0142407917,9780142407912,en-GB,91,344,22,2/1/2007,Puffin Books +31649,James & The Giant Peach (Disney's),Roald Dahl/Karey Kirkpatrick/Lane Smith,4.03,0140382976,9780140382976,eng,48,1073,32,7/4/1996,Puffin +31659,The Progress of Love,Alice Munro,4.14,0375724702,9780375724701,eng,320,2128,115,12/12/2000,Vintage +31669,A Memoir of Jane Austen and Other Family Recollections,J.E. Austen Leigh/Caroline Austen/Henry Austen/Anna Austen Lefroy/Kathryn Sutherland,3.83,0192840746,9780192840745,eng,352,892,33,12/5/2002,Oxford University Press +31670,The Jane Austen Cookbook,Maggie Black/Deirdre Le Faye,3.93,0771014171,9780771014178,eng,128,275,26,5/10/2002,McClelland & Stewart +31672,The Complete Novels,Jane Austen/Karen Joy Fowler,4.55,0143039504,9780143039501,eng,1278,425,39,3/28/2006,Penguin Classics +31673,The Cambridge Companion to Jane Austen,Edward Copeland/Juliet McMaster,4.09,0521498678,9780521498678,en-US,251,320,21,5/13/1997,Cambridge University Press +31676,The Man Who Loved Jane Austen (The Man Who Loved Jane Austen #1),Sally Smith O'Rourke,3.37,075821037X,9780758210371,eng,303,1745,229,4/1/2006,Kensington +31678,Jane Austen: A Life,Carol Shields,3.85,0143035169,9780143035169,eng,192,2279,173,5/31/2005,Penguin Books +31692,The Complete Novels of Jane Austen,Jane Austen,4.55,1840220554,9781840220551,eng,1431,924,28,1/5/2005,Wordsworth Editions +31693,Persuasion,Jane Austen/Gillian Beer,4.14,0141439688,9780141439686,eng,325,5236,544,4/29/2003,Penguin Classics +31694,The History of England,Jane Austen/Cassandra Austen/Deirdre Le Faye/A.S. Byatt,3.89,1565120558,9781565120556,eng,60,991,88,1/10/1993,Algonquin Books +31695,Jane and the Wandering Eye (Jane Austen Mysteries #3),Stephanie Barron,3.86,0553578170,9780553578171,eng,320,1999,112,11/3/2009,Bantam +31698,Dante: Poet of the Secular World,Erich Auerbach/Ralph Manheim/Michael Dirda,4.25,1590172191,9781590172193,eng,202,169,13,1/16/2007,NYRB Classics +31722,Me Alquilo Para Soñar (Taller de Guión #62),Gabriel García Márquez,3.83,1400092965,9781400092963,spa,224,141,17,3/2/2004,Debolsillo +31728,Silent Running,James F. Calvert,4.17,047119705X,9780471197058,eng,320,344,28,10/15/1997,Wiley +31740,La increíble y triste historia de la cándida Eréndira y de su abuela desalmada,Gabriel García Márquez,3.90,9681317084,9789681317089,spa,157,90,7,5/30/2004,Editorial Diana +31742,The Story of a Shipwrecked Sailor,Gabriel García Márquez/Randolf Hogan,3.78,067972205X,9780679722052,eng,128,462,44,3/13/1989,Vintage +31761,El Dia Que Nietzsche Lloró,Irvin D. Yalom,4.32,9875801445,9789875801448,spa,445,66,4,10/24/2006,Planeta +31763,Zur Genealogie der Moral,Friedrich Nietzsche,4.11,3150071232,9783150071236,ger,187,103,4,1/31/1998,Reclam +31784,Nietzche and Philosophy,Gilles Deleuze/Michael Hardt,4.17,0231138768,9780231138765,eng,256,50,1,5/16/2006,Columbia University Press +31785,The Will to Power,Friedrich Nietzsche/Walter Kaufmann/R.J. Hollingdale,4.05,0394704371,9780394704371,eng,575,7931,132,8/17/2011,Vintage Books +31795,The Story of Philosophy: The Lives and Opinions of the World's Greatest Philosophers,Will Durant,4.12,0671739166,9780671739164,eng,704,10553,550,1/1/1991,Pocket Books +31800,The Oxford Companion to Philosophy,Ted Honderich,4.15,0199264791,9780199264797,en-GB,1056,51,3,5/26/2005,Oxford University Press USA +31802,South Park and Philosophy: You Know I Learned Something Today,Robert Arp,3.43,1405161604,9781405161602,eng,273,1135,37,11/22/2006,Blackwell Publishers +31804,Superheroes and Philosophy: Truth Justice and the Socratic Way,Tom Morris/William Irwin,3.87,0812695739,9780812695731,en-US,300,754,38,4/20/2005,Open Court +31813,The Simpsons and Philosophy: The D'oh! of Homer,William Irwin/Aeon J. Skoble/Mark T. Conard,3.47,0812694333,9780812694338,eng,256,2039,135,2/28/2001,Open Court +31814,Philosophy for Dummies,Tom Morris,3.65,0764551531,9780764551536,eng,361,532,47,9/17/1999,For Dummies +31818,The Philosophy of Andy Warhol (From A to B and Back Again),Andy Warhol,3.74,0156717204,9780156717205,eng,272,33697,402,4/6/1977,Mariner Books +31819,Harry Potter and Philosophy: If Aristotle Ran Hogwarts,David Baggett/Shawn E. Klein,4.48,0812694554,9780812694550,eng,243,11422,78,9/10/2004,Open Court +31822,Philosophy of Religion: An Anthology,Louis P. Pojman,3.94,0534543642,9780534543648,en-US,582,97,7,5/7/2002,Wadsworth Publishing Company +31823,A History of Philosophy 1: Greece and Rome,Frederick Charles Copleston,4.10,0826468950,9780826468956,en-GB,544,20,4,6/1/2003,Bloomsbury Academic +31826,Western Philosophy: An Anthology,John Cottingham,4.04,0631186271,9780631186274,eng,656,71,7,11/14/1996,Wiley-Blackwell +31833,Star Wars and Philosophy: More Powerful than You Can Possibly Imagine,Kevin S. Decker/Jason T. Eberl/William Irwin/George Lucas/William O. Stephens/Walter Ritoku Robinson/Richard H. Dees/Judith A. Barad/Elizabeth F. Cooke/Richard Hanley/Jerold J. Abrams/Robert Arp/Jan-Erik Jones,4.05,0812695836,9780812695830,eng,227,1774,35,3/23/2005,Open Court +31836,Bullshit and Philosophy,Gary L. Hardcastle/George A. Reisch,3.68,0812696115,9780812696110,en-US,288,72,9,10/25/2006,Open Court +31837,The Consolation of Philosophy,Boethius/Victor Watts,3.98,0140447806,9780140447804,eng,192,8318,373,11/25/1999,Penguin Classics +31839,Philosophy of Mind: Classical and Contemporary Readings,David J. Chalmers,4.08,019514581X,9780195145816,eng,675,435,14,7/25/2002,Oxford University Press USA +31842,The Undead and Philosophy: Chicken Soup for the Soulless,Richard V. Greene/K. Silem Mohammad,3.70,0812696018,9780812696011,en-US,288,196,18,8/29/2006,Open Court +31849,Philosophy in a Time of Terror: Dialogues with Jürgen Habermas and Jacques Derrida,Jürgen Habermas/Jacques Derrida/Giovanna Borradori,3.89,0226066665,9780226066660,eng,208,439,17,9/1/2004,University of Chicago Press +31851,An Introduction to Political Philosophy,Jonathan Wolff,4.11,019929609X,9780199296095,eng,215,767,44,3/1/2006,Oxford University Press USA +31853,A Source Book in Indian Philosophy,Sarvepalli Radhakrishnan/Charles Alexander Moore/Kapila/Nandalal Sinha/Kautilya/R. Shamasastry/Manu/Georg Bühler/Patañjali/Rama Prasada/Nāgārjuna/Hermann Oldenberg/Susumu Yamaguchi/Ganganatha Jha/Ramanuja/George Thibaut/Pratap Chandra Ray/Edward J. Thomas,4.13,0691019584,9780691019581,eng,720,148,7,4/21/1967,Princeton University Press +31854,Philosophy: The Basics,Nigel Warburton,3.84,0203506413,9780415327732,eng,169,830,70,7/1/2004,Routledge +31855,A Young Person's Guide To Philosophy,Jeremy Weate/Peter Lawman,3.92,0789430746,9780789430748,eng,64,58,8,9/21/1998,DK Children +31856,Philosophy in the Flesh: The Embodied Mind and its Challenge to Western Thought,George Lakoff/Mark Johnson,4.07,0465056741,9780465056743,eng,640,1145,56,10/8/1999,Basic Books +31860,Practical Philosophy,Immanuel Kant/Mary J. Gregor,4.10,0521654084,9780521654081,eng,704,288,3,12/8/1999,Cambridge University Press +31862,Discourse on Method and Meditations on First Philosophy,René Descartes/Donald A. Cress,3.71,0872204200,9780872204201,eng,103,24689,326,6/15/1999,Hackett Publishing Company Inc. +31864,Readings in Classical Chinese Philosophy,Philip J. Ivanhoe/Bryan W. Van Norden,3.99,0872207803,9780872207806,eng,416,341,21,12/1/2005,Hackett Publishing Company Inc. +31868,Logic and Philosophy: A Modern Introduction,Alan Hausman/Paul Tidman,3.78,0495128449,9780495128441,eng,525,9,0,6/1/2006,Cengage Learning +31871,History of Political Philosophy,Leo Strauss/Joseph Cropsey,4.17,0226777103,9780226777108,eng,980,441,27,11/30/1987,University of Chicago Press +31875,What Is Ancient Philosophy?,Pierre Hadot/Michael Chase,4.19,0674013735,9780674013735,eng,384,400,42,3/15/2004,Belknap Press +31876,Lectures on the History of Philosophy 1: Greek Philosophy to Plato,Georg Wilhelm Friedrich Hegel/E.S. Haldane/Frederick C. Beiser,4.05,0803272715,9780803272712,en-GB,487,54,5,6/1/1995,University of Nebraska Press +31878,Seinfeld and Philosophy,William Irwin,3.50,0812694090,9780812694093,en-US,224,914,50,8/20/1999,Open Court +31880,Introduction to the Philosophies of Research and Criticism in Education and the Social Sciences,James Paul,2.75,0130422533,9780130422538,eng,360,4,1,10/18/2004,Pearson +31881,Introducing Philosophy,Dave Robinson/Chris Garratt/Judy Groves,3.56,184046576X,9781840465761,en-GB,176,241,21,8/8/2000,Icon Books +31882,The Matrix and Philosophy: Welcome to the Desert of the Real,William Irwin/Gerald J. Erion/Barry Smith/Carolyn Korsmeyer/Jonathan J. Sanford/Jason Holt/Theodore Schick Jr./Gregory Bassham/James Lawler/David Mitsuo Nixon,3.91,081269502X,9780812695021,eng,280,1947,71,8/28/2002,Open Court +31891,A Short History of Modern Philosophy (Routledge Classics),Roger Scruton,3.80,0415267633,9780415267632,eng,328,348,23,11/11/2001,Routledge +31894,Ancient Philosophy,Anthony Kenny,3.98,0198752725,9780198752721,eng,341,260,20,11/30/2006,Oxford University Press USA +31898,Woody Allen and Philosophy: [You Mean My Whole Fallacy Is Wrong?],Mark T. Conard/Aeon J. Skoble/Tom Morris/William Irwin,3.75,0812694538,9780812694536,eng,250,293,9,8/9/2004,Open Court +31899,Three Philosophies of Life: Ecclesiastes—Life As Vanity Job—Life As Suffering Song of Songs—Life As Love,Peter Kreeft,4.30,0898702623,9780898702620,eng,140,437,52,6/1/1990,Ignatius Press +31904,Philosophy of Religion,John Harwood Hick,3.68,0136626289,9780136626282,en-US,160,180,11,11/20/1989,Pearson +31910,Early Greek Philosophy,Jonathan Barnes,4.09,0140448152,9780140448153,eng,336,2088,44,9/26/2002,Penguin Books +31911,Contemporary Political Philosophy,Will Kymlicka,4.00,0198782748,9780198782742,eng,512,594,17,10/25/2001,Oxford University Press USA +31912,Buffy the Vampire Slayer and Philosophy: Fear and Trembling in Sunnydale,James B. South/William Irwin,4.06,0812695313,9780812695311,eng,335,2519,85,3/13/2003,Open Court +31916,Philosophy: The Classics,Nigel Warburton,3.89,0415356296,9780415356299,eng,257,337,26,7/9/1998,Routledge +31917,The Oxford Handbook of Philosophy of Mathematics and Logic,Stewart Shapiro,4.25,0195325923,9780195325928,eng,832,19,1,3/1/2007,Oxford University Press USA +31923,Three Books of Occult Philosophy,Cornelius Agrippa/Donald Tyson,4.10,0875428320,9780875428321,eng,1024,1245,28,1/8/1992,Llewellyn Publications +31925,Philosophy Made Simple,Robert Hellenga,3.39,031601334X,9780316013345,eng,304,501,84,3/1/2007,Back Bay Books +31929,The Philosophy of Biology,David L. Hull/Michael Ruse,3.89,0198752121,9780198752127,eng,784,14,3,8/27/1998,Oxford University Press USA +31938,Ten Great Works of Philosophy,Robert Paul Wolff/René Descartes/David Hume/Immanuel Kant/John Stuart Mill/William James/Plato/Aristotle/Anselm of Canterbury/Thomas Aquinas/Various,3.74,0451528301,9780451528308,en-US,592,95,11,3/1/2002,Signet +31947,Philosophy and the Mirror of Nature,Richard M. Rorty,4.01,0691020167,9780691020167,eng,424,2815,48,1/21/1981,Princeton University Press +31960,The Best American Sports Writing 2003,Buzz Bissinger/Glenn Stout/Elizabeth Gilbert/Bill Plaschke/Gary Smith/Michael J. Agovino,3.87,0618251324,9780618251322,eng,352,53,2,10/10/2003,Mariner Books +31968,Walking the Bible: A Journey by Land Through the Five Books of Moses,Bruce Feiler,3.87,0060838639,9780060838638,eng,451,2539,331,8/2/2005,William Morrow Paperbacks +31974,Mac OS X: Tiger Edition (The Missing Manual),David Pogue,3.79,0596009410,9780596009410,eng,864,96,6,7/19/2005,O'Reilly Media +31975,Astonishing X-Men Volume 2: Dangerous,Joss Whedon/John Cassaday,4.19,078511677X,9780785116776,eng,152,10769,282,6/27/2007,Marvel +31976,FINAL FANTASY X Official Strategy Guide,Dan Birlew,4.29,0744001404,9780744001402,eng,272,388,10,12/17/2001,BradyGames +31978,Ultimate X-Men Vol. 14: Phoenix?,Robert Kirkman/Ben Oliver/Tom Raney,3.70,078512019X,9780785120193,eng,144,1409,28,10/4/2006,Marvel +31979,Astonishing X-Men Volume 1: Gifted,Joss Whedon/John Cassaday,4.17,0785115315,9780785115311,eng,152,24262,557,5/10/2006,Marvel +31980,Cross-X,Joe Miller,3.80,0374131945,9780374131944,eng,480,189,40,10/3/2006,Farrar Straus Giroux +31981,Astonishing X-Men Volume 3: Torn,Joss Whedon/John Cassaday,4.24,0785117598,9780785117599,eng,152,8900,241,2/14/2007,Marvel +31983,X/1999 Volume 01: Prelude,CLAMP,3.96,1569319499,9781569319499,eng,200,3138,68,4/30/2003,VIZ Media LLC +31985,X/1999 Volume 02: Overture,CLAMP/Fred Burke,4.03,1569319502,9781569319505,en-US,192,1092,10,4/30/2003,VIZ Media LLC +31992,鋼之鍊金術師 1,Hiromu Arakawa/荒川弘/方郁仁,4.50,9861146091,9789861146096,zho,183,9,1,6/1/2004,東立 +31993,鋼之鍊金術師 6,Hiromu Arakawa/荒川弘/方郁仁,4.58,9861146148,9789861146140,zho,191,5,0,6/2/2004,東立 +31994,鋼之鍊金術師 10,Hiromu Arakawa/荒川弘/方郁仁,4.60,9861156534,9789861156538,zho,188,3,0,3/23/2005,東立 +31995,鋼之鍊金術師 4,Hiromu Arakawa/荒川弘/方郁仁,4.55,9861146121,9789861146126,zho,189,5,0,6/2/2004,東立 +31996,鋼之鍊金術師 9,Hiromu Arakawa/荒川弘/方郁仁,4.57,9861156526,9789861156521,zho,184,4,0,12/16/2004,東立 +31997,鋼之鍊金術師 5,Hiromu Arakawa/荒川弘/方郁仁,4.56,986114613X,9789861146133,zho,189,6,0,6/2/2004,東立 +31998,鋼之鍊金術師 2,Hiromu Arakawa/荒川弘/方郁仁,4.52,9861146105,9789861146102,zho,185,5,0,6/1/2004,東立 +31999,鋼之鍊金術師 7,Hiromu Arakawa/荒川弘/方郁仁,4.57,9861146156,9789861146157,zho,191,5,0,6/12/2004,東立 +32016,The Gospel According to Job,Mike Mason,4.46,158134449X,9781581344493,eng,448,138,19,10/3/2002,Crossway Books +32039,Avid Editing: A Guide for Beginning and Intermediate Users,Sam Kauffmann,3.83,0240805410,9780240805412,en-US,414,5,0,3/17/2003,Focal Press +32053,The Complete Poems (Poetry Library),D.H. Lawrence,4.01,1853264172,9781853264177,eng,704,1564,25,8/5/1994,Wordsworth Editions +32060,Complete Short Stories Vol 2,D.H. Lawrence,4.03,0670000965,9780670000968,en-GB,303,85,8,7/10/1961,Penguin/Viking Compass (Non-Classics) +32065,D.H. Lawrence and Italy: Twilight in Italy/Sea and Sardinia/Etruscan Places,D.H. Lawrence,3.68,0141180307,9780141180304,eng,512,199,12,7/1/1997,Penguin Classics +32070,The Complete Poems,D.H. Lawrence/Vivian de Sola Pinto/Warren Roberts,4.01,0140186573,9780140186574,eng,1088,62,3,1/1/1994,Penguin Classics +32071,Sons and Lovers,D.H. Lawrence/Geoff Dyer,3.63,0375753737,9780375753732,eng,654,39333,1250,8/17/1999,Modern Library Classics +32075,The Woman Who Rode Away and Other Stories,D.H. Lawrence/Christa Jansohn,3.49,0521294304,9780521294300,eng,556,27,1,8/8/2002,Cambridge University Press +32078,Amnesia Moon,Jonathan Lethem,3.49,015603154X,9780156031547,eng,256,2953,230,8/8/2005,Mariner Books +32080,Paul Revere's Ride,David Hackett Fischer,4.12,0195098315,9780195098310,eng,464,3907,208,4/19/1995,Oxford University Press USA +32082,The Great Wave: Price Revolutions and the Rhythm of History,David Hackett Fischer,3.97,019512121X,9780195121216,eng,552,204,33,11/11/1999,Oxford University Press USA +32083,Growing Old in America: The Bland-Lee Lectures Delivered at Clark University,David Hackett Fischer,4.06,0195023668,9780195023664,eng,252,17,1,4/1/1978,Oxford University Press USA +32094,Nathaniel Hawthorne: The Scarlet Letter: Essays Articles Reviews,Elmer Kennedy-Andrews,3.38,0231121911,9780231121910,eng,192,172,10,12/27/2000,Columbia University Press +32096,The All-True Travels and Adventures of Lidie Newton,Jane Smiley,3.57,0449910830,9780449910832,eng,452,2149,256,12/29/1998,Ballantine Books +32097,The Age of Grief,Jane Smiley,3.81,0385721870,9780385721875,eng,224,1389,123,6/11/2002,Anchor +32099,A Year at the Races: Reflections on Horses Humans Love Money and Luck,Jane Smiley,3.90,1400033179,9781400033171,eng,304,696,49,4/19/2005,Anchor +32102,Venetia,Georgette Heyer,4.10,0373771665,9780373771660,eng,364,10067,789,10/24/2006,Hqn +32103,Lady of Quality,Georgette Heyer,3.88,0099474468,9780099474463,eng,267,5927,458,6/2/2005,Arrow +32104,False Colours,Georgette Heyer,3.86,0099476339,9780099476337,eng,303,4457,330,6/2/2005,Arrow +32105,Sylvester,Georgette Heyer/Joan Wolf,4.11,0373836082,9780373836086,eng,410,10231,636,4/23/2004,Harlequin +32106,The Convenient Marriage,Georgette Heyer,3.68,0099474425,9780099474425,eng,272,9272,861,1/6/2005,Arrow +32107,Sprig Muslin,Georgette Heyer,3.81,0099476355,9780099476351,eng,268,5030,406,6/2/2005,Arrow +32108,The Talisman Ring,Georgette Heyer,4.02,0099474395,9780099474395,eng,268,5550,478,1/6/2005,Arrow +32110,The Nonesuch,Georgette Heyer,4.04,0099474387,9780099474388,eng,304,7204,460,1/6/2005,Arrow +32111,The Foundling,Georgette Heyer/Kay Hooper,3.87,0373835493,9780373835492,eng,406,3716,270,3/25/2003,Harlequin +32113,Ali and Nino,Kurban Said/Jenia Graman,3.92,0099283220,9780099283225,eng,237,147,22,10/5/2000,Vintage/Ebury +32115,Ali und Nino,Kurban Said,3.92,3548601316,9783548601311,ger,304,39,2,2/1/2002,List +32121,Last Rights (Francis Hancock #1),Barbara Nadel,3.53,0755321367,9780755321360,eng,352,132,15,1/2/2006,Headline +32122,Belshazzar's Daughter (Inspector Ikmen #1),Barbara Nadel,3.51,1933397497,9781933397498,eng,448,772,99,10/1/2006,Felony & Mayhem +32124,Deep Waters (Cetin Ikmen #4),Barbara Nadel,3.99,0747267197,9780747267195,eng,448,301,24,7/1/2002,Headline +32125,After the Mourning (Francis Hancock #2),Barbara Nadel,3.42,0755321383,9780755321384,eng,352,104,11,12/28/2006,Headline +32129,Spiritual Midwifery,Ina May Gaskin,4.38,1570671044,9781570671043,eng,482,5166,429,1/1/2002,Book Publishing Company (TN) +32130,Monday Night Class,Stephen Gaskin,3.89,1570671818,9781570671814,en-US,191,59,4,7/31/2005,Book Publishing Company +32137,Summer of the Dragon,Elizabeth Peters,3.92,0380731223,9780380731220,eng,352,2419,102,3/6/2001,HarperCollins +32138,Devil May Care,Elizabeth Peters,3.87,0380731150,9780380731152,eng,352,2233,109,9/4/2001,Avon +32139,The Deeds of the Disturber (Amelia Peabody #5),Elizabeth Peters,4.05,0380731959,9780380731954,eng,389,12389,364,1/5/2000,Avon +32144,The Mammoth Book of Egyptian Whodunnits,Mike Ashley/Elizabeth Peters/Lynda S. Robinson/Lauren Haney,3.91,0786710659,9780786710652,eng,512,161,9,9/20/2002,Running Press +32154,The Best American Classics,Cook's Illustrated Magazine/John Burgoyne,4.14,1933615036,9781933615035,eng,421,35,4,9/1/2006,Cook's Illustrated +32155,Cook's Illustrated 2005 (Cook's Illustrated Annuals),Cook's Illustrated Magazine,4.57,0936184922,9780936184920,eng,206,37,1,11/15/2005,America's Test Kitchen +32160,Cook's Illustrated 2003 (Cook's Illustrated Annuals),Cook's Illustrated Magazine,4.69,0936184728,9780936184722,eng,212,26,0,11/15/2003,Boston Common Press +32165,Cook's Illustrated 1995 (Cook's Illustrated Annuals),Cook's Illustrated Magazine,4.53,0964017938,9780964017931,eng,232,15,1,12/1/1995,Cook's Illustrated +32181,Zelda's Cut,Philippa Gregory,2.94,0006511775,9780006511779,eng,432,65,12,2/1/2001,HarperCollins Publishers +32184,Thanksgiving on Thursday (Magic Tree House #27),Mary Pope Osborne/Salvatore Murdocca,3.85,0375806156,9780375806155,eng,73,6361,209,9/24/2002,Random House Books for Young Readers +32185,Rurouni Kenshin Volume 27,Nobuhiro Watsuki,4.38,1421506742,9781421506746,eng,192,1598,22,6/6/2006,VIZ Media LLC +32186,Ranma 1/2 Vol. 27 (Ranma ½ (US 2nd) #27),Rumiko Takahashi,4.09,1591164591,9781591164593,eng,200,891,13,8/10/2004,VIZ Media LLC +32189,Sukhoi Su-27 Flanker (WarbirdTech #42),Yefim Gordon/Peter Davison,3.00,1580070914,9781580070911,eng,104,6,0,4/1/2006,Specialty Press +32197,1001 Illuminated Initial Letters: 27 Full-Color Plates,Owen Jones,3.46,0486256073,9780486256078,eng,32,11,1,4/1/1988,Dover Publications +32199,Gold Rage (Wilderness #27),David Robbins/David Thompson,4.31,0843945192,9780843945195,eng,170,16,0,5/1/1999,Leisure Books +32202,Asfixia,Chuck Palahniuk,3.70,9875661708,9789875661707,eng,336,47,2,9/1/2006,Debolsillo +32213,Expectant Father,Melinda Curtis,3.60,0373713010,9780373713011,eng,304,40,2,12/15/2011,Harlequin Special Releases +32226,Horse Heaven,Jane Smiley,3.88,0804119430,9780804119436,eng,640,4583,328,8/26/2003,Ballantine Books +32234,White Oleander,Janet Fitch,3.96,0316182540,9780316182546,eng,446,301784,6170,9/1/2001,Little Brown and Company +32241,The Night Remembers (Night #1),Kathleen Eagle,3.79,0380784912,9780380784912,eng,355,228,25,6/1/1998,HarperTorch +32254,The Mephisto Club (Rizzoli & Isles #6),Tess Gerritsen,4.02,0345476999,9780345476999,eng,355,27697,1190,9/12/2006,Ballantine Books +32255,Vanish (Rizzoli & Isles #5),Tess Gerritsen,4.12,0345476980,9780345476982,eng,401,46863,1157,8/29/2006,Ballantine Books +32256,Call After Midnight & Under The Knife,Tess Gerritsen,3.99,037377172X,9780373771721,en-US,555,249,20,4/25/2006,Harlequin +32257,The Sinner (Rizzoli & Isles #3),Tess Gerritsen,4.13,0553815024,9780553815023,eng,419,33678,1099,1/17/2005,Bantem Press +32258,Body Double (Rizzoli & Isles #4),Tess Gerritsen,4.17,034545894X,9780345458940,en-US,432,36595,1205,7/26/2005,Ballantine Books +32262,Life Support,Tess Gerritsen,3.99,0671553046,9780671553043,eng,400,11151,352,8/1/1998,Pocket Books +32264,The Family that Couldn't Sleep,D.T. Max,3.91,1400062454,9781400062454,eng,299,4568,350,9/5/2006,Random House (NY) +32275,River Out of Eden: A Darwinian View of Life,Richard Dawkins/Lalla Ward,3.98,0465069908,9780465069903,en-US,172,5891,192,8/23/1996,HarperCollinsPublishers +32276,Dragons of Eden: Speculations on the Evolution of Human Intelligence,Carl Sagan,4.18,0345346297,9780345346292,eng,271,15444,475,12/12/1986,Ballantine Books +32277,Eden: It's an Endless World Volume 1 (Eden: It's an Endless World #1),Hiroki Endo,3.97,1593074069,9781593074067,eng,216,1848,66,11/15/2005,Dark Horse Manga +32281,Demonic Males: Apes and the Origins of Human Violence,Richard W. Wrangham/Dale Peterson,4.03,0395877431,9780395877432,en-US,368,686,64,11/14/1997,Mariner Books +32286,A Mad People's History of Madness,Dale Peterson,4.33,0822953315,9780822953319,eng,384,9,0,3/15/1982,University of Pittsburgh Press +32289,A Primate's Memoir: A Neuroscientist's Unconventional Life Among the Baboons,Robert M. Sapolsky,4.35,0743202414,9780743202411,eng,304,5040,590,3/12/2002,Scribner +32295,Blame It on the Brain: Distinguishing Chemical Imbalances Brain Disorders and Disobedience,Edward T. Welch,4.05,0875526020,9780875526027,eng,204,534,50,6/1/1998,P & R Publishing +32298,Blame! Vol. 7,Tsutomu Nihei,4.30,1595328408,9781595328403,eng,210,785,13,2/1/2007,TokyoPop +32300,The Berenstain Bears and the Blame Game,Stan Berenstain/Jan Berenstain,3.87,0679887431,9780679887430,en-US,32,745,28,10/7/1997,Random House Books for Young Readers +32302,Blame! Vol. 8,Tsutomu Nihei,4.26,1595328416,9781595328410,eng,216,762,13,5/1/2007,TokyoPop +32303,The New Don't Blame Mother: Mending the Mother-Daughter Relationship,Paula J. Caplan,3.88,0415926300,9780415926300,eng,320,5,0,3/25/2000,Routledge +32307,Blame It on Paris,Laura Florand,3.53,0765315084,9780765315083,eng,384,358,63,10/3/2006,Forge Books +32313,No Wind of Blame (Inspector Hemingway #1),Georgette Heyer,3.78,0099493675,9780099493679,eng,352,96,17,9/7/2006,Arrow +32316,Uncle John's Presents Blame It on the Weather: Amazing Weather Facts,David W. Phillips/Michael Parfit/Suzanne Chisholm/Bathroom Readers' Institute,3.57,1571458689,9781571458681,eng,240,7,1,11/1/2002,Portable Press +32317,Who's To Blame (Sweet Valley High #66),Francine Pascal/Kate William,3.36,0553285556,9780553285550,eng,152,406,5,6/1/1990,Bantam +32323,Blame! #1,Tsutomu Nihei,4.10,2723431029,9782723431026,fre,245,18,5,3/20/2000,Glénat +32328,Air Gear Vol. 2 (Air Gear #2),Oh! Great/大暮 維人,4.04,034549279X,9780345492791,eng,224,686,8,10/31/2006,Del Rey +32329,Air Gear Vol. 3 (Air Gear #3),Oh! Great/大暮 維人,4.09,0345492803,9780345492807,eng,224,609,3,1/30/2007,Del Rey +32330,Air Gear Vol. 1 (Air Gear #1),Oh! Great/大暮 維人,3.92,0345492781,9780345492784,eng,224,1875,37,7/25/2006,Del Rey +32331,Air Gear Vol. 4 (Air Gear #4),Oh! Great/大暮 維人,4.07,0345492811,9780345492814,en-GB,224,467,2,5/1/2007,Del Rey +32338,Fire in the Minds of Men: Origins of the Revolutionary Faith,James H. Billington,4.54,0765804719,9780765804716,eng,677,96,9,1/1/1980,Basic Books +32349,Mutant Message Down Under,Marlo Morgan,3.79,0060723513,9780060723514,eng,187,11224,1249,5/25/2004,Harper Perennial +32350,Mutants & Masterminds: RPG,Steve Kenson/Ramón Pérez,3.81,1932442529,9781932442526,eng,253,305,8,11/1/2005,Green Ronin Publishing +32351,Mutants: On Genetic Variety and the Human Body,Armand Marie Leroi,4.05,0142004820,9780142004821,eng,448,3040,200,1/25/2005,Penguin Books +32353,The New Mutants Classic Vol. 1,Chris Claremont/Bob McLeod,3.75,0785121943,9780785121947,eng,240,697,43,5/3/2006,Marvel +32358,James Dean: The Mutant King: A Biography,David Dalton,4.07,155652398X,9781556523984,eng,384,491,29,9/1/2001,Chicago Review Press +32370,Dry,Augusten Burroughs,4.03,0312423799,9780312423797,eng,293,77100,3112,4/1/2004,Picador USA +32373,Yes Your Teen Is Crazy!: Loving Your Kid Without Losing Your Mind,Michael J. Bradley,4.29,0936197447,9780936197449,en-US,332,792,138,11/8/2002,Harbor Press +32386,El Retrato De Dorian Gray,Oscar Wilde,4.08,849531178X,9788495311788,spa,251,43,5,4/7/2006,Mestas Ediciones +32396,Henry IV Part 1,William Shakespeare/Barbara A. Mowat/Paul Werstine,3.83,0743485041,9780743485043,eng,336,1604,146,1/1/2005,Simon Schuster +32398,Henry IV Part 2,William Shakespeare/Barbara A. Mowat/Paul Werstine,3.80,074348505X,9780743485050,eng,400,692,89,1/1/2006,Simon Schuster +32400,Henry IV part II,William Shakespeare,3.80,0141016701,9780141016702,eng,336,22,4,4/26/2005,Penguin UK +32401,King Henry IV Part 2,William Shakespeare/Arthur Raleigh Humphreys,3.80,1904271065,9781904271062,eng,336,262,21,10/12/1967,Bloomsbury Arden Shakespeare +32408,Piccole donne,Louisa May Alcott/Jame's Prunier/Laura Cangemi,3.98,8838461139,9788838461132,ita,288,83,5,4/15/2001,Piemme +32410,I Henry IV,William Shakespeare/Gordon McMullan,3.83,0393979318,9780393979312,en-US,432,89,11,4/22/2003,W. W. Norton & Company +32413,Collected Plays: Henry IV The Man with the Flower in His Mouth Right You Are,Luigi Pirandello/Henry Reed,3.92,0714541109,9780714541105,eng,236,12,1,7/1/1987,Riverrun Press (New York NY) +32414,Henry IV Parts I & II,William Shakespeare/Ronald K. Levao,3.85,032118274X,9780321182746,en-US,400,58,2,12/1/2006,Pearson +32417,Black Sunday,Thomas Harris,3.60,0451217411,9780451217417,eng,311,6969,173,11/1/2005,NAL +32418,Hannibal (Hannibal Lecter #3),Thomas Harris,3.76,0099297701,9780099297703,eng,564,71712,2120,5/18/2000,Arrow +32419,The Hannibal Lecter Trilogy,Thomas Harris,4.42,0434009059,9780434009053,eng,1222,808,29,11/3/2005,William Heinemann Ltd. +32421,Velocity,Dean Koontz,3.86,0553588257,9780553588255,eng,460,53394,1527,4/25/2006,Bantam +32422,Hideaway,Dean Koontz,3.84,0425203891,9780425203897,eng,413,30539,453,7/5/2005,Berkley +32424,Lightning,Dean Koontz,4.06,0425192032,9780425192030,eng,384,49312,1644,9/2/2003,Berkley +32426,Icebound,David Axton/Dean Koontz,3.76,0553582909,9780553582901,eng,408,17062,358,9/5/2000,Bantam +32427,The Servants of Twilight / Darkfall / Phantoms,Dean Koontz/Leigh Nichols,4.24,0517064871,9780517064870,eng,752,3336,24,7/27/1991,Wings +32428,Shadow Fires,Leigh Nichols/Dean Koontz,3.78,0425136981,9780425136980,eng,528,9553,167,6/1/1993,Berkley +32430,The Bad Place,Dean R. Koontz,3.90,0425195481,9780425195482,eng,417,30574,519,7/6/2004,Berkley +32432,Fear Nothing (Moonlight Bay #1),Dean Koontz,4.00,0553579754,9780553579758,eng,448,31462,833,12/1/1998,Bantam Books +32433,The Key to Midnight,Dean Koontz/Leigh Nichols,3.95,0425147517,9780425147511,eng,419,24594,239,6/1/1995,Berkley Books +32434,Mr. Murder,Dean Koontz,3.76,0425210758,9780425210758,eng,493,22577,448,7/5/2006,Berkley +32435,Phantoms,Dean Koontz,3.94,0425181103,9780425181102,eng,448,61123,1047,2/5/2002,Berkley +32437,The Face,Dean Koontz,3.71,0553584480,9780553584486,eng,649,18747,559,4/27/2004,Bantam +32438,Shattered,Dean Koontz,3.90,0425099334,9780425099339,eng,289,19637,228,2/15/1985,Berkley +32439,Intensity,Dean Koontz,4.04,0553582917,9780553582918,eng,436,65221,2345,10/31/2000,Bantam +32441,The Good Guy,Dean Koontz,3.82,0553804812,9780553804812,eng,386,29967,1317,5/29/2007,Bantam +32443,The Eyes of Darkness,Leigh Nichols/Dean Koontz,3.88,0425153975,9780425153970,eng,366,16242,298,7/1/1996,Berkley +32446,The Door to December,Richard Paige/Dean Koontz,3.95,0451205421,9780451205421,eng,518,32385,581,6/1/2002,Berkley Books +32453,The Servants of Twilight,Leigh Nichols/Dean Koontz,3.83,0747236380,9780747236382,eng,499,15666,209,5/16/1991,Headline Feature +32456,Darkfall,Dean Koontz,3.82,0425214591,9780425214596,eng,371,17016,364,2/6/2007,Berkley +32461,Ghosts and Grisly Things,Ramsey Campbell/Jack Dann/Dennis Etchison,3.73,0312867573,9780312867577,en-US,300,202,14,10/11/2001,Tor Books +32483,Shakespeare: The Biography,Peter Ackroyd,3.99,140007598X,9781400075980,eng,608,1541,131,11/14/2006,Anchor +32484,The Necessary Shakespeare,William Shakespeare,4.31,0321272501,9780321272508,eng,896,91,10,8/27/2004,Longman Publishing Group +32487,Shakespeare After All,Marjorie Garber,4.38,0385722141,9780385722148,eng,1008,852,62,9/20/2005,Anchor Books +32488,Playing Shakespeare: An Actor's Guide,John Barton/Luann Walther,4.35,0385720858,9780385720854,eng,288,456,27,8/21/2001,Anchor +32498,John Grisham Value Collection: A Time to Kill The Firm The Client,John Grisham/Michael Beck/Blair Brown/D.W. Moffett,4.50,0739312642,9780739312643,eng,0,476,9,6/1/2004,Random House Audio +32499,The Pelican Brief,John Grisham,4.00,0385339704,9780385339704,eng,400,340714,1942,4/25/2006,Delta +32500,The Harry Bosch Novels Volume 1: The Black Echo / The Black Ice / The Concrete Blonde (Harry Bosch #1-3),Michael Connelly,4.34,0316154970,9780316154970,eng,794,2023,83,10/22/2001,Little Brown & Company +32501,Echo Park (Harry Bosch #12; Harry Bosch Universe #16),Michael Connelly,4.12,0316734950,9780316734950,eng,405,36333,1511,10/9/2006,Little Brown & Company +32502,Angels Flight (Harry Bosch #6; Harry Bosch Universe #7),Michael Connelly,4.18,0446607274,9780446607278,eng,454,33730,1309,1/5/2000,Warner Books (NY) +32503,The Harry Bosch Novels Volume 2: The Last Coyote / Trunk Music / Angels Flight (Harry Bosch #4-6),Michael Connelly,4.49,0316614564,9780316614566,eng,821,2026,27,11/3/2003,Little Brown and Company +32505,The Closers (Harry Bosch #11; Harry Bosch Universe #14),Michael Connelly,4.13,0446699551,9780446699556,eng,432,29913,1282,10/2/2006,Grand Central Publishing +32506,The Poet (Jack McEvoy #1; Harry Bosch Universe #5),Michael Connelly,4.20,0446690457,9780446690454,eng,510,64309,2025,7/1/2002,Grand Central Publishing +32507,Chasing the Dime,Michael Connelly,3.96,044661162X,9780446611626,eng,448,26998,828,9/1/2003,Warner Books +32508,The Black Echo (Harry Bosch #1; Harry Bosch Universe #1),Michael Connelly,4.10,0446612731,9780446612739,eng,482,125864,3198,12/1/2002,Grand Central Publishing +32509,Tales From Shakespeare,Charles Lamb/Mary Lamb/Arthur Rackham,3.96,1853261408,9781853261404,eng,278,117,11,8/5/1994,Wordsworth Editions +32510,Shakespeare's Champion (Lily Bard #2),Charlaine Harris,3.83,0425213102,9780425213100,eng,214,13896,537,12/5/2006,Berkley Books +32511,Will in the World: How Shakespeare Became Shakespeare,Stephen Greenblatt,3.94,0393050572,9780393050578,en-US,430,421,70,9/30/2004,W.W. Norton & Company (NY/London) +32514,Sonnets,William Shakespeare/Barbara A. Mowat/Paul Werstine,4.25,0671722875,9780671722876,eng,391,701,41,2/1/2004,Simon Schuster +32516,Shakespeare's Trollop (Lily Bard #4),Charlaine Harris,3.87,0425196992,9780425196991,eng,194,12212,367,5/4/2004,Berkley +32517,Shakespeare's Kitchen: Renaissance Recipes for the Contemporary Cook,Francine Segan/Tim Turner/Patrick O'Connell,4.01,0375509178,9780375509179,eng,288,111,13,10/14/2003,Random House +32520,Sonnets,William Shakespeare/Stephen Booth,4.25,0300085060,9780300085068,eng,583,104,6,7/11/2000,Yale University Press +32522,The Art of Shakespeare's Sonnets,Helen Vendler,4.30,0674637127,9780674637122,eng,692,613,25,11/1/1999,Belknap Press of Harvard University Press +32523,Hide (Detective D.D. Warren #2),Lisa Gardner,4.16,0553804324,9780553804324,eng,375,26891,1501,1/30/2007,Bantam Books +32527,Alone (Detective D.D. Warren #1),Lisa Gardner/Anna Fields,3.96,0553584537,9780553584530,eng,451,44349,1850,12/27/2005,Bantam +32530,The Third Victim (Quincy & Rainie #2),Lisa Gardner,4.16,0553578685,9780553578683,eng,384,24599,518,1/30/2001,Bantam +32532,On Becoming a Novelist,John Gardner/Raymond Carver,4.11,0393320030,9780393320039,eng,150,2316,204,10/17/1999,W. W. Norton & Company +32533,The Art of Fiction: Notes on Craft for Young Writers,John Gardner,4.00,0679734031,9780679734031,eng,224,5019,408,6/4/1991,Vintage +32534,October Light,John Gardner/Tom Bissell,3.88,0811216373,9780811216371,eng,399,843,61,10/17/2005,New Directions +32537,Excellence,John W. Gardner,3.82,0393312879,9780393312874,eng,176,49,8,4/17/1995,W. W. Norton Company +32540,Conversations with Bernard Malamud (Literary Conversations),J. Michael Lennon/Lawrence M. Lasher,4.00,0878054898,9780878054893,eng,156,0,0,4/28/1991,University Press of Mississippi +32552,Essential Tales and Poems,Edgar Allan Poe/Benjamin F. Fisher,4.36,1593080646,9781593080648,en-US,688,66382,109,10/25/2004,Barnes Noble Classics +32558,Poetry Tales and Selected Essays,Edgar Allan Poe/Gary Richard Thompson/G.R. Thompson/Patrick F. Quinn,4.41,1883011388,9781883011383,eng,1520,170,13,10/1/1996,Library of America +32560,The Complete Stories,Franz Kafka/Nahum N. Glatzer/John Updike,4.35,0805208739,9780805208733,eng,488,168,12,11/14/1995,Schocken Books +32561,The Sons,Franz Kafka/Edwin Muir/Willa Muir/Eithne Wilkins/Ernst Kaiser/Mark Anderson/Arthur S. Wensinger,3.95,0805208860,9780805208863,eng,167,529,37,8/5/1989,Schocken +32572,The Metamorphosis and Other Stories,Franz Kafka/Donna Freed/Jason Baker,4.03,1593081804,9781593081805,eng,191,132,19,9/20/2004,Barnes Noble Classics +32574,The Metamorphosis And Other Stories,Franz Kafka/Joachim Neugroschel,4.03,0684194260,9780684194264,eng,227,61,6,12/1/1993,Scribner Book Company +32576,Metamorphosis (Star Trek: The Next Generation),Jean Lorrah,3.72,0671684027,9780671684020,eng,371,1399,49,3/1/1990,Pocket Books +32578,Lolita,Richard Corliss,3.89,0851703682,9780851703688,eng,96,475,23,12/27/1994,British Film Institute +32579,Lolita: The Screenplay,Vladimir Nabokov,3.87,0679772553,9780679772552,eng,240,281,18,8/26/1997,Vintage +32581,Lolita,Vladimir Nabokov/Martin Amis,3.89,0679410430,9780679410430,eng,335,1965,295,3/9/1993,Everyman's Library +32584,Mysteries,Knut Hamsun/Sverre Lyngstad,4.09,0141186186,9780141186184,en-US,313,282,37,1/1/2001,Penguin Classics +32585,Hunger,Knut Hamsun/George Egerton,4.05,0486431681,9780486431680,eng,134,28153,1372,11/17/2003,Dover Publications +32588,Victoria,Knut Hamsun/Oliver Stallybrass,3.74,1557131775,9781557131775,eng,155,47,7,10/1/1994,Sun & Moon Press +32589,The Wanderer,Knut Hamsun/Oliver Stallybrass/Gunnvor Stallybrass,3.96,0285647873,9780285647879,eng,164,696,25,4/30/2001,Condor Books +32590,Pan,Knut Hamsun/Sverre Lyngstad,3.90,0141180676,9780141180670,eng,181,5833,255,9/1/1998,Penguin Classics +32591,The Last Joy,Knut Hamsun/Sverre Lyngstad,3.77,1931243190,9781931243193,eng,250,129,8,7/1/2002,Green Integer +32592,In Wonderland,Knut Hamsun/Sverre Lyngstad,3.60,0970312555,9780970312556,nor,185,86,8,9/1/2003,Ig Publishing +32609,Guilty as Charged,Scott Turow/Sarah Shankman/Jay Brandon/Jeremiah Healy/Ed Gorman/John Jakes/Maynard F. Thomson/Lia Matera/Susan Dunlap/Bill Pronzini/John Lutz/Andrew Klavan/Marcia Muller/Stuart M. Kaminsky/Carolyn Wheat/Stan Washburn/Valerie Frankel,3.76,0671519166,9780671519162,eng,10,149,2,10/1/1996,Pocket Books +32610,On the Shoulders of Giants: The Great Works of Physics and Astronomy,Stephen Hawking/Isaac Newton/Nicolaus Copernicus/Albert Einstein/Johannes Kepler/Galileo Galilei,4.20,0762427329,9780762427321,eng,256,4151,33,1/1/2006,Penguin Books +32625,Visions of Heaven and Hell,Clive Barker,4.32,0847827372,9780847827374,eng,352,661,20,9/27/2005,Rizzoli +32626,Books of Blood: Volumes One to Three (Books of Blood #1-3),Clive Barker,4.18,0425165582,9780425165584,eng,507,22863,491,10/1/1998,Berkley Books +32627,Everville (Book of the Art #2),Clive Barker,4.03,0060933151,9780060933159,eng,697,8829,157,11/3/1999,HarperPerennial +32628,The Great and Secret Show (Book of the Art #1),Clive Barker,4.05,006093316X,9780060933166,eng,658,25955,518,11/3/1999,HarperPerennial +32636,Abarat: Days of Magic Nights of War,Clive Barker,4.20,0060596384,9780060596385,eng,569,12118,292,9/26/2006,HarperCollins +32637,Imajica: The Reconciliation,Clive Barker,4.42,0061094153,9780061094156,eng,544,2583,30,5/10/1995,HarperTorch +32639,Sacrament,Clive Barker,3.75,0006482643,9780006482642,eng,594,3942,106,5/1/1997,Harper Voyager +32640,The Inhuman Condition (Books of Blood #4),Clive Barker,3.96,0743417348,9780743417341,eng,180,6294,111,3/1/2001,Pocket Books +32649,Notebook of a Return to the Native Land,Aimé Césaire/Annette Smith/Clayton Eshleman,4.09,0819564524,9780819564528,eng,66,941,49,9/24/2001,Wesleyan University Press +32650,The Return of the Native,Thomas Hardy/Alexander Theroux,3.86,037575718X,9780375757181,eng,448,29586,981,2/13/2001,Modern Library +32656,The Return of the Native,Thomas Hardy/Phillip Mallett,3.86,0393927873,9780393927870,eng,552,44,5,2/14/2006,W. W. Norton & Company +32664,The Stephen King Collection: Stories from Night Shift,Stephen King/John Glover,4.00,0553527401,9780553527407,eng,9,662,23,5/2/2000,Random House Audio +32667,Blood and Smoke,Stephen King,3.92,0671046179,9780671046170,eng,4,6221,155,1/1/2000,Simon & Schuster Audio +32668,LT's Theory of Pets,Stephen King,3.69,074352005X,9780743520058,eng,1,2824,140,8/1/2001,Simon Schuster Audio +32679,Carretera maldita,Richard Bachman/Stephen King/Joseph M. Apfelbäume,3.60,8401474728,9788401474729,spa,362,336,37,2/1/1999,Plaza & Janés Editores S.A. +32680,Silver Bullet,Stephen King/Bernie Wrightson,3.64,0451821289,9780451821287,en-US,255,3551,33,11/12/1985,Signet +32682,Patriot Games (Jack Ryan #1),Tom Clancy,4.14,0425134350,9780425134351,eng,503,170797,984,5/1/1992,Berkley +32686,Legends,Robert Silverberg/Stephen King/Robert Jordan/Terry Goodkind/Anne McCaffrey/Orson Scott Card/Tad Williams/George R.R. Martin/Raymond E. Feist/Terry Pratchett/Ursula K. Le Guin,3.92,0765300354,9780765300355,en-US,717,339,25,9/8/2001,Tor Books +32689,Bare Bones: Conversations on Terror with Stephen King,Tim Underwood/Chuck Miller/Stephen King,4.17,0446390577,9780446390576,eng,224,3162,28,7/1/1989,Warner +32691,Four Past Midnight,Stephen King,3.93,0451213599,9780451213594,eng,768,1430,42,3/2/2004,Signet +32692,Gerald's Game,Stephen King,3.51,0831727527,9780831727529,eng,332,117178,2678,9/1/1992,Smithmark Publishers +32694,Faithful: Two Diehard Boston Red Sox Fans Chronicle the Historic 2004 Season,Stewart O'Nan/Stephen King,3.83,0743267532,9780743267533,eng,445,4321,164,9/6/2005,Scribner +32695,El talismán,Stephen King/Peter Straub/Pilar Giralt Gorina,4.13,8408042432,9788408042433,spa,375,12,1,7/1/2003,Planeta Publishing +32696,El umbral de la noche,Stephen King/Gregorio Vlastelica/Eduardo Goligorsky,4.00,8497594290,9788497594295,spa,417,79,11,4/30/2004,Debolsillo +32702,Rabia,Richard Bachman/Stephen King/Hernán Sabaté Vargas,3.78,8427011504,9788427011502,spa,203,91,22,9/1/1987,Martínez Roca +32703,The Diary of Ellen Rimbauer: My Life at Rose Red,Joyce Reardon/Steven Rimbauer/Ridley Pearson,3.67,0786890436,9780786890439,eng,277,7852,352,4/29/2001,Hyperion +32709,Now and on Earth,Jim Thompson/Stephen King,3.70,0679740139,9780679740131,eng,320,339,21,2/1/1994,Vintage +32714,The Monkey,Stephen King/David Purdham,3.77,0394299035,9780394299037,eng,2,801,44,10/28/1989,Random House Audio +32715,Desperation / The Regulators: Box Set,Stephen King/Richard Bachman,4.07,067077605X,9780670776054,eng,1075,3231,72,10/1/1996,Viking Adult +32720,Ojos de fuego,Stephen King/Eduardo Goligorsky,3.88,0609810871,9780609810873,spa,528,353,29,9/4/2001,Plaza y Janés +32737,Tevye's Daughters: Collected Stories of Sholom Aleichem,Sholom Aleichem/Frances Butwin,4.17,1929068034,9781929068036,eng,302,146,13,11/1/1999,Sholom Aleichem Family Publications +32741,Favorite Tales of Sholom Aleichem,Sholom Aleichem/Ben Shahn/Frances Butwin/Julius Butwin,4.26,0517412942,9780517412947,en-US,692,66,6,11/18/1990,Avenel Books +32750,Brown Girl Brownstones,Paule Marshall/Mary Helen Washington/Edwidge Danticat,4.07,1558614982,9781558614987,eng,324,2466,107,8/1/2006,Feminist Press +32760,V.,Thomas Pynchon,3.96,3499137305,9783499137303,ger,544,46,4,8/1/1994,Rowohlt +32765,Gimpel the Fool: And Other Stories,Isaac Bashevis Singer/Saul Bellow,4.16,0374500525,9780374500528,eng,205,37,4,12/31/1988,Farrar Straus Giroux +32767,At the Mountains of Madness,H.P. Lovecraft/China Miéville/S.T. Joshi,3.88,0812974417,9780812974416,eng,224,24866,1608,6/14/2005,Modern Library +32768,At the Mountains of Madness and Other Novels,H.P. Lovecraft/James Turner/S.T. Joshi/August Derleth,4.44,0870540386,9780870540387,eng,458,486,20,12/1/1985,Arkham House Publishers +32769,At the Mountains of Madness and Other Tales of Terror,H.P. Lovecraft,4.25,0345329457,9780345329455,eng,184,21719,491,9/13/1991,Del Rey Books +32773,Mountain Madness (Wilderness #24),David Robbins/David Thompson,4.45,0843943998,9780843943993,eng,170,22,2,6/1/1998,Leisure Books +32774,At the Mountains of Madness and Other Novels of Terror,H.P. Lovecraft/August Derleth/E. Hoffmann Price,4.44,0007127774,9780007127771,eng,552,29,5,6/17/2002,Voyager +32778,The Aeneid,Virgil/Robert Fitzgerald,3.84,0679413359,9780679413356,eng,483,184,21,6/30/1992,Everyman's Library +32779,The Aeneid (Verse Translation),Virgil/Rolfe Humphries,3.84,0024277800,9780024277800,en-US,368,19,2,1/15/1987,Prentice Hall/Scribner/Macmillan +32780,The Iliad,Homer/Andrew Lang,3.86,1904633382,9781904633389,eng,542,64,8,9/1/2011,Collector's Library +32781,War and the Iliad,Simone Weil/Rachel Bespaloff/Mary McCarthy/Christopher E.G. Benfey/Hermann Broch,4.04,1590171454,9781590171455,eng,121,532,57,3/31/2005,NYRB Classics +32782,The Iliad,Homer/Victor G. Ambrus/Nick McCarty,3.86,0753453215,9780753453216,eng,95,8,3,9/15/2000,Kingfisher +32807,Trojan Odyssey (Dirk Pitt #17),Clive Cussler,3.94,0425199320,9780425199329,eng,463,15118,318,12/1/2004,G.P. Putnam's Sons +32810,The Divine Comedy II: Purgatory,Dante Alighieri/Dorothy L. Sayers/C.W. Scott-Giles,4.02,0140440461,9780140440461,en-US,388,369,33,8/30/1981,Penguin Classics +32811,The Divine Comedy,Dante Alighieri/C.H. Sisson/David H. Higgins,4.07,0192835025,9780192835024,en-US,735,177,10,6/18/1998,Oxford University Press +32812,Paradiso (The Divine Comedy #3),Dante Alighieri/Dorothy L. Sayers/Barbara Reynolds,3.95,0140441050,9780140441055,eng,400,11566,222,7/30/1962,Penguin Classics +32813,Modern Reader's Guide to Dante's the Divine Comedy,Joseph Gallagher,4.49,0764804944,9780764804946,eng,256,29,2,5/10/1999,Liguori Publications +32814,The Canterbury Tales,Geoffrey Chaucer/Nevill Coghill,3.49,0140440224,9780140440225,eng,489,1050,74,7/30/1970,Penguin Books +32816,The Canterbury Tales: Fifteen Tales and the General Prologue,Geoffrey Chaucer/V.A. Kolve/Glending Olson,3.95,0393925870,9780393925876,enm,600,1149,41,8/1/2005,W. W. Norton & Company +32823,Fanning the Flame: Bible Cross and Mission,Chris Green/Chris Wright/Paul Douglas Gardner,5.00,0310249872,9780310249870,eng,336,1,1,6/17/2003,Zondervan +32827,From the Earth to the Moon (Extraordinary Voyages #4),Jules Verne,3.78,1598184547,9781598184549,eng,136,17325,421,10/1/2006,Aegypan +32828,The Mammoth Book of New Jules Verne Adventures: Return to the Center of the Earth and Other Extraordinary Voyages New Tales by the Heirs of Jules Verne,Mike Ashley/Eric Brown/Keith Brooke/Johan Heliot/Kevin J. Anderson/Sarah A. Hoyt/Justina Robson/Adam Roberts/Paul Di Filippo/Tim Lebbon/Molly Brown/Tony Ballantyne/Stephen Baxter/Richard A. Lupoff/Sharan Newman/Michael Pagel/Liz Williams/Brian Stableford/James Lovegrove/Ian Watson/Peter Criwther/Laurent Genefirt/F. Gwynplaine MacIntyre/Michael Mallory,3.63,0786714956,9780786714957,eng,498,28,4,2/15/2005,Running Press +32829,Journey to the Center of the Earth (Extraordinary Voyages #3),Jules Verne,3.86,0553213970,9780553213973,eng,240,107189,2510,4/25/2006,Bantam +32830,20 000 Leagues Under The Sea,Pauline Francis/Jules Verne,3.76,0237526883,9780237526887,eng,48,563,32,8/1/2004,Evans Brothers +32831,The Mysterious Island (Extraordinary Voyages #12),Jules Verne/Caleb Carr/Jordan Stump,4.11,0812972120,9780812972122,eng,723,30022,948,4/27/2004,Modern Library +32832,The Lighthouse at the End of the World,Jules Verne,3.64,1589630947,9781589630949,eng,260,1752,40,3/20/2001,Fredonia Books (NL) +32833,The World of Jules Verne,Gonzague Saint Bris/Arthur C. Clarke/Stéphane Heuet/Helen Marx/Saint-Bris Gonzague,4.00,1885586426,9781885586421,eng,85,3,1,11/1/2006,Helen Marx Books +32835,The End of Nana Sahib: The Steam House (Extraordinary Voyages #20),Jules Verne/Agnes D. Kingston,3.59,1410103277,9781410103277,eng,276,199,9,7/19/2003,Fredonia Books (NL) +32836,Around the World in Eighty Days,Jules Verne/Herbert R. Lottman/Jacqueline Rogers,3.93,0451529774,9780451529770,eng,236,156,17,6/7/2005,Signet +32843,Around the World in Eighty Days,Jules Verne/George M. Towle/Bruce Sterling,3.93,0812968565,9780812968569,eng,211,778,35,12/30/2003,Modern Library +32844,The Mysterious Island,Jules Verne/Jordan Stump/Caleb Carr,4.11,0812966422,9780812966428,eng,630,114,14,12/10/2002,Modern Library +32849,Adrift in the Pacific: Two Years Holiday (Extraordinary Voyages #32),Jules Verne,3.99,1410102157,9781410102157,eng,300,1956,39,4/24/2003,Fredonia Books (NL) +32854,Final Payments,Mary Gordon,3.69,0307276783,9780307276780,eng,304,551,78,6/6/2006,Anchor +32872,Sliver of Truth (Ridley Jones #2),Lisa Unger,3.68,0307338460,9780307338464,eng,308,3015,347,1/2/2007,Shaye Areheart Books +32880,The Mothman Prophecies,John A. Keel,3.54,0340824468,9780340824467,eng,352,117,16,3/7/2002,Hodder & Stoughton +32884,Intimate Communion: Awakening Your Sexual Essence,David Deida/Lorrie Bortner,3.99,155874374X,9781558743748,eng,270,265,26,11/1/1995,Health Communications +32893,Letter to a Man in the Fire: Does God Exist and Does He Care?,Reynolds Price,3.70,0684856271,9780684856278,eng,112,113,22,10/17/2000,Scribner +32899,The Promise of Rest,Reynolds Price/Mary Bess Engel,4.00,0684825104,9780684825106,eng,368,253,16,11/5/1996,Scribner +32900,Perfect Match,Jodi Picoult,3.95,0743418727,9780743418720,eng,368,213,33,5/1/2002,Atria Books +32913,Demon Box,Ken Kesey,3.56,0140085300,9780140085303,eng,400,1418,55,8/4/1987,Penguin Books +32915,Sailor Song,Ken Kesey,3.58,0140139974,9780140139976,eng,533,2015,105,7/1/1993,Penguin Books +32916,On the Bus: The Complete Guide to the Legendary Trip of Ken Kesey and the Merry Pranksters and the Birth of Counterculture,Paul Perry/Ken Babbs,3.86,156025114X,9781560251149,eng,205,193,10,1/7/1997,Running Press +32919,The Further Inquiry,Ken Kesey/Ron Bevirt,3.63,0670831743,9780670831746,eng,215,226,3,10/1/1990,Viking Books +32929,Goodnight Moon,Margaret Wise Brown/Clement Hurd,4.28,0060775858,9780060775858,eng,32,276426,4975,1/23/2007,HarperCollins +32936,Goodnight Moon 123: A Counting Book (Over the Moon),Margaret Wise Brown/Clement Hurd,3.57,0061125938,9780061125935,eng,32,198,22,7/1/2007,HarperCollins Publishers +32939,New Rules: Polite Musings from a Timid Observer,Bill Maher,3.71,1594862958,9781594862953,en-US,304,5034,305,7/26/2005,Rodale Books +32941,True Story,Bill Maher,3.11,0743291352,9780743291354,en-US,304,199,28,10/1/2005,Simon Schuster +32942,Does Anybody Have a Problem With That? The Best of Politically Incorrect,Bill Maher,3.51,0345412818,9780345412812,eng,288,189,9,5/20/1997,Ballantine Books +32946,The Outsiders,S.E. Hinton,4.09,0141314575,9780141314570,eng,218,2630,258,3/6/2003,Puffin Group +32947,Outsiders Within: Writing on Transracial Adoption,Jane Jeong Trenka/Julia Chinyere Oparah,4.17,0896087646,9780896087644,eng,300,190,20,8/1/2006,South End Press +32950,Outsiders Vol. 5: The Good Fight,Judd Winick/Matthew Clark/Art Thibert/Pop Mhan/Ron Randall,3.43,140121195X,9781401211950,eng,192,122,12,1/3/2007,DC Comics +32951,Sister Outsider: Essays and Speeches,Audre Lorde,4.49,0895941414,9780895941411,en-GB,190,12105,568,6/1/1984,Crossing Press +32957,Caramelo,Sandra Cisneros,3.90,0679742581,9780679742586,eng,441,9317,700,9/9/2003,Vintage +32961,The House on Mango Street,Sandra Cisneros,3.63,0739322796,9780739322796,en-US,2,108,21,8/30/2005,Random House Audio +32964,Selections from Homer’s Iliad,Homer/Allen Rogers Benner/Mark W. Edwards,4.41,0806133635,9780806133638,eng,522,67,7,12/15/2001,University of Oklahoma Press +32966,The Merchant of Venice,William Shakespeare,3.80,0141013958,9780141013954,eng,240,140,8,4/7/2005,Penguin Classics +32975,Nancy Drew: Girl Detective: #1-4,Carolyn Keene,4.02,0689036914,9780689036910,eng,640,2167,30,10/1/2004,Aladdin +32977,Nancy's Mysterious Letter (Nancy Drew Mystery Stories #8),Carolyn Keene/Walter Karig,3.86,1557091625,9781557091628,eng,210,8279,179,4/1/1996,Applewood Books +32979,The Secret of the Old Clock (Nancy Drew Mystery Stories #1),Carolyn Keene/Russell H. Tandy/Sara Paretsky,3.99,1557091552,9781557091550,eng,210,53304,2118,9/1/1991,Applewood Books +32980,The Mystery at the Moss-covered Mansion (Nancy Drew Mystery Stories #18),Carolyn Keene/Russell H. Tandy/Mildred Benson,3.89,1557092648,9781557092649,eng,215,4920,95,2/1/2003,Applewood Books +32981,The Mystery of the Brass-Bound Trunk (Nancy Drew Mystery Stories #17),Carolyn Keene/Mildred Benson,3.89,155709263X,9781557092632,eng,228,4249,89,12/1/2001,Applewood Books +32986,The Mantle of the Prophet: Religion and Politics in Iran,Roy Mottahedeh,4.08,1851682341,9781851682348,eng,416,412,42,8/15/2000,One World (UK) +32987,The Greatest Generation,Tom Brokaw,4.01,0812975294,9780812975291,eng,464,14233,914,5/1/2001,Random House Trade Paperbacks +32994,Maverick: The Success Story Behind the World's Most Unusual Workplace,Ricardo Semler,4.17,0712678867,9780712678865,eng,336,2979,163,9/6/2001,Random House +33001,Weekend Warriors (Sisterhood #1),Fern Michaels,4.05,0821775898,9780821775899,eng,304,6783,562,7/1/2004,Kensington +33002,The Weekend Novelist,Robert J. Ray/Bret Norris,3.67,0823084507,9780823084500,eng,266,368,36,4/1/2005,Billboard Books +33007,The Week-End Book,Francis Meynell/John Julius Norwich/Francis Maynell,3.67,1585678139,9781585678136,eng,368,31,7,5/4/2006,Harry N. Abrams +33008,North Carolina Weekends,Lynn Setzer,3.71,0895872730,9780895872739,en-US,353,7,1,10/1/2003,John F. Blair Publisher +33013,Far from the Madding Crowd,Thomas Hardy/Margaret Drabble,3.94,037575797X,9780375757976,eng,465,324,40,12/11/2001,Modern Library +33015,Selected Poems,Thomas Hardy/Robert Mezey,3.96,0140436995,9780140436990,eng,320,1509,30,12/1/1998,Penguin Books +33017,Selected Poetry,Thomas Hardy/Samuel Hynes,3.96,0192834916,9780192834911,eng,304,9,0,5/6/1999,Oxford University Press +33024,Underworld (Underworld #1),Greg Cox/Danny McBride/Len Wiseman/Kevin Grevioux,4.09,0743480716,9780743480710,eng,384,2031,79,8/26/2003,Pocket Star Books +33025,Underworld: The Mysterious Origins of Civilization,Graham Hancock,3.95,1400049512,9781400049516,eng,784,1112,70,10/28/2003,Three Rivers Press +33026,The Dream and the Underworld,James Hillman,4.22,0060906820,9780060906825,en-US,256,746,34,7/25/1979,William Morrow Paperbacks +33028,Underworld (Star Wars: The Last of the Jedi #3),Jude Watson,3.96,0439681367,9780439681360,eng,160,840,23,12/1/2005,Scholastic Paperbacks +33029,Star Wars: Underworld - The Yavin Vassilika,Mike Kennedy/Carlos Meglia,3.35,1569716188,9781569716182,eng,120,83,6,10/16/2001,Dark Horse Books +33030,Underworld: Blood Enemy (Underworld #2),Greg Cox/Len Wiseman/Kevin Grevioux,3.91,0743480724,9780743480727,eng,310,548,26,11/30/2004,Pocket Star +33032,Queen of the Underworld,Gail Godwin,2.89,0345483197,9780345483195,eng,368,541,100,1/30/2007,Ballantine Books +33046,Ve perro ¡Ve!,P.D. Eastman/Adolfo Pérez Perdomo,4.09,0375823611,9780375823619,spa,24,33,2,2/25/2003,Random House Para Ninos +33052,Murder in the Cathedral,T.S. Eliot,3.76,0156632772,9780156632775,eng,148,6782,309,3/18/1964,Harcourt Brace Jovanovich/Harvest +33057,Cathedral Forge and Waterwheel: Technology and Invention in the Middle Ages,Frances Gies/Joseph Gies,3.86,0060925817,9780060925819,eng,368,649,56,1/1/1995,Harper Perennial +33064,L'Équilibre du monde,Rohinton Mistry/Françoise Adelstain,4.36,225315086X,9782253150862,fre,890,152,11,6/20/2001,Le Livre de Poche +33075,In the Kitchen with Rosie: Oprah's Favorite Recipes,Rosie Daley/Oprah Winfrey,3.04,0679434046,9780679434047,eng,142,767,31,4/16/1994,Knopf +33130,King Richard II,William Shakespeare/Andrew Gurr,3.77,0521532485,9780521532488,eng,252,89,6,5/5/2003,Cambridge University Press +33131,King Richard II,William Shakespeare/Charles R. Forker,3.77,1903436338,9781903436332,eng,593,501,43,3/21/2002,Bloomsbury Arden Shakespeare +33133,King Richard II,William Shakespeare/Andrew Gurr,3.77,0521297656,9780521297653,eng,240,27,3,11/30/1984,Cambridge University Press +33137,Floating in My Mother's Palm,Ursula Hegi/John Collier/Francine Kass,3.82,0684854759,9780684854755,en-US,192,2738,218,7/3/1998,Touchstone +33139,Tearing the Silence: On Being German in America,Ursula Hegi,3.86,068484611X,9780684846118,eng,304,259,34,7/3/1998,Touchstone +33144,Paint it Black,Janet Fitch,3.48,0316182745,9780316182744,eng,387,10136,978,9/1/2006,Little Brown and Company +33151,The Tempest,William Shakespeare/Peter Hulme/William H. Sherman,3.81,0393978192,9780393978193,eng,355,582,30,12/23/2003,W. W. Norton & Company +33152,The Day of the Tempest (Dragonlance: Dragons of a New Age #2),Jean Rabe,3.65,0786928573,9780786928576,eng,352,1365,16,8/1/2002,Wizards of the Coast +33153,A Tempest,Aimé Césaire/Richard Miller,3.56,1559362103,9781559362108,eng,69,1422,76,5/1/2002,Theatre Communications Group +33155,A Midsummer Night's Dream,William Shakespeare/Harold F. Brooks,3.94,1903436605,9781903436608,en-US,312,2820,76,9/6/1979,Arden Shakespeare +33157,A Midsummer Night's Dream (SparkNotes Literature Guide),SparkNotes/William Shakespeare,3.96,1586634046,9781586634049,eng,64,19,2,1/10/2002,SparkNotes +33158,A Midsummer Night's Dream,William Shakespeare/R.A. Foakes,3.94,0521532477,9780521532471,eng,168,144,10,4/28/2003,Cambridge University Press +33159,Minuit dans le jardin du bien et du mal,John Berendt,3.92,2266075187,9782266075183,fre,388,13,2,6/6/1998,Pocket +33169,Les Essais (mis en français moderne par Claude Pinganaud),Michel de Montaigne,4.24,2869595948,9782869595941,fre,806,6,1,9/14/2002,Arléa +33174,Cliffs Notes on Hugo's Les Miserables,Amy L. Marsland,3.76,0822007355,9780822007357,en-GB,120,21,4,11/1/1968,Cliffs Notes +33175,Les Misérables,Victor Hugo/Norman Denny,4.17,0140444300,9780140444308,eng,1232,3873,459,3/25/1982,Penguin Classics +33179,Hamlet in Purgatory,Stephen Greenblatt,3.94,0691102570,9780691102573,eng,344,219,24,9/15/2002,Princeton University Press +33180,From Hinton to Hamlet: Building Bridges between Young Adult Literature and the Classics,Sarah K. Herz/Donald R. Gallo,4.01,0313324522,9780313324529,en-US,256,64,9,9/1/2005,Greenwood +33185,Hamlet,William Shakespeare/Burton Raffel/Harold Bloom,4.02,0300101058,9780300101058,eng,249,822,58,9/10/2003,Yale University Press +33186,Hamlet Prince of Denmark,William Shakespeare/Philip Edwards/Robert Hapgood,4.02,0521532523,9780521532525,eng,270,149,13,4/21/2003,Cambridge University Press/The New Cambridge Shakespeare +33191,Romeo & Juliet,William Shakespeare/Roma Gill,3.74,019832149X,9780198321491,eng,142,237,18,5/26/2005,Oxford University Press +33192,Romeo and Juliet,William Shakespeare/Paul D. Moliken,3.74,1580495788,9781580495783,eng,111,223,20,3/1/2003,Prestwick House +33194,Romeo and Juliet,William Shakespeare/G. Blakemore Evans/Thomas Moisan,3.74,0521532531,9780521532532,eng,278,273,10,5/1/2003,Cambridge University Press +33195,Shakespeare's Romeo and Juliet,William Shakespeare/Karin Jacobson/Sidney Lamb,3.74,0764585746,9780764585746,eng,231,65,3,5/8/2000,Hungry Minds +33197,Romeo and Juliet (SparkNotes Literature Guide),SparkNotes/Brian Phillips/William Shakespeare,3.91,1586633589,9781586633585,eng,88,52,8,1/10/2002,SparkNotes +33198,Romeo and Juliet,William Shakespeare/René Weis,3.74,1903436915,9781903436912,eng,350,219,13,7/15/2012,Bloomsbury Arden Shakespeare +33247,La Petite Fille du Lac,Christina Schwarz/Marie-Hélène Sabard,3.74,222109249X,9782221092491,fre,363,2,0,3/6/2003,Robert Laffont +33263,South of the Border West of the Sun,Haruki Murakami/Philip Gabriel,3.87,0679767398,9780679767398,eng,213,3778,457,3/14/2000,Vintage +33279,Clock of the Long Now: Time and Responsibility: The Ideas Behind the World's Slowest Computer,Stewart Brand,4.10,0465007805,9780465007806,eng,208,526,63,4/6/2000,Basic Books +33282,Jessica's Bad Idea (Sweet Valley Twins and Friends #31),Francine Pascal/Jamie Suzanne,3.46,0553157272,9780553157277,eng,104,318,6,8/1/1989,Bantam +33288,How to Win Friends and Influence People,Dale Carnegie,4.19,0091906814,9780091906818,eng,268,1842,104,4/6/2006,Vermilion +33291,How to Win Friends and Influence People,Dale Carnegie,4.19,0749307846,9780749307844,en-US,256,210,21,3/31/1994,Cedar Books +33292,How to Win Friends and Influence People for Teen Girls,Donna Dale Carnegie,3.96,0743272773,9780743272773,eng,208,428,44,6/2/2005,Simon Schuster +33293,Naked Economics: Undressing the Dismal Science,Charles Wheelan,4.03,0393324869,9780393324860,eng,288,5719,484,9/17/2003,W. W. Norton Company +33295,The Naked Warrior: Master the Secrets of the Super-Strong - Using Bodyweight Exercises Only,Pavel Tsatsouline,4.00,0938045555,9780938045557,en-US,218,908,63,1/1/2010,Dragon Door Publications +33297,The Naked Ape: A Zoologist's Study of the Human Animal,Desmond Morris,3.95,0385334303,9780385334303,eng,256,6724,325,4/13/1999,Delta +33308,There's No Toilet Paper . . . on the Road Less Traveled: The Best of Travel Humor and Misadventure,Doug Lansky,3.38,1932361278,9781932361278,eng,216,413,53,11/16/2005,Travelers' Tales +33313,Kitchen Confidential: Adventures in the Culinary Underbelly,Anthony Bourdain,4.07,0060899220,9780060899226,eng,312,183882,9427,1/9/2007,Ecco/Harper Perennial +33331,More Than You Know: Finding Financial Wisdom in Unconventional Places,Michael J. Mauboussin,4.09,0231138709,9780231138703,eng,268,1359,48,4/21/2006,Columbia University Press +33333,Searching for God Knows What,Donald Miller,3.92,0785263713,9780785263715,eng,246,23657,692,10/11/2004,Thomas Nelson +33342,The More Than Complete Hitchhiker's Guide (Hitchhiker's Guide #1-4 + short story),Douglas Adams,4.58,0681403225,9780681403222,en-US,624,433,34,11/1/1989,Longmeadow Press +33344,Hitchhiker's Guide To The Galaxy: The Filming of the Douglas Adams classic,Robbie Stamp/Paul Simpson,3.90,155704676X,9781557046765,eng,184,155,18,4/22/2005,Newmarket Press +33348,Different Seasons,Stephen King,4.35,0708823602,9780708823606,en-GB,560,188,24,10/1/1983,Futura +33353,It's Called a Breakup Because It's Broken: The Smart Girl's Break-Up Buddy,Greg Behrendt/Amiira Ruotola (-Behrendt),4.02,0767921968,9780767921961,eng,276,8606,670,9/5/2006,Harmony +33356,Jennifer Government,Max Barry,3.66,0349117624,9780349117621,eng,352,10771,921,2/5/2004,Abacus +33363,Mama Day,Gloria Naylor,4.17,0679721819,9780679721819,eng,312,8922,559,4/23/1989,Vintage +33365,A Feather on the Breath of God,Sigrid Nunez,3.91,0312422733,9780312422738,eng,192,488,66,12/27/2005,Picador +33367,Mitz The Marmoset of Bloomsbury,Sigrid Nunez,3.92,193336856X,9781933368566,eng,128,134,32,2/15/2007,Soft Skull Press +33411,War with the Newts,Karel Čapek/M. Weatherall/R. Weatherall/Ivan Klíma,4.17,0810114682,9780810114685,eng,348,170,22,10/7/1996,Northwestern University Press +33418,Parallel Worlds: A Journey through Creation Higher Dimensions and the Future of the Cosmos,Michio Kaku,4.18,1400033721,9781400033720,eng,361,15096,452,2/14/2006,Anchor +33436,Key Lime Pie Murder (Hannah Swensen #9),Joanne Fluke,3.85,0758210183,9780758210180,eng,342,10361,531,7/31/2007,Kensington Publishing Corporation +33437,Cherry Cheesecake Murder (Hannah Swensen #8),Joanne Fluke,3.91,0758202954,9780758202956,eng,382,12503,532,2/1/2007,Kensington Publishing Corporation +33438,Peach Cobbler Murder (Hannah Swensen #7),Joanne Fluke,3.92,0758201559,9780758201553,eng,384,11633,554,2/1/2006,Kensington +33439,Strawberry Shortcake Murder (Hannah Swensen #2),Joanne Fluke,3.85,1575667215,9781575667218,eng,320,14668,881,2/2/2002,Kensington +33440,Lemon Meringue Pie Murder (Hannah Swensen #4),Joanne Fluke,3.87,0758215045,9780758215048,eng,352,12820,637,2/1/2004,Kensington +33441,Fluke: Or I Know Why the Winged Whale Sings,Christopher Moore,3.75,006056668X,9780060566685,eng,321,35450,1953,6/15/2004,Harper +33442,Sugar Cookie Murder (Hannah Swensen #6),Joanne Fluke,3.75,0758206828,9780758206824,eng,380,11510,691,10/1/2005,Kensington Publishing Corporation +33443,Chocolate Chip Cookie Murder (Hannah Swensen #1),Joanne Fluke,3.71,0758213506,9780758213501,eng,436,31829,1971,9/1/2006,Kensington +33445,Blueberry Muffin Murder (Hannah Swensen #3),Joanne Fluke,3.87,1575667223,9781575667225,eng,310,13669,694,2/1/2003,Kensington +33446,The Wolf Shall Dwell With the Lamb: A Spirituality for Leadership in a Multicultural Community,Eric H.F. Law,3.77,082724231X,9780827242319,eng,144,115,21,1/1/1993,Chalice Press +33447,Focus: The Future of Your Company Depends on It,Al Ries/Laura Ries,4.06,0060799900,9780060799908,eng,320,480,28,9/27/2005,Harper Business +33448,Positioning: The Battle for Your Mind,Al Ries/Jack Trout,4.04,0071359168,9780071359160,en-US,246,126,9,1/18/2001,McGraw-Hill Education +33449,The 22 Immutable Laws of Marketing: Violate Them at Your Own Risk,Al Ries/Jack Trout,4.05,0887306667,9780887306662,en-US,143,13851,462,4/27/1994,Harper Business +33451,Horse Sense: How to Pull Ahead on the Business Track,Al Ries/Jack Trout,3.82,0452267641,9780452267640,eng,240,40,5,3/1/1992,Plume +33453,You Suck (A Love Story #2),Christopher Moore,3.83,0060590297,9780060590291,eng,328,42028,2416,1/16/2007,William Morrow +33454,Bloodsucking Fiends (A Love Story #1),Christopher Moore,3.94,0060735414,9780060735418,eng,300,52843,1868,6/1/2004,HarperCollins +33455,Island of the Sequined Love Nun,Christopher Moore,3.80,0060735449,9780060735449,eng,325,27534,1247,5/25/2004,Harper Perennial +33456,A Dirty Job (Grim Reaper #1),Christopher Moore,4.07,0060590270,9780060590277,en-US,387,90947,5477,3/21/2006,William Morrow +33457,Practical Demonkeeping (Pine Cove #1),Christopher Moore,3.83,0060735422,9780060735425,eng,256,37206,1353,5/25/2004,Perennial / William Morrow / HarperCollins +33458,The Lust Lizard of Melancholy Cove (Pine Cove #2),Christopher Moore,3.87,0060735457,9780060735456,en-US,304,29113,1203,5/25/2004,William Morrow Paperbacks +33464,Granta 7,Bill Buford/Clive Sinclair/Graham Swift/Martin Amis/Rose Tremain/A.N. Wilson/Pat Barker/Julian Barnes/Ursula Bentley/William Boyd/Buchi Emecheta/Alan Judd/Maggie Gee/Kazuo Ishiguro/Adam Mars-Jones/Ian McEwan/Shiva Naipaul/Philip Norman/Christopher Priest/Salman Rushdie/Lisa St. Aubin de Terán,3.94,0140140824,9780140140828,eng,320,2,1,4/1/2013,Granta Books +33473,Will Eisner's New York: Life in the Big City (The New York Tetralogy #1-4),Will Eisner/Neil Gaiman,4.37,039306106X,9780393061062,eng,421,1299,71,10/17/2006,W. W. Norton Company +33474,Graphic Storytelling and Visual Narrative,Will Eisner,4.08,0961472820,9780961472825,en-US,164,1789,30,10/1/1996,Poorhouse Press +33477,The Best of the Spirit,Will Eisner/Neil Gaiman,3.92,1401207553,9781401207557,eng,187,786,95,11/1/2005,DC Comics +33478,The Plot: The Secret Story of the Protocols of the Elders of Zion,Will Eisner/Stephen Eric Bronner/Umberto Eco/Sergei Nilus,3.74,0393328600,9780393328608,eng,160,1109,134,5/17/2006,W. W. Norton Company +33481,Will Eisner Sketchbook,Will Eisner,4.31,1569719608,9781569719602,eng,200,42,2,2/3/2004,Dark Horse Comics +33484,The Conquering Sword of Conan (Conan the Cimmerian #3),Robert E. Howard/Gregory Manchess/Patrice Louinet,4.33,0345461533,9780345461537,eng,416,3697,83,11/29/2005,Del Rey +33488,Conan and the Demons of Khitai,Akira Yoshida/Pat Lee/Paul Lee/C.B. Cebulski,3.31,159307543X,9781593075439,eng,90,130,16,7/25/2006,Dark Horse Books +33489,Call of Cthulhu: Horror Roleplaying (Call of Cthulhu RPG),Sandy Petersen/Lynn Willis,4.45,1568821816,9781568821818,eng,320,7011,39,3/30/2005,Chaosium +33490,The Call of Cthulhu and Other Weird Stories,H.P. Lovecraft,4.22,0141187069,9780141187068,en-GB,420,809,74,7/25/2002,Penguin Books +33491,The Keeper's Companion 2: Prohibition Firearms Tomes & Creatures (Call of Cthulhu RPG),Lynn Willis/Brian M. Sammons/Adam Gauntlett/William Dietze/Greg Henrikson/Charles P. Zaglanis/J. Gordon Olmstead-Dean/M.J. Lempert/James Crowder,3.71,1568821867,9781568821863,eng,170,41,1,12/1/2002,Chaosium +33492,Secrets of New York (Call of Cthulhu RPG),William Jones,3.63,1568821808,9781568821801,eng,180,27,2,6/12/2005,Chaosium +33493,The Keeper's Companion Vol. 1 (Call of Cthulhu RPG),Keith Herber/Brian M. Sammons/William Dietze/Chaosium Inc.,3.92,1568821441,9781568821443,eng,208,65,1,9/15/2003,Chaosium +33494,Secrets of San Francisco: A 1920s Sourcebook for the City by the Bay (Call of Cthulhu RPG),Cody Goodfellow,3.86,1568821875,9781568821870,eng,189,18,0,4/1/2006,Chaosium +33496,Miskatonic University: Dire Secrets & Campus Life (Call of Cthulhu RPG),Sam Johnson/Sandy Antunes,4.12,1568821409,9781568821405,eng,242,38,0,10/12/2005,Chaosium +33497,Call of Cthulhu: Horror Roleplaying (Call of Cthulhu RPG),Sandy Petersen/Lynn Willis,4.45,1568821484,9781568821481,eng,288,34,1,1/1/2000,Chaosium +33498,Shadows of Yog-Sothoth (Call of Cthulhu RPG),Sandy Petersen,3.90,1568821743,9781568821740,eng,180,63,2,8/15/2004,Chaosium +33501,Song of Cthulhu: Tales of the Spheres Beyond Sound,Stephen Mark Rainey/H.P. Lovecraft/Ramsey Campbell/Edward P. Berglund/Fred Chappel/Caitlín R. Kiernan/Thomas F. Montelone/E.A. Lustig/Brian McNaughton/William R. Trotter,3.67,1568821174,9781568821177,eng,211,45,4,12/3/2005,Chaosium +33507,Twenty Thousand Leagues Under the Sea (Extraordinary Voyages #6),Jules Verne/Anthony Bonner,3.88,076072850X,9780760728505,eng,394,142879,3087,4/1/2002,Barnes & Noble +33512,One Thousand White Women: The Journals of May Dodd (One Thousand White Women #1),Jim Fergus,3.88,0312199430,9780312199432,eng,434,100949,7615,2/15/1999,St. Martin's Griffin +33513,The White Man's Burden: Why the West's Efforts to Aid the Rest Have Done So Much Ill and So Little Good,William Easterly,3.83,0143038826,9780143038825,eng,436,4473,232,3/1/2007,Penguin Books +33514,The Elements of Style,William Strunk Jr./E.B. White,4.19,0205313426,9780205313426,en-US,128,53669,2526,9/3/1999,Pearson +33532,Dracula,Bram Stoker,3.99,014062063X,9780140620634,eng,449,1683,120,4/28/1994,Penguin Books +33536,Happy Hour at Casa Dracula (Casa Dracula #1),Marta Acosta,3.59,1416520384,9781416520382,en-US,314,2000,238,7/4/2006,Pocket Books +33537,Frankenstein,Mary Wollstonecraft Shelley/Susan J. Wolfson,3.79,0321399536,9780321399533,eng,431,230,28,7/1/2006,Pearson +33538,World War One British Poets: Brooke Owen Sassoon Rosenberg and Others,Candace Ward,4.02,0486295680,9780486295688,eng,71,469,40,4/22/1997,Dover Publications +33539,World War II: A Short History,Michael J. Lyons,3.90,0130977691,9780130977694,en-US,343,72,6,6/19/2003,Routledge +33541,A Short History of World War I,James L. Stokesbury,3.95,0688001297,9780688001292,eng,352,353,43,2/1/1981,William Morrow Paperbacks +33543,Collected Stories Vol. 2,Richard Matheson/Stanley Wiater/Jack Finney/George Clayton Johnson,4.32,1887368795,9781887368797,eng,453,185,11,3/25/2005,Gauntlet Press +33544,Nightmare At 20 000 Feet,Richard Matheson/Stephen King,4.09,0312878273,9780312878276,eng,336,6502,272,1/5/2002,Tor Books +33546,Earthbound,Logan Swanson/Richard Matheson,3.25,0765311712,9780765311719,eng,223,527,60,4/16/2005,Tor Books +33547,Hell House,Richard Matheson,3.79,0727860992,9780727860996,eng,301,29779,1488,7/1/2004,Severn House Publishers +33550,Noir: Three Novels of Suspense,Richard Matheson,3.69,0765311402,9780765311405,eng,385,150,14,10/1/2005,Forge Books +33551,7 Steps to Midnight,Richard Matheson,3.48,0765308371,9780765308375,en-US,320,423,44,7/18/2003,Forge Books +33554,Duel,Richard Matheson/Ray Bradbury,4.04,0312878265,9780312878269,eng,400,1824,71,1/4/2003,Tor Books +33555,What Dreams May Come,Richard Matheson,3.95,0765308703,9780765308702,eng,288,9298,830,1/1/2004,Tor Books +33557,Richard Matheson's Hell House Book 2,Ian Edginton/Simon Fraser,4.50,1932382720,9781932382723,eng,48,8,0,3/15/2005,IDW Publishing +33559,Bloodlines,Richard Matheson/Mark Dawidziak,4.02,1887368884,9781887368889,eng,520,42,3,1/1/2007,Gauntlet Press +33561,The Bridegroom,Ha Jin,3.77,0375724931,9780375724930,eng,240,1800,168,9/11/2001,Vintage +33563,Under the Red Flag,Ha Jin,3.88,1581950063,9781581950069,eng,224,356,28,6/1/1998,Steerforth +33565,Ocean of Words,Ha Jin,3.81,0375702067,9780375702068,eng,205,419,26,7/28/1998,Vintage +33566,The Bridegroom,Ha Jin,3.77,0099422174,9780099422174,eng,225,49,9,10/4/2001,Vintage +33567,In the Pond,Ha Jin,3.71,0099428164,9780099428169,en-GB,160,1252,122,1/3/2002,Vintage +33569,That Was Then This Is Now,S.E. Hinton,3.91,0140389660,9780140389661,en-US,159,26776,1630,4/1/1998,Speak +33574,Hawkes Harbor,S.E. Hinton,3.13,0765344726,9780765344724,en-US,289,2157,288,10/1/2005,Tor Books +33577,The Collection: The Outsiders / Rumble Fish / That Was Then This Is Now,S.E. Hinton,4.45,0006751156,9780006751151,eng,448,507,31,6/1/1995,HarperCollins Publishers +33581,The Work of Work Servitude Slavery and Labor in Medieval England,Allen J. Frantzen/Ruth Mazo Karras/Madonna J. Hettinger/Elizabeth Stevens Girsch/John Ruffing/George Ovitt Jr./Ross Samson/Niall Brady/Douglas Moffat/David Aers/Louise M. Bishop,3.00,1873448031,9781873448038,eng,240,1,0,8/14/1994,Cruithne Press +33608,East of Eden,John Steinbeck,4.37,0613996984,9780613996983,eng,602,35,1,10/1/1992,Turtleback Books +33609,Katherine,Anya Seton/Philippa Gregory,4.19,155652532X,9781556525322,eng,500,25552,1637,5/1/2004,Chicago Review Press +33614,The Fourth of July Story,Alice Dalgliesh/Marie Nonnast,4.03,0689718764,9780689718762,eng,32,261,19,6/1/1995,Aladdin +33615,Fourth of July Mice!,Bethany Roberts/Doug Cushman,3.24,0618313664,9780618313662,en-US,32,126,16,5/24/2004,Clarion Books +33616,Apple Pie 4th of July,Janet S. Wong/Margaret Chodos-Irvine,3.72,0152057080,9780152057084,eng,40,325,104,5/1/2006,HMH Books for Young Readers +33667,Roses Are Red (Alex Cross #6),James Patterson,4.04,0316693251,9780316693257,eng,400,795,79,11/20/2000,Little Brown and Company +33668,4th of July (Women's Murder Club #4),James Patterson/Maxine Paetro,4.07,0446613363,9780446613361,eng,448,62523,1674,6/1/2006,Vision +33671,Virgin,James Patterson,3.86,0070488207,9780070488205,eng,210,307,28,1/1/1980,McGraw-Hill Companies +33672,Thriller: Stories To Keep You Up All Night,James Patterson/Ted Bell/Raelynn Hillhouse/Gregg Hurwitz/Alex Kava/J.A. Konrath/John Lescroart/David Liss/Eric Van Lustbader/Dennis Lynds/Gayle Lynds/Steve Berry/Chris Mooney/David Morrell/Katherine Neville/Michael Palmer/Douglas Preston/Christopher Reich/James Rollins/M.J. Rose/James Siegel/Grant Blackwood/Brad Thor/M. Diane Vogt/F. Paul Wilson/Lee Child/Lincoln Child/David Dun/Heather Graham/James Grippando/Denise Hamilton/David Liparulo/Christopher Rice,3.50,0778322998,9780778322993,eng,568,2427,208,5/30/2006,Mira Books +33676,Saving the World and Other Extreme Sports (Maximum Ride #3),James Patterson,4.15,0316155608,9780316155601,eng,405,80643,2270,5/29/2007,Little Brown and Company +33681,1st To Die (The Women's Murder Club #1),James Patterson,4.08,0613608704,9780613608701,eng,471,24,4,2/1/2002,Turtleback Books +33682,How to Write a Damn Good Mystery: A Practical Step-by-Step Guide from Inspiration to Finished Manuscript,James N. Frey,3.95,0312304463,9780312304461,eng,288,323,63,2/12/2004,St. Martin's Press +33686,Mediterranean Winter: The Pleasures of History and Landscape in Tunisia Sicily Dalmatia and the Peloponnese,Robert D. Kaplan,3.92,0375714332,9780375714337,eng,272,204,26,3/8/2005,Vintage/Random House (NY) +33690,Balkan Ghosts: A Journey Through History,Robert D. Kaplan,3.94,0312424930,9780312424930,eng,352,3080,287,5/1/2005,Picador +33692,Mediterranean Winter: The Pleasures of History & Landscape in Tunisia Sicily Dalmatia & Greece,Robert D. Kaplan,3.92,037550804X,9780375508042,en-US,272,32,9,2/3/2004,Random House +33699,El librero de Kabul,Åsne Seierstad,3.76,9706519246,9789706519245,spa,285,112,18,11/1/2004,Grupo Océano +33704,Der Buchhändler aus Kabul: Eine Familiengeschichte,Åsne Seierstad,3.76,3546003306,9783546003308,ger,301,1,0,2/1/2003,Claassen Verlag +33705,Does God Know How to Tie Shoes?,Nancy White Carlstrom/Lori McElrath-Eslick,4.20,0802850898,9780802850898,eng,32,0,0,1/31/1997,William B. Eerdmans Publishing Company +33718,The Ties That Bind: Life's Most Essential Knots and Ties,Susan Oliver/Harry Bates,3.67,1584793821,9781584793823,eng,80,3,1,10/26/2004,Harry N. Abrams +33722,The Undomestic Goddess,Sophie Kinsella,3.83,0385338694,9780385338691,eng,404,235032,6613,4/25/2006,Dial Press Trade Paperback +33723,Girls' Night In,Lauren Henderson/Chris Manby/Sarah Mlynowski/Jill A. Davis/Stella Duffy/Lisa Jewell/Marian Keyes/Sophie Kinsella/Adèle Lang/Carole Matthews/Anna Maxted/Megan McCafferty/Alisa Valdes/Isabel Wolff/Meg Cabot/Jessica Adams/Louise Bagshawe/Emily Barr/Jenny Colgan/Lynda Curnyn/Jennifer Weiner,3.63,0373250746,9780373250745,eng,325,12765,185,8/25/2004,Red Dress Ink +33724,Can You Keep a Secret?,Sophie Kinsella,3.84,0440241901,9780440241904,eng,374,333613,9326,12/27/2005,Dell Publishing Company +33726,Crazy For You,Jennifer Crusie,3.78,0312932812,9780312932817,eng,336,15184,445,7/11/2004,St. Martin's Paperbacks +33727,Welcome to Temptation (Dempseys #1),Jennifer Crusie,3.94,0312932804,9780312932800,eng,416,28903,918,7/11/2004,St. Martin's Paperbacks +33729,Faking It (Dempseys #2),Jennifer Crusie,3.92,0312932782,9780312932787,eng,448,16644,665,7/11/2004,St. Martin's Paperbacks +33732,Anyone But You,Jennifer Crusie,3.80,037377138X,9780373771387,eng,283,17677,872,11/21/2006,HQN Books +33734,Getting Rid of Bradley,Jennifer Crusie,3.71,1551668653,9781551668659,eng,248,12528,596,10/25/2001,MIRA +33735,What The Lady Wants,Jennifer Crusie,3.64,155166951X,9781551669519,eng,256,5707,243,10/25/2002,MIRA +33737,Manhunting,Jennifer Crusie,3.77,0373772513,9780373772513,eng,328,13317,697,1/30/2007,HQN +33744,The Unfortunate Miss Fortunes,Jennifer Crusie/Eileen Dreyer/Anne Stuart,3.48,031294098X,9780312940980,eng,391,3252,233,9/10/2007,St. Martin's Paperbacks +33747,La falsificadora,Jennifer Crusie/Marina Mariasch,3.92,9500426544,9789500426541,spa,420,18,1,9/1/2005,Planeta Publishing +33751,Die Naschkatzen,Jennifer Crusie,3.94,3442448964,9783442448968,ger,480,15,1,4/1/2001,Goldmann Verlag +33753,Coffee at Luke's: An Unauthorized Gilmore Girls Gabfest,Jennifer Crusie/Leah Wilson/Gregory Stevenson,3.55,1933771178,9781933771175,eng,197,926,140,4/10/2007,Smart Pop +33762,Bueno en la Cama,Jennifer Weiner/Eduardo García Murillo,3.72,849561863X,9788495618634,spa,415,4,0,6/1/2003,Umbriel +33768,Behaving Like Adults,Anna Maxted,3.54,0060096683,9780060096687,eng,400,2729,105,8/3/2004,William Morrow Paperbacks +33771,Over 100 Truly Astonishing Sex Tips,Anna Maxted,3.44,1858689104,9781858689104,eng,128,9,0,1/1/2000,Carlton Publishing Group +33773,How to Seduce Your Dream Man,Anna Maxted,3.89,0722539010,9780722539019,eng,224,9,2,5/2/2000,HarperCollins Publishers Ltd +33774,Running in Heels,Anna Maxted,3.53,0060988258,9780060988258,eng,432,5826,207,5/28/2002,William Morrow Paperbacks +33775,Kopfüber ins Glück,Anna Maxted,3.54,3442454085,9783442454082,ger,512,0,0,2/1/2003,Goldmann +33777,Venice: Tales of the City,Michelle Lovric,3.68,034911899X,9780349118994,eng,464,34,3,1/20/2005,Abacus +33795,Caucasia,Danzy Senna,4.03,1573227161,9781573227162,eng,413,6206,599,2/1/1999,Riverhead Books +33807,The Talbot Odyssey,Nelson DeMille,3.85,0446358584,9780446358583,eng,544,4874,154,7/1/1991,Grand Central Publishing +33808,The Lion's Game (John Corey #2),Nelson DeMille,4.19,0446679097,9780446679091,eng,720,26514,1008,1/1/2002,Grand Central Publishing +33809,Word of Honor,Nelson DeMille,4.17,0446674826,9780446674829,eng,880,8296,275,9/1/1998,Grand Central Publishing +33810,Plum Island (John Corey #1),Nelson DeMille,4.03,0446679089,9780446679084,eng,592,36285,1662,1/1/2002,Grand Central Publishing +33817,Spencerville,Nelson DeMille,3.67,0751531243,9780751531244,eng,564,49,6,3/1/2008,Sphere +33820,Up Country,Nelson DeMille,4.02,0446611913,9780446611916,eng,880,14537,702,4/1/2003,Vision +33821,Wolfsbrut.,Nelson DeMille,3.85,3548253814,9783548253817,ger,470,2,1,4/1/2002,Ullstein +33824,The Talbot Odyssey,Nelson DeMille,3.85,0751531200,9780751531206,eng,640,28,1,11/2/2000,Sphere +33832,Night Falls Fast: Understanding Suicide,Kay Redfield Jamison,4.10,0375701478,9780375701474,eng,432,5382,224,10/10/2000,Vintage +33833,Before Night Falls,Reinaldo Arenas/Dolores M. Koch,4.17,1852428082,9781852428082,eng,317,3158,252,6/15/2001,Serpents Tail +33835,When True Night Falls (The Coldfire Trilogy #2),C.S. Friedman,4.14,0756403162,9780756403164,en-US,560,8188,139,10/4/2005,DAW +33836,Nightfall,Anne Stuart,3.87,0451404750,9780451404756,eng,416,981,106,3/1/1995,Onyx +33837,When Night Falls,Linda Anderson,3.44,0743411471,9780743411479,eng,436,41,3,10/1/2000,Pocket Books +33838,Before Night Falls,Keith Gray,3.39,1842991248,9781842991244,eng,74,23,6,9/1/2007,Barrington Stoke +33853,Where the Broken Heart Still Beats: The Story of Cynthia Ann Parker,Carolyn Meyer,3.70,0152956026,9780152956028,eng,208,642,80,10/15/1992,HMH Books for Young Readers +33868,In Cahootz: Sequel to Hoodwinked,Quentin Carter,4.47,0977880435,9780977880430,eng,243,499,11,10/1/2006,Triple Crown Publications +33869,Earned Value Project Management,Quentin W. Fleming/Joel M. Koppelman,3.77,1930699891,9781930699892,en-GB,232,66,7,6/30/2006,Project Management Institute +33871,Quintessential Tarantino,Edwin Page,3.25,0714531162,9780714531168,eng,352,50,3,10/1/2005,Marion Boyars Publishers Ltd +33873,The Foundations of Modern Political Thought: Volume One: The Renaissance,Quentin Skinner,4.36,0521220238,9780521220231,eng,332,12,2,2/15/1979,Cambridge University Press +33874,Tara Road,Maeve Binchy,3.90,0752864777,9780752864778,eng,656,44,6,3/2/2006,Orion (an Imprint of The Orion Publishing Group Ltd ) +33876,On the Road to Tara,Aljean Harmetz,4.00,0810936844,9780810936843,eng,224,29,2,9/1/1996,Harry N. Abrams +33880,Selected Stories,Andre Dubus,4.28,0679767304,9780679767305,eng,476,2738,135,12/4/1995,Vintage +33883,Broken Vessels,Andre Dubus,4.33,0879239484,9780879239480,eng,195,351,45,11/1/1992,David R. Godine Publisher +33888,In the Bedroom: Seven Stories,Andre Dubus/Todd Field,4.16,1400030773,9781400030774,eng,148,870,74,1/29/2002,Vintage +33896,Thirteen Moons,Charles Frazier,3.69,0375509321,9780375509322,eng,422,10534,1578,10/3/2006,Random House +33904,Swimming Upstream: Collaborative Approaches to Watershed Management,Paul A. Sabatier/Will Focht/Mark Lubell/Zev Trachtenberg/Arnold Vedlitz/Marty Matlock,3.21,0262693194,9780262693196,eng,344,13,1,4/29/2005,The MIT Press +33906,Story of a Girl,Sara Zarr,3.66,0316014532,9780316014533,eng,192,15106,1558,1/10/2007,Little Brown Books for Young Readers +33914,Approaches to Teaching Atwood's "the Handmaid's Tale" and Other Works (Approaches to Teaching World Literature),Sharon Rose Wilson/Thomas B. Friedman/Shannon Eileen Hengen,3.75,0873527364,9780873527361,eng,215,8,0,1/1/1996,Modern Language Association of America +33917,The Namesake,Jhumpa Lahiri,3.99,0618485228,9780618485222,eng,291,213178,10160,9/1/2004,Mariner Books +33922,Becoming a Goddess of Inner Poise: Spirituality for the Bridget Jones in All of Us,Donna Freitas,3.59,0787976288,9780787976286,eng,239,34,4,9/1/2004,Jossey-Bass +33928,Full House: The Spread of Excellence from Plato to Darwin,Stephen Jay Gould,3.96,0609801406,9780609801406,eng,256,1630,84,9/16/1997,Three Rivers Press (CA) +33929,Eight Little Piggies: Reflections in Natural History,Stephen Jay Gould,4.09,0393311392,9780393311396,en-US,480,721,17,4/17/1994,W.W. Norton & Company +33931,Time's Arrow Time's Cycle: Myth and Metaphor in the Discovery of Geological Time,Stephen Jay Gould,3.92,0674891996,9780674891999,eng,240,321,19,1/1/1988,Harvard University Press +33932,The Hedgehog the Fox & the Magister's Pox: Mending the Gap Between Science & the Humanities,Stephen Jay Gould,3.63,1400051533,9781400051533,eng,288,397,29,3/23/2004,Three Rivers Press +33933,The Panda's Thumb: More Reflections in Natural History,Stephen Jay Gould,4.11,0393308197,9780393308198,eng,343,5726,75,8/17/1992,W. W. Norton Company +33935,Bully for Brontosaurus: Reflections in Natural History,Stephen Jay Gould,4.15,039330857X,9780393308570,eng,544,2608,55,4/17/1992,W. W. Norton Company +33936,Hen's Teeth and Horse's Toes: Further Reflections in Natural History,Stephen Jay Gould,4.10,0393311031,9780393311037,eng,413,1730,43,4/17/1994,W.W. Norton & Company (NY) +33937,The Richness of Life: The Essential Stephen Jay Gould,Stephen Jay Gould/Paul McGarr/Oliver Sacks/Steven Rose,4.25,0393064980,9780393064988,eng,672,363,29,5/17/2007,W. W. Norton Company +33938,The Wheel of Life: A Memoir of Living and Dying,Elisabeth Kübler-Ross,4.16,0684846314,9780684846316,eng,288,1080,112,6/19/1998,Scribner +33953,Persuasive Communication,James B. Stiff/Paul A. Mongeau,3.31,1572307021,9781572307025,en-US,351,4,0,10/18/2002,The Guilford Press +33956,The Spook's Apprentice (The Last Apprentice / Wardstone Chronicles #1),Joseph Delaney,3.99,0099456451,9780099456452,eng,325,2956,242,6/30/2005,Red Fox +33957,Spooks: The Haunting of America: The Private Use of Secret Agents,Jim Hougan,4.12,0688033555,9780688033552,eng,478,24,1,8/1/1978,William Morrow & Company +33973,No More Bull!: The Mad Cowboy Targets America's Worst Enemy: Our Diet,Howard F. Lyman/Glen Merzer/Joanna Samorow-Merzer/Caldwell B. Esselstyn Jr.,3.93,0743286987,9780743286985,eng,288,256,28,9/20/2005,Scribner +33975,Animal E.R.: Extraordinary Stories Hope Healing from 1 World's Leading Veterinary Hospitals,Vicki Constantine Croke/Vicki Constantine Croke,3.95,0525945075,9780525945079,eng,194,12,3,11/1/1999,Dutton Adult +33978,ER Vets: Life in an Animal Emergency Room,Donna M. Jackson,3.91,0618436634,9780618436637,eng,96,110,33,11/28/2005,HMH Books for Young Readers +33992,The 9/11 Commission Report: Final Report of the National Commission on Terrorist Attacks Upon the United States,National Commission on Terrorist Attacks Upon The United States,3.60,0393326713,9780393326710,eng,592,3272,229,7/22/2004,W. W. Norton Company +33993,Citizen Girl,Emma McLaughlin/Nicola Kraus,2.40,0743266862,9780743266864,en-US,305,5415,577,10/4/2005,Washington Square Press +33999,On the Origin of Species by Means of Natural Selection,Charles Darwin/Michael T. Ghiselin,3.98,0486450066,9780486450063,eng,321,185,14,6/23/2006,Dover Publications +34002,The Origin of Species/The Voyage of the Beagle,Charles Darwin/Richard Dawkins,4.15,1400041279,9781400041275,eng,1024,513,34,10/14/2003,Everyman's Library +34003,Genetics and the Origin of Species,Theodosius Dobzhansky/Niles Eldredge/Stephen Jay Gould,4.14,0231054750,9780231054751,eng,364,26,1,7/22/1982,Columbia University Press +34014,Organized Crime,Michael D. Lyman/Gary W. Potter,3.80,0131730363,9780131730366,eng,496,12,1,7/1/2006,Prentice Hall +34015,Physics of Fully Ionized Gases,Lyman S. Spitzer Jr.,4.25,0486449823,9780486449821,eng,192,4,1,7/7/2006,Dover Publications +34016,Criminal Investigation: The Art and the Science,Michael D. Lyman,4.21,0131198777,9780131198777,en-US,536,1,0,10/19/2004,Prentice Hall +34050,A Collection of Rudyard Kipling's Just So Stories,Rudyard Kipling/Christopher Corr,4.09,0763626295,9780763626297,en-US,128,177,19,10/7/2004,Candlewick +34052,Collected Stories,Rudyard Kipling,4.06,1857151992,9781857151992,eng,911,13,3,10/20/1994,Everyman +34053,Just So Stories,Rudyard Kipling,4.09,0517266555,9780517266557,eng,210,39365,824,8/5/2003,Gramercy Books +34055,If: A Father's Advice to His Son,Rudyard Kipling/Charles R. Smith Jr.,4.39,0689877994,9780689877995,eng,40,581,37,3/27/2007,Atheneum Books for Young Readers +34067,Much Ado about Nothing,William Shakespeare/Jacky Bratton,4.07,0521598222,9780521598224,eng,284,9,3,5/2/1998,Cambridge University Press +34069,Much Ado about Nothing,William Shakespeare/Roma Gill,4.07,0198321473,9780198321477,eng,160,37,5,12/2/2004,Oxford University Press USA +34080,The Waste Land,T.S. Eliot/Michael North,4.11,0393974995,9780393974997,eng,320,35549,680,12/1/2000,W.W. Norton & Company +34081,The Annotated Waste Land with Eliot's Contemporary Prose,T.S. Eliot/Lawrence Rainey,4.11,0300119941,9780300119947,eng,304,227,23,8/28/2006,Yale University Press +34082,The Waste Land and Other Writings,T.S. Eliot/Mary Karr,4.21,0375759344,9780375759345,eng,272,3124,74,1/8/2002,Modern Library +34084,The Waste Lands (The Dark Tower #3),Stephen King/Ned Dameron,4.24,0670032565,9780670032563,eng,422,145740,3382,6/23/2003,Viking Adult +34087,Timequake,Kurt Vonnegut Jr.,3.72,0224036408,9780224036405,eng,219,75,7,10/17/1997,Jonathan Cape +34153,Climb the Family Tree Jesse Bear!,Nancy White Carlstrom/Bruce Degen,3.49,0689807015,9780689807015,en-US,32,63,9,7/1/2004,Aladdin +34154,What a Scare Jesse Bear,Nancy White Carlstrom/Bruce Degen,3.47,0689851901,9780689851902,en-US,32,104,21,3/21/2012,Aladdin +34155,Political Philosophy: A Beginners' Guide for Students and Politicians,Adam Swift,3.93,0745635326,9780745635323,eng,240,175,6,8/4/2006,Polity Press +34156,Liberals and Communitarians,Stephen Mulhall/Adam Swift,4.00,0631198199,9780631198192,eng,388,28,2,5/1/1996,Wiley-Blackwell +34157,Political Philosophy: A Beginner's Guide for Students and Politicians,Adam Swift,3.93,0745628478,9780745628479,eng,194,6,0,10/15/2001,Polity Press +34161,Seven Men and Two Others,Max Beerbohm,3.88,1853754153,9781853754159,eng,288,58,8,1/9/2001,Carlton Publishing Group +34168,Dakota,Matt Braun,3.72,0312997833,9780312997830,eng,306,33,5,8/30/2005,St. Martin's Paperbacks +34172,El Paso,Matt Braun,3.35,0312970749,9780312970741,eng,256,23,4,7/15/1999,St. Martin's Paperbacks +34177,The Visual Arts: A History,Hugh Honour/John Fleming,3.85,0810935937,9780810935938,eng,960,0,0,12/1/2002,Harry N. Abrams +34178,The Visual Arts: A History Volume 2,Hugh Honour/John Fleming,4.00,0131551132,9780131551138,eng,604,6,0,5/27/2005,Prentice Hall +34179,The Visual Arts: A History,Hugh Honour/John Fleming,3.85,0131935070,9780131935075,eng,936,38,3,5/1/2005,Prentice Hall +34187,The Brooklyn Bridge (Wonders of the World),Elizabeth Mann/Alan Witschonke,4.44,1931414165,9781931414166,eng,46,37,6,9/12/2006,Mikaya Press +34191,John Adams,John Patrick Diggins/Arthur M. Schlesinger Jr.,3.88,0805069372,9780805069372,eng,224,383,47,6/11/2003,Times Books +34199,The I Ching or Book of Changes,Richard Wilhelm/Cary F. Baynes/C.G. Jung,4.19,0140192077,9780140192070,eng,739,126,12,6/29/1989,Penguin Books +34200,The Complete I Ching: The Definitive Translation,Anonymous/Alfred Huang,4.28,0892811455,9780892811458,eng,539,330,16,4/15/2004,Inner Traditions International +34207,I Ching: The Book of Change,Anonymous/John Blofeld,4.19,0140193359,9780140193350,eng,240,42,7,8/1/1991,Penguin Books +34208,The Everyday I Ching,Sarah Dening,4.19,0312151225,9780312151225,eng,224,23,3,1/15/1997,St. Martin's Griffin +34221,Richard Matheson's Hell House Book 1,Ian Edginton/Simon Fraser,4.08,1932382607,9781932382600,eng,48,13,0,1/11/2005,IDW Publishing +34222,H.G. Wells' The War of the Worlds (Graphic Novel),Ian Edginton/D'Israeli,3.87,1593074743,9781593074746,eng,70,367,23,4/19/2006,Dark Horse +34224,New Complete Guide to Sewing,Reader's Digest Association,4.23,0762104201,9780762104208,eng,384,420,37,10/24/2002,Readers Digest. +34227,A Reader's Digest Songbook: Remembering Yesterday's Hits,William L. Simon,4.38,0895772493,9780895772497,eng,12,13,0,10/1/1987,Reader's Digest Association +34229,Complete Guide to the Bible,Reader's Digest Association,4.58,0762100737,9780762100736,eng,448,12,3,8/24/1998,Readers Digest +34241,焼きたて!!ジャぱん 1,Takashi Hashiguchi/橋口 たかし,3.97,4091263917,9784091263919,jpn,187,6,0,3/18/2002,小学館 +34247,200 Quilt Blocks: To Mix and Match,Davina Thomas,4.09,0896892026,9780896892026,eng,128,5,0,10/1/2005,Krause Publications +34251,The Girl in the Glass,Jeffrey Ford,3.72,0060936193,9780060936198,eng,304,785,126,8/16/2005,William Morrow Paperbacks +34262,Peter and the Starcatchers (Peter and the Starcatchers #1),Dave Barry/Ridley Pearson/Greg Call,4.03,078684907X,9780786849079,eng,452,66017,4284,5/1/2006,Disney-Hyperion +34264,Peter Pan in Scarlet,Geraldine McCaughrean/Scott M. Fischer,3.55,1416918086,9781416918080,eng,307,5421,360,10/5/2006,Margaret K. McElderry Books +34266,It's All Too Much: An Easy Plan for Living a Richer Life with Less Stuff,Peter Walsh,3.85,0743292642,9780743292641,eng,230,4644,672,1/1/2007,Free Press +34268,Peter Pan,J.M. Barrie/Michael Hague,4.08,0805072454,9780805072457,eng,176,213538,5609,10/1/2003,Henry Holt and Co. +34270,The Callahan Chronicals (Callahan's #1-3),Spider Robinson,4.31,0812539370,9780812539370,eng,416,2326,93,10/15/1997,Tor +34281,The Pinhoe Egg (Chrestomanci #6),Diana Wynne Jones,4.06,0061131245,9780061131240,eng,515,6899,327,10/3/2006,Greenwillow Books +34284,The Chronicles of Chrestomanci Vol. 1 (Chrestomanci #1-2),Diana Wynne Jones,4.21,006447268X,9780064472685,en-US,598,13864,391,4/10/2007,Greenwillow Books +34288,The Time of the Ghost,Diana Wynne Jones,3.66,0064473546,9780064473545,eng,291,2122,123,1/1/1981,HarperTrophy +34295,Whitethorn Woods,Maeve Binchy,3.61,0307265781,9780307265784,eng,339,11498,1016,3/6/2007,Knopf Publishing Group +34296,The Builders,Maeve Binchy,3.97,1902602684,9781902602684,eng,87,664,82,11/1/2006,New Island Books +34298,Dublin 4,Maeve Binchy,3.64,0099498588,9780099498582,en-US,256,2155,59,5/4/2006,Arrow +34299,Victoria Line Central Line,Maeve Binchy,3.60,0099498634,9780099498636,eng,432,957,53,7/6/2006,Arrow +34301,Echoes,Maeve Binchy,3.80,0440122090,9780440122098,en-US,496,9434,455,2/10/1997,Dell Publishing Company +34303,Firefly Summer,Maeve Binchy,3.91,0099498669,9780099498667,eng,928,10463,290,8/3/2006,Arrow +34307,Aches & Pains,Maeve Binchy/Wendy Shea,3.53,0385335105,9780385335102,en-US,99,356,30,6/13/2000,Delacorte Press +34310,The Glass Lake,Maeve Binchy,3.93,0752876872,9780752876870,eng,704,17624,670,6/29/2005,The Orion Publishing Group Ltd +34312,The Copper Beech,Maeve Binchy,3.91,0752876813,9780752876818,eng,407,18720,386,6/1/2005,Orion +34317,Dr. Jekyll and Mr. Hyde (Bullseye Chillers),Kate McMullan/Paul Van Munching/Glenn Dean/Kate McCullan/Robert Louis Stevenson,3.81,0394863658,9780394863658,eng,96,30,4,2/12/1984,Random House Books for Young Readers +34318,Harry Potter and the Sorcerer's Stone (Harry Potter #1),J.K. Rowling/Mary GrandPré,4.47,0786222727,9780786222728,eng,424,147,13,11/12/1999,Thorndike Press Large Print +34319,Code Word Kangaroo (Adam Sharp #6),George E. Stanley/Guy Francis,4.14,0375826890,9780375826894,eng,48,5,0,9/28/2004,Random House Books for Young Readers +34320,Operation Spy School (Adam Sharp #4),George E. Stanley/Guy Francis,3.80,0375824049,9780375824043,eng,44,0,0,9/23/2003,Random House Books for Young Readers +34321,The Empty Envelope (A to Z Mysteries #5),Ron Roy/John Steven Gurney,4.06,0679890548,9780679890546,eng,96,82,12,9/9/2009,Random House Books for Young Readers +34324,The School Skeleton (A to Z Mysteries #19),Ron Roy/John Steven Gurney,3.99,0375813683,9780375813689,en-US,96,1844,70,1/28/2003,Random House Books for Young Readers +34325,Moose Master (Adam Sharp #5),George E. Stanley/Guy Francis,4.12,0375826882,9780375826887,en-US,48,12,2,4/27/2004,Random House Books for Young Readers +34327,La Biblia de los Critales: Guia definitiva de los cristales (Cuerpo-Mente),Judy Hall,4.38,8484451143,9788484451143,spa,383,6,0,1/1/2006,Gaia Books +34343,Eva Hesse Drawing,Catherine de Zegher/Elisabeth Sussman,4.55,0300116187,9780300116182,eng,344,51,6,12/28/2006,Yale University Press +34385,Inferno,Dante Alighieri/Anthony M. Esolen,4.00,034548357X,9780345483577,eng,560,219,25,10/25/2005,Modern Library +34407,The Pirates Laffite: The Treacherous World of the Corsairs of the Gulf,William C. Davis,3.50,0156032597,9780156032599,eng,756,217,37,5/1/2006,Mariner Books +34420,Wither (Wendy Ward #1),J.G. Passarella,3.71,0671024817,9780671024819,eng,438,545,40,3/1/2000,Pocket Books +34426,Howl's Moving Castle Film Comic Vol. 1,Hayao Miyazaki/Diana Wynne Jones,4.41,1421500914,9781421500911,eng,176,847,40,8/2/2005,VIZ Media LLC +34427,Howl's Moving Castle Picture Book (Howl's Moving Castle Film Comics #1),Hayao Miyazaki/Diana Wynne Jones,4.41,1421500906,9781421500904,eng,184,1696,86,9/1/2005,VIZ Media LLC +34435,The Theban Plays: Antigone King Oidipous & Oidipous at Colonus (Focus Classical Library),Sophocles/Ruby Blondell,3.97,1585100374,9781585100378,en-US,248,57,3,12/1/2001,Focus +34436,The Complete Greek Tragedies Volume 2: Sophocles,Sophocles/David Grene/Richmond Lattimore,4.14,0226307654,9780226307657,eng,472,32,6,8/1/1992,University of Chicago Press +34440,Doctor Faustus,Thomas Mann/John E. Woods,4.08,0375701168,9780375701160,eng,535,7825,314,7/27/1999,Vintage +34443,Doctor Faustus,Christopher Marlowe/David Wootton,3.80,0872207293,9780872207295,eng,192,102,8,3/15/2005,Hackett Publishing Company Inc. +34444,Doctor Faustus,Thomas Mann/T.J. Reed/H.T. Lowe-Porter,4.08,0679409963,9780679409960,eng,580,88,14,6/2/1992,Everyman's Library +34449,The Makioka Sisters,Jun'ichirō Tanizaki/Edward G. Seidensticker,4.03,0679761640,9780679761648,eng,530,4596,441,9/26/1995,Vintage +34452,Many Lives Many Masters: The True Story of a Prominent Psychiatrist His Young Patient and the Past Life Therapy That Changed Both Their Lives,Brian L. Weiss,4.16,0446520594,9780446520591,eng,217,24345,1914,3/12/1996,Grand Central Publishing +34460,Quicksand,Jun'ichirō Tanizaki/Howard Hibbett,3.65,0679760229,9780679760221,eng,224,1060,90,6/24/1995,Vintage +34462,Naomi,Jun'ichirō Tanizaki/Anthony H. Chambers,3.69,0375724745,9780375724749,en-GB,237,3825,272,4/10/2001,Vintage +34463,Seven Japanese Tales,Jun'ichirō Tanizaki/Howard Hibbett,3.85,0679761071,9780679761075,eng,298,1291,86,10/1/1996,Vintage +34468,A Cat a Man and Two Women,Jun'ichirō Tanizaki/Paul McCarthy,3.80,4770016050,9784770016058,eng,164,972,74,4/1/1992,Kodansha +34472,The Reed Cutter & Captain Shigemoto's Mother,Jun'ichirō Tanizaki/Anthony H. Chambers,3.67,0679757910,9780679757917,eng,180,137,14,6/24/1995,Vintage +34473,In Praise of Shadows,Jun'ichirō Tanizaki/Edward G. Seidensticker/Thomas J. Harper/Charles Moore,4.09,0918172020,9780918172020,eng,56,6674,480,12/1/1977,Leete's Island Books +34480,Le chat son maître et ses deux maîtresses,Jun'ichirō Tanizaki,3.80,2070401677,9782070401673,fre,210,29,2,1/23/1997,Gallimard +34484,Small Gods (Discworld #13),Terry Pratchett,4.29,0552152978,9780552152976,eng,400,83353,1758,8/1/2005,Corgi +34492,Wintersmith (Discworld #35; Tiffany Aching #3),Terry Pratchett,4.24,0060890312,9780060890315,eng,325,42146,1230,10/1/2006,HarperTempest +34493,Strata,Terry Pratchett,3.49,0552133256,9780552133258,eng,285,9019,265,4/22/1988,Corgi +34495,The Bromeliad Trilogy (Omnibus: Truckers / Diggers / Wings),Terry Pratchett,4.07,0060094931,9780060094935,eng,502,5761,191,9/30/2003,HarperCollins +34497,The Color of Magic (Discworld #1; Rincewind #1),Terry Pratchett,4.00,0060855924,9780060855925,eng,228,239617,4478,9/13/2005,Harper +34498,The Truth (Discworld #25; Industrial Revolution #2),Terry Pratchett,4.27,0413771164,9780413771162,eng,336,43964,880,2/21/2002,Bloomsbury Methuen Drama +34501,A Hat Full of Sky (Discworld #32; Tiffany Aching #2),Terry Pratchett,4.30,055255264X,9780552552646,eng,352,51562,1294,5/5/2005,Corgi Childrens +34503,The Last Hero (Discworld #27; Rincewind #7),Terry Pratchett/Paul Kidby,4.17,0060507772,9780060507770,eng,176,26427,517,8/20/2002,Harper Voyager +34504,Wyrd Sisters (Discworld #6; Witches #2),Terry Pratchett,4.13,0061020664,9780061020667,eng,265,72785,1911,2/6/2001,Hartorch +34505,A Tourist Guide to Lancre,Terry Pratchett/Stephen Briggs/Paul Kidby,4.06,0552146080,9780552146081,eng,32,1640,19,5/1/1998,Transworld Publishers +34506,The Light Fantastic (Discworld #2; Rincewind #2),Terry Pratchett,3.97,0061020702,9780061020704,eng,277,91479,2031,2/2/2000,HarperTorch +34507,Equal Rites (Discworld #3; Witches #1),Terry Pratchett,4.03,0060855908,9780060855901,eng,228,110062,2261,9/13/2005,Harper Perennial +34508,Interesting Times: The Play,Stephen Briggs/Terry Pratchett,4.15,0413772195,9780413772190,eng,102,21339,176,7/4/2002,Bloomsbury Methuen Drama +34509,Nanny Ogg's Cookbook,Terry Pratchett/Stephen Briggs/Tina Hannan/Paul Kidby,4.00,0552146730,9780552146739,eng,176,5517,143,11/1/2001,Corgi +34510,Moving Pictures (Discworld #10; Industrial Revolution #1),Terry Pratchett,3.94,0552152943,9780552152945,eng,396,52713,817,4/1/2005,Corgi +34515,Darwin's Watch (The Science of Discworld #3),Terry Pratchett/Ian Stewart/Jack Cohen,3.94,0091898242,9780091898243,eng,344,3601,95,8/3/2006,Ebury Press +34517,Reaper Man (Discworld #11; Death #2),Terry Pratchett,4.28,0552152951,9780552152952,eng,352,63287,1445,4/1/2005,Corgi +34521,Only You Can Save Mankind (Johnny Maxwell #1),Terry Pratchett,3.72,0060541873,9780060541873,eng,210,9778,317,7/25/2006,HarperTrophy +34523,The Flying Sorcerers: More Comic Tales of Fantasy,Peter Haining/Roald Dahl/Terry Pratchett/Angela Carter/Arthur C. Clarke/Kurt Vonnegut Jr./C.S. Lewis/P.G. Wodehouse/Michael Moorcock/L. Sprague de Camp/Fletcher Pratt/Eric Knight/Mervyn Peake/Piers Anthony/John Collier/Fredric Brown/Nelson S. Bond/Thomas M. Disch/Robert Bloch/Stephen Leacock/John Wyndham/Stanisław Lem/Cordwainer Smith/Robert Sheckley/William F. Nolan/Harry Harrison,3.99,1857237250,9781857237252,eng,383,2226,19,2/4/1999,Orbit +34524,Where's My Cow? (Discworld #34.5),Terry Pratchett/Melvyn Grant,4.11,038560937X,9780385609371,eng,32,9116,294,10/1/2005,Doubleday +34529,Lords and Ladies (Discworld #14; Witches #4),Terry Pratchett,4.17,055215315X,9780552153157,eng,400,53721,814,8/1/2005,Corgi +34530,Guards! Guards! (Discworld #8),Terry Pratchett,4.33,0613572173,9780613572170,eng,355,67,2,7/31/2001,Turtleback Books +34532,Hogfather (Discworld #20; Death #4),Terry Pratchett,4.23,0552154288,9780552154284,eng,432,60162,1373,10/2/2006,Corgi +34534,The Amazing Maurice and His Educated Rodents (Discworld #28),Terry Pratchett,4.05,006001234X,9780060012342,eng,256,29309,952,11/6/2001,HarperCollins +34535,Rincewind the Wizzard,Terry Pratchett,4.21,0739403451,9780739403457,en-US,649,1585,24,1/1/1999,Science Fiction Book Club +34539,Going Postal (Discworld #33),Terry Pratchett,4.38,0060013133,9780060013134,en-US,377,969,114,9/28/2004,Harper +34540,The Last Hero: A Discworld Fable (Discworld #27),Terry Pratchett/Paul Kidby,4.17,057506885X,9780575068858,eng,160,830,83,10/18/2001,Gollancz +34541,Carpe Jugulum (Discworld #23; Witches #6),Terry Pratchett,4.14,0061051586,9780061051586,eng,296,41899,746,9/8/1999,Harper Voyager +34542,Truckers (Bromeliad Trilogy #1),Terry Pratchett,3.92,0060094966,9780060094966,eng,261,7464,176,4/1/2004,HarperCollins +34544,X-Statix Volume 1: Good Omens,Peter Milligan/Mike Allred/Paul Pope,3.97,0785110593,9780785110590,eng,128,400,17,1/1/2003,Marvel +34545,Elliott Erwitt: Snaps,Murray Sayle/Charles Flowers/Elliott Erwitt,4.72,071484330X,9780714843308,en-GB,544,102,6,6/1/2003,Phaidon Press +34548,If Chins Could Kill: Confessions of a B Movie Actor,Bruce Campbell,4.00,0312291450,9780312291457,eng,344,13622,731,8/24/2002,L.A. Weekly Books +34558,Real Ultimate Power: The Official Ninja Book,Robert Hamburger,4.00,080652569X,9780806525693,eng,193,997,117,7/1/2004,Citadel +34570,Team Yankee,Harold Coyle,4.07,0425110427,9780425110423,en-US,330,8870,131,9/1/1988,Berkley +34578,At Sword's Point (Knights of the Blood #2),Scott MacMillan/Katherine Kurtz,3.52,0451454073,9780451454072,eng,352,185,8,8/1/1994,Roc +34596,Treasure of Khan (Dirk Pitt #19),Clive Cussler/Dirk Cussler,3.91,0399153691,9780399153693,eng,552,10987,332,11/28/2006,G.P. Putnam's Sons +34600,The Treasure Principle: Unlocking the Secret of Joyful Giving,Randy Alcorn,4.13,1590525086,9781590525081,en-US,120,4088,290,10/9/2001,Multnomah +34601,Snow Treasure,Marie McSwigan/Mary Reardon,3.97,0142402249,9780142402245,eng,208,5279,489,10/5/2006,Puffin Books +34605,The Damnation Game,Clive Barker,3.82,0425188930,9780425188934,eng,433,15857,350,11/5/2002,Berkley Books +34607,The Damnation Game,Clive Barker,3.82,0517681137,9780517681138,eng,374,0,0,1/13/1989,Random House +34612,Texas Hold'em for Dummies,Mark Harlan,3.82,047004604X,9780470046043,eng,267,103,8,10/1/2006,Wiley Publishing +34627,Soldiers of Destruction: The SS Death's Head Division 1933-1945,Charles W. Sydnor Jr.,3.99,0691008531,9780691008530,eng,375,71,7,5/21/1990,Princeton University Press +34628,Spy Catcher: The Candid Autobiography of a Senior Intelligence Officer,Peter Maurice Wright/Paul Greengrass,3.73,0670820555,9780670820559,eng,392,159,22,7/30/1987,Viking Penguin Inc. +34637,Nobody Loves a Centurion (SPQR #6),John Maddox Roberts,4.14,0312320191,9780312320195,eng,288,641,25,10/10/2003,St. Martin's Griffin +34641,The Centurion's Empire,Sean McMullen,3.61,0812564758,9780812564754,eng,416,157,11,5/15/1999,Tor Science Fiction +34646,The Centurions (The Centurions #1),Damion Hunter,4.14,0345296915,9780345296917,eng,384,44,7,11/12/1981,Ballantine Books +34657,The Heights of Courage: A Tank Leader's War on the Golan,Avigdor Kahalani,4.20,0275942694,9780275942694,eng,234,106,11,2/28/1992,Praeger Publishers +34658,Shattered Sword: The Untold Story of the Battle of Midway,Jonathan Parshall/Anthony Tully,4.42,1574889230,9781574889239,eng,612,1876,161,11/1/2005,Potomac Books +34662,Shattered Air: A True Account of Catastrophe and Courage on Yosemite's Half Dome,Bob Madgic/William L. Crary/Adrian Esteban,3.77,1580801420,9781580801423,en-US,264,501,76,2/6/2007,Burford Books +34663,Shattered Bonds: The Color of Child Welfare,Dorothy Roberts,4.19,0465070590,9780465070596,eng,352,153,10,12/25/2002,Civitas Books +34672,Shattered Dance,Caitlin Brennan,3.91,037380248X,9780373802487,eng,442,426,12,9/26/2006,Luna Books +34678,The Shattered Land (Eberron: The Dreaming Dark #2),Keith Baker,3.65,0786938218,9780786938216,eng,374,515,21,2/7/2006,Wizards of the Coast +34687,Koko's Kitten,Francine Patterson/Ronald H. Cohn,4.30,0590444255,9780590444255,eng,32,963,92,6/1/1987,Scholastic Press +34706,13th Directorate,Barry Chubin,2.62,0804104557,9780804104555,eng,0,8,1,2/28/1989,Ivy Books +34708,The Aviators (Brotherhood of War #8),W.E.B. Griffin,4.25,0515100536,9780515100532,eng,464,2567,33,5/1/1989,G.P. Putnam's Sons +34760,All I Really Need to Know I Learned in Kindergarten,Robert Fulghum,4.03,034546639X,9780345466396,eng,240,17354,650,5/4/2004,Ballantine Books +34762,Legends Lies Cherished Myths of World History,Richard Shenkman,3.47,0060922559,9780060922559,eng,320,222,16,11/29/2011,William Morrow Paperbacks +34766,Trevayne,Robert Ludlum,3.62,0752858629,9780752858623,en-GB,528,20,1,10/7/2004,Orion +34768,Trevayne,Jonathan Ryder/Robert Ludlum,3.62,044019069X,9780440190691,en-GB,469,9,0,6/1/1986,Dell +34771,Red Phoenix,Larry Bond,4.02,0751504351,9780751504354,en-US,791,26,2,4/25/1995,Warner Books (NY) +34783,Boomers Xers and Other Strangers: Understanding the Generational Differences that Divide Us,Rick Hicks/Kathy Hicks,3.36,1561796778,9781561796779,eng,384,28,4,10/1/1999,Focus on the Family Publishing +34789,The Boomer Bible,R.F. Laird,4.23,1563050757,9781563050756,eng,880,209,28,1/10/1991,Workman Publishing Company +34816,A Matter of Trust (Justice #0),Radclyffe,4.21,1933110333,9781933110332,eng,240,942,26,2/1/2006,Bold Strokes Books +34819,A Matter of Trust: The Case of the Mesmerizing Boss / The Case of the Confirmed Bachelor,Diana Palmer,4.04,0373771835,9780373771837,eng,440,193,3,12/27/2005,Harlequin Books +34833,A Matter Of Trust,Deb Stover,3.31,0821764608,9780821764602,eng,256,4,0,1/1/2000,Kensington +34835,A Matter of Trust,Penny Jordan,2.61,0373117191,9780373117192,eng,224,36,5,12/23/1994,Harlequin Presents +34844,Mortal Fear (Mississippi #1),Greg Iles,4.00,0451180410,9780451180414,eng,704,566,59,2/1/1998,Signet +34845,Mortal Fear,Robin Cook,3.75,0330307606,9780330307604,eng,364,3996,80,3/23/1989,Pan +34852,Murder On The Glitter Box (Steve Allen Mystery #3),Steve Allen,3.60,1575662450,9781575662459,eng,348,98,9,1/1/1998,Kensington +34856,Lonesome Dove,Larry McMurtry,4.49,068487122X,9780684871226,eng,864,505,63,11/10/2000,Simon & Schuster +34858,Comanche Moon,Larry McMurtry,4.03,0684807548,9780684807546,eng,752,202,30,11/6/1997,Simon & Schuster +34866,Night of the Fox (Dougal Munro and Jack Carter #1),Jack Higgins,3.92,0671728202,9780671728205,eng,352,4908,89,1/25/2008,Pocket Books +34869,Mitla Pass,Leon Uris,3.84,0553282808,9780553282801,eng,495,3256,68,10/1/1989,Bantam +34871,The Complete Clive Barker's The Great And Secret Show,Chris Ryall/Gabriel Rodríguez/Clive Barker,4.23,1600100295,9781600100291,eng,136,17422,67,11/8/2006,IDW Publishing +34873,The Great And Secret Show (Book of the Art #1),Clive Barker,4.05,000617695X,9780006176954,eng,698,275,17,4/26/1990,Fontana Books +34881,Star Bright (Star Power #8),Catherine Hapka,3.67,068987670X,9780689876707,eng,160,3,0,4/26/2005,Aladdin Paperbacks +34889,Brown's Star Atlas: Showing All The Bright Stars With Full Instructions How To Find And Use Them For Navigational Purposes And Department Of Trade Examinations.,Brown, Son & Ferguson,0.00,0851742718,9780851742717,eng,49,0,0,5/1/1977,Brown Son & Ferguson Ltd. +34892,Bright Star's Promise,Karen A. Bale,2.77,0821746219,9780821746219,eng,444,13,3,7/1/1994,Zebra +34895,Dragon Quest VIII: Journey of the Cursed King Official Strategy Guide,Dan Birlew,4.14,0744005833,9780744005837,eng,240,35,0,11/8/2005,BradyGames +34897,The Dragon Reborn (The Wheel of Time #3),Robert Jordan,4.25,0765305119,9780765305114,eng,624,183950,2671,9/14/2002,Tor Books +34898,My Father's Dragon (My Father's Dragon #1),Ruth Stiles Gannett,4.10,0440421217,9780440421214,eng,96,30987,1535,12/27/2005,Yearling +34899,The Book of the Dragon,Ciruelo Cabral,4.20,1402728115,9781402728112,eng,144,372,15,8/1/2005,Union Square Press +34901,Must Love Dragons (Immortally Sexy #2),Stephanie Rowe,3.98,0446617679,9780446617673,en-US,342,1740,77,11/1/2006,Warner Forever +34902,Player's Handbook II,David Noonan,3.76,0786939184,9780786939183,eng,221,815,7,5/9/2006,Wizards of the Coast +34908,Here There Be Dragons (Chronicles of the Imaginarium Geographica #1),James A. Owen,3.86,1416912274,9781416912279,en-US,326,10103,917,9/26/2006,Simon & Schuster Books for Young Readers +34909,The Dragon Doesn't Live Here Anymore: Living Fully Loving Freely,Alan Cohen,4.27,0449908402,9780449908402,eng,416,179,16,8/3/1993,Ballantine Books +34915,Running with the Demon (Word & Void #1),Terry Brooks,3.97,1857236076,9781857236071,eng,503,72,3,7/16/1998,Orbit Books +34918,The Voyage of the Jerle Shannara Trilogy (Voyage of the Jerle Shannara #1-3),Terry Brooks,4.27,1416502041,9781416502043,en-GB,1260,87,4,5/1/2005,Pocket Books +34921,The Black Unicorn (Magic Kingdom of Landover #2),Terry Brooks,3.77,0345335287,9780345335289,eng,307,630,14,8/12/1988,Del Rey Books +34922,Der Sohn von Shannara,Terry Brooks/Tony Westermayr,4.16,3442249759,9783442249756,ger,224,5,0,12/1/2000,Goldmann +34938,First King of Shannara (Shannara Prequel),Terry Brooks,3.96,0517199963,9780517199961,eng,0,1,0,3/19/1996,Random House Value Publishing +34939,The Best of Lester Del Rey,Lester del Rey/Terry Brooks,3.79,034543949X,9780345439499,eng,320,76,9,6/6/2000,Del Rey +34941,The Phantom Menace (Star Wars: Novelizations #1),Terry Brooks/George Lucas,3.57,0099409968,9780099409960,eng,336,13158,455,3/2/2000,Arrow +34948,L'epée de Shannara,Terry Brooks/Rosalie Guillaume,3.45,2914370318,9782914370318,fre,390,6,2,11/27/2002,Bragelonne +34963,Star Wars. Episode I - Die dunkle Bedrohung,Terry Brooks/George Lucas/Regina Winter,3.57,3442352436,9783442352432,ger,320,67,4,8/1/1999,Blanvalet Taschenbuch Verlag +34985,The Deming Management Method,Mary Walton,3.95,1852521414,9781852521417,eng,254,192,11,10/1/1992,Management Books 2000 +34988,The Scions of Shannara (Heritage of Shannara #1),Terry Brooks,3.99,1857230752,9781857230758,eng,512,26985,256,10/5/2006,Orbit +34992,The Three Musketeers (Classic Starts),Oliver Ho/Jamel Akib/Alexandre Dumas/Arthur Pober,4.12,1402736959,9781402736957,eng,151,514,31,2/1/2007,Sterling Publishing Co. Inc. +35002,The One Minute Minute Sales Person,Spencer Johnson,3.78,0007104847,9780007104840,eng,109,68,7,6/1/2000,HarperCollins Publishers +35046,JLA Vol. 14: Trial by Fire,Joe Kelly/Doug Mahnke/Tom Nguyen,3.67,140120242X,9781401202422,en-GB,144,192,12,10/1/2004,DC Comics +35047,Manhunter Vol. 2: Trial by Fire,Marc Andreyko/Javier Pina/Jesus Saiz/Brad Walker,3.90,1401211984,9781401211981,eng,224,297,27,1/3/2007,DC Comics +35048,Trial by Fire (Stargate SG-1 #1),Sabine C. Bauer,3.79,0954734300,9780954734305,eng,237,448,32,6/1/2006,Fandemonium Books +35050,Trial By Fire,D.W. Buffa,3.76,0451412125,9780451412126,en-US,322,9,0,4/4/2006,Onyx +35052,Trial by Fire (Newpointe 911 #4),Terri Blackstock,4.36,0310217601,9780310217602,eng,347,3248,73,10/18/2000,Zondervan +35054,Sahara (Dirk Pitt #11),Clive Cussler,3.96,1416513418,9781416513414,eng,576,47,6,3/1/2005,Pocket Books +35056,Sahara (Dirk Pitt #11),Clive Cussler,3.96,0671521101,9780671521103,en-US,576,528,34,3/1/1995,Pocket Books +35057,Africa South of the Sahara: A Geographical Interpretation (Texts In Regional Geography),Robert Stock,3.12,1572308680,9781572308688,en-US,479,8,0,5/4/2004,The Guilford Press +35061,Ellora's Cavemen: Dreams of the Oasis Volume II,Sylvia Day/B.J. McCall/Sahara Kelly/Elisa Adams/Denise A. Agnew/Anna J. Evans,3.63,1419954482,9781419954481,eng,272,131,8,10/1/2005,Ellora's Cave +35081,Ghosts of Gettysburg III: Spirits Apparitions and Haunted Places of the Battlefield,Mark Nesbitt,4.03,0939631903,9780939631902,eng,75,111,3,10/1/1995,Thomas Publications (PA) +35088,SeinLanguage,Jerry Seinfeld,3.63,0553096060,9780553096064,eng,180,371,44,9/1/1993,Bantam +35090,Der Richter und sein Henker,Friedrich Dürrenmatt/John J. Neumaier/William Gillis,3.73,0395044995,9780395044995,ger,208,5420,81,6/23/1972,Houghton Mifflin Company +35092,It Doesn't Take a Hero: The Autobiography of General H. Norman Schwarzkopf,Norman Schwarzkopf/Peter Petre,4.04,0553563386,9780553563382,eng,640,2554,91,9/1/1993,Bantam +35100,Battle Cry of Freedom,James M. McPherson,4.35,019516895X,9780195168952,eng,867,23112,992,12/11/2003,Oxford University Press USA +35106,The Straight Dope,Cecil Adams,4.19,0345422910,9780345422910,eng,432,596,24,2/24/1998,Ballantine Books +35108,Return of the Straight Dope,Cecil Adams/Ed Zotti/Slug Signorino,4.22,0345381114,9780345381118,eng,448,220,11,3/12/1999,Ballantine +35110,Six Easy Pieces: Essentials of Physics Explained by Its Most Brilliant Teacher (Helix),Richard P. Feynman/Robert B. Leighton/Matthew L. Sands/Paul Davies,4.21,0201408252,9780201408256,en-US,176,167,18,4/10/1996,Basic Books +35111,The Feynman Lectures on Physics Vol 2,Richard P. Feynman/Robert B. Leighton/Matthew L. Sands,4.62,0805390472,9780805390476,eng,512,17,2,9/1/2005,Pearson Education +35115,Sliding Scales (Pip & Flinx #10),Alan Dean Foster,3.88,0345461584,9780345461582,eng,257,1167,28,9/27/2005,Del Rey Books +35116,Star Trek: Logs Seven and Eight (Star Trek: Log #7-8),Alan Dean Foster,3.68,0345495845,9780345495846,eng,358,35,0,9/5/2006,Del Rey Books +35120,Star Trek: Logs One and Two (Star Trek: Log #1-2),Alan Dean Foster,3.46,0345495810,9780345495815,eng,370,58,4,9/5/2006,Del Rey Books +35124,Mid-Flinx (Pip & Flinx #7),Alan Dean Foster,3.94,0345406443,9780345406446,en-US,352,2327,36,9/1/1996,Del Rey Books +35125,Alien,Alan Dean Foster,4.09,2290011150,9782290011157,eng,270,15901,309,3/29/1979,Grand Central Publishing +35126,The Chronicles of Riddick,Alan Dean Foster,3.95,0345468392,9780345468390,en-US,342,1389,47,12/18/2007,Del Rey Books +35128,With Friends Like These...,Alan Dean Foster,3.94,0345323904,9780345323903,eng,236,2277,28,11/12/1977,Del Rey +35134,Nor Crystal Tears (Humanx Commonwealth #9),Alan Dean Foster,4.03,0727845640,9780727845641,eng,231,2278,29,2/1/1994,Severn House Publishers +35138,The Hour of the Gate (Spellsinger #2),Alan Dean Foster,3.84,0743498291,9780743498296,eng,304,30,0,1/1/2005,iBooks +35148,Betcha Can't Read Just One,Alan Dean Foster/George Alec Effinger/Jack McDevitt/Nina Kiriki Hoffman/Mike Resnick/R.A. Lafferty/Tobias Grace/Laura Resnick/Margaret Ball/Ron Goulart/Mel Gilden/Edward Wellen/Wolfgang Jeschke/Greg Costikyan/Esther M. Friesner/Steve Rasnic Tem,3.92,0441248837,9780441248834,eng,242,51,1,12/1/1993,Ace +35149,Star Wars: The Approaching Storm,Alan Dean Foster,3.51,0345443004,9780345443007,eng,344,3947,100,12/1/2002,Del Rey Books +35159,Chorus Skating (Spellsinger #8),Alan Dean Foster,3.62,0446362379,9780446362375,en-US,344,477,8,10/1/1994,Aspect +35163,Star Trek: Logs Five and Six (Star Trek: Log #5-6),Alan Dean Foster,3.65,0345495837,9780345495839,eng,388,35,0,9/5/2006,Del Rey Books +35165,Star Trek: Logs 7-10,Alan Dean Foster,3.71,0671854054,9780671854058,eng,788,21,0,6/1/1995,Pocket Books +35166,The Hand of Dinotopia,Alan Dean Foster/James Gurney,3.96,0060518510,9780060518516,eng,416,292,13,12/1/2002,Avon Books +35178,Interlopers,Alan Dean Foster,3.33,044100847X,9780441008476,eng,313,269,23,5/1/2001,Ace +35180,Alien Nation,Alan Dean Foster,3.55,0446352640,9780446352642,eng,217,227,10,7/1/1988,Warner Books +35183,Phylogenesis (Founding of the Commonwealth #1),Alan Dean Foster,3.82,0345418611,9780345418616,eng,304,1246,21,7/5/2000,Del Rey Books +35206,Rashōmon and Seventeen Other Stories,Ryūnosuke Akutagawa/Jay Rubin/Haruki Murakami/Yoshihiro Tatsumi,4.13,0143039849,9780143039846,eng,268,4813,239,10/31/2006,Penguin Classics +35210,How to Talk to Anyone: 92 Little Tricks for Big Success in Relationships,Leil Lowndes,3.78,007141858X,9780071418584,eng,345,16662,739,10/10/2003,Contemporary Books +35218,There Was a Cold Lady Who Swallowed Some Snow!,Lucille Colandro/Jared Lee/Skip Hinnant,3.85,0439895561,9780439895569,eng,1,14,1,8/13/2006,Scholastic Audio Books +35219,The Red Badge of Courage & The Veteran,Stephen Crane/Shelby Foote,3.38,0679783202,9780679783206,eng,336,497,40,9/12/2000,Modern Library +35223,The Red Badge of Courage and Four Stories,Stephen Crane/James Dickey,3.35,0451526473,9780451526472,eng,240,265,29,2/1/1997,Signet Classics +35226,The Red Badge of Courage (Classic Starts),Oliver Ho/Jamel Akib/Arthur Pober/Stephen Crane,3.86,1402726635,9781402726637,eng,160,59,7,3/28/2006,Sterling +35228,New Threads in the Pattern: The Great Hunt Part 2 (Wheel of Time #2-2),Robert Jordan/Charles Keegan,4.27,0765348446,9780765348449,eng,464,299,6,1/5/2004,Starscape +35231,Lord of Chaos (The Wheel of Time #6),Robert Jordan,4.13,0812513754,9780812513752,eng,1011,109234,1962,11/15/1995,Tor Books +35234,Crossroads of Twilight (Wheel of Time #10),Robert Jordan,3.82,1841491837,9781841491837,eng,818,827,48,11/6/2003,Orbit +35244,Frankenstein (SparkNotes Literature Guide),SparkNotes/Mary Wollstonecraft Shelley,3.50,1586633570,9781586633578,eng,72,16,0,1/10/2002,SparkNotes +35246,Mary Shelley‘s Frankenstein,Mary Wollstonecraft Shelley/Anca Munteanu,3.79,0764587269,9780764587269,eng,240,147,3,4/15/2001,Cliffs Notes +35248,Essential Monster of Frankenstein Vol. 1,Gary Friedrich/Doug Moench/John Buscema/Mike Ploog/Val Mayerick,3.62,0785116346,9780785116349,eng,496,69,7,10/20/2004,Marvel Comics +35249,Frankenstein,Mary Wollstonecraft Shelley,3.79,074325578X,9780743255783,en-US,448,20,6,1/1/2004,Kaplan Publishing +35252,Frankenstein,Mary Wollstonecraft Shelley,3.79,1419542249,9781419542244,en-US,450,17,3,10/30/2006,Kaplan +35254,The Memoirs of Elizabeth Frankenstein,Theodore Roszak,3.56,0553576372,9780553576375,eng,440,233,24,10/1/1996,Bantam +35255,The Essential Frankenstein,Mary Wollstonecraft Shelley/Leonard Wolf/Christopher H. Bing,3.79,0452269687,9780452269682,eng,357,42,6,10/1/1993,Plume +35258,Father of Frankenstein,Christopher Bram,4.10,0452273374,9780452273375,eng,276,587,48,4/1/1996,Plume +35261,Frankenstein,Mary Wollstonecraft Shelley,3.79,076660828X,9780766608283,en-GB,189,84,4,7/30/2004,Modern Publishing +35268,The Walrus Was Paul: The Great Beatle Death Clues,R. Gary Patterson/Jay Fox,3.72,0684850621,9780684850627,eng,208,441,39,10/29/1998,Touchstone +35270,Harpo Speaks!,Harpo Marx/Rowland Barber,4.41,0879100362,9780879100360,eng,482,2006,239,7/1/2004,Limelight Editions +35273,Groucho Harpo Chico and Sometimes Zeppo: A History of the Marx Brothers and a Satire on the Rest of the World,Joe Adamson,4.07,0671470728,9780671470722,eng,464,9,1,1/1/1983,Simon & Schuster +35283,Topsail Island: Mayberry by the Sea,Ray McAllister/Vicki McAllister,3.94,0895873311,9780895873316,eng,228,40,13,7/1/2006,John F. Blair Publisher +35287,Take on Me (Secret Lives of Daytime Divas #1),Sarah Mayberry,3.69,0373793189,9780373793181,eng,249,499,46,2/27/2007,Harlequin Blaze +35288,All Over You (Secret Lives of Daytime Divas #2),Sarah Mayberry,3.73,0373793243,9780373793242,eng,251,521,35,3/27/2007,Harlequin Blaze +35289,The 33 Strategies of War,Robert Greene/Joost Elffers,4.30,0670034576,9780670034574,en-US,496,8005,383,1/19/2006,Viking +35291,Jimmy Stewart: A Biography,Marc Eliot,3.85,1400052211,9781400052219,eng,463,955,95,11/6/2006,Harmony +35292,Jimmy Stewart: Bomber Pilot,Starr Smith/Walter Cronkite,3.93,0760328242,9780760328248,eng,320,441,57,11/15/2006,Zenith Press +35295,Jimmy Stewart: The Truth Behind the Legend,Michael Munn,3.97,1569803102,9781569803103,eng,317,212,35,5/30/2006,Barricade Books +35308,Dirt (Stone Barrington #2),Stuart Woods,3.89,0061094234,9780061094231,en-US,448,6279,274,8/7/1997,HarperTorch +35313,La Ley del Exito,Paramahansa Yogananda,4.44,0876121512,9780876121511,spa,32,0,0,6/1/1998,Self-Realization Fellowship Publishers +35324,Incident at Exeter,John G. Fuller,3.56,0425039293,9780425039298,en-US,221,51,7,4/15/1978,Berkley Books (NY) +35329,The Body Remembers: The Psychophysiology of Trauma and Trauma Treatment,Babette Rothschild,4.27,0393703274,9780393703276,eng,208,1506,45,10/17/2000,W. W. Norton Company +35332,Remember (Redemption #2),Karen Kingsbury/Gary Smalley,4.43,0842356290,9780842356299,eng,432,18445,388,1/1/2003,Tyndale House Publishers +35334,A Summer to Remember (Bedwyn Prequels #2),Mary Balogh,4.08,0440236630,9780440236634,eng,361,7791,360,3/4/2003,Dell +35335,Because I Remember Terror Father I Remember You,Sue William Silverman,4.11,0820321753,9780820321752,en-US,288,725,61,9/2/1999,University of Georgia Press +35347,The Last Story (Remember Me #3),Christopher Pike,3.65,0689854595,9780689854590,eng,256,2208,62,9/1/2002,Simon Pulse +35348,A Place Where the Sea Remembers,Sandra Benítez,3.62,0671892673,9780671892678,eng,176,757,103,2/5/1995,Scribner +35349,She Who Remembers (Kwani #1),Linda Lay Shuler,4.03,0451211448,9780451211446,eng,496,6737,148,8/5/2003,NAL Trade +35350,What the Body Remembers,Shauna Singh Baldwin,3.89,0385496052,9780385496056,eng,471,2340,153,1/16/2001,Anchor +35352,Long Gone Lonesome Blues (The Texas Brands #4),Maggie Shayne,4.25,0373078544,9780373078547,eng,251,398,15,4/1/1998,Silhouette +35365,Remember When (Foster Saga #1),Judith McNaught,3.95,1416530746,9781416530749,eng,418,10632,252,4/25/2006,Pocket Books +35368,A Kiss to Remember (Once Upon a Time #3),Teresa Medeiros,3.89,0553581856,9780553581850,eng,353,3634,201,4/30/2002,Bantam +35400,Star Wars: The Complete Visual Dictionary,James Luceno/David West Reynolds/Ryder Windham,4.33,0756622387,9780756622381,eng,272,1094,40,9/25/2006,DK Children +35402,Star Wars: The Ultimate Visual Guide,Daniel Wallace/Ryder Windham,4.33,0756630525,9780756630522,eng,160,945,17,3/19/2007,DK Children +35404,Star Wars Complete Locations,James Luceno/Kerrie Dougherty/Simon Beecroft/Kristin Lund/Hans Jenssen/Richard Chasemore,4.31,0756614198,9780756614195,eng,175,141,9,12/31/2005,DK Publishing (Dorling Kindersley) +35406,Lego Star Wars: Prima Official Game Guide,Michael Littlefield,4.62,0761554912,9780761554912,eng,128,27,2,9/12/2006,Prima Games +35407,Star Wars: The New Essential Guide to Alien Species,Ann Margaret Lewis/Helen Keier/Chris Trevas/William O'Connor,4.18,034547760X,9780345477606,eng,227,259,11,10/31/2006,Del Rey +35409,Star Wars: The New Essential Chronology,Daniel Wallace/Mark Chiarello/Tommy Lee Edwards/John Van Fleet,4.30,0345449010,9780345449016,eng,256,642,11,10/25/2005,Del Rey +35412,The Swarm War (Star Wars: Dark Nest #3),Troy Denning,3.49,0345463056,9780345463050,eng,357,3852,55,12/27/2005,Del Rey Books +35413,Star Wars: Empire Volume 7: The Wrong Side of the War,Welles Hartley/Davide Fabbri/Christian Dalla Vecchia,3.79,1593077092,9781593077099,eng,144,109,7,1/30/2007,Dark Horse Books +35414,Allegiance (Star Wars),Timothy Zahn,3.99,0345477383,9780345477385,eng,324,6874,280,1/30/2007,Del Rey +35415,Creating the Worlds of Star Wars: 365 Days,John Knoll/J.W. Rinzler,4.13,0810959364,9780810959361,eng,744,87,10,10/1/2005,Harry N. Abrams +35417,Star Wars: Clone Wars Volume 1: The Defense of Kamino and Other Tales,John Ostrander/W. Haden Blackman,3.85,1569719624,9781569719626,eng,128,911,38,9/15/2003,Dark Horse Books +35419,The Making of Star Wars (Star Wars: The Making of #1),J.W. Rinzler/Peter Jackson,4.53,0345494768,9780345494764,eng,362,1198,95,4/24/2007,Del Rey +35421,Star Wars: The New Essential Guide to Weapons & Technology,W. Haden Blackman,4.08,0345449037,9780345449030,eng,224,211,7,10/26/2004,Del Rey +35422,The Star Wars Cookbook II: Darth Malt and More Galactic Recipes,Wesley Martin/Frankie Frankeny,3.86,0811828034,9780811828031,eng,60,205,15,7/1/2000,Chronicle Books +35424,You Can Draw: Star Wars,Bonnie Burton/Matt Busch/Tom Hodges,4.05,075662343X,9780756623432,eng,96,48,11,1/15/2007,DK Children +35425,Star Wars: Empire Volume 6: In the Shadows of Their Fathers,Thomas Andrews/Scott Allie,3.68,1593076274,9781593076276,eng,144,124,10,11/7/2006,Dark Horse Books +35426,Star Wars: The New Essential Guide to Vehicles & Vessels,W. Haden Blackman/Ian Fullwood,4.12,0345449029,9780345449023,eng,200,209,7,9/30/2003,Del Rey +35427,Star Wars: Knights of the Old Republic Vol. 1: Commencement (Star Wars: Knights of the Old Republic #1),John Jackson Miller/Travis Charest/Michael Atiyeh/Brian Ching/Travel Foreman,4.07,1593076401,9781593076405,eng,152,1791,100,12/5/2006,Dark Horse Comics +35428,The Star Wars Poster Book,Stephen J. Sansweet/Peter Vilmur,4.50,0811848833,9780811848831,eng,320,60,2,9/29/2005,Chronicle Books +35431,Star Wars: Clone Wars Volume 9: Endgame,John Ostrander/Welles Hartley/Jan Duursema,4.11,1593075537,9781593075538,eng,144,422,25,8/8/2006,Dark Horse Books +35432,Wookiee Cookies: A Star Wars Cookbook,Robin Davis/Frankie Frankeny,3.93,0811821846,9780811821841,eng,132,952,57,9/1/1998,Chronicle Books +35433,Star Wars: The New Essential Guide to Characters,Daniel Wallace/Michael Sutfin,3.98,0345449002,9780345449009,eng,224,365,3,4/23/2002,Del Rey +35434,The Star Wars Trilogy,George Lucas/Donald F. Glut/James Kahn,4.25,0345475828,9780345475824,eng,705,4365,138,8/31/2004,Del Rey +35437,Star Wars Tales Vol. 1,Dave Land/Peter David/Dave Cooper/Dan Jolley/Doug Wheatley/Tom Fowler/Kilian Plunkett/Sean Phillips/Ryder Windham/John Ostrander/Jan Duursema/Timothy Zahn/Darko Macan/Rich Handley/Igor Kordey/Ron Marz/Rich Hedden/Rick Leonardi/Claudio Castellini/Martin Egeland/Lovern Kindzierski/Chris Brunner/Peet Janes/Jim Woodring,3.89,1569716196,9781569716199,eng,220,932,36,1/27/2004,Dark Horse Books +35439,Complete Star Wars Trilogy Scrapbook Re-issue,David Levithan/Ryder Windham/Marc Cotta Vaz,3.14,0439681308,9780439681308,eng,64,7,1,10/1/2004,Scholastic Paperbacks +35440,Star Wars: Clone Wars Volume 6: On the Fields of Battle,John Ostrander/Jan Duursema,4.04,1593073526,9781593073527,eng,168,487,18,8/2/2005,Dark Horse Books +35441,Star Wars: Clone Wars Volume 8: The Last Siege the Final Truth,John Ostrander/Jan Duursema/Dan Parsons,4.10,1593074824,9781593074821,eng,144,424,20,4/11/2006,Dark Horse Books +35448,Star by Star (Star Wars: The New Jedi Order #9),Troy Denning,3.95,0099410389,9780099410386,eng,605,7740,108,10/3/2002,Arrow +35450,Star Wars: Episode III - Revenge of the Sith: The Visual Dictionary,James Luceno/John Goodson/Robert E. Barnes,4.16,0756611288,9780756611286,eng,64,748,18,4/2/2005,DK Children +35451,The Wildlife of Star Wars,Terryl Whitlatch/Bob Carrau,4.42,0811828697,9780811828697,eng,173,417,27,9/1/2001,Chronicle Books +35454,The Dharma of Star Wars,Matthew Bortolin,4.03,0861714970,9780861714971,eng,224,371,37,4/15/2005,Wisdom Publications +35455,Star Wars: Rebellion Vol. 1: My Brother My Enemy,Rob Williams/Michel Lacombe,3.94,1593077114,9781593077112,eng,128,518,23,2/27/2007,Dark Horse +35456,Star Wars: Empire Volume 1: Betrayal,Scott Allie/Ryan Benjamin/Curtis Arnold,3.82,1569719640,9781569719640,eng,96,621,32,8/5/2003,Dark Horse Books +35458,Revenge of the Sith (Star Wars: Novelizations #3),Matthew Woodring Stover/George Lucas,4.14,0345428838,9780345428837,eng,418,11804,671,4/2/2005,Lucas Books +35459,Star Wars: Revenge of the Sith Incredible Cross-Sections,Curtis Saxton/Hans Jenssen/Richard Chasemore,4.21,0756611296,9780756611293,eng,32,100,4,4/2/2005,DK Children +35460,Star Wars: Clone Wars Adventures Volume 6,W. Haden Blackman/Matt Fillbach/Shawn Fillbach/Ronda Pattison/Mike Kennedy/Stewart McKenney/Rick Lacy/Dan Jackson/Michael David Thomas/Joshua Elliott,3.78,1593075677,9781593075675,eng,88,176,10,8/23/2006,Dark Horse Books +35462,Star Wars: Empire Volume 5: Allies and Adversaries,Ron Marz/Jeremy Barlow/Brandon Badeaux,3.51,1593074662,9781593074661,eng,120,135,9,2/28/2006,Dark Horse Books +35465,Yoda: Dark Rendezvous,Sean Stewart,3.88,0345463099,9780345463098,eng,329,3972,116,11/23/2004,Del Rey +35474,Not a Genuine Black Man: Or How I Claimed My Piece of Ground in the Lily-White Suburbs,Brian Copeland,4.04,1401302335,9781401302337,eng,272,351,78,7/11/2006,Hachette Books +35475,Black Man of the Nile and His Family,Yosef A.A. Ben-Jochannan,4.53,0933121261,9780933121263,eng,442,185,8,11/22/1996,Black Classic Press +35476,Black Elk Speaks: Being the Life Story of a Holy Man of the Oglala Sioux,Black Elk/John G. Neihardt,4.13,0803283857,9780803283855,eng,270,10390,447,11/1/2004,Bison Books +35479,Ring of Fire (Ring of Fire Anthology #1),Eric Flint/David Weber/Mercedes Lackey/Dave Freer/Andrew Dennis/Virginia DeMarce/Loren K. Jones/S.L. Viehl/Anette M. Pedersen/Jonathan Cresswell/Scott Washburn/Deann Allen/Mike Turner/Greg Donahue/Walt Boyes/Jody Dorsett/K.D. Wentworth,3.90,1416509089,9781416509080,eng,722,1970,64,10/1/2005,Baen +35481,1635: The Cannon Law (Assiti Shards #8),Eric Flint/Andrew Dennis,3.76,1416509380,9781416509387,eng,420,1336,35,9/26/2006,Baen +35485,Five Rings of Fire (Able Team #11),Tom Arnett/Dick Stivers/Don Pendleton,3.64,0373612117,9780373612116,eng,0,39,2,2/23/1984,Gold Eagle +35488,Cash,Johnny Cash/Patrick Carr,4.07,0060727535,9780060727536,eng,310,17107,566,10/7/2003,HarperOne +35489,Johnny Cash,Michael Streissguth,3.79,0306813688,9780306813689,eng,334,285,25,9/4/2006,Da Capo Press +35491,Controversy Creates Cash,Eric Bischoff/Jeremy Roberts,3.62,141652729X,9781416527299,en-GB,389,1154,56,10/17/2006,World Wrestling Entertainment Books +35499,Side Effects,Amy Goldman Koss,3.87,1596432942,9781596432949,eng,144,904,179,10/3/2006,Roaring Brook Press +35514,Myths of Light: Eastern Metaphors of the Eternal (Collected Work),Joseph Campbell/David Kudler,4.43,1577314034,9781577314035,eng,224,345,17,5/16/2003,New World Library +35515,The Inner Reaches of Outer Space: Metaphor as Myth and as Religion (Collected Worksl),Joseph Campbell,4.22,1577312090,9781577312093,en-GB,160,971,49,1/9/2002,New World Library +35519,The Power of Myth,Joseph Campbell/Bill Moyers,4.29,0385418868,9780385418867,eng,320,38720,1451,6/1/1988,Anchor +35539,The Beatles: The Biography,Bob Spitz,4.15,0316013315,9780316013314,eng,983,9041,417,10/10/2005,Little Brown +35543,Here There and Everywhere: My Life Recording the Music of the Beatles,Geoff Emerick/Howard Massey/Elvis Costello,4.25,1592402690,9781592402694,eng,400,4381,255,3/1/2007,Avery Publishing Group +35547,The Beatles: 365 Days,Simon Wells,4.18,0810959119,9780810959118,eng,744,99,12,11/1/2005,Harry N. Abrams +35552,A Hard Day's Write: The Stories Behind Every Beatles Song,Steve Turner,4.18,0060844094,9780060844097,eng,224,156,10,10/18/2005,It Books +35553,Shout! The Beatles in Their Generation,Philip Norman,4.03,0743235657,9780743235655,eng,546,4624,137,2/15/2005,Fireside +35558,The Beatles Illustrated Lyrics,Alan Aldridge/The Beatles,4.26,157912058X,9781579120580,eng,272,1360,34,5/1/2005,Black Dog & Leventhal Publishers +35561,The Beatles' Story on Capitol Records Part Two: The Albums,Bruce Spizer,4.72,0966264924,9780966264920,eng,264,29,0,1/1/2010,Four Ninety-Eight Productions +35574,The Rough Guide to The Beatles,Chris Ingham,3.91,1843537206,9781843537205,eng,325,50,4,9/1/2006,Rough Guides +35578,The Beatles Complete - Updated Edition,The Beatles,4.47,0881885959,0073999960822,eng,303,64,0,12/1/1986,Hal Leonard Publishing Corporation +35581,The Love You Make: An Insider's Story of the Beatles,Peter Brown/Steven Gaines/Anthony DeCurtis,4.08,0451207351,9780451207357,eng,464,2491,110,11/5/2002,NAL +35592,Magic Circles: The Beatles in Dream and History,Devin McKinney,3.88,067401636X,9780674016361,eng,432,56,6,10/18/2004,Harvard University Press +35602,A Day in the Life: The Music and Artistry of the Beatles,Mark Hertsgaard,4.16,0385315171,9780385315173,eng,448,1116,46,3/1/1996,Delta +35633,Complete Beatles Chronicle The,Mark Lewisohn/Peter Guzzardi,4.39,0517581000,9780517581001,eng,365,19,0,9/22/1992,Harmony +35652,The Beatles Diary Vol 1: From Liverpool to London (Falk Symposium),Keith Badman/Keith Badman,4.56,0711983089,9780711983083,eng,376,13,0,2/1/2001,Omnibus Press +35655,Two of Us: The Story of a Father a Son and the Beatles,Peter J. Smith,3.53,0618251456,9780618251452,en-US,206,51,12,2/4/2004,Houghton Mifflin Harcourt +35666,A Hard Day's Write: The Stories Behind Every Beatles Song,Steve Turner,4.18,0062736981,9780062736987,eng,224,2072,100,11/1/1999,HarperResource +35668,The Beatles,Hunter Davies,4.10,0393328864,9780393328868,en-US,416,69,5,4/17/2006,W. W. Norton Company +35669,Complete Idiot's Guide to The Beatles,Richard Buskin/Allan Kozinn,3.73,0028621301,9780028621302,eng,384,15,2,12/1/1997,Alpha +35689,Beatles: Every Little Thing,Maxwell Mackenzie,3.83,0380796988,9780380796984,en-US,224,72,12,12/1/1998,It Books +35710,Margot Fonteyn,Meredith Daneman,4.03,0140165304,9780140165302,eng,704,256,17,8/4/2005,Penguin +35711,A General Theory of Love,Thomas Lewis/Fari Amini/Richard Lannon,4.11,0375709223,9780375709227,eng,288,3675,422,1/9/2001,Vintage +35722,Mad Cowboy: Plain Truth from the Cattle Rancher Who Won't Eat Meat,Howard F. Lyman/Glen Merzer,4.13,0684854465,9780684854465,en-US,224,1877,171,8/2/2001,Scribner +35724,The Life You Were Born to Live,Dan Millman,4.11,1567313981,9781567313987,eng,464,19,1,9/1/2000,MJF Books +35729,Lover Eternal (Black Dagger Brotherhood #2),J.R. Ward,4.35,0451218043,9780451218049,eng,464,155348,5325,3/7/2006,Signet +35735,The Silmarillion Volume 3,J.R.R. Tolkien/Martin Shaw,4.19,0553525026,9780553525021,eng,0,60,4,9/1/1998,Random House Audio +35750,Sodom and Gomorrah (In Search of Lost Time #4),Marcel Proust/C.K. Scott Moncrieff/Terence Kilmartin/D.J. Enright,4.35,0375753109,9780375753107,eng,784,377,66,2/16/1999,Modern Library Classics +35751,Swanns Way (In Search of Lost Time #1),Marcel Proust,4.14,0701137681,9780701137687,eng,534,19,1,10/1/1992,Chatto and Windus +35757,Missing Persons and Mistaken Identities: Women and Gender in Ancient Israel,Phyllis A. Bird,3.80,0800631285,9780800631284,eng,304,10,0,1/1/1997,Augsburg Fortress Publishing +35760,Mistaken Identity,Nayantara Sahgal,2.98,8172235224,9788172235222,eng,324,0,0,12/30/2016,Harper Collins +35781,The Skeptic's Dictionary: A Collection of Strange Beliefs Amusing Deceptions and Dangerous Delusions,Robert Todd Carroll,4.02,0471272426,9780471272427,eng,446,531,11,7/1/2003,Wiley +35786,The Bush Dyslexicon: Observations on a National Disorder,Mark Crispin Miller,3.56,0393322963,9780393322965,eng,370,209,19,6/17/2002,W. W. Norton Company +35787,Extraordinary Popular Delusions & the Madness of Crowds (Great Minds),Charles Mackay,3.88,1573928917,9781573928915,eng,724,33,4,5/1/2001,Prometheus Books +35790,Extraordinary Popular Delusions and the Madness of Crowds/Confusión de Confusiones (Marketplace Book),Martin S. Fridson/Charles Mackay/Joseph de La Vega,3.91,0471133124,9780471133124,en-GB,224,35,3,12/29/1995,Wiley +35792,The Crowd/Extraordinary Popular Delusions & the Madness of Crowds,Gustave Le Bon/Charles Mackay,3.93,0934380236,9780934380232,eng,288,406,24,11/1/1993,Wasendorf & Associates Inc +35805,The Capture (Guardians of Ga'Hoole #1),Kathryn Lasky,3.90,0439405572,9780439405577,eng,222,22125,1232,6/1/2003,Scholastic Paperbacks +35806,The Journey (Guardians of Ga'Hoole #2),Kathryn Lasky,4.00,0439405580,9780439405584,en-US,242,11354,404,9/1/2003,Scholastic Inc. +35807,The Rescue (Guardians of Ga'Hoole #3),Kathryn Lasky,4.07,0439405599,9780439405591,eng,198,10154,278,1/1/2004,Scholastic Inc. +35810,The Night Journey,Kathryn Lasky,3.77,0142403229,9780142403228,eng,160,279,57,3/17/2005,Puffin Books +35811,The Collected Stories of Arthur C. Clarke,Arthur C. Clarke,4.29,0312878605,9780312878603,eng,966,4150,138,1/14/2002,Tom Doherty Associates/Orb Books +35815,Sunstorm (A Time Odyssey #2),Arthur C. Clarke/Stephen Baxter,3.83,0345452518,9780345452511,eng,356,4049,154,2/28/2006,Del Rey Books +35819,Lair of the White Worm,Bram Stoker,2.86,0646418424,9780646418421,eng,120,2276,244,10/1/2002,Deodand Publishing +35822,Best Ghost and Horror Stories,Bram Stoker/Richard Dalby,3.52,0486297160,9780486297163,eng,272,55,7,11/2/2011,Dover Publications +35825,The Blonde on the Street Corner,David Goodis,3.71,1852424478,9781852424473,en-US,155,284,26,1/15/1998,Serpent's Tail +35826,Of Tender Sin,David Goodis/Adrian Wootton,3.69,1852426748,9781852426743,en-US,181,150,24,2/16/2001,Serpent's Tail +35827,The Moon in the Gutter,David Goodis/Adrian Wootton,3.65,1852424494,9781852424497,en-US,183,350,40,12/8/1998,Serpent's Tail +35835,Dear Peter Rabbit,Alma Flor Ada/Leslie Tryon,4.13,1416912339,9781416912330,en-US,32,7,0,1/1/2006,Aladdin Paperbacks +35846,The Chocolate-Covered Contest (Nancy Drew #151),Carolyn Keene,3.89,067103443X,9780671034436,en-US,160,520,17,9/1/1999,Aladdin +35848,Ghost Stories (Nancy Drew),Carolyn Keene,3.75,0671691325,9780671691325,eng,160,337,12,10/1/1989,Aladdin +35860,The Humor of the American Cowboy,Stan Hoig/Nick Eggenhofer,3.43,0803273592,9780803273597,eng,200,3,1,7/1/2006,Bison Books +35870,Ghost in the Shell (Ghost in the Shell #1),Masamune Shirow,4.18,1593072287,9781593072285,eng,350,8456,302,6/20/2006,Dark Horse Comics +35875,Ghost in the Shell,Masamune Shirow,4.18,1845760182,9781845760182,en-GB,368,61,3,2/25/2005,Titan +35878,Ghost in the Shell 2: Innocence: After The Long Goodbye,Masaki Yamada/Yuji Oniki/Carl Gustav Horn/Daigo Shinma/Keita Saeki/Mamoru Oshii/Shinji Maki,3.97,1421513943,9781421513942,eng,196,21,3,7/17/2007,VIZ Media LLC +35880,At the Edge (Psychic Triplet Trilogy #1),Cait London,3.79,0061140503,9780061140501,en-US,384,273,21,5/29/2007,Avon +35882,Tallchief: The Hunter (The Tallchiefs #9),Cait London,4.12,0373764197,9780373764198,eng,192,47,1,1/25/2002,Silhouette Desire +35886,With Her Last Breath,Cait London,3.66,006000181X,9780060001810,en-US,384,112,11,6/24/2003,Avon +35888,Tallchief For Keeps (The Tallchiefs #3),Cait London,4.20,0373483376,9780373483372,eng,296,65,2,12/25/1996,Silhouette +35895,The Sgt. Rock Archives Vol. 3,Robert Kanigher/Joe Kubert/Russ Heath/Mark Chiarello/Jerry Grandinetti/Irv Novack,4.47,1401204104,9781401204105,eng,224,19,2,8/1/2005,DC Comics +35896,The Sgt. Rock Archives Vol. 1,Robert Kanigher/Bob Haney/Joe Kubert/Jerry Grandinetti,4.20,1563898411,9781563898419,eng,240,47,1,5/1/2002,DC Comics +35903,Sgt. Rock: The Prophecy,Joe Kubert,3.47,1401212484,9781401212483,en-US,144,76,11,4/7/2007,DC Comics +35907,Sgt. Frog Vol. 13 (Sgt. Frog #13),Mine Yoshizaki,4.23,1427802114,9781427802118,eng,192,77,1,6/1/2007,TokyoPop +35908,The Elements of Style,William Strunk Jr./E.B. White,4.19,0024181900,9780024181909,en-US,85,217,16,12/12/1991,MacMillan Publishing Company +35921,On Basilisk Station (Honor Harrington #1),David Weber,4.13,1416509372,9781416509370,eng,458,33456,1424,7/26/2005,Baen Books +35924,The Lure of the Basilisk (The Lords of Dûs #1),Lawrence Watt-Evans,3.71,1587155877,9781587155871,eng,208,493,17,11/1/2001,Wildside Press +35925,Love Smart: Find the One You Want--Fix the One You Got,Phillip C. McGraw,3.56,074329243X,9780743292436,en-US,283,817,73,12/26/2006,Free Press +35926,Love Smart: Find the One You Want--Fix the One You Got,Phillip C. McGraw,3.56,0743272099,9780743272094,en-US,284,69,14,12/6/2005,Free Press +35927,Smart Love,Martha Heineman Pieper/William J. Pieper,3.91,1558321829,9781558321823,eng,272,97,10,5/1/2001,Harvard Common Press +35958,Sagwa the Chinese Siamese Cat,Amy Tan/Gretchen Schields,4.03,0689846177,9780689846175,eng,40,995,57,9/1/2001,Aladdin Paperbacks +35959,The Bonesetter's Daughter,Amy Tan,3.99,0006550436,9780006550433,eng,352,437,49,10/1/2004,Harper Perennial +35963,The Opposite of Fate,Amy Tan,3.92,0007170408,9780007170401,eng,398,172,11,7/1/2004,Harper Perennial +35975,Bonesetter's Daughter,Amy Tan/Joan Chen,3.99,1597770760,9781597770767,eng,11,177,49,1/1/2006,Phoenix Audio +35983,The Horizontal World: Growing Up Wild in the Middle of Nowhere,Debra Marquart,3.77,1582433453,9781582433455,en-US,270,387,76,6/13/2006,Counterpoint LLC +35986,Horizontal Gene Transfer,Michael Syvanen/Clarence I. Kado,4.00,0126801266,9780126801262,eng,445,0,0,1/16/2002,Academic Press +35987,The Greek Islands,Lawrence Durrell,3.89,0571214266,9780571214266,eng,332,25,3,4/8/2002,Faber & Faber +35988,The Avignon Quintet: Monsieur Livia Constance Sebastian and Quinx,Lawrence Durrell,4.07,0571225551,9780571225552,en-US,1376,287,23,11/1/2004,Faber & Faber +35991,Through the Dark Labyrinth: A Biography of Lawrence Durrell,Gordon Bowker,3.83,0312172257,9780312172251,eng,480,39,7,12/31/1997,St. Martin's Press +35997,Clear Light of Day,Anita Desai,3.68,0618074511,9780618074518,eng,183,2262,144,9/12/2000,Mariner Books +36004,In Custody,Anita Desai,3.33,0140238131,9780140238136,eng,204,1021,81,8/1/1994,Penguin Books Ltd +36005,Baumgartner's Bombay,Anita Desai,3.47,0618056807,9780618056804,eng,240,666,49,5/19/2000,Mariner Books +36023,Tim Burton: Interviews,Kristian Fraga,4.26,1578067596,9781578067596,eng,192,103,7,1/22/2010,University Press of Mississippi +36025,Mysteries,Colin Wilson,4.08,1842931857,9781842931851,eng,672,354,15,7/28/2006,Watkins +36028,The Occult: A History,Colin Wilson,3.91,0394718135,9780394718132,eng,606,36,7,2/12/1973,Vintage/Random House Inc. (NYC) +36047,Exemplary Novels IV: Lady Cornelia the Deceitful Marriage the Dialogue of the Dogs,Miguel de Cervantes Saavedra/John Macklin,4.20,0856684988,9780856684982,eng,167,4,2,1/1/1992,Aris & Phillips +36048,In the Royal Manner : Expert Advice on Etiquette and Entertaining from the Former Butler to Diana Princess of Wales,Paul Burrell,3.64,044652641X,9780446526418,eng,144,47,3,12/14/2008,Warner Books +36060,Because the Night (Lloyd Hopkins #2),James Ellroy,3.48,1400095298,9781400095292,eng,288,1085,42,10/18/2005,Vintage +36062,Crime Wave: Reportage and Fiction from the Underside of L.A.,James Ellroy/Art Cooper,3.59,037570471X,9780375704710,en-US,288,1752,50,1/26/1999,Vintage Crime/Black Lizard +36063,Suicide Hill (Lloyd Hopkins #3),James Ellroy,3.53,1400095301,9781400095308,eng,288,1004,39,8/8/2006,Vintage +36064,American Tabloid (Underworld USA #1),James Ellroy,4.21,037572737X,9780375727375,eng,592,11787,639,4/24/2001,Vintage/Random House (NY) +36067,Your Cheatin' Heart,Nancy Bartholomew,3.69,0061014095,9780061014093,eng,336,72,5,2/2/2000,HarperTorch +36071,First Things First,Stephen R. Covey/A. Roger Merrill/Rebecca R. Merrill,4.10,0684802031,9780684802039,eng,384,33724,350,1/17/1996,Free Press +36072,The 7 Habits of Highly Effective People: Powerful Lessons in Personal Change,Stephen R. Covey/Jim Collins,4.10,0743269519,9780743269513,eng,372,431987,7024,11/9/2004,Free Press +36076,The Speed of Trust: The One Thing that Changes Everything,Stephen M.R. Covey,3.99,074329730X,9780743297301,eng,384,17073,528,10/17/2006,Free Press +36085,Everything Bad is Good for You,Steven Johnson,3.50,1594481946,9781594481949,en-US,254,4027,463,5/2/2006,Riverhead Books +36086,The Ghost Map: The Story of London's Most Terrifying Epidemic—and How It Changed Science Cities and the Modern World,Steven Johnson,3.90,1594489254,9781594489259,eng,299,32723,2855,11/1/2006,Riverhead Books +36128,The Fountains of Paradise,Arthur C. Clarke,3.96,0151327734,9780151327737,eng,245,117,17,1/1/1979,Harcourt Brace Jovanovich (NY) +36137,Bad Dreams,Kim Newman,3.16,0786702273,9780786702275,en-US,280,151,13,4/25/1995,Running Press +36140,Strawberry Days: How Internment Destroyed a Japanese American Community,David Neiwert,4.00,140396792X,9781403967923,eng,288,55,5,6/4/2005,St. Martin's Press +36154,The Price of Glory (Saga of the Gray Death Legion #3),William H. Keith Jr.,3.89,1555600387,9781555600389,eng,321,445,6,10/1/1987,FASA Corp. +36157,Feast of Souls (The Magister Trilogy #1),C.S. Friedman,3.89,0756404320,9780756404321,en-US,464,4240,208,1/2/2007,DAW +36158,In Conquest Born (In Conquest Born #1),C.S. Friedman,3.88,0756400430,9780756400439,eng,530,2467,132,11/1/2001,DAW +36159,Black Sun Rising (The Coldfire Trilogy #1),C.S. Friedman,3.93,0756403146,9780756403140,en-US,496,15607,487,9/6/2005,Daw Books +36160,Crown of Shadows (The Coldfire Trilogy #3),C.S. Friedman,4.17,0756403189,9780756403188,en-US,432,101,7,11/1/2005,DAW +36161,The Madness Season,C.S. Friedman,4.05,0886774446,9780886774448,eng,495,2459,95,10/3/1990,DAW Books Inc +36162,This Alien Shore,C.S. Friedman,4.04,0886777992,9780886777999,en-US,564,3147,197,7/1/1999,DAW +36190,Whirlpool,Elizabeth Lowell/Ann Maxwell,3.78,0060511133,9780060511135,eng,448,1143,63,10/31/2006,Avon +36191,Reckless Love (MacKenzie-Blackthorn #1),Elizabeth Lowell,3.80,0373772521,9780373772520,eng,384,1101,45,12/26/2006,Harlequin +36193,Warrior (MacKenzie-Blackthorn #5),Elizabeth Lowell,3.91,1551669048,9781551669045,eng,256,865,28,4/24/2002,MIRA +36195,Only Mine (Only Series #2),Elizabeth Lowell,3.92,0380763397,9780380763399,en-US,400,2209,79,5/27/2003,Avon +36197,The Secret Sister,Ann Maxwell/Elizabeth Lowell,3.65,0060511109,9780060511104,eng,416,1181,48,10/25/2005,Avon +36198,Tell Me No Lies,Elizabeth Lowell,3.99,0373771258,9780373771257,en-US,576,2221,65,1/31/2006,HQN +36203,Sweet Rosie O'Grady,Joan Jonker,4.48,0747253749,9780747253747,eng,416,128,8,3/13/1997,Headline +36216,Fergus and the Night-Demon,Jim Murphy/John Manders,3.69,0618339558,9780618339556,en-US,32,81,18,9/18/2006,Clarion Books +36244,The Secret on Ararat (Babylon Rising #2),Tim LaHaye/Bob Phillips,4.23,0553586076,9780553586077,eng,416,3153,70,11/28/2006,Bantam +36252,Avalon,Anya Seton/Philippa Gregory,3.87,1556526008,9781556526008,en-US,440,2857,158,5/1/2006,Chicago Review Press +36253,The Winthrop Woman,Anya Seton/Philippa Gregory,4.09,155652644X,9781556526442,en-US,588,4258,326,9/1/2006,Chicago Review Press +36255,The Hearth and Eagle,Anya Seton,3.89,0449236412,9780449236413,eng,476,569,26,9/12/1980,Fawcett +36259,Media Unlimited: How the Torrent of Images & Sounds Overwhelms Our Lives,Todd Gitlin,3.55,0805072837,9780805072839,en-US,256,112,11,1/6/2003,Picador +36260,The Whole World is Watching: Mass Media in the Making and Unmaking of the New Left with a New Preface,Todd Gitlin,3.73,0520239326,9780520239326,en-US,352,83,6,5/1/2003,University of California Press +36261,The Sixties: Years of Hope Days of Rage,Todd Gitlin,3.73,0553372122,9780553372120,en-US,544,475,42,7/1/1993,Bantam Books (NY) +36262,The Intellectuals and the Flag,Todd Gitlin,3.59,0231124929,9780231124928,en-US,167,2,1,1/1/2006,Columbia University Press +36264,The Whole World Is Watching: Mass Media in the Making & Unmaking of the New Left,Todd Gitlin,3.73,0520040244,9780520040243,eng,344,10,1,10/15/1981,University of California Press +36266,Magical Creatures (Easy To Read! Easy To Draw!),Joan Holub/Dana Regan,3.00,0843104368,9780843104363,eng,48,1,0,10/27/2003,Price Stern Sloan +36268,The Pizza That We Made,Joan Holub/Lynne Avril Cravath,3.54,0142300195,9780142300190,en-US,32,60,12,9/10/2001,Penguin Young Readers +36303,'Salem's Lot,Stephen King,4.02,0451139690,9780451139696,eng,427,186,22,8/1/1976,Signet +36310,The Portable Edgar Allan Poe,Edgar Allan Poe/J. Gerald Kennedy,4.31,0143039911,9780143039914,eng,672,234,20,9/28/2006,Penguin Books +36311,Great Short Works,Edgar Allan Poe/Gary Richard Thompson,4.26,006083093X,9780060830939,en-US,576,683,13,11/28/1970,Harper Perennial +36313,Tales,H.P. Lovecraft/Peter Straub,4.34,1931082723,9781931082723,eng,838,2525,174,2/3/2005,Library of America +36314,Tales of H.P. Lovecraft,H.P. Lovecraft/Joyce Carol Oates,4.19,0060957905,9780060957902,eng,352,5300,137,9/19/2000,Ecco +36315,The Best of H.P. Lovecraft: Bloodcurdling Tales of Horror and the Macabre,H.P. Lovecraft/August Derleth/Robert Bloch,4.31,0345350804,9780345350800,eng,406,26857,545,10/29/2002,Ballantine Books +36316,The Doom That Came to Sarnath and Other Stories,H.P. Lovecraft/Lin Carter,4.12,0345331052,9780345331052,eng,208,2774,65,9/13/1991,Del Rey +36317,The Transition of H. P. Lovecraft: The Road to Madness,H.P. Lovecraft/Barbara Hambly,4.30,0345384229,9780345384225,eng,379,9518,93,10/1/1996,Del Rey +36319,The Art of H.P. Lovecraft's the Cthulhu Mythos,Pat Harrigan/Brian Wood/Jeremy McHugh,4.05,1589943074,9781589943070,eng,191,140,9,10/31/2006,Fantasy Flight Games +36321,The Dream Cycle of H.P. Lovecraft: Dreams of Terror and Death,H.P. Lovecraft/E. Hoffmann Price/Neil Gaiman,4.23,0345384210,9780345384218,eng,387,6253,160,2/25/2003,Del Rey +36333,Loving Will Shakespeare,Carolyn Meyer,3.47,0152054510,9780152054519,eng,265,1361,166,10/1/2006,Harcourt Children's Books +36334,Doomed Queen Anne (Young Royals #3),Carolyn Meyer,3.87,0152050868,9780152050863,eng,240,3547,195,5/1/2004,HMH Books for Young Readers +36336,Patience Princess Catherine (Young Royals #4),Carolyn Meyer,3.79,0152054472,9780152054472,en-US,208,2227,119,1/1/2009,HMH Books for Young Readers +36338,Marie Dancing,Carolyn Meyer,3.76,0152051163,9780152051167,eng,272,1085,77,10/1/2005,HMH Books for Young Readers +36340,Isabel: Princesa De Castilla España 1466,Carolyn Meyer/Carme Camps Monf,3.71,8478886745,9788478886746,spa,184,8,0,10/3/2001,Salamandra +36348,Monte Cook Presents The Year's Best D20 (Volume One),Monte Cook,4.20,1588467988,9781588467980,eng,96,5,1,8/15/2005,Malhavoc Press +36361,1848: The Revolution of the Intellectuals,Lewis B. Namier/James Joll,3.11,0197261116,9780197261118,eng,144,15,0,3/12/1992,British Academy +36368,Suddenly Daddy (Suddenly #1),Loree Lough,3.78,0373870280,9780373870288,eng,256,37,1,4/24/1998,Love Inspired +36397,Great Short Stories by American Women,Candace Ward,3.96,0486287769,9780486287768,eng,208,306,35,2/5/1996,Dover Publications Inc. +36399,Children's Christmas Stories and Poems: In Easy-to-Read Type,Bob Blaisdell/Pat Ronson Stewart,4.50,0486286568,9780486286563,eng,96,2,0,11/17/2011,Dover Publications +36402,The Governess; or The Little Female Academy,Sarah Fielding/Candace Ward,2.63,1551114127,9781551114125,eng,242,132,18,9/26/2005,Broadview Press Inc +36421,The Star-Spangled Banner (Symbols of America),Debra Hess,4.00,0761417109,9780761417101,eng,40,1,0,1/1/2003,Cavendish Square Publishing +36422,The Liberty Bell (Symbols of America),Debra Hess,3.83,0761417133,9780761417132,eng,40,4,0,1/1/2003,Cavendish Square Publishing +36423,The Statue of Liberty (Symbols of America),Debra Hess,4.00,0761417079,9780761417071,eng,40,1,0,1/1/2003,Cavendish Square Publishing +36424,The White House (Symbols of America),Debra Hess,4.00,0761417125,9780761417125,eng,40,3,2,1/1/2004,Cavendish Square Publishing +36425,The American Flag (Symbols of America),Debra Hess,4.00,0761417095,9780761417095,eng,39,3,0,1/1/2004,Cavendish Square Publishing +36434,Touched with Fire: Manic-Depressive Illness and the Artistic Temperament,Kay Redfield Jamison,4.02,068483183X,9780684831831,en-US,384,4209,199,10/18/1996,Free Press +36438,Manic-Depressive Illness: Bipolar Disorders and Recurrent Depression,Frederick K. Goodwin/Kay Redfield Jamison,4.40,0195135792,9780195135794,en-GB,1262,107,3,3/1/2007,Oxford University Press USA +36447,The Bone Yard,Paul J. Mikol/Dean Koontz/F. Paul Wilson/Sheri S. Tepper/Ray Garton,4.01,0425127265,9780425127261,eng,329,265,4,5/1/1991,Berkley +36450,Dracula Was a Woman: In Search of the Blood Countess of Transylvania,Raymond T. McNally,3.52,0070456712,9780070456716,eng,254,155,25,6/1/1987,McGraw-Hill Companies +36461,Proof of Concept,Larry Young/Damian Couceiro/Kieron Dwyer,3.00,1932051295,9781932051292,eng,134,6,1,1/18/2005,AIT Planet Lar +36475,Wonderful Life: The Burgess Shale and the Nature of History,Stephen Jay Gould,4.12,039330700X,9780393307009,eng,352,8207,179,9/17/1990,W. W. Norton & Company +36489,Justice Oliver Wendell Holmes: Law and the Inner Self,G. Edward White,3.67,0195101286,9780195101287,eng,648,17,2,12/19/1995,Oxford University Press USA +36492,Oliver Wendell Holmes in Paris: Medicine Theology and the Autocrat of the Breakfast Table,William C. Dowling,5.00,1584655801,9781584655800,eng,179,1,1,2/28/2007,University Press of New England +36505,Evermore,James Robert Smith/Stephen Mark Rainey/Joel Lane/Gary Fry/John Morressy/Kealan Patrick Burke/Manly Wade Wellman/Fred Chappell/Charlee Jacob/F. Gwynplaine MacIntyre/Steve Rasnic Tem/Thomas F. Monteleone/Rick Hautala/Melanie Tem/Trey R. Baker/Ken Goldman/Vincent Starrett/Tom Piccirilli,3.31,0870541854,9780870541858,eng,237,16,3,10/1/2006,Arkham House Publishers +36507,The Azathoth Cycle: Tales of the Blind Idiot God,Robert M. Price/Edward Pickman Derby/Peter Cannon/Stephen Mark Rainey/Lin Carter/Henry Kuttner/Ramsey Campbell/Thomas Ligotti/Richard L. Tierney/Gary Myers/Donald R. Burleson/C.J. Henderson/Stephen Studach/John Glasby/Allen Mackey,3.75,1568820402,9781568820408,eng,260,124,6,3/1/1995,Chaosium +36522,Rethinking the Economics of War: The Intersection of Need Creed and Greed,Cynthia J. Arnson/I. William Zartman,3.50,0801882982,9780801882982,eng,320,10,0,9/8/2005,Woodrow Wilson Center Press / Johns Hopkins University Press +36530,Narrative of the Life of Frederick Douglass: An American Slave Written by Himself,Frederick Douglass/David W. Blight,4.02,0312257376,9780312257378,eng,188,501,36,12/25/2002,Bedford Books +36532,Narrative of the Life of Frederick Douglass: An American Slave,Frederick Douglass/Gregory Stephens/Peter J. Gomes,4.02,0451529944,9780451529947,eng,144,438,50,6/7/2005,Signet Book +36533,Narrative of the Life of Frederick Douglass: An American Slave Written by Himself,Frederick Douglass,4.02,074348777X,9780743487771,eng,208,63,7,11/1/2004,Simon Schuster +36535,Autobiographies: Narrative of the Life of Frederick Douglass / My Bondage and My Freedom / Life and Times of Frederick Douglass,Frederick Douglass/Henry Louis Gates Jr.,4.35,0940450798,9780940450790,eng,1132,504,36,2/1/1994,Library of America +36536,Narrative of the Life of Frederick Douglass an American Slave / Incidents in the Life of a Slave Girl,Frederick Douglass/Harriet Ann Jacobs/Kwame Anthony Appiah,4.01,0345478231,9780345478238,eng,464,986,93,12/28/2004,Modern Library +36550,Antes que anochezca,Reinaldo Arenas,4.17,8483105020,9788483105023,spa,343,427,35,2/28/2008,TusQuets +36555,Hallucinations: or The Ill-Fated Peregrinations of Fray Servando,Reinaldo Arenas/Andrew Hurley/Thomas Colchie,4.09,0142000191,9780142000199,en-US,288,187,8,12/31/2001,Penguin Books +36556,The Assault,Reinaldo Arenas/Andrew Hurley/Thomas Colchie,3.79,0140157182,9780140157185,eng,176,139,12,6/1/1995,Penguin Books +36567,Cold As Ice (Ice #2),Anne Stuart,3.81,0778323560,9780778323563,eng,360,3328,246,10/24/2006,Mira Books +36568,Shadow Lover,Anne Stuart,3.81,0451408691,9780451408693,eng,320,1143,93,3/1/1999,Onyx +36569,Ice Blue (Ice #3),Anne Stuart,3.94,0778324788,9780778324782,eng,378,3215,197,3/27/2007,Mira Books +36570,The Devil's Waltz,Anne Stuart,3.74,0778322734,9780778322733,eng,363,1275,87,1/24/2006,Mira +36571,Shadows At Sunset,Anne Stuart,3.63,1551665719,9781551665719,eng,384,762,38,8/25/2000,MIRA +36572,To Love a Dark Lord,Anne Stuart,3.82,0380776049,9780380776047,eng,409,1245,95,2/24/1994,Avon Books +36573,Ritual Sins,Anne Stuart,3.68,0451192524,9780451192523,eng,396,682,67,10/1/1997,Onyx +36575,Prince of Magic,Anne Stuart,3.64,082176053X,9780821760536,eng,348,260,17,12/1/1998,Zebra +36598,Bound for Oregon,Jean Van Leeuwen/James Watling/R.W. Alley,3.80,0140383190,9780140383195,eng,176,862,92,11/1/1996,Puffin Books +36606,Oliver and Albert Friends Forever (Easy-to-Read Puffin),Jean Van Leeuwen/Ann Schweninger,3.61,0142300845,9780142300848,eng,48,23,2,3/18/2002,Puffin +36609,Midnight Brunch (Casa Dracula #2),Marta Acosta,3.80,1416520392,9781416520399,en-US,336,919,82,4/24/2007,Gallery Books +36636,Midnight Is a Place,Joan Aiken,3.92,0618196250,9780618196258,en-US,304,857,61,10/28/2002,HMH Books for Young Readers +36637,Black Hearts in Battersea (The Wolves Chronicles #2),Joan Aiken/Edward Gorey,4.13,0395971284,9780395971284,en-US,240,3626,145,10/25/1999,HMH Books for Young Readers +36639,A Small Pinch of Weather,Joan Aiken,4.26,0006754899,9780006754893,eng,239,122,11,1/1/2000,HarperCollins Publishers +36641,The Cuckoo Tree (The Wolves Chronicles #6),Joan Aiken,4.04,0618070230,9780618070237,eng,304,878,44,9/25/2000,HMH Books for Young Readers +36644,Nightbirds on Nantucket (The Wolves Chronicles #3),Joan Aiken,4.13,0395971853,9780395971857,eng,218,1946,96,10/25/1999,HMH Books for Young Readers +36652,Seminole Song,Vella Munn,3.71,0812538838,9780812538830,eng,320,46,11,3/15/1998,Forge +36664,Mary Engelbreit's Home Companion,Charlotte Lyons/Mary Engelbreit/Barbara E. Martin,4.12,0836246217,9780836246216,eng,128,60,2,8/1/1994,Andrews McMeel Publishing +36665,Mary Engelbreit's Mother Goose: One Hundred Best-Loved Verses,Mary Engelbreit/Leonard S. Marcus,4.37,0060081716,9780060081713,en-US,128,567,50,9/20/2005,HarperCollins +36666,Save the Date: A Spirituality of Dating Love Dinner and the Divine,Jason King,3.60,0824521234,9780824521233,eng,191,5,1,9/1/2003,Crossroad Publishing Company +36667,Killing the Imposter God: Philip Pullman's Spiritual Imagination in His Dark Materials,Donna Freitas/Jason Edward King,3.67,0787982377,9780787982379,en-GB,224,42,12,9/1/2007,Jossey-Bass +36677,Teaching the World's Children: ESL for Ages Three to Seven (The Pippin Teacher's Library),Mary Ashworth/H. Patricia Wakefield,3.40,0887511120,9780887511127,eng,101,5,3,5/13/2004,Pippin Publishing +36679,Seven Miles a Second,David Wojnarowicz/James Romberger/Marguerite Van Cook,4.04,1563892472,9781563892479,eng,59,84,6,5/1/1996,DC Comics +36681,Drop The Rock: Removing Character Defects - Steps Six and Seven,Bill Pittman/Todd W. Hall/Sara S./Todd W.,4.44,1592851614,9781592851614,en-US,132,955,41,2/11/2005,Hazelden Publishing +36706,The Oxford Dictionary of Quotations,Elizabeth Knowles,4.20,0198601735,9780198601739,en-US,1536,37,2,11/25/1999,Oxford University Press USA +36715,Liberty Before Liberalism,Quentin Skinner,3.90,0521638763,9780521638760,eng,156,131,10,1/13/1998,Cambridge University Press +36717,The Return of Grand Theory in the Human Sciences,Quentin Skinner,3.88,0521398339,9780521398336,en-US,224,31,3,9/13/1990,Cambridge University Press +36768,Symptomatic,Danzy Senna,3.32,1594480672,9781594480676,eng,220,523,65,2/1/2005,Riverhead Books +36775,Tales of Magick: Dark Adventure,Phil Brucato/Aaron Rosenberg,3.45,1565044045,9781565044043,eng,96,38,2,12/10/1999,White Wolf Games Studio +36822,Doctor Tandy's First Guide to Life Extension and Transhumanity,Charles Tandy/Raël/William Faloon/R. Michael Perry/Robin Hanson/Nick Bostrom/Robert A. Freitas Jr./Christopher J. Phoenix/Avatar Polymorph/Jim Yount,4.00,1581126506,9781581126501,eng,292,3,0,12/28/2001,Universal Publishers +36853,Tyrannosaurus Wrecks (Stanley #1),Laura Driscoll/Alisa Klayman-Grodsky/Eric Weiner,5.00,0786845031,9780786845033,eng,24,2,1,2/1/2003,Disney Press +36859,Bailando al rescate (Dora La Exploradora),Dave Aikins/Laura Driscoll,3.47,1416915044,9781416915041,spa,24,2,0,9/1/2005,Libros para ninos +36865,Richard Kern Action,Richard Kern/Dian Hanson,3.84,3822856495,9783822856499,eng,280,13,0,2/1/2007,Taschen +36893,On Film (Thinking in Action),Stephen Mulhall,3.90,0415247969,9780415247962,eng,152,37,1,12/23/2001,Routledge +36904,Warren G. Harding (The American Presidents #29),John W. Dean/Arthur M. Schlesinger Jr.,3.73,0805069569,9780805069563,eng,202,764,82,1/7/2004,Times Books +36925,Prince of the City,Keith Herber,3.56,1565048202,9781565048201,eng,317,58,0,3/1/1995,White Wolf Games Studio +36926,Spawn of Azathoth: Herald of the End of Time (Call of Cthulhu RPG),Keith Herber,3.79,1568821786,9781568821788,eng,197,22,1,5/1/2005,Chaosium +36946,Random House Crossword Mega Omnibus Volume 1,United Feature Syndication,0.00,081292763X,9780812927634,eng,336,0,0,7/22/1997,Random House Puzzles & Games +36952,Chester,Syd Hoff,3.74,0064440958,9780064440950,eng,64,196,31,4/18/1986,HarperCollins +36953,Stanley,Syd Hoff,3.61,0060225351,9780060225353,eng,64,8,1,12/31/1992,HarperCollins Publishers +36956,Grizzwold,Syd Hoff,3.82,0064440575,9780064440578,eng,64,214,23,9/5/1984,HarperCollins +36958,Captain Cat,Syd Hoff,3.65,0064441768,9780064441766,eng,48,110,15,4/22/1994,HarperCollins +37003,Once Upon a Gulf Coast Summer,Susan Oliver,3.44,0805427775,9780805427776,en-US,368,36,9,1/15/2004,B Fiction +37023,Margaret Atwood's Power: Mirrors Reflections and Images in Select Fiction and Poetry,Shannon Hengen,3.43,092900549X,9780929005492,eng,176,7,1,10/6/1993,Sumach Press +37024,The Bears on Hemlock Mountain,Alice Dalgliesh/Helen Sewell,3.79,0689716044,9780689716041,eng,58,2164,147,10/31/1992,Aladdin +37027,Hoodwinked,Quentin Carter,4.43,0976234963,9780976234968,en-US,277,976,30,9/1/2005,Triple Crown Publications +37032,The Risk of Darkness (Simon Serrailler #3),Susan Hill,3.95,0701179791,9780701179793,eng,320,3060,264,7/1/2006,Chatto & Windus +37033,The Pure in Heart (Simon Serrailler #2),Susan Hill,3.92,0701176814,9780701176815,en-GB,370,45,10,6/2/2005,Chatto Windus +37034,The Woman in Black,Susan Hill/John Lawrence,3.71,1567921892,9781567921892,eng,138,31467,3061,12/1/2001,David R. Godine Publisher +37036,The Pure in Heart (Simon Serrailler #2),Susan Hill,3.92,0099462109,9780099462101,eng,320,4245,347,6/1/2006,Vintage +37040,The Various Haunts of Men (Simon Serrailler #1),Susan Hill,3.82,1585678767,9781585678761,eng,438,8361,819,4/19/2007,Harry N. Abrams +37043,Septem Quae Supersunt Tragoediae,Aeschylus/Denys L. Page,4.10,0198145705,9780198145707,grc,352,6,0,1/11/1973,Clarendon Press +37051,鋼の錬金術師 1 [Hagane no Renkinjutsushi 1] (Fullmetal Alchemist #1),Hiromu Arakawa,4.50,4757506201,9784757506206,jpn,180,56,10,1/20/2002,ガンガンコミックス +37052,鋼の錬金術師 4 (Fullmetal Alchemist #4),Hiromu Arakawa,4.55,4757508557,9784757508552,jpn,184,20,2,1/20/2003,ガンガンコミックス +37053,鋼の錬金術師 5 (Fullmetal Alchemist #5),Hiromu Arakawa,4.56,4757509669,9784757509665,jpn,188,20,1,6/21/2003,ガンガンコミックス +37054,鋼の錬金術師 3 (Fullmetal Alchemist #3),Hiromu Arakawa,4.56,4757507917,9784757507913,jpn,182,22,2,9/21/2002,ガンガンコミックス +37055,鋼の錬金術師 8 (Fullmetal Alchemist 8),Hiromu Arakawa,4.57,4757512309,9784757512306,jpn,192,22,1,7/22/2004,ガンガンコミックス +37057,Love's Executioner And Other Tales Of Psychotherapy,Irvin D. Yalom,4.21,0140128468,9780140128468,eng,270,226,17,1/31/1995,Penguin Books +37058,The Brothers Karamazov,Fyodor Dostoyevsky/Thomas R. Beyer Jr./Simon Vance,4.32,1596440783,9781596440784,eng,16,3,1,5/1/2005,Hovel Audio +37060,Old Filth (Old Filth #1),Jane Gardam,3.93,1933372133,9781933372136,eng,290,10337,1619,6/1/2006,Europa Editions +37061,Filth,Irvine Welsh,3.73,0099284294,9780099284291,eng,393,148,17,7/1/1999,Vintage +37063,The Gospel of Filth: A Bible of Decadence & Darkness,Gavin Baddeley/Dani Filth,4.45,9781903254,9781903254387,eng,544,114,6,2/5/2010,Fab Press +37064,Divine Filth: Lost Writings (Modern Classics),Georges Bataille,3.88,1840681128,9781840681123,eng,160,76,2,9/15/2004,Creation Books +37066,Filth: Dirt Disgust and Modern Life,William A. Cohen,4.08,0816643008,9780816643004,eng,360,11,0,12/15/2004,Univ Of Minnesota Press +37067,Pink Flamingos and Other Filth: Three Screenplays,John Waters,4.21,1560257016,9781560257011,eng,258,48,3,4/7/2005,Running Press +37070,Let It Be Love (Effingtons #11),Victoria Alexander,3.79,0060593202,9780060593209,eng,384,1212,45,10/25/2005,Avon +37072,The Marriage Lesson (Effingtons #3),Victoria Alexander,3.90,0380818205,9780380818204,eng,372,1484,67,5/1/2001,Avon +37073,When We Meet Again (Effingtons #10),Victoria Alexander,3.87,0060593199,9780060593193,eng,384,1320,58,5/24/2005,Avon +37074,Her Highness My Wife (Effingtons #5),Victoria Alexander,3.66,0060001445,9780060001445,eng,362,992,47,7/30/2002,Avon HarperCollins +37076,Love With the Proper Husband (Effingtons #6),Victoria Alexander,3.85,0060001453,9780060001452,eng,358,1471,61,3/25/2003,Avon +37077,The Lady in Question (Effingtons #7),Victoria Alexander,3.77,0060517611,9780060517618,eng,384,1286,60,11/25/2003,Avon +37083,Going on Being: Buddhism and the Way of Change,Mark Epstein,3.99,0767904613,9780767904612,eng,240,576,48,2/12/2002,Broadway Books +37087,A New History of Early English Drama,John D. Cox/David Scott Kastan/Stephen Greenblatt,4.05,0231102437,9780231102438,eng,579,20,1,8/15/1997,Columbia University Press +37095,The Shell Seekers,Rosamunde Pilcher,4.15,051722285X,9780517222850,eng,530,84085,2230,4/6/2004,Gramercy Books +37105,Cat's Cradle (Cat #1),William W. Johnstone,3.85,0821718258,9780821718254,eng,412,151,14,5/1/1986,Zebra +37106,Five Patients,Michael Crichton,3.48,0099601117,9780099601111,eng,235,74,8,2/2/1995,Arrow +37119,Undertaker of the Mind: John Monro and Mad-Doctoring in Eighteenth-Century England,Jonathan Andrews/Andrew Scull,3.42,0520231511,9780520231511,eng,386,12,1,11/27/2001,University of California Press +37134,Consider the Lilies,Iain Crichton Smith/Isobel Murray,3.88,0753812932,9780753812938,eng,144,332,33,1/1/1900,Polygon +37139,The Admirable Crichton,J.M. Barrie,3.72,1406955817,9781406955811,eng,88,304,36,11/3/2006,Hard Press +37169,The Delta Star,Joseph Wambaugh,3.66,0553273868,9780553273861,eng,291,592,20,1/1/1984,Bantam +37170,Finnegan's Week,Joseph Wambaugh,3.63,0553763245,9780553763249,eng,352,561,42,8/1/1995,Bantam +37186,The Miraculous Journey of Edward Tulane,Kate DiCamillo/Bagram Ibatoulline,4.37,0763625892,9780763625894,eng,200,66426,8035,2/14/2006,Candlewick Press +37187,The Tiger Rising,Kate DiCamillo,3.82,0763618985,9780763618988,eng,128,19133,2279,7/1/2002,Candlewick Press +37189,Mercy Watson Goes for a Ride,Kate DiCamillo/Chris Van Dusen,4.15,0763623326,9780763623326,eng,72,4162,332,5/9/2006,Candlewick Press +37190,The Tale of Despereaux,Kate DiCamillo/Timothy Basil Ering,4.04,0763625299,9780763625290,eng,267,142149,8457,9/9/2008,Candlewick Press +37191,Mercy Watson to the Rescue,Kate DiCamillo/Chris Van Dusen,4.05,0763622702,9780763622701,eng,68,8987,831,8/23/2005,Candlewick Press +37195,Mercy Watson: Princess in Disguise,Kate DiCamillo/Chris Van Dusen,4.16,0763630144,9780763630140,eng,70,2973,202,7/10/2007,Candlewick Press +37205,The Mill on the Floss,George Eliot,3.79,0140620273,9780140620276,en-GB,536,198,32,2/24/1994,Penguin Books +37211,Culture Shock! Laos (Culture Shock!),Stephen Mansfield,3.29,1857331648,9781857331646,eng,220,12,1,1/30/2000,Kuperard +37231,The Cambridge Companion to Plotinus,Lloyd P. Gerson,4.36,0521476763,9780521476768,eng,480,21,2,11/28/1996,Cambridge University Press +37238,In the Land of the Lawn Weenies and Other Warped and Creepy Tales (Weenies series #1),David Lubar,3.96,0765345706,9780765345707,en-US,256,720,69,6/16/2003,Starscape +37240,Hidden Talents (Talents #1),David Lubar,3.94,0765357666,9780765357663,eng,240,2378,271,2/6/2007,Starscape +37241,Dunk,David Lubar,3.80,0618439099,9780618439096,eng,272,911,118,6/7/2004,HMH Books for Young Readers +37261,Carnet de Voyage,Craig Thompson,3.76,1891830600,9781891830600,en-US,224,4415,400,8/3/2004,Top Shelf Productions +37262,Dark Horse Deluxe Journal: Craig Thompson's Angels and Demons,Craig Thompson,3.52,1593070691,9781593070694,eng,128,46,1,12/30/2003,Dark Horse +37264,Good-Bye Chunky Rice,Craig Thompson,3.80,0375714766,9780375714764,eng,125,7182,468,5/9/2006,Pantheon Books +37266,Adieu Chunky Rice,Craig Thompson,3.80,2840558599,9782840558590,spa,128,10,1,6/20/2002,Delcourt +37272,Balanchine: A Biography,Bernard Taper,4.31,0520206398,9780520206397,eng,413,63,4,11/8/1996,University of California Press +37277,A Scandalous Life: The Biography of Jane Digby,Mary S. Lovell,4.02,1857024699,9781857024692,en-US,365,850,92,6/2/2003,Fourth Estate +37282,The Splendid Outcast: Beryl Markham's African Stories,Beryl Markham/Mary S. Lovell,3.72,0865473013,9780865473010,eng,139,307,33,10/1/1987,North Point Press +37297,Eyes of Prey (Lucas Davenport #3),John Sandford,4.18,0425214435,9780425214435,eng,358,18802,519,3/6/2007,G.P. Putnam's Sons +37299,Sharpe's Prey (Sharpe #5),Bernard Cornwell,4.05,0060084537,9780060084530,eng,288,293,23,10/23/2012,Harper Paperbacks +37300,Broken Prey (Lucas Davenport #16),John Sandford,4.18,0425204308,9780425204306,eng,481,12808,453,5/2/2006,Berkley +37301,Rules of Prey (Lucas Davenport #1),John Sandford,4.11,0425205819,9780425205815,eng,479,62767,1738,8/2/2005,G.P. Putnam's Sons +37302,Certain Prey (Lucas Davenport #10),John Sandford,4.22,0743484193,9780743484190,eng,384,15377,416,2/21/2004,Simon & Schuster +37304,Winter Prey (Lucas Davenport #5),John Sandford,4.26,0425141233,9780425141236,eng,400,35806,503,3/1/1994,Berkley +37305,Destiny's Daughters,Gwynne Forster/Donna Hill/Parry A. Brown,4.20,0758212380,9780758212382,eng,292,71,8,1/31/2006,Kensington +37326,Fragments,Jean Baudrillard/Emily Agar,3.80,1844675734,9781844675739,eng,148,127,11,1/17/2007,Verso +37328,The Consumer Society: Myths and Structures,Jean Baudrillard/Chris Turner/George Ritzer,4.11,0761956921,9780761956921,eng,224,698,28,4/14/1998,Sage Publications Ltd +37329,The Vital Illusion,Jean Baudrillard/Julia Witwer,3.84,0231121008,9780231121002,eng,96,117,7,11/22/2000,Columbia University Press +37330,Hijos de la medianoche,Salman Rushdie/Miguel Sáenz,3.98,8497934326,9788497934329,spa,798,63,13,2/3/2005,DeBolsillo +37338,Wicked Ties (Wicked Lovers #1),Shayla Black,3.96,0425213617,9780425213612,en-US,341,22055,1141,1/2/2007,Berkley Heat +37339,On a Wicked Dawn (Cynster #9),Stephanie Laurens,4.06,0060002050,9780060002053,eng,448,5708,133,4/30/2002,Avon +37340,The Wicked (Vampire Huntress #8),L.A. Banks,4.41,0312352360,9780312352363,en-US,389,1778,36,9/5/2000,St. Martins Press-3PL +37341,Wicked Sacrifice (Bound Hearts #4-5),Lora Leigh,4.21,1419953966,9781419953965,eng,290,2128,27,11/30/2006,Elloras Cave +37343,My Wicked Pirate,Rona Sharon,3.90,0821780573,9780821780572,eng,432,502,33,11/1/2006,Zebra +37345,Wicked Dreams,Kingdome 19,3.67,3861878755,9783861878759,eng,112,3,0,9/1/2006,Bruno Gmünder +37347,If I Have a Wicked Stepmother Where's My Prince?,Melissa Kantor,3.66,0786809604,9780786809608,en-US,283,4393,432,9/1/2005,Disney-Hyperion +37349,A Couple of April Fools (The Hamlet Chronicles #6),Gregory Maguire/Elaine Clayton,3.48,0060760826,9780060760823,eng,240,3,0,3/1/2005,HarperCollins +37350,The Good Liar,Gregory Maguire,3.54,0064408744,9780064408745,eng,144,125,22,5/28/2002,HarperCollins +37356,Seven Spiders Spinning (The Hamlet Chronicles #1),Gregory Maguire/Dirk Zimmer,3.60,0064405958,9780064405959,eng,144,264,30,8/4/1995,HarperCollins +37360,Three Rotten Eggs (The Hamlet Chronicles #5),Gregory Maguire/Elaine Clayton,3.74,0060546573,9780060546571,eng,240,79,5,1/18/2005,HarperCollins +37363,Das Tulpenhaus oder Bekenntnisse einer häßlichen Stiefschwester,Gregory Maguire/Mechtild Sandberg-Ciletti,3.53,3423242302,9783423242301,ger,377,1,1,12/1/2000,Dtv +37377,On the Night You Were Born,Nancy Tillman,4.36,0312346069,9780312346065,en-US,32,12837,505,10/17/2006,Feiwel & Friends +37379,The Night at the Museum,Milan Trenc,3.91,0764136313,9780764136313,eng,32,817,34,11/1/2006,B.E.S. Publishing +37380,The Heart Is a Lonely Hunter,Carson McCullers,3.98,0618084746,9780618084746,eng,359,77530,4685,9/8/2000,Mariner Books +37381,The Heart Is a Lonely Hunter,Carson McCullers/Kasia Boddy,3.98,0141185228,9780141185224,eng,317,1459,169,8/31/2000,Penguin Classics +37387,The Prime of Miss Jean Brodie / The Girls of Slender Means / The Driver's Seat / The Only Problem,Muriel Spark,3.79,1857152743,9781857152746,eng,512,1477,90,5/6/2004,Random House +37388,The Prime of Miss Jean Brodie / The Girls of Slender Means / The Driver's Seat / The Only Problem,Muriel Spark,3.79,1400042062,9781400042067,eng,462,92,15,4/6/2004,Everyman's Library +37390,The Pat Hobby Stories,F. Scott Fitzgerald/Arnold Gingrich,3.56,0684804425,9780684804422,eng,192,927,100,12/6/1995,Scribner +37395,The Pursuit of the Well-Beloved & The Well-Beloved,Thomas Hardy/Patricia Ingham,3.61,0140435190,9780140435191,eng,416,127,10,8/28/1997,Penguin Classics +37405,Playing in the Dark: Whiteness and the Literary Imagination,Toni Morrison,4.24,0674673778,9780674673779,eng,110,3738,241,5/1/1992,Harvard University Press +37408,The Big Box,Toni Morrison/Slade Morrison,3.95,0786812915,9780786812912,eng,48,390,98,9/1/2002,Little Brown Books for Young Readers +37415,Their Eyes Were Watching God,Zora Neale Hurston,3.91,0061120065,9780061120060,eng,219,220309,9536,5/30/2006,Amistad +37417,Grasping God's Word: A Hands-On Approach to Reading Interpreting and Applying the Bible,J. Scott Duvall/J. Daniel Hays,4.17,0310259665,9780310259664,en-US,462,811,68,8/2/2005,Zondervan Publishing Company +37420,The Short Stories of Ernest Hemingway,Ernest Hemingway,4.26,0020518609,9780020518600,eng,499,113,12,3/1/1987,Scribner Classics +37424,Little Big Book for God's Children,Alice Wong/Lena Tabori,4.88,094180755X,9780941807555,en-US,352,8,0,9/1/2001,Welcome Books +37426,Little Children,Tom Perrotta,3.62,0312315732,9780312315733,eng,355,26316,1968,1/1/2005,St. Martin's Griffin +37434,Dale Loves Sophie to Death,Robb Forman Dew,3.23,0316890669,9780316890663,en-US,256,244,23,9/19/2001,Back Bay Books +37435,The Secret Life of Bees,Sue Monk Kidd,4.05,0142001740,9780142001745,eng,302,1044725,26279,1/28/2003,Penguin Books +37438,Hokkaido Highway Blues: Hitchhiking Japan,Will Ferguson,4.00,1841952885,9781841952888,eng,344,2837,195,6/5/2003,Canongate Books +37444,The Martian Chronicles,Ray Bradbury/Ian Miller,4.14,0553011804,9780553011807,eng,259,46,2,12/1/2006,Bantam Books +37451,You Know You Love Me (Gossip Girl #2),Cecily von Ziegesar,3.52,0316911488,9780316911481,en-US,240,19261,648,9/1/2002,Poppy +37467,Classroom Interactions as Cross-Cultural Encounters: Native Speakers in EFL Lessons,Jasmine C.M. Luk/Angel M.Y. Lin,0.00,0805850848,9780805850840,eng,241,0,0,8/5/2006,Routledge +37471,Them: Adventures with Extremists,Jon Ronson,3.95,0330375466,9780330375467,eng,328,1103,96,2/8/2002,Pan Macmillan Ltd. (London) +37476,Why I Hate Canadians,Will Ferguson,3.72,1550546007,9781550546002,en-GB,220,630,48,2/19/2007,Not Avail +37477,Happiness,Will Ferguson,3.79,006052510X,9780060525101,eng,320,2256,182,6/3/2003,HarperPerennial +37481,Discovering God's Will,Sinclair B. Ferguson,4.24,0851513344,9780851513348,eng,126,92,17,3/1/1982,Banner of Truth +37491,The Truth of the Matter,Robb Forman Dew,3.09,0316013307,9780316013307,eng,352,194,40,11/3/2006,Back Bay Books +37516,Spinoza: A Life,Steven Nadler,4.10,0521002931,9780521002936,eng,422,234,23,4/23/2001,Cambridge University Press +37525,Organizational Architecture: Designs for Changing Organizations,David A. Nadler/Robert B. Shaw/Marc S. Gerstein,4.62,1555424430,9781555424435,eng,304,2,0,5/26/1992,Jossey-Bass +37526,Henry V,William Shakespeare/Barbara A. Mowat/Paul Werstine/Michael Neill,3.88,0743484878,9780743484879,eng,294,35155,832,6/22/2004,Washington Square Press +37530,Erotism: Death and Sensuality,Georges Bataille/Mary Dalwood,4.11,0872861902,9780872861909,eng,288,1818,55,1/1/2001,City Lights Publishers +37534,The Weimar Republic: The Crisis of Classical Modernity,Detlev J.K. Peukert/Richard Deveson,3.84,0809015560,9780809015566,eng,360,198,11,9/1/1993,Hill and Wang +37536,Adam and Eve and Pinch Me,Ruth Rendell,3.64,1400031184,9781400031184,eng,368,1932,131,1/14/2003,Vintage Crime/Black Lizard +37538,A Pinch of Snuff (Dalziel & Pascoe #5),Reginald Hill,3.84,0440169127,9780440169123,eng,336,1077,47,7/1/1990,Dell +37539,Egyptian Myth: A Very Short Introduction,Geraldine Pinch,3.61,0192803468,9780192803467,eng,143,189,18,7/8/2004,Oxford University Press USA +37540,A Pinch of Poison (Hemlock Falls Mysteries #3),Claudia Bishop,3.57,0425151042,9780425151044,eng,249,328,29,12/1/1995,Berkley +37546,Persuasion,Jane Austen,4.14,0812565886,9780812565881,eng,242,1532,61,10/15/1999,Tor Classics +37552,Beyond Seduction (Beyond Duet #2),Emma Holly,3.70,0515133086,9780515133080,eng,297,1329,60,6/28/2002,Jove +37553,Sense and Sensibility,Jane Austen/Claire Lamont/James Kinsley,4.07,0192804782,9780192804785,eng,327,6853,249,4/29/2004,Oxford University Press +37554,Sense and Sensibility,Jane Austen/Claire Lamont/Ros Ballaster,4.07,0140434259,9780140434255,eng,346,528,39,1/1/1996,Penguin Classics +37558,Sense and Sensibility,Jane Austen/Laura Engel,4.07,159308336X,9781593083366,eng,312,1189,86,10/21/2004,Barnes & Noble +37560,Sense and Sensibility,Jane Austen/Laura Engel,4.07,1593080492,9781593080495,eng,336,655,67,8/1/2003,Barnes Noble Classics +37561,One Flew Over the Cuckoo's Nest (SparkNotes Literature Guide),SparkNotes/Ken Kesey,4.13,1586633791,9781586633790,eng,72,4,0,7/15/2002,SparkNotes +37564,A Different Mirror: A History of Multicultural America,Ronald Takaki,4.13,0316831115,9780316831116,en-US,508,3389,212,6/1/1994,Back Bay Books +37566,Trapped in the Mirror: Adult Children of Narcissists in Their Struggle for Self,Elan Golomb,3.82,0688140718,9780688140717,en-US,272,779,82,3/28/1995,William Morrow Paperbacks +37569,The Buddha in Your Mirror: Practical Buddhism and the Search for Self,Woody Hochswender/Greg Martin/Ted Morino,4.28,0967469783,9780967469782,eng,230,732,72,10/1/2001,Middleway Press +37572,A Distant Mirror: The Calamitous 14th Century,Barbara W. Tuchman,4.08,0345910907,9780345910905,eng,704,143,26,7/12/1987,Ballantine Books +37573,They Do It With Mirrors,Agatha Christie/Rosemary Leach,3.76,1559277580,9781559277587,eng,7,2,0,11/8/2002,MacMillan Audio +37585,The Lemon Table,Julian Barnes,3.68,1400076501,9781400076505,eng,241,2043,167,4/5/2005,Vintage +37587,The Criminal Mastermind Collection Bks 1-3 (Artemis Fowl #1-3),Eoin Colfer,4.36,0786848693,9780786848690,en-US,912,858,12,9/27/2005,Miramax +37592,Encuentro en el Ártico (Artemis Fowl #2),Eoin Colfer,3.95,8497939212,9788497939218,spa,344,3,0,3/8/2006,Debolsillo +37594,The Eternity Code (Artemis Fowl #3),Eoin Colfer,4.04,0439573882,9780439573887,eng,309,221,13,10/1/2003,Scholastic Inc. +37595,El cubo B (Artemis Fowl #3),Eoin Colfer/Ana Alcaina,4.04,0307343111,9780307343116,spa,352,17,0,7/5/2005,Montena +37598,The Eternity Code (Artemis Fowl #3),Eoin Colfer,4.04,0670913529,9780670913527,eng,329,187,6,4/3/2003,Penguin Group +37603,Forget Me Not: Photography and Remembrance,Geoffrey Batchen,4.22,156898619X,9781568986197,eng,128,56,8,8/3/2006,Princeton Architectural Press +37612,Monsoon Summer,Mitali Perkins,3.82,0440238404,9780440238409,eng,257,588,107,4/11/2006,Laurel Leaf Library +37619,Warlock (Ancient Egypt #3),Wilbur Smith,4.04,0312980388,9780312980382,eng,642,11169,272,9/16/2002,St. Martin's Paperbacks +37623,Sea of Thunder: Four Commanders and the Last Great Naval Campaign 1941-1945,Evan Thomas,4.11,0743252217,9780743252218,eng,415,2414,131,11/7/2006,Simon & Schuster +37624,Gift from the Sea,Anne Morrow Lindbergh,4.17,0679406832,9780679406839,en-US,132,1372,187,10/8/1991,Pantheon Books +37625,Wide Sargasso Sea: A Reader's Guide to Essential Criticism,Carl Plasa,3.63,184046268X,9781840462685,eng,194,166,10,9/6/2002,Palgrave Macmillan +37630,The Good Housekeeping Illustrated Cookbook,Good Housekeeping/Zoe Coulson,4.37,0878510370,9780878510375,eng,512,1160,35,10/1/1980,Hearst Communications +37638,Evelina,Frances Burney/Edward A. Bloom,3.67,0192840312,9780192840318,eng,455,12101,495,7/18/2002,Oxford University Press +37646,Dancing On Air,Frances Oliver,4.00,1553100662,9781553100669,eng,157,10,1,4/30/2004,Ash-Tree Press +37651,Holding On to the Air,Suzanne Farrell/Toni Bentley,4.09,0813025931,9780813025933,eng,352,524,40,9/25/2002,University Press of Florida +37656,The Turtle (The Lighthouse Family #4),Cynthia Rylant/Preston McDaniels,4.07,0689863128,9780689863127,eng,48,155,13,2/1/2006,Beach Lane Books +37657,The Body in the Lighthouse,Katherine Hall Page,3.68,0380813866,9780380813865,en-US,352,434,28,3/30/2004,Avon +37660,American Tragedy: Kennedy Johnson and the Origins of the Vietnam War,David E. Kaiser,3.51,0674006720,9780674006720,eng,576,30,3,1/30/2002,Belknap Press +37670,The Sun Also Rises,Ernest Hemingway,3.82,0684182602,9780684182605,eng,247,62,9,10/1/1984,Scribner Book Company +37673,The Call of the Wild,Jack London/Wendell Minor,3.86,068981836X,9780689818363,eng,128,188,16,10/1/1999,Aladdin +37674,The Call of the Wild,Jack London/Gary Paulsen,3.86,0689856741,9780689856747,eng,139,2210,157,2/1/2003,Aladdin +37675,The Call of the Wild and Three Other Klondike Stories,Jack London/Roger Dressler,3.81,1587887738,9781587887734,eng,5,33,1,9/1/2001,Brilliance Audio +37678,The Call of the Wild and Selected Stories: 100th Anniversary Ed.,Jack London/Alex Kershaw,3.82,0451527038,9780451527035,eng,192,54,12,11/1/1998,Signet Classics +37683,Fahrenheit 451,Ray Bradbury/Alfredo Crespo,3.99,8497930053,9788497930055,spa,176,580,64,11/29/2004,Debolsillo +37684,The Lion the Witch and the Wardrobe (Chronicles of Narnia #1),Hiawyn Oram/C.S. Lewis/Tudor Humphries,4.25,0060556501,9780060556501,eng,48,6307,64,9/21/2004,HarperCollins +37685,The Lion the Witch and the Wardrobe (Chronicles of Narnia #2),C.S. Lewis/Pauline Baynes,4.21,0060765488,9780060765484,eng,189,652,70,10/25/2005,HarperEntertainment +37690,The Lion the Witch and the Wardrobe (Narnia),C.S. Lewis/Pauline Baynes,4.21,0060845244,9780060845247,en-US,189,59,7,10/4/2005,HarperCollins Publishers +37693,New Moon (Moon #6),Rebecca York,3.86,0425216020,9780425216026,eng,323,634,30,3/6/2007,Berkley Sensation +37694,Health: The Basics (Donatelle Series),Rebecca J. Donatelle,3.58,0805377956,9780805377958,en-US,480,6,0,3/9/2006,Benjamin-Cummings Publishing Company +37698,Cliffsnotes on Eliot's Middlemarch,Brian Johnston/George Eliot/CliffsNotes,4.14,0822008254,9780822008255,eng,109,7,2,7/6/1967,Cliffs Notes +37700,Alice's Adventures in Wonderland,Lewis Carroll/Richard Kelly,4.02,155111223X,9781551112237,eng,356,73,8,9/13/2000,Broadview Press Inc +37707,Anne of the Island and Tales of Avonlea,L.M. Montgomery,4.30,051703705X,9780517037058,eng,573,417,5,3/20/1991,Gramercy +37716,A Christmas Carol and The Night Before Christmas,Charles Dickens/Clement C. Moore/Arthur Rackham,4.35,0517229277,9780517229279,eng,156,91,15,10/3/2006,Gramercy Books +37722,In Search of Dracula: The History of Dracula and Vampires,Raymond T. McNally/Radu Florescu,3.87,0395657830,9780395657836,eng,320,1257,76,10/31/1994,Mariner Books +37726,The Annotated Charlotte's Web,E.B. White/Garth Williams/Peter F. Neumeyer,4.17,0060882603,9780060882600,eng,320,43,2,10/31/2006,HarperCollins +37731,Just as Long as We're Together,Judy Blume,4.07,0330398040,9780330398046,eng,202,9375,422,4/9/2001,Macmillan Children's Books +37734,Wifey / Smart Women,Judy Blume,3.68,0743437578,9780743437578,eng,560,376,20,10/2/2001,Pocket Books +37736,Forever...,Judy Blume,3.62,0689849737,9780689849732,eng,199,239,51,12/1/2002,Atheneum/Richard Jackson Books +37737,Fudge-a-Mania (Fudge #4),Judy Blume,4.01,0425193829,9780425193822,eng,176,26588,538,1/6/2004,Berkley +37741,Tales of a Fourth Grade Nothing (Fudge #1),Judy Blume,4.10,0425193799,9780425193792,eng,144,122085,2156,1/6/2004,Berkley +37743,Forever . . .,Judy Blume,3.62,033039780X,9780330397803,eng,178,45863,2952,6/3/2005,Pan Childrens +37744,Wifey,Judy Blume,3.36,0425206548,9780425206546,eng,304,11056,750,9/6/2005,Berkley +37750,Everything I Needed to Know about Being a Girl I Learned from Judy Blume,Jennifer O'Connell/Meg Cabot/Megan McCafferty/Melissa Senate/Diana Peterfreund/Stephanie Lessing/Laura Ruby/Erica Orloff/Stacey Ballis/Julie Kenner/Kristin Harmel/Jennifer Coburn/Elise Juska/Kyra Davis/Beth Kendrick/Berta Platas/Lynda Curnyn/Kayla Perrin/Cara Lockwood/Alison Pace/Megan Crane/Lara Deloza/Laura Caldwell/Shanna Swendson,3.47,1416531041,9781416531043,eng,275,1750,323,6/5/2007,Pocket Books +37751,BFF*: Just As Long As We're Together / Here's to You Rachel Robinson (*Best Friends Forever),Judy Blume,4.26,0385734077,9780385734073,eng,512,479,64,3/27/2007,Delacorte Books for Young Readers +37766,Yosemite: Its Discovery Its Wonder and Its People,Margaret Sanborn,3.96,0939666502,9780939666508,eng,289,23,2,12/1/1989,Yosemite Conservancy +37772,A Man of the People,Chinua Achebe,3.87,0385086164,9780385086165,eng,160,3294,208,8/16/2016,Penguin Books +37773,Collected Poems,Chinua Achebe,3.74,1400076587,9781400076581,eng,84,213,25,1/16/2009,Anchor Books +37774,Arrow of God (The African Trilogy #3),Chinua Achebe,3.81,0385014805,9780385014809,eng,230,4198,300,1/1/1989,Anchor Books +37780,Anatomy of a Boyfriend (Anatomy #1),Daria Snadowsky,3.41,0385733208,9780385733205,eng,259,4470,485,1/9/2007,Delacorte Press +37785,Lithium for Medea,Kate Braverman/Rick Moody,3.95,1583224718,9781583224717,eng,362,344,33,3/5/2002,Seven Stories Press +37790,Die Leiden des Jungen Werther,Johann Wolfgang von Goethe/R. Paulin,3.67,1853993239,9781853993237,ger,142,24,1,1/1/1998,Bristol Classical Press +37804,The Odyssey,Homer/George Herbert Palmer,3.76,0486406547,9780486406541,en-US,239,242,25,12/23/1998,Dover Publications +37807,Caesar's Commentaries: On the Gallic War & On the Civil War,Gaius Julius Caesar/James H. Ford/W.A. McDevitte,4.12,0976072610,9780976072614,eng,340,424,31,10/1/2005,El Paso Norte Press +37808,The Conquest of Gaul,Gaius Julius Caesar/F.P. Long/Cheryl Walker,3.99,0760768951,9780760768952,eng,288,56,8,7/16/2005,Barnes Noble +37811,The Assassination of Julius Caesar: A People's History of Ancient Rome,Michael Parenti,4.17,1565849426,9781565849426,eng,276,685,73,8/30/2004,The New Press +37813,Letters from the Earth: Uncensored Writings,Mark Twain/Bernard DeVoto/Henry Nash Smith,4.21,0060518650,9780060518653,eng,321,6568,376,2/17/2004,Harper Perennial Modern Classics +37815,Mark Twain: Selected Works,Mark Twain,4.22,0517053578,9780517053577,eng,690,41,1,10/2/1990,Gramercy +37817,The Blazing Center Study Guide: The Soul-Satisfying Supremacy of God in All Things,John Piper,4.30,1590526856,9781590526859,eng,112,20,0,7/3/2006,Multnomah +37819,The God of Small Things,Arundhati Roy,3.94,0060977493,9780060977498,en-US,321,6667,722,5/1/1997,HarperCollins +37824,Balzac und die kleine chinesische Schneiderin,Dai Sijie,3.64,3492238696,9783492238694,ger,200,343,15,7/1/2003,Piper Taschenbuch +37826,The Wit & Wisdom of Winston Churchill,James C. Humes/Richard M. Nixon,3.98,0060925779,9780060925772,eng,256,181,15,12/26/2007,Harper Perennial +37828,Winston Churchill,John Keegan,3.83,0670030791,9780670030798,en-GB,196,821,91,10/14/2002,Viking Books +37837,The Illustrated Garden Book: A New Anthology,Robin Lane Fox/Vita Sackville-West/Freda Titford/Ken Kirkwood,4.19,0689118449,9780689118449,eng,192,1,1,10/1/1986,Atheneum Books +37847,The Long Hard Road Out of Hell,Marilyn Manson/Neil Strauss,3.89,0060987464,9780060987466,eng,275,22293,1141,3/3/1999,It Books +37848,Dissecting Marilyn Manson,Gavin Baddeley,3.86,0859653722,9780859653725,eng,192,526,9,10/1/2007,Plexus Publishing +37852,Marilyn Manson,Kurt Reighley,3.36,0312181337,9780312181338,en-US,192,116,5,4/15/1998,St. Martin's Griffin +37854,Marilyn Manson: The Lonely Watchman,Richard D. Nelson,4.00,1597818704,9781597818704,eng,224,3,0,2/18/2006,Xulon Press +37857,Philosophical Papers: Volume 1 Human Agency and Language,Charles Taylor,4.35,0521317509,9780521317504,eng,304,52,1,3/28/1985,Cambridge University Press +37858,Sources of the Self: The Making of the Modern Identity,Charles Taylor,4.20,0674824261,9780674824263,eng,624,1355,54,3/1/1992,Harvard University Press +37860,The Ethics of Authenticity,Charles Taylor,3.92,0674268636,9780674268630,eng,152,697,49,9/22/1992,Harvard University Press +37861,Multiculturalism,Charles Taylor/Amy Gutmann/Michael Walzer/Susan R. Wolf/Shierry Weber Nicholsen/Kwame Anthony Appiah/Jürgen Habermas/Steven C. Rockefeller,3.80,0691037795,9780691037790,eng,192,341,17,9/11/1994,Princeton University Press +37863,Charles Taylor,Ruth Abbey,3.60,0521805228,9780521805223,eng,220,14,0,1/26/2004,Cambridge University Press +37869,Built To Last: Building America's Amazing Bridges Dams Tunnels and Skyscrapers (Built to Last),George Sullivan,4.12,0439517370,9780439517379,eng,128,24,6,10/1/2005,Scholastic Nonfiction +37875,The Art of the Start: The Time-Tested Battle-Hardened Guide for Anyone Starting Anything,Guy Kawasaki,3.87,1591840562,9781591840565,eng,240,22375,402,9/9/2004,Portfolio +37877,Mandala Sand Art Kit,Walter Foster Creative Team,1.00,1560107669,9781560107668,eng,8,1,0,1/1/2004,Walter Foster Publishing +37892,The Death Shift: The True Story of Nurse Genene and the Texas Baby Murders,Peter Elkind,3.78,0451401964,9780451401960,eng,400,118,11,5/1/1990,Onyx +37900,Turn of the Cards (Wild Cards #12),George R.R. Martin/Victor Milán,3.69,0553561529,9780553561524,eng,432,567,18,1/1/1993,Spectra +37902,Turn of the Cards,Georgina Grey,3.00,0449239691,9780449239698,eng,0,3,1,5/12/1979,Fawcett Coventry +37905,Dr. Seuss (First Biographies),Cheryl Carlson,4.33,0736850910,9780736850919,eng,24,14,1,1/1/2005,Capstone Press +37909,Go Jump in the Pool! (Macdonald Hall #2),Gordon Korman,4.16,0590442090,9780590442091,eng,192,1419,38,1/1/1991,Scholastic +37911,Shipwreck (Island I),Gordon Korman/Holter Graham,3.80,0439023319,9780439023313,eng,0,103,14,2/1/2007,Scholastic Audio Books +37947,The Pusher (87th Precinct #3),Ed McBain,3.90,0752857932,9780752857930,eng,192,1098,75,7/3/2003,Orion Books +37951,Eight Black Horses (87th Precinct #38),Ed McBain/Mark T. Sullivan,3.92,0743463080,9780743463089,eng,336,734,40,4/29/2003,Pocket Books +37952,Fiddlers (87th Precinct #55),Ed McBain/Otto Penzler,3.86,0156032783,9780156032780,eng,276,788,85,9/5/2006,Mariner Books +37954,The Last Dance (87th Precinct #50),Ed McBain,3.69,0671025708,9780671025700,eng,336,752,57,12/1/2000,Pocket Books +37976,The Listener's Bible: NIV,Anonymous/Max McLean,4.60,1931047170,9781931047173,eng,77,28,3,1/1/2001,Fellowship for the Performance +37979,Information Technology for Management: Transforming Organizations in the Digital Economy,Efraim Turban/Dorothy Leidner/James C. Wetherbe/Ephraim McLean/Christy Cheung/Daniel Tse/Maggie Lew,3.93,0471705225,9780471705222,eng,724,109,3,1/1/2005,John Wiley & Sons +37986,A Search for What Makes Sense: Finding Faith,Brian D. McLaren/Steve Chalke,3.59,0310272661,9780310272663,eng,187,132,15,2/11/2007,Zondervan Publishing Company +37996,Police Brutality: An Anthology,Jill Nelson/Robin D.G. Kelley/Richard Austin/Flores Alexander Forbes/Ron Daniels/Frank Moss/Derrick A. Bell/Claude Andrew Clegg III/Katheryn K. Russell/Patricia J. Williams/Stanley Crouch/Ishmael Reed/Arthur Doye,3.80,0393321630,9780393321630,eng,320,47,6,5/17/2001,W. W. Norton Company +37998,Reluctant Burglar (To Catch a Thief #1),Jill Elizabeth Nelson,3.67,1590526864,9781590526866,en-US,345,177,27,8/15/2006,Multnomah Books +38004,Q: The Autobiography of Quincy Jones,Quincy Jones,4.09,0767905105,9780767905107,eng,432,639,51,10/8/2002,Three Rivers Press (CA) +38012,Mansion On The Hill: Dylan Young Geffen Springsteen and the Head-on-Collision of Rock and Commerce,Fred Goodman,3.91,0712645624,9780712645621,eng,448,2,0,7/3/2003,Pimlico +38017,Lady on the Hill: How Biltmore Estate Became an American Icon,Howard E. Covington Jr.,3.91,0471758183,9780471758181,eng,331,414,60,3/1/2006,Wiley +38019,Hit Men: Power Brokers and Fast Money Inside the Music Business,Fredric Dannen/Erroll McDonald,3.94,0679730613,9780679730613,eng,432,689,44,7/2/1991,Vintage +38030,Savannah Blues (Weezie and Bebe Mysteries #1),Mary Kay Andrews,3.99,0060519134,9780060519131,en-US,404,16006,1049,7/10/2012,Harper Paperbacks +38042,The Last Shogun: The Life of Tokugawa Yoshinobu,Ryōtarō Shiba/Juliet Winters Carpenter,3.76,1568363567,9781568363561,eng,256,296,29,8/20/2004,Kodansha America +38044,Shōgun (Asian Saga #1),James Clavell,4.39,0340766166,9780340766163,eng,1152,4902,299,12/2/1999,Hodder & Stoughton +38049,Whoreson,Donald Goines,4.32,0870679945,9780870679940,en-US,320,1493,104,1/1/2000,Holloway House +38056,Crime Partners,Donald Goines,4.20,0870678817,9780870678813,eng,159,474,21,11/1/2000,Holloway House +38066,Jonah's Gourd Vine,Zora Neale Hurston,3.99,0060916516,9780060916510,eng,229,1679,82,1/22/1990,Amistad +38068,The Complete Stories,Zora Neale Hurston/Henry Louis Gates Jr./Sieglinde Lemke,4.25,0060921714,9780060921712,eng,336,756,45,1/5/1996,Amistad +38069,Zora Neale Hurston: A Literary Biography,Robert E. Hemenway/Alice Walker,4.10,0252008073,9780252008078,eng,408,103,9,9/1/1980,University of Illinois Press +38070,Zora Neale Hurston: Critical Perspectives Past And Present (Amistad Literary Series),Henry Louis Gates Jr./Kwame Anthony Appiah,4.20,1567430287,9781567430288,eng,238,24,0,2/11/2000,Harper Paperbacks +38075,The Tarot Cafe #1,Sang-Sun Park,3.88,1595325557,9781595325556,en-US,176,1829,85,3/7/2017,TokyoPop +38083,Photography's Other Histories,Christopher Pinney/Nicholas Peterson,3.83,0822331136,9780822331131,eng,296,24,2,4/24/2003,Duke University Press Books +38085,Photos of the Gods: The Printed Image and Political Struggle in India,Christopher Pinney,3.96,1861891849,9781861891846,eng,239,25,0,2/4/2004,Reaktion Books +38093,Antitrust Law,Richard A. Posner,4.00,0226675769,9780226675763,en-US,304,33,1,12/1/2001,University of Chicago Press +38107,Case Closed: Lee Harvey Oswald and the Assassination of JFK,Gerald Posner,3.96,1400034620,9781400034628,eng,640,1194,107,9/9/2003,Anchor Books +38123,Sex and Reason,Richard A. Posner,3.91,0674802802,9780674802803,eng,458,76,13,1/1/1992,Harvard University Press +38128,Law and Literature,Richard A. Posner,3.61,0674514718,9780674514713,eng,432,95,6,3/15/1998,Harvard University Press +38150,Orlando: A Biography: Film Screenplay,Sally Potter/Virginia Woolf,4.07,0571172954,9780571172955,eng,75,84,7,10/25/2013,Faber & Faber +38153,Orlando Furioso: Part Two,Ludovico Ariosto/Barbara Reynolds,4.23,014044310X,9780140443103,eng,800,133,14,9/29/1977,Penguin Classics +38154,Orlando Furioso,Ludovico Ariosto/Guido Waldman,4.02,0192836773,9780192836779,eng,656,2339,64,1/28/1999,Oxford University Press +38155,A People's Tragedy: The Russian Revolution: 1891-1924,Orlando Figes,4.31,014024364X,9780140243642,eng,1024,2931,222,3/1/1998,Penguin Books +38169,Alas Babylon,Pat Frank,4.08,0060741872,9780060741877,eng,323,33140,2614,7/5/2005,Harper Perennial Modern Classics +38175,The South Beach Diet: The Delicious Doctor-Designed Foolproof Plan for Fast and Healthy Weight Loss,Arthur Agatston,3.45,1579546463,9781579546465,en-US,310,553,18,4/5/2003,Rodale Books +38180,On the Beach,Nevil Shute,3.94,1842322761,9781842322765,eng,296,28414,1744,10/31/2002,House of Stratus +38198,The Book of Merlyn: The Unpublished Conclusion to The Once & Future King,T.H. White,3.96,0292707185,9780292707184,eng,137,109,22,9/1/1977,University of Texas Press (Austin/London) +38210,The Art of Happiness,Dalai Lama XIV/Howard C. Cutler,4.16,1573221112,9781573221115,eng,336,80161,2036,10/26/1998,Riverhead Hardcover +38211,The Art of Happiness at Work,Dalai Lama XIV/Howard C. Cutler,3.95,0340831200,9780340831205,eng,224,1615,95,8/15/2005,Hodder Mobius +38212,Zen and the Art of Happiness,Chris Prentiss,4.05,0943015537,9780943015538,eng,145,2955,270,6/28/2006,Power Press +38215,Lovingkindness: The Revolutionary Art of Happiness,Sharon Salzberg/Jon Kabat-Zinn,4.24,1590301870,9781590301876,eng,256,4373,144,12/28/2004,Shambhala +38228,Kaplan & Sadock's Synopsis of Psychiatry: Behavioral Sciences/Clinical Psychiatry,Benjamin James Sadock/Virginia Alcott Sadock,4.22,0781731836,9780781731836,eng,1500,246,9,12/16/2002,LWW +38230,How to Go to College Almost for Free Updated,Ben R. Kaplan,3.45,0060937653,9780060937652,en-US,400,111,11,9/18/2001,Collins Reference +38238,Australia,Kate Hemphill/Zoë Ross/Louise Bostock Lang,4.07,0756615690,9780756615697,eng,616,69,0,8/1/2006,DK Publishing (Dorling Kindersley) +38242,Let's Go Australia on a Budget,Let's Go Inc.,3.93,031236086X,9780312360863,en-US,784,9,2,11/28/2006,Let's Go Publications +38244,National Geographic Traveler: Australia,Roff Smith,3.80,0792238931,9780792238935,eng,400,9,2,10/5/1999,National Geographic +38262,Moll Flanders,Daniel Defoe/Mark Schorer/Georgina Sutton,3.52,1853260738,9781853260735,eng,339,35344,975,10/5/1993,Wordsworth Editions +38264,Moll Flanders,Daniel Defoe/Virginia Woolf,3.52,0375760105,9780375760105,eng,335,387,54,6/11/2002,Modern Library +38288,The Leatherstocking Tales Vol. 2: The Pathfinder / The Deerslayer,James Fenimore Cooper/Blake Nevius,3.98,0940450216,9780940450219,eng,1051,130,12,7/1/1985,Library of America +38296,The Last of the Mohicans (The Leatherstocking Tales #2),James Fenimore Cooper,3.70,0553213296,9780553213294,eng,410,75121,1797,6/1/1982,Bantam Classics +38300,A River Runs Through It,Norman Maclean/Barry Moser,4.17,0226500608,9780226500607,eng,168,6495,388,5/15/1989,University of Chicago Press +38302,Empires of the Monsoon: A History of the Indian Ocean and Its Invaders,Richard Seymour Hall,4.39,0006380832,9780006380832,eng,608,67,12,1/1/1998,HarperCollins Publishers +38311,The Next Whole Earth Catalog: Access to Tools,Stewart Brand,4.45,0394707761,9780394707761,eng,608,24,0,11/6/1981,Random House Inc. +38313,Whole Earth Software Catalog,Stewart Brand,3.92,0385191669,9780385191661,en-US,208,13,1,10/1/1984,Doubleday Books +38315,Fooled by Randomness: The Hidden Role of Chance in Life and in the Markets,Nassim Nicholas Taleb,4.06,0812975219,9780812975215,eng,368,40155,1550,8/23/2005,Random House Trade Paperbacks +38330,El Borbah,Charles Burns,3.94,1560976934,9781560976936,en-US,96,740,34,1/17/2006,Fantagraphics +38331,Big Baby,Charles Burns,3.96,1560978007,9781560978008,eng,96,1368,58,2/17/2007,Fantagraphics +38333,Black Hole,Charles Burns,3.84,037542380X,9780375423802,eng,368,38261,2037,10/18/2005,Pantheon +38336,Black Hole tome 3: Visions,Charles Burns,4.00,2840555522,9782840555520,fre,63,3,0,3/15/2001,Delcourt +38337,Black Hole tome 4 : Reine des lézards,Charles Burns,4.26,2840558874,9782840558873,fre,64,19,1,10/21/2002,Delcourt +38338,9-11,Noam Chomsky/Greg Ruggiero/Marili Margomenou/Miguel Mora/Natalie Levisalles/Il Manifesto/Hartford Courant/David Barsamian/Radio B92/Elise Fried/Peter Kreysler/Gionarle del Popolo/Michael Albert,3.73,1583224890,9781583224892,eng,140,3070,172,12/4/2001,Seven Stories Press +38339,Secrets Lies and Democracy,Noam Chomsky/David Barsamian,3.98,1878825046,9781878825049,eng,128,934,27,7/1/2002,Odonian Press +38340,Syntactic Structures,Noam Chomsky/David W. Lightfoot,3.84,3110172798,9783110172799,eng,135,609,31,9/10/2012,Walter de Gruyter +38341,The Umbrella of US Power: The Universal Declaration of Human Rights & the Contradictions of US Policy,Noam Chomsky/Greg Ruggiero,3.96,1583225471,9781583225479,en-US,80,155,7,7/9/2002,Seven Stories Press +38344,The Common Good,Noam Chomsky/David Barsamian/Arthur Naiman,4.01,1878825089,9781878825087,eng,190,435,18,7/1/2002,Odonian Press +38346,The Curious Sofa,Edward Gorey,4.18,0151003076,9780151003075,eng,64,296,20,9/15/1997,Harcourt Brace & Company +38376,LOVE MODE 11,Yuki Shimizu/志水 ゆき,4.37,4835214102,9784835214108,jpn,182,4,0,1/10/2003,ビブロス +38379,Ring (Ring #1),Kōji Suzuki/Robert B. Rohmer/Glynne Walley,3.82,1932234411,9781932234411,eng,282,11396,742,4/25/2004,Vertical +38385,The Ring Volume 4 Birthday,Kōji Suzuki/Sakura Mizuki,3.58,1593072678,9781593072674,eng,160,56,2,6/21/2005,Dark Horse Manga +38398,Strings Conformal Fields and M-Theory (Graduate Texts in Contemporary Physics),Michio Kaku,4.15,0387988920,9780387988924,eng,531,49,1,12/17/1999,Springer +38399,Introduction to Superstrings and M-Theory,Michio Kaku/Joseph L. Birman/H. Eugene Stanley/J.W. Lynn/M.P. Silverman/M. Voloshin,4.27,0387985891,9780387985893,eng,587,216,2,7/30/1999,Springer +38400,To Win a Nuclear War: The Pentagon's Secret War Plans,Michio Kaku/Daniel Axelrod,3.94,0896083217,9780896083219,en-US,374,2,0,7/1/1999,South End Press (Boston) +38401,Company,Max Barry,3.73,1400079373,9781400079377,eng,338,4938,404,3/13/2007,Vintage +38412,Fermat's Enigma: The Epic Quest to Solve the World's Greatest Mathematical Problem,Simon Singh,4.25,0385493622,9780385493628,eng,315,19473,692,9/8/1998,Anchor +38414,The Science Book,Peter Tallack/Simon Singh,4.05,1841882542,9781841882543,eng,528,25,1,3/28/2006,Weidenfeld & Nicolson +38424,Kristy's Great Idea,Raina Telgemeier/Ann M. Martin,4.17,1417699671,9781417699674,eng,186,24732,726,4/1/2006,Turtleback Books +38426,The Actor in You: Sixteen Simple Steps to Understanding the Art of Acting,Robert Benedetti,3.65,0205359213,9780205359219,en-US,131,11,0,3/4/2002,Allyn & Bacon +38429,The Actor in You: Sixteen Simple Steps to Understanding the Art of Acting,Robert Benedetti,3.65,0205479804,9780205479801,eng,160,5,1,10/1/2005,Allyn & Bacon +38436,The Cat Who Played Post Office (Cat Who... #6),Lilian Jackson Braun,3.97,0747250375,9780747250371,eng,224,6366,200,5/9/1996,Headline +38457,Just Above My Head,James Baldwin,4.38,0385334567,9780385334563,eng,584,1485,159,6/13/2000,Delta +38458,Nobody Knows My Name,James Baldwin,4.35,0679744738,9780679744733,eng,242,2218,146,12/1/1992,Vintage +38461,Tell Me How Long the Train's Been Gone,James Baldwin,4.26,0375701893,9780375701894,eng,496,2162,144,2/17/1998,Vintage +38463,If Beale Street Could Talk,James Baldwin,4.23,0307275930,9780307275936,eng,197,19731,2158,10/10/2006,Vintage +38465,Tell My Horse: Voodoo and Life in Haiti and Jamaica,Zora Neale Hurston,3.96,0060916494,9780060916497,eng,311,1450,105,2/28/1990,HarperCollins +38466,Wrapped in Rainbows: The Life of Zora Neale Hurston,Valerie Boyd,4.32,0743253299,9780743253291,eng,528,893,97,2/3/2004,Scribner +38469,Going to Meet the Man,James Baldwin,4.35,0679761799,9780679761792,eng,249,4022,309,4/25/1995,Vintage Books a division of Random House +38471,The Amen Corner,James Baldwin,3.90,0375701885,9780375701887,eng,112,467,32,2/17/1998,Vintage +38473,Blues for Mister Charlie,James Baldwin,4.13,0679761780,9780679761785,eng,144,1202,80,4/25/1995,Vintage +38476,Every Tongue Got to Confess: Negro Folk-tales from the Gulf States,Zora Neale Hurston/Carla Kaplan/John Edgar Wideman,3.97,0060934549,9780060934545,eng,320,317,47,10/1/2002,Amistad +38496,Factotum,Charles Bukowski,3.97,006113127X,9780061131271,en-US,208,414,56,8/15/2006,Ecco +38500,Women,Charles Bukowski,3.86,0061177598,9780061177590,eng,291,52415,2081,7/29/2014,Ecco +38501,Ham on Rye,Charles Bukowski,4.14,006117758X,9780061177583,eng,288,65829,2318,7/29/2014,Ecco +38503,Tales of Ordinary Madness,Charles Bukowski,3.92,0872861554,9780872861558,eng,238,16544,431,1/1/2001,City Lights Publishers +38504,You Get So Alone at Times That it Just Makes Sense,Charles Bukowski,4.24,0876856830,9780876856833,eng,320,12358,533,6/5/1986,Black Sparrow Press +38510,Tiempo De Matar,John Grisham,4.07,8408041258,9788408041252,spa,0,3,0,7/1/2003,Planeta Publishing +38511,The Wakefields of Sweet Valley (Sweet Valley High Magna Editions #1),Francine Pascal/Kate William,3.92,0553292781,9780553292787,eng,346,1425,73,4/24/1993,Sweet Valley +38513,The Wedding (Sweet Valley High #98),Francine Pascal/Kate William,3.52,0553298550,9780553298550,eng,217,314,11,4/28/1994,Bantam Books +38514,Alone in the Crowd (Sweet Valley High #28),Francine Pascal/Kate William,3.44,0553280872,9780553280876,eng,136,695,27,4/1/1986,Bantam Books +38515,Taking Sides (Sweet Valley High #31),Francine Pascal/Kate William,3.38,0553258869,9780553258868,en-GB,134,813,23,9/1/1986,Bantam Books +38517,The Wakefield Legacy: The Untold Story (Sweet Valley High Magna Editions #2),Francine Pascal/Kate William,3.94,0553297945,9780553297942,eng,345,805,31,5/1/1992,Bantam Books +38522,Love at First Bite (Dark-Hunter #6.5; Wild Wulfs of London #2.5; Companion #3.5),Sherrilyn Kenyon/L.A. Banks/Susan Squires/Ronda Thompson,4.06,0312349297,9780312349295,eng,373,7959,200,10/3/2006,St. Martin's Press +38524,Spunk & Bite: A Writer's Guide to Punchier More Engaging Language & Style,Arthur Plotnik,3.90,0375721150,9780375721151,eng,263,690,87,11/15/2005,Random House Reference Publishing +38528,Cookies: Bite-Size Life Lessons,Amy Krouse Rosenthal/Jane Dyer,4.18,006058081X,9780060580810,eng,40,1162,185,5/2/2006,HarperCollins +38529,Bite Me If You Can (Argeneau #6),Lynsay Sands,4.27,0060774126,9780060774127,eng,384,17950,465,1/30/2007,Avon +38530,Aftershock (Sweet Valley High Super Edition #12),Francine Pascal/Kate William,3.70,0553492365,9780553492361,eng,227,286,7,11/10/1998,Bantam +38531,Sweet 18 (SVH Senior Year #48),Francine Pascal/Kate William,3.47,0553493973,9780553493979,en-US,179,116,3,1/14/2003,Bantam +38532,The New Jessica (Sweet Valley High #32),Francine Pascal/Kate William,3.44,0553275607,9780553275605,eng,136,1054,25,10/1/1986,Bantam Books +38533,Double Love (Sweet Valley High #1),Francine Pascal/Kate William,3.54,0553275674,9780553275674,eng,182,108,17,9/1/1984,Bantam Books +38536,Happily Ever After (Sweet Valley High #134),Francine Pascal/Kate William,3.58,0553570684,9780553570687,eng,199,251,5,8/11/1997,Bantam +38538,Forbidden Love (Sweet Valley High #34),Francine Pascal/Kate William,3.32,0553275216,9780553275216,eng,138,5,0,1/1/1987,Bantam Books +38539,Control Freak (SVH Senior Year #35),Francine Pascal,3.33,0553493841,9780553493849,eng,192,120,1,11/13/2001,Bantam +38547,Mosquito Bite,Alexandra Siy/Dennis Kunkel,3.51,157091592X,9781570915925,eng,32,72,19,2/1/2006,Charlesbridge +38548,Love Bites (Argeneau #2),Lynsay Sands,4.13,0505525534,9780505525536,eng,373,18631,564,1/6/2004,Love Spell +38549,Nigella Bites: From Family Meals to Elegant Dinners--Easy Delectable Recipes for Any Occasion,Nigella Lawson/Francesca Yorke,4.00,0786868694,9780786868698,eng,254,6587,71,11/13/2002,Hachette Books +38551,The Pursuit of History,John Tosh/Sean Lang,3.46,1405823518,9781405823517,en-US,357,374,17,2/1/2006,Longman Publishing Group +38560,Vegas Bites: A Werewolf Romance Anthology,L.A. Banks/J.M. Jeffries/Seressie Glass/Natalie Dunbar,4.12,1600430015,9781600430015,en-US,346,195,6,11/15/2006,Parker Publishing Llc +38562,A Bite to Remember (Argeneau #5),Lynsay Sands,4.24,006077407X,9780060774073,eng,362,17710,393,6/27/2006,Avon +38564,Boys that Bite (Blood Coven Vampire #1),Mari Mancusi,3.68,0425209423,9780425209424,en-US,272,10669,498,4/4/2006,Berkley +38568,A Quick Bite (Argeneau #1),Lynsay Sands,3.91,0060773758,9780060773755,eng,360,35275,1370,3/31/2020,Avon +38570,Bite Club (Bite Club #1),Howard Chaykin/David Tischman/David Hahn,3.07,1845760654,9781845760656,en-US,144,148,12,4/20/2005,Vertigo (DC Comics) +38572,Last Bite,Nancy Verde Barr,3.42,1565124952,9781565124950,eng,308,372,66,6/9/2006,Algonquin Books +38583,Bite Me!: An Unofficial Guide to the World of Buffy the Vampire Slayer,Nikki Stafford,4.13,1550225405,9781550225402,en-US,450,338,8,9/1/2002,ECW Press +38585,Small Bites Big Nights: Seductive Little Plates for Intimate Occasions and Lavish Parties,Govind Armstrong/Lisa Romerein/Tyler Florence,3.60,0307337936,9780307337931,eng,256,20,3,4/10/2007,Clarkson Potter +38592,Plants Bite Back! (DK Readers),Richard Platt,3.88,0789447541,0635517047547,eng,48,21,5,10/25/1999,DK Publishing (Dorling Kindersley) +38593,Last Wish (Sweet Valley High),Francine Pascal,3.91,0553507354,9780553507355,eng,231,2,0,5/1/1999,Bantam Books +38597,Starting Over (Sweet Valley High #33),Francine Pascal/Kate William,3.35,0553274910,9780553274912,eng,153,3,0,12/1/1986,Bantam Books +38601,Dear Sister (Sweet Valley High #7),Francine Pascal/Kate William,3.53,0553276727,9780553276725,eng,160,2071,81,11/1/1984,Bantam Books +38609,Don't Wait for Your Ship to Come In... Swim Out to Meet It!: Bite-Sized Inspirations to Help You Achieve Your Dreams,John Mason,3.22,1562920588,9781562920586,eng,160,9,2,12/1/1994,Honor Books +38619,Magic Bites (Kate Daniels #1),Ilona Andrews,4.07,0441014895,9780441014897,eng,261,86675,5395,3/27/2007,Ace +38633,The Secret Garden,Frances Hodgson Burnett/Graham Rust,4.13,0590240773,9780590240772,eng,298,254,24,6/1/1999,Scholastic +38638,The Secret Garden,Frances Hodgson Burnett/Scott McKowen,4.13,1402714599,9781402714597,eng,248,575,61,10/1/2004,Sterling +38640,The Secret Garden Coloring Book,Brian Doherty/Frances Hodgson Burnett/Thea Kliros,4.25,0486276805,9780486276809,eng,48,4,0,7/16/2014,Dover Publications +38643,A Little Princess,Frances Hodgson Burnett/Scott McKowen,4.20,1402714548,9781402714542,en-GB,208,500,54,10/1/2004,Sterling +38647,A Little Princess,Tania Zamorsky/Frances Hodgson Burnett/Lucy Corvino/Arthur Pober,4.16,1402712758,9781402712753,eng,160,3784,84,3/1/2005,Sterling +38648,The Little Princesses,Marion Crawford/Jennie Bond,4.03,0312312156,9780312312152,eng,230,416,65,4/10/2003,St. Martin's Press +38650,Laura Ingalls Wilder Country: The People and places in Laura Ingalls Wilder's life and books,William Anderson/Leslie A. Kelly,4.24,0060973463,9780060973469,eng,120,91,7,12/1/1995,Harper Perennial +38656,The Collected Works of C.S. Lewis,C.S. Lewis/Michael Hauge,4.45,0884861511,9780884861515,en-US,537,39,3,3/30/1996,Thomas Nelson +38664,Pedro Páramo,Juan Rulfo,4.05,8433920707,9788433920706,spa,122,504,44,10/31/2013,Anagrama +38665,Pedro Páramo / El Llano en llamas,Juan Rulfo,4.29,9703705774,9788408066439,spa,290,5103,118,4/1/2006,Planeta +38667,Pedro Páramo,Juan Rulfo,4.05,9685208557,9789685208550,spa,132,1386,209,12/1/2009,Editorial RM +38669,Pedro Paramo / El Llano En Llamas,Juan Rulfo,4.29,840804575X,9788408045755,spa,290,6,2,11/1/2002,Planeta Publishing +38670,Pedro Páramo,Juan Rulfo,4.05,351801434X,9783518014349,ger,132,450,32,4/1/1999,Suhrkamp +38673,Peter Pan in Kensington Gardens / Peter and Wendy,J.M. Barrie/Peter Hollindale,4.06,0192839292,9780192839299,eng,288,4206,102,10/28/1999,Oxford University Press +38674,Walt Disney's Peter Pan (A Little Golden Book),Walt Disney Company/Al Dempster,4.39,0736402381,9780736402385,eng,24,5661,87,1/23/2007,Golden/Disney +38677,Peter Pan And Wendy,J.M. Barrie/Ken Geist,4.08,0439672570,9780439672573,eng,224,141,23,10/1/2004,Orchard Books +38678,Peter Pan,J.M. Barrie/Tim Curry,4.08,0743564529,9780743564526,eng,5,46,7,10/5/2006,Simon Schuster Audio +38680,Adventures of Huckleberry Finn,Mark Twain,3.82,0440300282,9780440300281,eng,352,90,2,11/15/1977,Laurel +38686,Alice in Wonderland / Hunting of the Snark,Lewis Carroll/Donald J. Gray,4.06,0393958043,9780393958041,eng,416,1404,87,4/17/1992,W. W. Norton & Company +38695,Holes,Louis Sachar,3.96,0440419468,9780440419464,eng,233,2699,230,3/11/2003,Yearling Books +38700,Rabbit Hole,David Lindsay-Abaire,4.06,1559362901,9781559362900,eng,157,6634,185,9/1/2006,Theatre Communications Group +38707,A Magic Crystal? (Marvin Redpost),Louis Sachar,3.76,0747562830,9780747562832,eng,128,227,21,5/2/2005,Bloomsbury Publishing PLC +38709,Holes (Holes #1),Louis Sachar,3.96,0439244196,9780439244190,eng,233,887554,17547,9/2/2000,Scholastic +38710,Super Fast Out of Control,Louis Sachar,3.75,0747566828,9780747566823,eng,128,0,0,5/2/2005,Bloomsbury Publishing PLC +38717,The Anthology at the End of the Universe: Leading Science Fiction Authors on Douglas Adams' The Hitchhiker's Guide to the Galaxy,Glenn Yeffeth/Don DeBrandt/Cory Doctorow/Bruce Bethke/Adam Roberts/Lawrence Watt-Evans/Selina Rosen/Mark W. Tiedemann/Jacqueline Carey/Susan Sizemore/Vox Day/Stephen Baxter/A.M. Dellamonica/Marguerite Krause/John Shirley/Adam-Troy Castro/Amy Berner/Maria Alexander/Marie-Catherine Caillava/Mike Byrne,3.86,1932100563,9781932100563,eng,240,129,10,3/11/2005,Smart Pop +38723,The Feminine Mystique,Betty Friedan/Anna Quindlen,3.86,0393322572,9780393322576,eng,592,10108,650,9/17/2001,W. W. Norton Company +38724,Betty Friedan and the Making of "The Feminine Mystique": The American Left the Cold War and Modern Feminism,Daniel Horowitz,3.59,1558492763,9781558492769,eng,384,58,6,9/27/2000,University of Massachusetts Press +38735,James Herriot's Treasury for Children: Warm and Joyful Tales by the Author of All Creatures Great and Small,James Herriot/Ruth Brown/Peter Barrett,4.45,0312085125,9780312085124,eng,260,10128,245,9/1/1992,St. Martin's Press +38736,James Herriot's Dog Stories,James Herriot/Victor G. Ambrus,4.40,0312364520,9780312364526,eng,464,5692,214,11/14/2006,St. Martin's Griffin +38737,The Real James Herriot: A Memoir of My Father,Jim Wight,4.20,0345434900,9780345434906,en-US,371,4247,153,5/1/2001,Ballantine Books +38739,The Lord God Made Them All,James Herriot,4.42,0312966202,9780312966201,eng,373,12580,197,9/15/1998,St. Martin's Paperbacks +38746,Who Was Mark Twain?,April Jones Prince/Nancy Harrison/John O'Brien,4.16,0448433192,9780448433196,eng,112,529,56,5/24/2004,Grosset & Dunlap +38747,Roughing It,Mark Twain/Henry B. Wonham,3.89,0743436504,9780743436502,eng,560,5846,494,4/29/2003,Pocket Books +38750,The Complete Essays of Mark Twain,Mark Twain/Charles Neider,4.33,0306809575,9780306809576,eng,732,195,15,11/2/2000,Da Capo Press +38752,Death of a Salesman,Arthur Miller,3.51,0670261556,9780670261550,eng,139,1223,104,5/18/1949,Viking Books +38755,The Portable Arthur Miller,Arthur Miller/Harold Clurman/Christopher Bigsby,4.21,0142437557,9780142437551,eng,575,232,6,7/29/2003,Penguin Books +38756,Collected Plays 1944-1961,Arthur Miller/Tony Kushner,4.22,193108291X,9781931082914,en-US,774,419,10,2/2/2006,Library of America +38761,Incident at Vichy,Arthur Miller,3.96,0140481931,9780140481938,eng,80,686,54,4/2/1985,Penguin Books +38769,Discovering Great Artists: Hands-On Art for Children in the Styles of the Great Masters,MaryAnn F. Kohl/Kim Solga/Rebecca Van Slyke,4.24,0935607099,9780935607093,eng,144,400,29,5/1/1997,Chicago Review Press +38773,The Portable Thomas Jefferson,Thomas Jefferson/Merrill D. Peterson,4.05,0140150803,9780140150803,eng,589,171,6,10/27/1977,Penguin Classics +38775,Autobiography of Thomas Jefferson,Thomas Jefferson,3.89,0486442896,9780486442891,eng,112,696,34,6/3/2005,Dover Publications +38786,Juan Rulfo's Mexico,Juan Rulfo/Carlos Fuentes/Margo Glantz/Jorge Alberto Lozoya/Eduardo Rivero/Víctor Jiménez/E. Billeter,4.47,158834097X,9781588340979,eng,223,41,3,8/17/2002,Smithsonian Books +38787,Pedro Páramo,Juan Rulfo/Margaret Sayers Peden/Susan Sontag,4.05,0802133908,9780802133908,eng,128,28102,1511,3/10/1994,Grove Press +38788,The Burning Plain and Other Stories,Juan Rulfo/Kermit Oliver/George D. Schade,4.19,0292701322,9780292701328,en-US,191,337,45,1/1/1971,University of Texas Press +38803,Laughter and Tears: A Family's Journey to Understanding the Autism Spectrum,Ann Hewetson,4.00,1843103311,9781843103318,eng,224,4,1,1/15/2005,Jessica Kingsley Publishers +38804,The Irish Anatomist: A Study of Flann O'Brien,Keith Donohue,5.00,1930901356,9781930901353,eng,222,1,0,7/25/2003,Academica Press +38826,Quito 1599: City and Colony in Transition,Kris Lane/Lyman L. Johnson,3.52,082632357X,9780826323576,eng,312,22,2,7/26/2002,University of New Mexico Press +38827,1599: A Year in the Life of William Shakespeare,James Shapiro,4.09,0571214800,9780571214808,eng,429,34,6,9/1/2005,Faber & Faber +38830,Stranger from the Past,Penny Jordan,3.23,0373115997,9780373115990,eng,224,29,7,9/24/1993,Harlequin Presents +38835,The Olive Farm: A Memoir of Life Love and Olive Oil in the South of France,Carol Drinkwater,3.81,0142001309,9780142001301,eng,336,3269,174,6/25/2002,Penguin Books +38855,Confederates in the Attic: Dispatches from the Unfinished Civil War,Tony Horwitz,4.09,067975833X,9780679758334,eng,406,19207,1596,2/22/1999,Vintage +38860,Convergence Culture: Where Old and New Media Collide,Henry Jenkins,3.85,0814742815,9780814742815,en-GB,308,3147,118,8/1/2006,New York University Press +38874,The Sling and the Stone: On War in the 21st Century,Thomas X. Hammes,3.89,0760324077,9780760324073,eng,336,698,36,2/17/2006,Zenith Press +38892,Mistletoe,Hailey Abbott/Melissa de la Cruz/Aimee Friedman/Nina Malkin,3.41,0439863686,9780439863681,eng,222,541,57,10/1/2006,Scholastic Paperbacks +38898,The Guide to Hollywood and Beverly Hills,Charles Lockwood,4.33,0517550369,9780517550366,eng,174,3,0,1/16/1984,Random House Value Publishing +38905,Follow Your Heart's Vegetarian Soup Cookbook,Janice Cook Migliaccio,3.47,0880071311,9780880071314,eng,127,15,1,12/31/1983,Woodbridge Press Publishing Company +38911,Your Best Friend's Boyfriend (Follow Your Heart #1),J.E. Bright,3.34,0439791405,9780439791403,eng,240,49,5,1/1/2006,Scholastic Paperbacks +38913,Follow Your Heart,Susanna Tamaro/John T. Cullen,3.59,0385316577,9780385316576,eng,208,3294,213,8/1/1996,Delta +38917,Naughty Little Secret,Shayla Black/Shelley Bradley,3.73,1599982935,9781599982939,eng,212,2323,161,8/1/2006,Samhain Publishing +38918,No Accident (Little Secrets #2),Emily Blake,4.16,0439829135,9780439829137,eng,160,324,16,5/1/2006,Scholastic Paperbacks +38924,Dirty Little Secrets (Marisela Morales/Dirty #1),Julie Leto,3.58,1416501622,9781416501626,eng,352,444,51,5/31/2005,Gallery Books +38925,Dirty Little Secrets,Joy King,4.15,031235407X,9780312354077,eng,256,304,31,5/30/2006,St. Martin's Griffin +38928,Three Little Secrets (MacLachlan Family #4),Liz Carlyle,3.84,0743496124,9780743496124,eng,384,1181,50,4/1/2006,Pocket Star +38936,Lori's Little Secret (Bravo Family #15) (Bravo Family Ties Miniseries #3),Christine Rimmer,3.76,0373246838,9780373246830,eng,248,101,6,5/1/2005,Silhouette +38951,The Day My Butt Went Psycho,Andy Griffiths/Miles Thompson,3.73,0439424690,9780439424691,eng,220,1853,232,4/1/2003,Scholastic Inc. +38955,Just Disgusting!,Andy Griffiths/Terry Denton,3.83,0330363689,9780330363686,eng,180,70,3,8/1/2002,Pan Australia +38970,Thorn in Her Side (The Princess School #7),Jane B. Mason/Sarah Hines Stephens,3.88,0439798736,9780439798730,eng,144,214,8,1/1/2006,Scholastic Paperbacks +38977,The Princess of the Chalet School,Elinor M. Brent-Dyer,4.08,000690601X,9780006906018,eng,159,465,21,1/1/2000,HarperCollins +38980,The Princess Diaries (The Princess Diaries #1),Meg Cabot,3.78,0613371658,9780613371650,eng,283,216359,4137,7/1/2001,Turtleback +38986,Let Down Your Hair,Jane B. Mason/Sarah Hines Stephens,3.83,043962939X,9780439629393,eng,144,450,12,12/1/2004,Scholastic Paperbacks +38988,Awakening (Chasing Yesterday #1),Robin Wasserman,3.95,0439933382,9780439933384,en-US,207,2569,297,5/1/2007,Scholastic Paperbacks +38989,Betrayal (Chasing Yesterday #2),Robin Wasserman,3.96,0439933412,9780439933414,en-US,209,1435,101,7/1/2007,Scholastic Paperbacks +38990,Fun Home: A Family Tragicomic,Alison Bechdel,4.08,0618477942,9780618477944,eng,240,48966,3928,6/8/2006,Houghton Mifflin Company +38992,Second Home: Finding Your Place in the Fun (Better Homes and Gardens),Denny Caringer/Better Homes and Gardens,3.83,0696211521,9780696211522,eng,216,6,1,10/15/2000,Better Homes and Gardens Books +39000,Six Frigates: The Epic History of the Founding of the U. S. Navy,Ian W. Toll,4.32,0393058476,9780393058475,eng,560,3966,322,10/17/2006,W. W. Norton Company +39001,Power Sex Suicide: Mitochondria and the Meaning of Life,Nick Lane,4.24,0199205647,9780199205646,eng,354,2221,151,12/1/2006,Oxford University Press USA +39004,Die Tagebücher einer Nanny,Emma McLaughlin/Nicola Kraus,3.42,3442545536,9783442545537,ger,344,38,2,2/1/2003,Goldmann +39020,1491: New Revelations of the Americas Before Columbus,Charles C. Mann,4.02,1400032059,9781400032051,eng,541,56290,3238,10/10/2006,Vintage +39022,Saint Ignatius Loyola: The Pilgrim Years 1491-1538,James Brodrick,4.09,0898706831,9780898706833,eng,350,11,1,11/1/1998,Ignatius Press +39026,Deep Storm (Jeremy Logan #1),Lincoln Child,3.87,0385515502,9780385515504,eng,370,21502,801,3/15/2007,Doubleday Books +39027,Death Match,Lincoln Child,3.79,0307275566,9780307275561,eng,388,8699,410,10/31/2006,Anchor Books +39028,The Wheel of Darkness (Pendergast #8),Douglas Preston/Lincoln Child,3.93,0446580287,9780446580281,eng,388,21797,1002,8/28/2007,Grand Central Publishing +39030,Reliquary (Pendergast #2),Douglas Preston/Lincoln Child,4.01,0765354950,9780765354952,eng,464,32325,1044,8/1/2005,Tor Books +39031,The Cabinet of Curiosities (Pendergast #3),Douglas Preston/Lincoln Child,4.25,0446611239,9780446611237,eng,629,34650,1722,6/1/2003,Warner Books +39033,Still Life With Crows (Pendergast #4),Douglas Preston/Lincoln Child,4.18,0446612766,9780446612760,eng,564,26865,1228,7/1/2004,Grand Central Publishing +39034,Dancing on My Grave,Gelsey Kirkland/Greg Lawrence,3.80,051509465X,9780515094657,eng,363,1593,133,11/1/1987,Jove +39035,Dancing on His Grave: A True Story of Survival and Triumph,Barbara Richard,3.76,1412086531,9781412086530,eng,296,16,4,6/5/2006,Trafford Publishing +39045,I Don't Know How She Does It (Kate Reddy #1),Allison Pearson,3.33,0375713751,9780375713750,eng,368,16763,1420,8/26/2003,Anchor Books +39046,I Don't Know How She Does It (Kate Reddy #1),Allison Pearson,3.33,0099428385,9780099428381,eng,368,214,25,5/1/2003,Vintage +39068,Perfect Girls Starving Daughters: The Frightening New Normalcy of Hating Your Body,Courtney E. Martin,3.78,0743287967,9780743287968,en-US,352,1116,125,4/17/2007,Free Press +39077,The 21 Success Secrets of Self-Made Millionaires: How to Achieve Financial Independence Faster and Easier Than You Ever Thought Possible,Brian Tracy,4.05,1583762051,9781583762059,eng,91,1627,88,11/13/2000,Berrett-Koehler Publishers +39081,The Cake Book,Tish Boyle/John Uher,4.19,0471469335,9780471469339,eng,384,100,12,4/14/2006,Houghton Mifflin Harcourt +39088,Grand Finales: A Modernist View of Plated Desserts,Tish Boyle/Timothy Moriarty,4.24,0471292516,9780471292517,eng,288,17,0,11/7/1997,Wiley +39093,The Making of the Fittest: DNA and the Ultimate Forensic Record of Evolution,Sean B. Carroll/Jamie W. Carroll/Leanne M. Olds,4.07,0393061639,9780393061635,eng,304,2611,105,10/17/2006,W. W. Norton Company +39097,The Bride Finder (St. Leger #1),Susan Carroll,3.84,0449003884,9780449003886,eng,416,1242,96,1/30/1999,Ivy Books +39099,The Courtesan (The Dark Queen Saga #2),Susan Carroll,3.90,0345437977,9780345437976,eng,560,2218,104,7/26/2005,Ballantine Books +39101,Giovanni and Lusanna: Love and Marriage in Renaissance Florence,Gene A. Brucker,3.57,0520244958,9780520244955,eng,160,268,25,12/14/2004,University of California Press +39102,The Collected Poetry 1968-1998,Nikki Giovanni/Virginia C. Fowler,4.42,0060724293,9780060724290,eng,512,1249,52,1/23/2007,William Morrow +39103,Mozart's Don Giovanni (the Dover Opera Libretto Series),Wolfgang Amadeus Mozart/Lorenzo Da Ponte/Ellen H. Bleiler,3.94,0486249441,9780486249445,eng,128,51,2,10/1/1985,Dover Publications +39105,Love Poems,Nikki Giovanni,4.26,0688149898,9780688149895,eng,96,1743,134,2/14/1997,William Morrow +39106,Rosa,Nikki Giovanni/Bryan Collier,4.35,0805071067,9780805071061,en-US,40,6097,635,10/1/2005,Henry Holt and Co. (BYR) +39124,The covert war against rock: what you don't know about the deaths of Jim Morrison Tupac Shakur Michael Hutchence Brian Jones Jimi Hendrix Phil Ochs Bob Marley Peter Tosh John Lennon The Notorious B.I.G,Alex Constantine,3.58,092291561X,9780922915613,eng,280,85,8,5/1/2000,Feral House +39141,Gale Gand's Short + Sweet : Quick Desserts with Eight Ingredients or Less,Gale Gand/Julia Moskin/Tim Turner,3.71,1400047331,9781400047338,eng,160,24,4,1/13/2004,Clarkson Potter/Publishers +39149,What Angels Fear (Sebastian St. Cyr #1),C.S. Harris,3.89,0451219716,9780451219718,eng,410,10168,1077,10/3/2006,Signet +39173,Breaking Free from Compulsive Eating,Geneen Roth,4.01,0452270847,9780452270848,eng,224,182,12,9/1/1993,Plume +39175,When Food Is Love: Exploring the Relationship Between Eating and Intimacy,Geneen Roth,4.04,0452268184,9780452268180,eng,224,1536,134,7/1/1992,Plume Books +39177,You're Born an Original Don't Die a Copy!,John Mason,4.06,0884193551,9780884193555,eng,120,178,24,12/1/1993,Insight International +39180,Orin Aoraiosaa: Songs for Selected Heads,John Mason,4.39,1881244067,9781881244066,eng,450,39,3,1/1/1997,Yoruba Theological Archministry +39181,Guide to Stress Reduction,L. John Mason,4.22,1587610914,9781587610912,eng,326,9,1,5/22/2001,Celestial Arts +39191,La máquina de follar,Charles Bukowski,3.92,8433920448,9788433920447,spa,190,951,85,7/1/1995,Anagrama +39201,Getting a Grip on the Basics: Building a Firm Foundation for the Victorious Christian Life,Beth A. Jones,4.67,1577948262,9781577948261,eng,124,9,0,5/1/2006,Harrison House +39213,Freedom Riders: John Lewis and Jim Zwerg on the Front Lines of the Civil Rights Movement,Ann Bausum,3.98,0792241738,9780792241737,eng,80,254,57,12/27/2005,National Geographic Children's Books +39242,The Milagro Beanfield War,John Nichols,4.10,0805063749,9780805063745,eng,456,9120,395,2/15/2000,Holt McDougal +39245,The Magic Journey,John Nichols,3.91,0805063390,9780805063394,eng,528,449,28,2/15/2000,Holt Paperbacks +39266,Captain Slaughterboard Drops Anchor,Mervyn Peake,4.09,0763616257,9780763616250,en-US,48,165,17,12/31/2001,Candlewick Press (MA) +39286,Hide-and-Seek with Angels: The Life of J.M. Barrie,Lisa Chaney,3.91,0099453231,9780099453239,eng,448,66,11,5/16/2006,Arrow +39302,The Hunted (Vampire Huntress #3),L.A. Banks,4.14,0312937725,9780312937720,eng,565,2732,79,6/13/2005,St. Martin's Paperbacks +39303,The Bitten (Vampire Huntress #4),L.A. Banks,4.24,0312324081,9780312324087,en-US,435,2447,63,6/13/2005,St. Martin's Griffin +39304,The Forsaken (Vampire Huntress #7),L.A. Banks,4.35,0312352352,9780312352356,eng,448,1878,36,6/27/2006,St. Martin's Griffin +39305,Minion (Vampire Huntress #1),L.A. Banks,3.44,0312987013,9780312987015,eng,286,5531,493,5/4/2004,St. Martin's Paperback +39306,The Awakening (Vampire Huntress #2),L.A. Banks,4.00,0312987021,9780312987022,eng,300,3173,133,12/28/2004,St. Martin's Paperbacks +39307,The Forbidden (Vampire Huntress #5),L.A. Banks,4.27,0312940025,9780312940027,eng,490,2133,42,6/27/2006,St. Martin's Paperbacks +39308,The Damned (Vampire Huntress #6),L.A. Banks,4.28,0312336241,9780312336240,eng,487,69,3,1/24/2006,St. Martin's Griffin +39309,The Damned (Vampire Huntress #6),L.A. Banks,4.28,0312934432,9780312934439,eng,492,1993,38,1/2/2007,St. Martin's Paperbacks +39311,Brand New Justice: How Branding Places and Products Can Help the Developing World,Simon Anholt,3.69,0750666005,9780750666008,en-US,184,15,0,1/15/2005,Routledge +39315,Katie's Big Move (Junior Gymnasts #2),Teddy Slater/Wayne Alfano,3.75,0590859986,9780590859981,eng,77,12,0,12/31/1996,Scholastic +39317,Amanda's Unlucky Day (Junior Gymnasts #6),Teddy Slater/Wayne Alfano,3.50,0590959883,9780590959889,eng,78,6,1,12/31/1997,Apple +39339,Beat That! Cookbook,Ann Hodgman,4.31,0395971780,9780395971789,eng,208,34,1,10/7/1999,Rux Martin/Houghton Mifflin Harcourt +39346,Stake That (Blood Coven Vampire #2),Mari Mancusi,3.97,0425212106,9780425212103,eng,288,5449,191,12/5/2006,Berkley +39347,Sk8er Boy (First Kiss Club #1),Mari Mancusi,3.72,0843956046,9780843956047,eng,181,357,32,10/1/2005,Leisure Books +39357,Bride & Groom (A Dog Lover's Mystery #16),Susan Conant/Maxwell Award,3.78,0425200744,9780425200742,eng,262,263,19,1/4/2005,Berkley +39358,Stud Rites (A Dog Lover's Mystery #9),Susan Conant,3.81,0425201597,9780425201596,eng,237,322,16,3/1/2005,Berkley Prime Crime Books +39359,The Dogfather (A Dog Lover's Mystery #15),Susan Conant,3.83,0425194590,9780425194591,eng,272,320,20,2/3/2004,Berkley +39360,Steamed (A Gourmet Girl Mystery #1),Jessica Conant-Park/Susan Conant,3.45,0425210383,9780425210383,eng,320,956,93,2/6/2007,Berkley +39361,Paws Before Dying (A Dog Lover's Mystery #4),Susan Conant,3.90,0425144305,9780425144305,eng,197,427,20,1/1/1960,Berkley Books +39363,A New Leash on Death (A Dog Lover's Mystery #1),Susan Conant,3.79,0425146227,9780425146224,eng,180,1097,71,4/1/1994,Berkley Prime Crime +39365,Scratch the Surface (A Cat Lover's Mystery #1),Susan Conant,3.34,0425206114,9780425206119,eng,288,23,2,7/5/2006,Berkley +39382,Corvette,Jerry Burton,4.83,0883631210,9780883631218,eng,320,6,1,10/1/2006,Universe Publishing(NY) +39392,Lucifer's Shadow,David Hewson,3.57,0385338058,9780385338059,eng,369,586,52,7/26/2005,Delta +39396,The Key,Lynsay Sands,4.04,084394482X,9780843944822,eng,313,2152,89,1/1/2003,Leisure Books +39397,The Deed (Deed #1),Lynsay Sands,3.94,0843948108,9780843948103,eng,313,3048,168,12/1/2004,Leisure Books +39398,The Chase (Deed #3),Lynsay Sands,4.06,0843953241,9780843953244,eng,374,2098,68,12/1/2004,Leisure Books +39399,Bliss,Lynsay Sands,3.97,0843949090,9780843949094,eng,394,1742,108,9/1/2001,Leisure Books +39400,The Perfect Wife,Lynsay Sands,3.86,084395499X,9780843954999,eng,354,2712,131,10/1/2005,Leisure Books +39401,Sweet Revenge,Lynsay Sands,3.99,0843946806,9780843946802,eng,400,1786,90,2/1/2004,Leisure Books +39402,The Reluctant Reformer,Lynsay Sands,3.91,0843949740,9780843949742,eng,371,1274,61,2/3/2002,Leisure +39403,Love Is Blind,Lynsay Sands,3.99,0843955007,9780843955002,eng,342,3488,207,8/1/2006,Leisure Books +39418,Standard Catalog of Smith & Wesson,Jim Supica/Richard Nahas,4.44,089689293X,9780896892934,en-US,432,38,1,1/1/2007,Gun Digest Books +39433,Korea's Place in the Sun: A Modern History,Bruce Cumings,3.77,0393327027,9780393327021,eng,544,647,67,9/17/2005,W. W. Norton Company +39440,Mighty Love,Howard Chaykin,3.12,1563899310,9781563899317,eng,96,51,3,2/1/2005,DC Comics +39441,Challengers of the Unknown: Stolen Moments Borrowed Time,Howard Chaykin/Michelle Madsen,2.82,1401209416,9781401209414,eng,144,44,8,3/29/2006,DC Comics +39442,Black Kiss,Howard Chaykin,3.56,1560973803,9781560973805,eng,136,277,28,5/16/2000,Eros Comix +39444,Son of Superman,Howard Chaykin/David Tischman/J.H. Williams III/Mick Gray/Lee Loughridge,3.38,1563895951,9781563895951,eng,95,11,1,1/1/2000,DC Comics +39470,Castle Diary: The Journal of Tobias Burgess,Richard Platt/Chris Riddell,3.82,0763621641,9780763621643,eng,128,1155,66,7/14/2003,Candlewick +39473,Disaster!: Catastrophes That Shook the World,Richard Bonson/Richard Platt,4.06,0789420341,9780789420343,eng,63,16,2,9/1/1997,DK Publishing (Dorling Kindersley) +39476,Stephen Biesty's Incredible Explosions,Stephen Biesty/Richard Platt,4.41,0789410249,9780789410245,eng,32,30,2,7/1/1996,DK Publishing (Dorling Kindersley) +39501,The Burglar Who Thought He Was Bogart (Bernie Rhodenbarr #7),Lawrence Block,3.89,0060872799,9780060872793,en-US,400,2134,99,10/31/2006,HarperTorch +39503,Hit Parade (John Keller #3),Lawrence Block,3.86,0060840889,9780060840884,eng,295,104,12,7/3/2006,William Morrow +39504,The Girl with the Long Green Heart,Lawrence Block,3.75,0843955856,9780843955859,eng,251,1236,115,11/1/2005,Hard Crime Case +39505,The Burglar Who Painted Like Mondrian (Bernie Rhodenbarr #5),Lawrence Block,3.88,0060731435,9780060731434,eng,311,2063,103,7/26/2005,HarperTorch +39506,The Burglar Who Liked to Quote Kipling (Bernie Rhodenbarr #3),Lawrence Block,3.83,0060731257,9780060731250,eng,304,2473,138,3/1/2005,HarperTorch +39508,Out on the Cutting Edge (Matthew Scudder #7),Lawrence Block,4.07,0752837494,9780752837499,eng,244,2383,115,12/7/2000,Orion +39509,Writing the Novel: From Plot to Print,Lawrence Block,3.95,0898792088,9780898792089,eng,197,347,36,10/28/2002,Writer's Digest Books +39510,The Burglar Who Traded Ted Williams (Bernie Rhodenbarr #6),Lawrence Block,3.89,0060731443,9780060731441,eng,384,2190,98,10/25/2005,HarperTorch +39518,Gilda Joyce: Psychic Investigator (Gilda Joyce #1),Jennifer Allison,3.89,0142406988,9780142406984,eng,336,5227,400,11/23/2006,Puffin Books +39526,Boeing Versus Airbus: The Inside Story of the Greatest International Competition in Business,John Newhouse,3.63,1400043360,9781400043361,eng,254,247,28,1/16/2007,Alfred A. Knopf +39535,Fabulous Small Jews,Joseph Epstein,3.90,0618446583,9780618446582,en-US,352,192,29,7/6/2004,Mariner Books +39539,Feast: Food to Celebrate Life,Nigella Lawson,4.15,1401301363,9781401301361,eng,480,7285,86,10/27/2004,Hachette Books +39541,How to Be a Domestic Goddess: Baking and the Art of Comfort Cooking,Nigella Lawson/Petrina Tinslay,3.97,0786867973,9780786867974,en-US,374,251,18,11/14/2001,Hyperion Books +39542,How to Be a Domestic Goddess: Baking and the Art of Comfort Cooking,Nigella Lawson,3.97,0786886811,9780786886814,eng,384,29553,254,9/1/2005,Hachette Books +39543,Forever Summer,Nigella Lawson,4.00,0701176156,9780701176150,eng,279,4230,43,6/2/2005,Chatto Windus +39571,programming.java: An Introduction to Programming Using Java: An Introduction to Programming Using Java,Rick Decker/Stuart Hirshfield,4.00,0534371094,9780534371098,eng,640,1,0,12/24/1999,Course Technology +39580,The American Campaign: U.S. Presidential Campaigns and the National Vote,James E. Campbell,5.00,089096940X,9780890969403,eng,314,0,0,5/1/2000,Texas A&M University Press +39582,The Anglo-Saxons,James Campbell/Eric John/Patrick Wormald,4.04,0140143955,9780140143959,eng,272,550,28,3/28/1991,Penguin +39585,The Final Frontiersman: Heimo Korth and His Family Alone in Alaska's Arctic Wilderness,James Campbell,4.21,074345314X,9780743453141,en-US,320,1179,141,9/13/2005,Atria Books +39622,The Untamed One (Wild Wulfs of London #2),Ronda Thompson,4.01,0312935749,9780312935740,eng,320,925,42,5/2/2006,St. Martin's Paperbacks +39623,The Cursed One (Wild Wulfs of London #3),Ronda Thompson,4.02,0312935757,9780312935757,eng,305,1006,46,11/28/2006,St. Martin's Paperbacks +39624,The Dark One (Wild Wulfs of London #1),Ronda Thompson,3.87,0312935730,9780312935733,eng,341,1734,98,11/1/2005,St. Martin's Press +39625,Call of the Moon,Ronda Thompson,3.74,0505525151,9780505525154,eng,352,126,8,1/1/2009,Love Spell +39632,Bad (Fearless #13),Francine Pascal,3.97,0743415353,9780743415354,en-GB,215,728,6,7/10/2002,Simon & Schuster Childrens Books +39633,Fear (Fearless #23),Francine Pascal,3.97,0743449320,9780743449328,eng,208,436,6,9/1/2002,Simon & Schuster Childrens Books +39636,Twisted (Fearless #4),Francine Pascal,3.94,0671773453,9780671773458,eng,240,1582,24,6/22/2002,Simon & Schuster Childrens Books +39637,Run (Fearless #3),Francine Pascal,3.93,067103748X,9780671037482,eng,205,2262,50,3/1/2000,Simon & Schuster (Trade Division) +39638,Killer (Fearless #12),Francine Pascal,4.03,0743408667,9780743408660,eng,222,784,12,11/6/2000,Simon & Schuster Childrens Books +39639,Alone (Fearless #22),Francine Pascal,3.97,0743449312,9780743449311,eng,224,490,5,7/16/2002,Simon & Schuster Childrens Books +39640,Tears (Fearless #15),Francine Pascal,3.97,0743412494,9780743412490,eng,214,644,11,5/1/2001,Simon Pulse +39660,The Shawshank Redemption,Mark Kermode/Rob White,4.43,0851709680,9780851709680,eng,96,725,42,8/26/2003,British Film Institute +39661,The Shawshank Redemption: The Shooting Script,Frank Darabont/Stephen King,4.64,1557042462,9781557042460,eng,184,2406,29,9/30/2004,Newmarket Press +39662,Different Seasons,Stephen King,4.35,0751514624,9780751514629,eng,560,127648,2080,2/16/1995,Warner Books +39671,The Real Frank Zappa Book,Frank Zappa/Peter Occhiogrosso,4.13,0330316257,9780330316255,eng,352,4934,223,8/3/1990,Picador USA +39685,Homegrown Democrat: A Few Plain Thoughts from the Heart of America,Garrison Keillor,3.96,0143037684,9780143037682,eng,288,1182,134,8/29/2006,Penguin Books +39690,Good Poems for Hard Times,Garrison Keillor/Charles Bukowski/Robert Burns/Hayden Carruth/Raymond Carver/Billy Collins/Noël Coward/Carl Dennis/E.E. Cummings/Emily Dickinson/Stephen Dobyns/Fleur Adcock/John Donne/Rita Dove/Stephen Dunn/Lawrence Ferlinghetti/Robert Frost/Erica Funkhouser/Donald Hall/Patricia Hampl/Thomas Hardy/Jim Harrison/W.H. Auden/Jennifer Michael Hecht/David Ignatow/John Keats/X.J. Kennedy/Jane Kenyon/Galway Kinnell/Maxine Kumin/Kate Light/Henry Wadsworth Longfellow/Louis MacNeice/Hilaire Belloc/Herman Melville/W.S. Merwin/Edna St. Vincent Millay/Howard Nemerov/Sharon Olds/Mary Oliver/Grace Paley/Lawrence Raab/Kenneth Rexroth/Wendell Berry/Carl Sandburg/John Berryman/Elizabeth Bishop/William Blake/Philip Booth/Virginia Hamilton Adair/Liesl Mueller,4.14,0143037676,9780143037675,eng,344,2662,214,8/29/2006,Penguin Books +39692,Good Poems,Garrison Keillor,4.18,0142003441,9780142003442,eng,476,6060,389,8/26/2003,Penguin Books +39700,Managers Not MBAs: A Hard Look at the Soft Practice of Managing and Management Development,Henry Mintzberg,3.83,1576753514,9781576753514,en-US,464,146,7,8/1/2005,Berrett-Koehler Publishers +39707,Hell No We Won't Go! Resisting the Draft During the Vietnam War,Sherry Gershon Gottlieb,4.50,0670839353,9780670839353,eng,274,8,1,7/1/1991,Viking +39724,Marsha Is Only a Flower (Marsha #2),Barbara Bottner,3.82,0307263304,9780307263308,eng,48,20,1,4/1/2000,Random House Books for Young Readers +39733,Almond Cookies & Dragon Well Tea,Cynthia Chin-Lee/Youshan Tang,3.89,1879965038,9781879965034,eng,37,9,0,5/1/1993,Polychrome Publishing Corporation +39747,The Empire of Ice Cream,Jeffrey Ford/Jonathan Carroll,4.03,1930846398,9781930846395,eng,320,426,37,4/1/2006,Golden Gryphon Press +39748,The Fantasy Writer's Assistant and Other Stories,Jeffrey Ford,4.09,193084610X,9781930846104,eng,247,207,23,8/1/2002,Golden Gryphon Press +39749,Memoranda,Jeffrey Ford/Jacques Guiod,3.90,2290319708,9782290319703,fre,253,206,13,12/10/2002,J'ai Lu +39763,The Mystical Poems of Rumi 1: First Selection Poems 1-200,Rumi/A.J. Arberry,4.28,0226731510,9780226731513,eng,208,114,8,3/15/1974,University Of Chicago Press +39771,Ruby Gloom's Guide to Friendship,Matt Riser/Martin Hsu,4.36,0810958627,9780810958623,eng,72,38,4,5/1/2005,Harry N. Abrams +39773,Slouching Toward Nirvana,Charles Bukowski/John Martin,3.99,0060577045,9780060577049,eng,288,1937,105,1/3/2006,Ecco +39774,Mockingbird Wish Me Luck,Charles Bukowski,4.13,0876851383,9780876851388,eng,160,1818,85,5/31/2002,Ecco +39784,Seventeen and In-Between,Barthe DeClements,3.81,0140364757,9780140364750,eng,176,227,8,8/1/1993,Puffin +39785,How Do You Lose Those Ninth-grade Blues?,Barthe DeClements,3.74,0140363335,9780140363333,eng,144,10,1,4/1/1993,Puffin +39792,The Man Who Smiled (Kurt Wallander #4),Henning Mankell/Laurie Thompson,3.93,1565849930,9781565849938,eng,325,14322,521,9/19/2006,The New Press +39793,Before the Frost (Linda Wallander #1),Henning Mankell/Ebba Segerberg,3.85,1400095816,9781400095810,eng,375,8359,483,2/14/2006,Vintage Crime/Black Lizard +39795,The Dogs of Riga (Kurt Wallander #2),Henning Mankell/Laurie Thompson,3.72,1400031524,9781400031528,eng,326,17060,1016,4/13/2004,Vintage Crime/Black Lizard +39796,Sidetracked (Kurt Wallander #5),Henning Mankell/Steven T. Murray,4.07,1400031567,9781400031566,eng,432,15178,574,5/13/2003,Vintage Crime/Black Lizard +39797,The Return of the Dancing Master,Henning Mankell/Laurie Thompson,3.91,1400076951,9781400076956,swe,406,5341,314,2/8/2005,Vintage Crime/Black Lizard +39799,One Step Behind (Kurt Wallander #7),Henning Mankell/Ebba Segerberg,4.09,0099448874,9780099448877,eng,450,11885,481,4/3/2003,Vintage +39801,The White Lioness (Kurt Wallander #3),Henning Mankell/Laurie Thompson,3.84,0099464691,9780099464693,eng,576,12367,709,9/4/2003,Vintage +39806,Black Like Us: A Century of Lesbian Gay and Bisexual African American Fiction,Devon W. Carbado/Evelyn C. White/Dwight A. McBride/Donald Weise,4.33,1573441082,9781573441087,eng,600,127,16,5/28/2002,Cleis Press +39819,Dogged Pursuit (Jack and Jamie #5),Lee Charles Kelley,3.86,0060732296,9780060732295,eng,320,64,6,6/27/2006,Avon +39820,To Collar a Killer (Jack and Jamie #3),Lee Charles Kelley,3.76,0060524952,9780060524951,eng,304,70,6,11/30/2004,Avon +39822,A Nose for Murder (Jack and Jamie #1),Lee Charles Kelley,3.52,0060524936,9780060524937,eng,267,97,13,3/1/2003,Avon Books +39823,Murder Unleashed (Jack and Jamie #2),Lee Charles Kelley,3.95,0060524944,9780060524944,eng,304,61,10,1/1/2004,Avon Books +39829,His Princess Devotional: A Royal Encounter With Your King,Sheri Rose Shepherd,5.00,1590529626,9781590529621,eng,240,2,0,10/16/2007,Multnomah +39836,How to Be Happy All the Time,Paramahansa Yogananda,4.36,1565892151,9781565892156,eng,167,317,19,6/1/2006,Crystal Clarity Publishers +39849,Illuminata: A Return to Prayer,Marianne Williamson,4.28,1573225207,9781573225205,eng,301,2551,84,11/1/1995,Riverhead Books +39855,Ten Kids No Pets,Ann M. Martin,3.91,0590422448,9780590422444,eng,174,88,11,4/1/1989,Scholastic +39872,Encyclopedia of an Ordinary Life,Amy Krouse Rosenthal,3.92,1400080460,9781400080465,eng,240,5067,897,12/6/2005,Broadway Books +39876,The OK Book,Amy Krouse Rosenthal/Tom Lichtenheld,3.96,0061152552,9780061152559,en-US,40,1019,189,4/24/2007,HarperCollins +39889,Grey Eminence,Aldous Huxley,4.16,0099477823,9780099477822,en-US,320,196,14,4/7/2005,Vintage Classics +39899,Arms and Armor: A Pictorial Archive from Nineteenth-Century Sources,Carol Belanger Grafton,3.96,0486285618,9780486285610,eng,128,26,1,7/25/1995,Dover Publications +39902,Bittersweet: Recipes and Tales from a Life in Chocolate,Alice Medrich/Deborah Jones,4.28,1579651607,9781579651602,eng,378,359,25,11/15/2003,Artisan +39904,Chocolate and the Art of Low-Fat Desserts,Alice Medrich,4.00,044651666X,9780446516662,eng,192,38,1,10/28/1994,Warner Books (NY) +39905,A Year in Chocolate: Four Seasons of Unforgettable Desserts,Alice Medrich,3.74,0446526649,9780446526647,eng,152,28,1,10/24/2001,Warner Books (NY) +39906,Cocolat: Extraordinary Chocolate Desserts,Alice Medrich/Patricia Brabant,4.56,0446514195,9780446514194,eng,192,80,10,10/1/1990,Grand Central Publishing +39910,The Bread Baker's Apprentice: Mastering the Art of Extraordinary Bread,Peter Reinhart/Ron Manville,4.28,1580082688,9781580082686,eng,320,8552,248,11/14/2001,Ten Speed Press +39913,Beach Blanket Bad Boys,Linda Lael Miller/Alison Kent/Lucy Monroe/Jill Shalvis/Susanna Carr/Morgan Leigh,3.89,0758210949,9780758210944,eng,352,1031,27,6/7/2005,Kensington +39916,Epileptic,David B.,3.88,0375714685,9780375714689,eng,368,11891,534,7/4/2005,Pantheon +39926,The Beauty Myth,Naomi Wolf,3.89,0060512180,9780060512187,eng,368,16760,909,9/24/2002,Harper Perennial +39933,How to Read Literature Like a Professor,Thomas C. Foster,3.65,006000942X,9780060009427,eng,314,16550,1826,11/14/2014,Harper Perennial +39934,Reading Like a Writer: A Guide for People Who Love Books and for Those Who Want to Write Them,Francine Prose,3.77,0060777052,9780060777050,eng,297,7914,1094,4/10/2007,Harper Perennial +39936,After,Francine Prose,3.49,0060080833,9780060080839,eng,352,1782,268,5/11/2004,HarperTeen +39937,Blue Angel,Francine Prose,3.35,0060882034,9780060882037,eng,314,2948,383,2/28/2006,Harper Perennial +39941,Household Saints,Francine Prose,3.70,0060507276,9780060507275,en-US,272,370,47,4/1/2003,Harper Perennial +39959,The Carl Hiaasen Collection: Lucky You and Sick Puppy,Carl Hiaasen/Edward Asner,4.32,0739340824,9780739340820,en-US,0,90,5,6/6/2006,Random House Audio +39961,He Came to Set the Captives Free,Rebecca Brown,4.09,0883683237,9780883683231,en-US,288,1598,168,7/1/1992,Whitaker House +39963,A Long Way from Chicago (A Long Way from Chicago #1),Richard Peck,3.94,0142401102,9780142401101,eng,160,30141,2106,4/12/2004,Puffin Books +39969,A Long Way from Chicago (Saddleback's Focus on Reading Study Guides),Lisa S. French,4.00,1599051125,9781599051123,eng,42,1,0,8/5/2006,Saddleback Educational Publishing Inc. +39970,The Dreadful Future of Blossom Culp (Blossom Culp #3),Richard Peck,3.78,0141310944,9780141310947,eng,192,561,37,4/23/2001,Puffin +39980,A Year Down Yonder (A Long Way from Chicago #2),Richard Peck,4.11,0142300705,9780142300701,eng,160,26143,1638,11/21/2002,Puffin Books +39988,Matilda,Roald Dahl/Quentin Blake,4.31,0141301066,9780141301068,eng,240,541914,11576,6/1/1998,Puffin Books +39989,Matilda Bone,Karen Cushman/Trina Schart Hyman,3.74,0440418224,9780440418221,eng,176,3061,215,3/12/2002,Yearling +39993,The Full Matilda,David Haynes,4.00,0767915690,9780767915694,eng,384,46,5,5/11/2004,Broadway Books +39994,Tuscan Countess: The Life and Extraordinary Times of Matilda of Canossa,Michele K. Spike,3.68,0865652422,9780865652422,eng,312,51,10,9/28/2004,Vendome Press +40003,The History of Rome Books 21-30: The War with Hannibal,Livy/Aubrey de Sélincourt/Betty Radice,4.14,014044145X,9780140441451,eng,711,3103,46,7/30/1972,Penguin Classics +40004,Hannibal,Theodore Ayrault Dodge/Ian M. Cuthbertson,4.13,076076896X,9780760768969,eng,592,19,2,7/16/2005,Barnes Noble +40005,Hannibal's Children,John Maddox Roberts,3.68,0441010385,9780441010387,eng,359,204,18,3/25/2003,Berkley Publishing Group +40007,Hannibal Crosses the Alps: The Invasion of Italy & the Second Punic War,John Prevas,3.83,0306810700,9780306810701,en-US,256,91,11,9/17/2001,Da Capo Press +40010,Hannibal: Enemy Of Rome,Leonard Cottrell,3.89,0306804980,9780306804984,eng,248,129,17,8/22/1992,Da Capo Press +40012,Goodman & Gilman's the Pharmacological Basis of Therapeutics,Laurence L. Brunton/John S. Lazo/Keith L. Parker,4.29,0071422803,9780071422802,eng,2021,185,8,9/21/2005,McGraw-Hill Professional Publishing +40016,Young Goodman Brown and Other Short Stories,Nathaniel Hawthorne,3.86,0486270602,9780486270609,eng,111,9101,126,2/5/1992,Dover Publications +40020,A Patchwork Planet,Anne Tyler,3.79,080411918X,9780804119184,eng,320,11355,571,5/1/2001,Ballantine Books +40021,A Slipping-Down Life,Anne Tyler,3.61,0345478959,9780345478955,eng,192,3335,142,5/4/2004,Ballantine Books +40022,The Hound of the Baskervilles: Another Adventure of Sherlock Holmes with "the Adventure of the Speckled Band",Arthur Conan Doyle/Francis O'Gorman,4.11,1551117223,9781551117225,eng,300,1356,32,1/10/2006,Broadview Press Inc +40023,The Hound of the Baskervilles,Patrick Nobes/Arthur Conan Doyle/Jennifer Bassett/Tricia Hedge,3.91,019423035X,9780194230353,eng,105,136,11,9/12/2000,Oxford University Press USA +40024,The Alienist (Dr. Laszlo Kreizler #1),Caleb Carr,4.06,0812976142,9780812976144,eng,498,126669,5578,10/24/2006,Random House +40030,My Movie Business,John Irving,3.34,0552998680,9780552998680,eng,158,27,2,10/5/2000,Black Swan +40031,A Son of the Circus,Irving John,3.63,0747518459,9780747518457,eng,633,139,14,9/1/1994,Bloomsbury +40033,John Hammond on Record: An Autobiography,John Hammond/Irving Townsend,4.06,0140057056,9780140057058,eng,432,27,2,2/26/1981,Penguin Books +40042,Always Remember Me: How One Family Survived World War II,Marisabina Russo,4.13,0689869207,9780689869204,en-US,48,135,37,4/1/2005,Atheneum Books for Young Readers +40048,Un rôle qui me convient,Richard Russo/Jean-Luc Piningre,4.02,2264034890,9782264034892,fre,430,6,0,8/29/2002,Éditions 10/18 +40049,Monkeys,Susan Minot,3.67,0375708367,9780375708367,eng,176,1219,105,8/8/2000,Vintage +40051,Evening,Susan Minot,3.37,0375700269,9780375700262,eng,288,3765,550,9/7/1999,Vintage +40053,Three Genres: Writing Fiction/Literary Nonfiction Poetry and Drama,Stephen Minot,3.64,0132197383,9780132197380,eng,476,36,3,7/1/2006,Prentice Hall +40054,The Tiny One,Eliza Minot,3.68,037570633X,9780375706332,eng,258,248,43,10/17/2000,Vintage +40067,Thunderstruck,Erik Larson,3.70,1400080665,9781400080663,eng,463,30574,3534,10/24/2006,Crown Publishing Group (NY) +40070,The Naked Consumer: How Our Private Lives Become Public Commodities,Erik Larson,3.71,0140233032,9780140233032,eng,288,163,18,2/1/1994,Penguin Books +40076,Artful Paper Dolls: New Ways to Play with a Traditional Form,Terry Taylor,4.07,1579907156,9781579907150,eng,144,59,5,8/1/2006,Lark Books +40081,The Meanest Doll in the World (Doll People #2),Ann M. Martin/Laura Godwin/Brian Selznick,3.96,0786852976,9780786852970,en-GB,304,5717,417,5/15/2005,Little Brown Books for Young Readers +40090,Sacred Games (Sacred Games),Vikram Chandra,3.93,0061130354,9780061130359,eng,916,5983,724,1/9/2007,HarperCollins +40100,Riding the Bus with My Sister: A True Life Journey,Rachel Simon,3.76,0452284554,9780452284555,eng,304,5226,771,8/26/2003,Plume +40102,Blink: The Power of Thinking Without Thinking,Malcolm Gladwell,3.93,0316010669,9780316010665,eng,296,437507,12937,4/3/2007,Back Bay Books +40106,Beatrice's Goat,Page McBrier/Lori Lohstoeter/Hillary Rodham Clinton,4.25,0689869908,9780689869907,eng,40,546,113,7/1/2004,Aladdin +40127,Leonardo's Swans,Karen Essex,3.72,0767923065,9780767923064,eng,351,5473,230,1/9/2007,Anchor Books +40128,The Notebooks of Leonardo da Vinci,Leonardo da Vinci/Irma A. Richter,3.93,0192838970,9780192838971,eng,432,70,2,1/28/1999,Oxford University Press +40130,Leonardo da Vinci: Obra pictorica completa y obra grafica,Frank Zöllner/Johannes Nathan/Frank Zöllner,4.26,3822817341,9783822817346,spa,696,56,4,2/1/2003,Taschen +40132,Leonardo on Painting: An Anthology of Writings by Leonardo da Vinci; With a Selection of Documents Relating to his Career as an Artist,Leonardo da Vinci/Martin Kemp,4.17,0300090951,9780300090956,eng,336,120,4,8/11/2001,Yale University Press +40138,Bone In The Throat,Anthony Bourdain,3.39,1841952877,9781841952871,eng,290,30,4,4/30/2002,Canongate Books +40139,Gone Bamboo,Anthony Bourdain,3.48,1841953679,9781841953670,eng,286,1066,74,5/1/2002,Canongate Books +40143,The Family That Couldn't Sleep: A Medical Mystery,D.T. Max,3.91,081297252X,9780812972528,eng,299,237,48,9/11/2007,Random House Trade Paperbacks +40145,Dear Genius: The Letters of Ursula Nordstrom,Ursula Nordstrom/Leonard S. Marcus/Maurice Sendak,4.40,0064462358,9780064462358,eng,406,533,112,3/31/2000,HarperCollins +40146,"Dear Genius...": A Memoir of My Life with Truman Capote,Jack Dunphy,3.33,0070183171,9780070183179,eng,275,36,6,12/1/1987,McGraw-Hill Companies +40152,Only Revolutions,Mark Z. Danielewski,3.21,0375421769,9780375421761,eng,360,4791,443,9/12/2006,Pantheon Books +40153,The Whalestoe Letters,Mark Z. Danielewski,4.04,0375714413,9780375714412,eng,83,2112,96,10/10/2000,Pantheon +40155,La Maison des feuilles,Mark Z. Danielewski/Christophe Claro,4.10,2207252000,9782207252000,fre,978,79,13,8/29/2002,Denoël +40156,The Thief (The Queen's Thief #1),Megan Whalen Turner,3.88,0613060326,9780613060325,eng,220,97,17,1/28/1998,San Val +40157,Instead of Three Wishes,Megan Whalen Turner,3.78,0060842318,9780060842314,eng,160,923,112,8/8/2006,Greenwillow Books +40158,The Queen of Attolia (The Queen's Thief #2),Megan Whalen Turner,4.19,0060841826,9780060841829,eng,362,31060,2786,1/24/2006,Eos +40159,The King of Attolia (The Queen's Thief #3),Megan Whalen Turner,4.37,006083577X,9780060835774,eng,387,28480,2309,1/24/2006,Greenwillow Books +40160,Firebirds: An Anthology of Original Fantasy and Science Fiction,Sharyn November/Lloyd Alexander/Emma Bull/Charles Vess/Michael Cadnum/Kara Dalkey/Nancy Farmer/Nina Kiriki Hoffman/Diana Wynne Jones/Patricia A. McKillip/Garth Nix/Meredith Ann Pierce/Delia Sherman/Sherwood Smith/Nancy Springer/Megan Whalen Turner/Elizabeth Wein/Laurel Winter,3.96,0142403202,9780142403204,eng,432,3464,153,5/5/2005,Firebird +40174,Herzog on Herzog,Paul Cronin,4.45,0571207081,9780571207084,eng,352,1373,93,7/9/2003,Farrar Straus and Giroux +40180,Vesco,Arthur Herzog III,4.00,0595272096,9780595272099,eng,408,6,3,3/11/2003,iUniverse +40184,Encore Provence: New Adventures in the South of France,Peter Mayle,4.00,0679762698,9780679762690,eng,240,9980,254,4/25/2000,Vintage +40187,Confessions of a French Baker: Breadmaking Secrets Tips and Recipes,Peter Mayle/Gerard Auzet,3.64,140004474X,9781400044740,en-US,91,405,52,10/25/2005,Alfred A. Knopf +40189,A Year in Provence,Peter Mayle,3.96,0679731148,9780679731146,eng,207,54963,2554,6/4/1991,Vintage +40199,How to Breathe Underwater,Julie Orringer,3.96,014101508X,9780141015088,eng,222,194,34,4/7/2005,Penguin +40200,The Crimson Petal and the White,Michel Faber,3.89,1841954314,9781841954318,eng,835,27961,2183,9/11/2003,Canongate Books +40208,Maggie: A Girl of the Streets and Other Short Fiction,Stephen Crane/Jayne Anne Phillips,3.33,0553213555,9780553213553,eng,240,517,37,11/1/2006,Bantam Classics +40209,Maggie: A Girl of the Streets and Other Tales of New York,Stephen Crane/Larzer Ziff/Theo Davis,3.66,0140437975,9780140437973,eng,272,2476,32,3/29/2001,Penguin Classics +40214,Kushiel's Scion (Imriel's Trilogy #1),Jacqueline Carey,4.20,044650002X,9780446500029,en-US,753,454,37,6/12/2006,Warner Books (NY) +40215,Theft: A Love Story,Peter Carey,3.43,0307263711,9780307263711,eng,269,2561,277,5/9/2006,Alfred A. Knopf +40217,Kushiel's Justice (Imriel's Trilogy #2),Jacqueline Carey,4.25,0446500038,9780446500036,eng,703,15897,381,6/14/2007,Roc +40219,Dirty Jokes and Beer: Stories of the Unrefined,Drew Carey,3.53,0786885599,9780786885596,eng,256,1944,93,3/15/2000,Hachette Books +40220,Godslayer (The Sundering #2),Jacqueline Carey,3.70,076535098X,9780765350985,en-US,404,2868,127,6/27/2006,Tor Books +40223,Kushiel's Avatar (Phèdre's Trilogy #3),Jacqueline Carey,4.36,1405034149,9781405034142,eng,702,29409,689,9/17/2004,Tor +40226,Angels: Celestial Spirits in Legend & Art,Jacqueline Carey,4.00,1567996035,9781567996036,en-US,128,42,3,11/1/1997,MetroBooks (NY) +40259,World Atlas of Great Apes and their Conservation,Julian Caldecott/Lera Miles,4.50,0520246330,9780520246331,en-GB,456,10,2,11/1/2005,University of California Press +40260,The Great Ape Project: Equality Beyond Humanity,Paola Cavalieri/Peter Singer,4.05,031211818X,9780312118181,en-US,312,86,11,12/15/1994,St. Martin's Griffin +40262,Walking With the Great Apes: Jane Goodall Dian Fossey Birute Galdikas,Sy Montgomery,4.18,0395515971,9780395515976,eng,280,4,1,3/18/1991,Houghton Mifflin +40264,The Nature of Play: Great Apes and Humans,Anthony D. Pellegrini/Peter K. Smith,4.33,1593851170,9781593851170,eng,308,3,1,12/6/2004,The Guilford Press +40271,Alvin Journeyman (Tales of Alvin Maker #4),Orson Scott Card,3.73,0312850530,9780312850531,en-US,381,13694,231,12/1/2005,Tor Books +40273,Star Trek Voyager Companion,Paul Ruditis,3.95,0743417518,9780743417518,eng,482,162,9,5/1/2003,Pocket Books +40276,Dodge Caravan/Plymouth Voyager/Chrysler Town & Country 96-02 (Haynes Manuals),L. Alan LeDoux,3.93,1563924692,9781563924699,eng,336,14,1,12/2/2002,Haynes Manuals N. America Inc. +40277,Evolution (Star Trek Voyager: String Theory #3),Heather Jarman,3.78,1416507817,9781416507819,eng,416,324,18,2/28/2006,Pocket Books +40281,Masterpieces: The Best Science Fiction of the Twentieth Century,Orson Scott Card/Isaac Asimov/William Gibson/Michael Swanwick/Theodore Sturgeon/Larry Niven/Robert Silverberg/Harry Turtledove/James Blish/George R.R. Martin/James Patrick Kelly/Karen Joy Fowler/Arthur C. Clarke/Lloyd Biggle Jr./Terry Bisson/Poul Anderson/John Kessel/R.A. Lafferty/C.J. Cherryh/Lisa Goldstein/Edmond Hamilton/Robert A. Heinlein/Ursula K. Le Guin/Ray Bradbury/Frederik Pohl/Harlan Ellison/George Alec Effinger/Brian W. Aldiss,4.21,0441011330,9780441011339,eng,422,1202,79,3/2/2004,Ace Books +40284,Earthborn (Homecoming Saga #5),Orson Scott Card,3.41,0312930402,9780312930400,eng,378,64,2,5/1/1995,Tor Books +40286,First Meetings: In the Enderverse,Orson Scott Card,3.84,1841493112,9781841493114,en-GB,228,69,2,3/1/2013,Little Brown Young Readers +40287,Wyrms,Orson Scott Card,3.38,0765305607,9780765305602,eng,336,4984,202,4/5/2003,Orb Books +40289,The Abyss,Orson Scott Card/James Francis Cameron,4.07,0099690608,9780099690603,eng,363,17911,111,10/5/1989,Legend +40291,Shadow Puppets (Shadow Series #3),Orson Scott Card,3.89,0641573049,9780641573040,eng,345,3,0,8/19/2002,Doherty Tom Associates LLC +40293,Pastwatch: The Redemption of Christopher Columbus,Orson Scott Card,3.97,0812508645,9780812508642,en-US,402,12940,894,3/1/2016,Tor Books +40295,This Is the Way the World Ends,James K. Morrow,3.75,0156002086,9780156002080,eng,319,1312,81,4/24/1995,Harcourt Brace & company +40296,Galapagos: World's End,William Beebe,3.84,0486256421,9780486256429,en-US,528,31,7,5/1/1988,Dover Publications +40297,The Well At The World's End: Volume I,William Morris/Lin Carter,3.81,1587150883,9781587150883,en-US,332,257,22,3/20/2000,Borgo Press +40299,The Well at the World's End: Volume II,William Morris,3.90,1587150891,9781587150890,eng,252,14,1,3/20/2000,Borgo Press +40303,Lost Boys,Orson Scott Card,3.59,0517125773,9780517125779,eng,448,7469,689,7/10/1994,Random House Value Publishing +40304,The Worthing Saga (Worthing #1-3),Orson Scott Card,3.85,0812533313,9780812533316,eng,463,8064,299,12/15/1992,Tor Books +40312,The Rocky Road to Romance (Elsie Hawkins #4),Janet Evanovich,3.67,0060598891,9780060598891,eng,249,9669,315,11/29/2011,Harper +40314,Love Overboard,Janet Evanovich,3.65,0060598840,9780060598846,eng,244,11448,338,2/1/2005,HarperTorch +40318,Back to the Bedroom (Elsie Hawkins #1),Janet Evanovich,3.68,0060598859,9780060598853,eng,234,10077,486,2/25/2014,Harper +40326,More Plums in One (Stephanie Plum #4-6),Janet Evanovich,4.45,031236296X,9780312362966,en-US,792,219,11,4/3/2007,St. Martin's Press +40328,Full Blast (Full #4),Janet Evanovich/Charlotte Hughes,3.83,0312983301,9780312983307,eng,344,12363,278,4/19/2004,St. Martin's Paperbacks +40329,Metro Girl (Alex Barnaby #1),Janet Evanovich,3.62,0060584025,9780060584023,eng,374,28987,1090,9/27/2005,HarperTorch +40331,To the Nines (Stephanie Plum #9),Janet Evanovich,4.17,0747267634,9780747267638,eng,320,94990,1581,6/5/2004,St. Martin's Press +40335,Full Speed (Full #3),Janet Evanovich/Charlotte Hughes,3.83,0755301978,9780755301973,eng,344,11280,223,11/3/2003,Headline +40338,Love Overboard,Janet Evanovich/C.J. Critt,3.65,006073695X,9780060736958,eng,5,95,22,1/25/2005,HarperAudio +40339,The Rocky Road to Romance (Elsie Hawkins #4),Janet Evanovich/C.J. Critt,3.67,0060738251,9780060738259,eng,5,93,26,8/31/2004,HarperAudio +40342,Two for the Dough (Stephanie Plum #2),Janet Evanovich,4.11,0312948964,9780312948962,en-US,325,2509,292,6/29/2007,St. Martin's Press +40343,The Full Box (Full #1-4),Janet Evanovich/Charlotte Hughes,4.29,1593979266,9781593979263,eng,0,101,3,2/16/2016,Macmillan Audio +40347,Hard Eight (Stephanie Plum #8),Janet Evanovich,4.17,0747267626,9780747267621,eng,339,155,13,6/23/2003,Headline Review +40359,Hot Six (Stephanie Plum #6),Janet Evanovich,4.19,033037124X,9780330371247,eng,324,307,28,6/1/2001,Pan MacMillan +40360,Metro Girl (Alex Barnaby #1),Janet Evanovich/C.J. Critt,3.62,0061126527,9780061126529,eng,6,79,29,7/25/2006,HarperAudio +40361,Martian Time-Slip,Philip K. Dick,3.77,185798837X,9781857988376,eng,226,353,33,7/8/1999,Gollancz +40364,The Martians (Mars Trilogy #3.5),Kim Stanley Robinson,3.56,0553574019,9780553574012,eng,434,1495,92,10/3/2000,Spectra Books +40372,Pirates of Venus (Venus #1),Edgar Rice Burroughs/Thomas Floyd/F. Paul Wilson/Phillip R. Burger,3.70,0803261837,9780803261839,eng,179,1235,66,9/1/2001,Bison Books +40376,Swords of Mars (Barsoom #8),Edgar Rice Burroughs,3.82,0345329562,9780345329561,eng,191,2812,61,7/12/1979,Del Rey +40378,The Chessmen of Mars (Barsoom #5),Edgar Rice Burroughs/John Bolen,3.83,1400130212,9781400130214,eng,0,5147,157,1/1/2005,Tantor Media +40379,The Warlord of Mars (Barsoom #3),Edgar Rice Burroughs/John Bolen,3.86,1400130220,9781400130221,eng,6,9350,345,2/1/2001,Tantor Media +40384,Synthetic Men of Mars (Barsoom #9),Edgar Rice Burroughs,3.78,0345339304,9780345339300,eng,160,2601,58,1/12/1980,Del Rey +40385,The Master Mind of Mars (Barsoom #6),Edgar Rice Burroughs,3.85,0345334248,9780345334244,eng,160,3949,80,4/12/1979,Ballantine Books +40386,A Fighting Man of Mars (Barsoom #7),Edgar Rice Burroughs,3.84,0345345118,9780345345110,eng,239,3169,77,10/12/1984,Del Rey +40387,Thuvia Maid of Mars (Barsoom #4),Edgar Rice Burroughs,3.75,0345339932,9780345339935,eng,160,6313,233,7/12/1986,Del Rey +40388,John Carter of Mars (Barsoom #11),Edgar Rice Burroughs,3.82,0345329554,9780345329554,eng,167,3703,78,7/12/1985,Del Rey +40395,A Princess of Mars (Barsoom #1),Edgar Rice Burroughs/John Seelye,3.81,0143104888,9780143104889,eng,186,38926,2355,1/30/2007,Penguin Books +40421,Escape on Venus (Venus #4),Edgar Rice Burroughs,3.70,0345370112,9780345370112,eng,246,9,0,6/15/1991,Del Rey +40424,Tarzan of the Apes: Tarzan of the Apes/The Son of Tarzan/Tarzan at the Earth's Core/Tarzan Triumphant,Edgar Rice Burroughs/Esteban Maroto/J. Allen St. John/Studley Burroughs,4.14,0517659573,9780517659571,eng,848,29,1,11/30/1988,Random House Value Publishing +40425,Tarzan of the Apes (Tarzan #1),Edgar Rice Burroughs,3.90,0809599813,9780809599813,eng,324,31734,1573,9/1/2003,Wildside Press +40436,The Five People You Meet in Heaven,Mitch Albom,3.93,0751536822,9780751536829,eng,229,4251,525,9/2/2005,Time Warner Paperbacks +40437,Murder in the Bastille (Aimee Leduc Investigations #4),Cara Black,3.73,1569473641,9781569473641,en-US,276,1198,110,4/1/2004,Soho Crime +40440,The Thirteenth Tale,Diane Setterfield,3.96,0743298020,9780743298025,eng,406,239809,18865,9/12/2006,Atria Books +40450,Market Forces,Richard K. Morgan,3.59,0345457749,9780345457745,eng,464,5593,264,3/1/2005,Ballantine Books +40451,Black Widow: The Things They Say About Her,Richard K. Morgan/Bill Sienkiewicz/Sean Phillips,3.47,0785117687,9780785117681,eng,144,302,33,6/7/2006,Marvel +40452,Black Widow: Homecoming,Richard K. Morgan/Bill Sienkiewicz/Goran Parlov,3.79,0785114939,9780785114932,eng,144,617,43,5/11/2005,Marvel +40459,Ragtime,E.L. Doctorow,3.88,0553026003,9780553135428,eng,369,210,37,3/1/1977,Bantam Books +40460,Ragtime in Simla (Joe Sandilands #2),Barbara Cleverly,3.84,0385339720,9780385339728,en-US,368,60,10,7/25/2006,Delta +40465,Thank You for Smoking,Christopher Buckley,3.93,0812976525,9780812976526,eng,272,9900,561,2/14/2006,Random House Trade Paperbacks +40468,The Crossing,Cormac McCarthy,4.13,0517168952,9780517168950,eng,425,232,13,4/28/1996,Random House Value Publishing +40470,Cities of the Plain (The Border Trilogy #3),Cormac McCarthy,4.09,0679747192,9780679747192,eng,292,17475,946,5/25/1999,Vintage +40473,The Agony and the Ecstasy: A Biographical Novel of Michelangelo,Irving Stone,4.07,0451213238,9780451213235,en-US,776,917,130,9/7/2004,NAL +40478,The Agony and the Ecstasy,Irving Stone,4.07,0099416271,9780099416272,eng,777,160,18,1/1/1991,Arrow +40482,Harvest,Tess Gerritsen,4.11,067155302X,9780671553029,eng,368,15619,523,8/1/1997,Pocket Books +40483,Story of O (Story of O #1),Pauline Réage/Sabine d'Estree,3.32,0345301110,9780345301116,eng,199,12840,997,5/12/1981,Ballantine Books +40484,Story of O,Pauline Réage/John Paul Hand,3.32,1562010352,9781562010355,eng,224,446,52,5/8/1998,Running Press Adult +40485,The O. Henry Prize Stories 2003,Laura Furman/David Guterson/Diane Johnson/Jennifer Egan,3.78,1400031311,9781400031313,eng,384,138,22,9/9/2003,Random House Value Publishing +40487,The Illustrated Story Of O,Doris Kloster/Pauline Réage,3.96,0312266057,9780312266059,eng,160,24,1,9/20/2001,St. Martin's Press +40490,The Valley of Vision: A Collection of Puritan Prayers and Devotions,Arthur Bennett,4.54,0851512283,9780851512280,eng,223,9476,247,11/1/1975,Banner of Truth +40491,Valley Of Silence (Circle Trilogy #3),Nora Roberts,4.22,0515141674,9780515141672,eng,318,1372,113,11/1/2006,Berkley Books +40492,Revolution in The Valley: The Insanely Great Story of How the Mac Was Made,Andy Hertzfeld/Steve Wozniak,4.18,0596007191,9780596007195,en-US,291,1900,55,12/16/2004,O'Reilly Media +40493,The Valley of Horses (Earth's Children #2),Jean M. Auel,4.00,0553381660,9780553381665,en-US,544,59723,1733,6/25/2002,Bantam +40496,How Green Was My Valley,Richard Llewellyn,4.18,0141185856,9780141185859,eng,448,12351,1041,6/28/2001,Penguin Classics +40502,Once A Warrior King: Memories of an Officer in Vietnam,David Donovan,4.27,0345479076,9780345479075,en-US,352,413,24,7/12/1986,Ballantine +40504,Once a Warrior (Warriors #1),Karyn Monk,3.75,0553574221,9780553574227,eng,384,309,20,3/31/1997,Fanfare +40526,Time and Again (Time #1),Jack Finney,3.96,0575073608,9780575073609,eng,399,13760,1624,5/1/2012,Orion Publishing Group +40528,Time and Again (Time Travel #1-2),Nora Roberts,3.77,0373285337,9780373285334,eng,505,302,30,3/28/2006,Silhouette Books +40530,Time and Again: Time Was / Times Change,Nora Roberts,3.77,0373484410,9780373484416,eng,505,7574,194,8/24/2001,Silhouette +40531,Meeting Jesus Again for the First Time: The Historical Jesus and the Heart of Contemporary Faith,Marcus J. Borg,4.12,0060609176,9780060609177,en-US,160,4272,260,4/7/2015,HarperOne +40532,Reading the Bible Again for the First Time: Taking the Bible Seriously but Not Literally,Marcus J. Borg,4.13,0060609192,9780060609191,en-US,321,2959,187,4/7/2015,HarperOne +40536,The Complete Idiot's Guide to Business Plans,Gwen Moran,3.32,1592574009,9781592574001,eng,314,16,4,10/4/2005,Alpha Books +40540,PHP and MySQL Web Development (Developer's Library),Luke Welling/Laura Thomson,3.96,0672326728,0752063326725,en-US,1008,590,31,10/1/2004,Sams +40543,Beginning PHP and MySQL 5: From Novice to Professional,W. Jason Gilmore,3.72,1590595521,9781590595527,en-US,913,158,12,10/1/2005,Apress +40549,PHP & MySQL For Dummies,Janet Valade,3.55,0470096004,9780470096000,eng,436,145,6,12/1/2006,Wiley Publishing +40551,PHP and MySQL for Dummies,Janet Valade,3.55,0764555898,9780764555893,en-US,456,12,2,4/9/2004,For Dummies +40573,Graphic Design Now,Charlotte Fiell/Peter Fiell,3.43,382284778X,9783822847787,eng,349,67,2,11/1/2005,Taschen +40582,Michael Moore's Fahrenheit 9/11: How One Film Divided a Nation,Robert Brent Toplin,3.44,0700614524,9780700614523,eng,161,9,1,4/20/2006,University Press of Kansas +40597,My Dirty Thirties: Romantic Hedonism,Kelly Carr,3.00,1932420347,9781932420340,eng,144,8,1,7/1/2004,New Tradition Books +40604,The Life and Opinions of Tristram Shandy Gentleman,Laurence Sterne/Robert Folkenflik,3.74,0375761195,9780375761195,eng,704,96,11,9/21/2004,Modern Library +40609,La fortaleza digital,Dan Brown/Eduardo García Murillo,3.65,8489367019,9788489367012,spa,440,1078,76,2/1/2006,Umbriel +40620,The United States of Europe: The New Superpower and the End of American Supremacy,T.R. Reid,3.62,0143036084,9780143036081,en-US,320,691,63,11/1/2005,Penguin Books +40622,Europe on a Shoestring,Sarah Johnstone/Aaron Anderson/Sarah Andrews/Lonely Planet,4.05,1741045916,9781741045918,eng,1284,357,16,3/1/2007,Lonely Planet +40625,Europe and the People Without History,Eric R. Wolf,4.12,0520048989,9780520048980,eng,534,995,32,12/3/1982,University of California Press +40626,A History of Modern Europe Volume 2: From the French Revolution to the Present,John M. Merriman,4.00,0393924955,9780393924954,en-US,1040,62,4,2/1/2004,W. W. Norton & Company +40630,How Europe Underdeveloped Africa,Walter Rodney/Vincent Harding,4.27,0882580965,9780882580968,eng,312,2088,96,1/1/1981,Howard University Press +40631,Europe: A History,Norman Davies,4.17,0060974680,9780060974688,eng,1392,3394,163,1/20/1998,Harper Perennial +40636,The Basketball Diaries,Jim Carroll,3.95,0140249990,9780140249996,eng,224,308,19,4/1/1995,Penguin Books +40640,The Basketball Diaries and the Book of Nods,Jim Carroll,4.25,0571148433,9780571148431,eng,320,85,3,5/26/1987,Faber & Faber Ltd. +40646,The 10 Commandments of Parenting: The Do's and Don'ts for Raising Great Kids,Ed Young,4.00,0802431488,9780802431486,eng,224,25,2,9/1/2005,Moody Publishers +40663,Unsung Heroes Of Rock 'n' Roll: The Birth Of Rock In The Wild Years Before Elvis,Nick Tosches,4.11,0306808919,9780306808913,eng,288,334,15,5/7/1999,Da Capo Press +40664,In the Hand of Dante,Nick Tosches,3.18,0316735647,9780316735643,en-US,384,683,76,9/1/2003,Back Bay Books +40694,Ray Bradbury's Fahrenheit 451,Harold Bloom,4.18,0791059294,9780791059296,eng,147,991,52,12/31/2001,Chelsea House Publications +40700,Schott's Original Miscellany,Ben Schott/Collin Deckerman,4.08,1582343497,9781582343495,eng,158,1379,103,8/4/2003,Bloomsbury Publishing PLC +40706,Mind Over Money: How to Match Your Emotional Style to a Winning Financial Strategy,John W. Schott/Jean S. Arbeiter,2.67,0316773786,9780316773782,en-US,260,3,1,1/1/1998,Little Brown and Company +40710,Blowback (Scot Harvath #4),Brad Thor,4.18,1416505415,9781416505419,eng,575,13546,371,6/1/2006,Pocket Books +40718,The Sorrows of Empire: Militarism Secrecy and the End of the Republic,Chalmers Johnson/Shara Kay,4.13,0805077979,9780805077971,en-US,389,1332,75,4/1/2005,St. Martins Press-3PL +40763,Bouvard and Pecuchet,Gustave Flaubert/Αχιλλέας Κυριακίδης/Mark Polizzotti/Raymond Queneau,3.86,1564783936,9781564783936,eng,328,2820,103,3/28/2006,Dalkey Archive Press +40789,Voyage of the Turtle: In Pursuit of the Earth's Last Dinosaur,Carl Safina,4.24,0805078916,9780805078916,eng,383,644,78,5/30/2006,Henry Holt and Company +40790,Thirteen Moons on Turtle's Back,Joseph Bruchac/Jonathan London/Thomas Locker,4.08,0698115848,9780698115842,en-US,32,318,40,8/25/1997,Puffin Books +40792,One Tiny Turtle,Nicola Davies/Jane Chapman,4.13,0763623113,9780763623111,eng,32,518,102,6/14/2005,Candlewick Press +40795,Turtle Island,Gary Snyder/Michael Corr,4.09,0811205460,9780811205467,eng,112,3809,105,1/17/1974,New Directions +40798,Turtles Termites and Traffic Jams: Explorations in Massively Parallel Microworlds,Mitchel Resnick,3.86,0262680939,9780262680936,eng,184,131,8,1/22/1997,Bradford Book +40806,Turtle Moon,Alice Hoffman,3.83,0099429160,9780099429166,eng,275,7545,388,4/4/2002,Vintage +40807,Aquatic Turtles: Sliders Cooters Painted and Map Turtles,Richard D. Bartlett/Patricia P. Bartlett,3.80,0764122789,9780764122781,eng,46,20,4,2/1/2003,B.E.S. Publishing +40816,Turtles & Tortoises for Dummies,Liz Palika,3.57,0764553135,9780764553134,eng,328,53,5,3/15/2001,For Dummies +40821,The Turtle and the Monkey,Paul Galdone/Joanna Galdone,3.74,0395544254,9780395544259,eng,32,58,6,9/24/1990,Clarion Books +40833,Turtle Diary,Russell Hoban,4.00,0747548315,9780747548317,eng,182,893,99,9/4/2000,Bloomsbury Publishing PLC +40836,Lessons from Turtle Island: Native Curriculum in Early Childhood Classrooms,Guy W. Jones/Sally Moomaw,4.35,1929610254,9781929610259,eng,208,16,2,9/1/2002,Redleaf Press +40859,Inside Himalaya,Basil Pao/Michael Palin,4.00,0297843702,9780297843702,en-GB,200,30,2,1/31/2005,Weidenfeld & Nicolson +40863,Youth in Revolt: The Journals of Nick Twisp : Volumes I II III/Youth in Revolt/Youth in Bondage/Youth in Exile,C.D. Payne,4.04,1882647009,9781882647002,eng,503,29,6,8/1/1993,Aivia Press +40868,The Demon Princes Volume One: The Star King The Killing Machine The Palace of Love,Jack Vance,4.25,0312853025,9780312853020,eng,446,1134,44,4/15/1997,Orb Books +40870,Lurulu,Jack Vance,3.59,0312872798,9780312872793,en-US,204,276,20,2/6/2007,Tor Books +40877,Lyonesse: Suldrun's Garden (Lyonesse #1),Jack Vance,3.93,0425058735,9780425058732,eng,436,130,16,4/1/1983,Berkley Trade +40880,Jack Vance: Critical Appreciations and a Bibliography,A.E. Cunningham/Harlan Ellison/Charles F. Miller/Terry Dowling/Paul Rhoads/Jack Vance/Tom Shippey/Gene Wolfe/David Langford/Dan Simmons/David Mathew,4.15,0712311025,9780712311021,eng,232,13,2,1/1/2000,British Library +40884,Galactic Effectuator,Jack Vance,3.69,0441272320,9780441272327,eng,219,286,13,11/1/1981,Ace +40888,The SFWA Grand Masters 3,Frederik Pohl/Lester del Rey/Damon Knight/A.E. van Vogt/Jack Vance,4.02,0312868774,9780312868772,eng,448,8,2,6/23/2001,Tor Books +40889,The Languages of Pao,Jack Vance,3.80,0743487141,9780743487146,en-GB,224,894,54,8/1/2004,iBooks +40891,The Last Castle,Jack Vance,3.79,0425084787,9780425084786,eng,115,841,43,1/1/1986,Underwood/Miller Berkley +40893,Madouc (Lyonesse #3),Jack Vance,4.15,0441505325,9780441505326,eng,426,1825,71,8/1/1991,Ace Books +40894,Ports of Call,Jack Vance,3.55,0312864744,9780312864743,eng,300,409,23,1/15/1999,Tor Books +40911,The Demon Princes Volume Two: The Face The Book of Dreams,Jack Vance,4.30,0312865767,9780312865764,eng,397,653,19,8/15/1997,Tor Books +40912,The Green Pearl (Lyonesse #2),Jack Vance,4.16,0441303161,9780441303168,eng,407,10,2,6/15/1987,Ace +40913,The Last Castle/Nightwings (Tor Double Novel #15),Jack Vance/Robert Silverberg,3.70,0812501942,9780812501940,eng,182,43,4,12/1/1989,Tor Books +40914,The Many Worlds of Magnus Ridolph,Jack Vance,3.90,0879975318,9780879975319,eng,174,282,16,4/1/1980,DAW Books Inc +40919,Big Dead Place: Inside the Strange and Menacing World of Antarctica,Nicholas Johnson/Eirik Sonneland,3.72,0922915997,9780922915996,eng,260,436,95,6/1/2005,Feral House +40922,Best Science Fiction Stories of Clifford D. Simak,Clifford D. Simak,3.94,0446658081,9780446658089,eng,253,64,5,6/1/1972,Paperback Library +40923,Theodore Rex,Edmund Morris,4.19,0812966007,9780812966008,eng,555,38131,911,10/1/2002,Random House Trade Paperbacks +40928,Oedipus Tyrannus,Sophocles/Theodore F. Brunner/Luci Berkowitz,3.70,0393098745,9780393098747,eng,272,146,10,7/1/1970,W.W. Norton & Company +40929,The Rise of Theodore Roosevelt,Edmund Morris,4.23,0375756787,9780375756788,eng,780,36847,1461,11/20/2001,Random House Trade Paperbacks +40941,The Scientists: A History of Science Told Through the Lives of Its Greatest Inventors,John Gribbin,4.08,0812967887,9780812967883,eng,672,892,59,8/10/2004,Random House Trade Paperbacks +40951,A History of the Life Sciences,Lois N. Magner/Magner,4.53,0824708245,9780824708245,en-US,514,15,2,8/13/2002,CRC Press +40958,The Art of Innovation: Lessons in Creativity from IDEO America's Leading Design Firm,Tom Kelley/Jonathan Littman/Tom Peters,3.97,0385499841,9780385499842,eng,320,6412,154,1/16/2001,Broadway Business +40969,Absolute Trust in the Goodness of the Earth: New Poems,Alice Walker,4.02,0812971051,9780812971057,en-US,229,583,70,3/9/2004,Random House Trade Paperbacks +40989,I Sold My Soul on Ebay: Viewing Faith Through an Atheist's Eyes,Hemant Mehta/Rob Bell,3.54,1400073472,9781400073474,en-US,224,442,78,4/17/2007,Waterbrook Press +40992,Shadow & Claw (The Book of the New Sun #1-2),Gene Wolfe,4.02,0312890176,9780312890179,eng,413,13211,883,10/15/1994,Orb Books +40995,Sword & Citadel (The Book of the New Sun #3-4),Gene Wolfe,4.32,0312890184,9780312890186,eng,411,9426,351,10/15/1994,Orb Books +40996,The Wizard (The Wizard Knight #2),Gene Wolfe,3.86,0765350505,9780765350503,eng,587,2595,104,8/29/2006,Tor Fantasy +40997,Soldier of Sidon (Latro #3),Gene Wolfe,4.01,0765316641,9780765316646,eng,320,1063,60,10/31/2006,Tor Books +41005,The Right Stuff,Tom Wolfe,4.24,1579124585,9781579124588,eng,304,213,24,5/1/2005,Black Dog & Leventhal +41028,Wild Fire (The Hot Zone #3),Debra Cowan,3.86,0373274742,9780373274741,eng,250,14,0,1/31/2006,Silhouette Books +41033,The Best American Mystery Stories 2004,Nelson DeMille/Otto Penzler,3.55,0618329676,9780618329670,eng,448,100,13,10/14/2004,Mariner Books +41044,Day and Night,Better Homes and Gardens,0.00,0696018829,9780696018824,eng,32,0,1,3/1/1989,Meredith Corporation +41046,Romanticism,Hugh Honour,3.75,0064300897,9780064300896,eng,416,42,2,8/15/1979,Westview Press +41053,No Cherubs for Melanie,James Hawkins,4.00,1550023926,9781550023923,eng,394,8,1,10/1/2002,Dundurn +41054,The Fish Kisser,James Hawkins,3.40,0888822405,9780888822406,eng,360,9,0,11/1/2001,Dundurn +41055,Street of the Five Moons (Vicky Bliss #2),Elizabeth Peters,3.95,0380731215,9780380731213,eng,376,3654,148,3/7/2000,Avon +41069,Stand on Zanzibar,John Brunner,3.96,1857988361,9781857988369,eng,672,12560,387,8/12/1999,Gollancz +41070,The Shockwave Rider,John Brunner,3.95,0345467175,9780345467171,eng,288,2945,125,3/1/1995,Del Rey +41071,Study Guide to Accompany Brunner and Suddarth's Textbook of Medical-Surgical Nursing,Suzanne C. O'Connell Smeltzer/Brenda G. Bare/Mary Jo Boyer,4.00,0781723051,9780781723053,eng,400,2,0,12/21/1999,LWW +41072,Natural Theology: Comprising Nature & Grace by Professor Dr Emil Brunner & the Reply No! by Dr Karl Barth,Karl Barth/Emil Brunner/Peter Fraenkel,3.72,1592441122,9781592441129,en-GB,132,92,11,12/1/2002,Wipf & Stock Publishers +41073,Children of the Thunder / The Tides of Time / The Crucible of Time,John Brunner,2.92,051712310X,9780517123102,eng,800,11,1,5/3/1995,Wings +41074,The Sheep Look Up,John Brunner/James John Bell/David Brin,3.95,1932100016,9781932100013,eng,388,3568,284,5/11/2003,BenBella Books +41081,Entry to Elsewhen,John Brunner,3.37,0879971541,9780879971540,eng,172,58,3,2/28/1975,DAW Books +41085,The Crucible of Time,John Brunner,3.71,0345302354,9780345302359,eng,416,25,3,6/12/1984,Del Rey +41086,Polymath (Zarathustra Refugee Planets #2),John Brunner,3.56,0879977663,9780879977665,en-US,156,238,16,8/28/1982,DAW Books (NY) +41087,Total Eclipse,John Brunner,3.44,0879979119,9780879979119,eng,206,288,22,2/7/1984,DAW +41088,Manshape,John Brunner,3.11,0879977647,9780879977641,eng,159,34,5,9/28/1982,DAW SF +41089,Modern Classics of Science Fiction,Gardner Dozois/Damon Knight/R.A. Lafferty/Samuel R. Delany/Brian W. Aldiss/Gene Wolfe/Joanna Russ/James Tiptree Jr./Ursula K. Le Guin/Edward Bryant/Howard Waldrop/Jack Dann/L. Sprague de Camp/Lucius Shepard/Pat Cadigan/John Kessel/William Gibson/Connie Willis/Michael Swanwick/Bruce Sterling/Theodore Sturgeon/Richard McKenna/Cordwainer Smith/Jack Vance/Edgar Pangborn/Keith Roberts/Roger Zelazny,4.17,0312088477,9780312088477,eng,672,91,6,1/15/1993,St. Martin's Griffin +41090,The Mammoth Book of Golden Age Science Fiction: Ten Classic Stories from the Birth of Modern Science Fiction Writing,Isaac Asimov/Charles G. Waugh,3.93,0786719052,9780786719051,en-US,512,128,12,1/24/2007,Running Press +41091,Unearthly Neighbors,Chad Oliver,3.83,0517552949,9780517552940,eng,208,38,8,9/5/1984,Random House Value Publishing +41092,The Shores of Another Sea (Classics of Modern Science Fiction 3),Chad Oliver/George Zebrowski/Isaac Asimov,3.55,0517551861,9780517551868,eng,214,37,6,7/25/1984,Random House Value Publishing +41093,Men Martians and Machines,Eric Frank Russell/George Zebrowski/Isaac Asimov,3.77,0517551853,9780517551851,eng,216,164,14,2/1/1984,Crown Publishers +41097,What are the Seven Wonders of the World?: And 100 Other Great Cultural Lists—Fully Explicated,Peter D'Epiro/Mary Desmond Pinkowish,3.77,0385490623,9780385490627,eng,560,231,19,12/1/1998,Anchor +41098,World of Wonders (The Deptford Trilogy #3),Robertson Davies/Wayne Johnston,4.09,0143039148,9780143039143,eng,352,3633,142,2/28/2006,Penguin Classics +41103,Wonder of the World,David Lindsay-Abaire,3.93,0822218631,9780822218630,eng,72,42,4,12/31/2003,Dramatists Play Service Inc. +41105,Worlds of Wonder: How to Write Science Fiction & Fantasy,David Gerrold,3.92,1582970076,9781582970073,eng,246,424,54,4/1/2004,Writer's Digest Books +41111,Walking the World in Wonder: A Children's Herbal,Ellen Evert Hopman/Steven Foster,4.29,0892818786,9780892818785,eng,160,52,4,10/1/2000,Healing Arts Press +41117,Worlds of Wonder,Terry Pastor/Damon Knight/Philip K. Dick/C.M. Kornbluth/Bob Shaw/Frederik Pohl/Alfred Bester/C.L. Moore/Henry Kuttner/Robert Sheckley/James Blish/Cordwainer Smith/Brian W. Aldiss/Jack Vance,4.13,0575043555,9780575043558,eng,368,0,0,11/10/1988,Orion Publishing Co +41120,Sixty Days and Counting (Science in the Capital #3),Kim Stanley Robinson,3.66,0553803131,9780553803136,eng,388,1642,136,2/27/2007,Bantam Doubleday Dell Publishing Group +41121,Fifty Degrees Below (Science in the Capital #2),Kim Stanley Robinson,3.69,0553585819,9780553585810,eng,640,2099,155,1/30/2007,Spectra +41125,The Gold Coast (Three Californias Triptych #2),Kim Stanley Robinson,3.70,0312890370,9780312890377,eng,400,1194,78,5/15/1995,Orb Books +41126,Antarctica,Kim Stanley Robinson,3.78,0553574027,9780553574029,eng,672,2248,165,7/6/1999,Bantam +41128,The Wild Shore (Three Californias Triptych #1),Kim Stanley Robinson,3.75,0312890362,9780312890360,eng,384,2457,170,3/15/1995,Orb Books +41129,Forty Signs of Rain (Science in the Capital #1),Kim Stanley Robinson,3.54,0553585800,9780553585803,en-US,393,3044,339,7/26/2005,Bantam Spectra +41130,Pacific Edge (Three Californias Triptych #3),Kim Stanley Robinson,3.78,0312890389,9780312890384,eng,336,1208,89,5/15/1995,Orb Books +41134,The Memory of Whiteness: A Scientific Romance,Kim Stanley Robinson,3.55,0312861435,9780312861438,en-US,352,448,37,1/15/1996,Orb Books +41150,Les Fils des ténèbres,Dan Simmons,3.71,2253141208,9782253141204,fre,472,33,1,10/1/2007,Livre de Poche +41154,Secret Identity (Lost #2),Catherine Hapka,2.93,0786890916,9780786890910,eng,176,195,11,1/1/2006,Voice +41179,Miracleman Book Three: Olympus,Alan Moore/John Totleben/Steve Oliff/Joe Caramagna/Michael Kelleher/Peter Milligan/Mike Allred,4.39,1560600802,9781560600800,eng,328,1768,93,4/21/2015,Marvel Comics +41193,A Thousand Acres,Jane Smiley,3.81,1400033837,9781400033836,eng,371,53322,2358,12/2/2003,Anchor +41203,Mother's Milk,Edward St. Aubyn,3.76,1890447420,9781890447427,en-US,240,53,7,11/9/2006,Grove Press Open City Books +41217,From a Limestone Ledge: Some Essays and Other Ruminations about Country Life in Texas,John Graves/Glenn Wolff/Bill Wittliff,4.31,0870744852,9780870744853,eng,256,67,7,5/19/2004,Southern Methodist University Press +41219,Possession,A.S. Byatt,3.89,0679735909,9780679735908,eng,555,62580,3465,10/1/1991,Vintage +41226,The Best American Nonrequired Reading 2004,Dave Eggers/Viggo Mortensen,3.86,0618341234,9780618341238,en-US,407,1234,67,10/14/2004,Houghton Mifflin +41231,The Culture of Fear: Why Americans Are Afraid of the Wrong Things,Barry Glassner,3.70,0465014909,9780465014903,en-US,210,3095,305,3/16/2000,Basic Books +41232,Culture of Fear Revisited,Frank Furedi,3.52,0826493955,9780826493958,eng,236,61,3,12/26/2006,Bloomsbury Academic +41250,GraceLand,Chris Abani,3.78,0312425287,9780312425289,en-US,336,2121,202,1/26/2005,Picador +41258,Raised on Rock: Growing Up at Graceland,David Stanley/Mark Bego,2.75,1851588523,9781851588527,eng,192,4,0,12/1/1931,Trafalgar Square Publishing +41261,The White Widow,Jim Lehrer,3.04,189162041X,9781891620416,en-US,224,181,19,5/19/2000,PublicAffairs +41264,The Franklin Affair,Jim Lehrer,3.12,0345468031,9780345468031,eng,208,144,25,6/13/2006,Random House Trade +41270,Short List (One-Eyed Mack #5),Jim Lehrer,4.09,0399136657,9780399136658,eng,224,23,3,2/6/1992,Putnam Publishing Group +41273,Fine Lines (One-Eyed Mack #6),Jim Lehrer,3.23,0517164353,9780517164358,eng,0,17,4,11/19/1995,Random House Value Publishing +41278,Kick the Can (One-Eyed Mack #1),Jim Lehrer,3.85,1571780599,9781571780591,eng,223,77,10,8/1/1997,Council Oak Books +41304,Strangers from a Different Shore: A History of Asian Americans,Ronald Takaki,4.13,0316831301,9780316831307,en-US,640,888,45,9/23/1998,Back Bay Books +41307,La chute,Albert Camus,4.04,0318634872,9780318634876,fre,152,87,6,1/11/1999,Gallimard +41315,Syrup,Max Barry,3.88,0140291873,9780140291872,en-US,304,4715,303,7/1/2000,New York : Penguin Books +41317,Maple Syrup Cookbook: Over 100 Recipes For Breakfast Lunch & Dinner,Ken Haedrich,3.81,1580174043,9781580174046,eng,144,38,8,9/1/2001,Storey Publishing LLC +41329,The Red Tent,Anita Diamant,4.17,0312427298,9780312427290,en-US,321,5390,614,8/21/2007,Picador +41330,Metaconcert (Intervention #2),Julian May,4.21,0345355245,9780345355249,eng,282,1389,15,1/13/1989,Del Rey +41331,Surveillance (Intervention #1),Julian May,4.19,0345355237,9780345355232,en-US,368,1355,15,11/13/1988,Del Rey +41334,The Adversary (Saga of Pliocene Exile #4),Julian May,4.22,0345352440,9780345352446,eng,472,4404,54,9/12/1987,Del Rey Books +41335,Magnificat (Galactic Milieu Trilogy #3),Julian May,4.21,0345362497,9780345362490,en-US,432,2756,31,4/20/2011,Del Rey +41336,The Sagittarius Whorl (Rampart Worlds #3),Julian May,3.75,0345395182,9780345395184,eng,384,339,4,1/2/2001,Del Rey Books +41340,Maison Ikkoku Volume 7 (Maison Ikkoku #7),Rumiko Takahashi,4.24,1591164850,9781591164852,eng,288,305,4,10/26/2004,VIZ Media LLC +41342,Ranma 1/2 Vol. 8 (Ranma ½ (US 2nd) #8),Rumiko Takahashi,4.15,1591161304,9781591161301,eng,196,1473,22,1/7/2004,Viz Media +41344,Maison Ikkoku Volume 8 (Maison Ikkoku #8),Rumiko Takahashi,4.23,1591165628,9781591165620,eng,288,283,5,11/1/2004,Viz Media +41348,The Echo Maker,Richard Powers,3.38,0312426437,9780312426439,en-US,449,555,115,8/21/2007,Picador +41361,Afterglow: A Last Conversation With Pauline Kael,Francis Davis/Pauline Kael,3.69,0306812304,9780306812309,eng,134,128,15,8/21/2003,Da Capo Press +41363,For Keeps: 30 Years at the Movies,Pauline Kael,4.48,0452273080,9780452273085,eng,1312,373,18,9/1/1996,Plume +41369,Hooked: Film Writings 1985-1988,Pauline Kael,4.05,0714529036,9780714529035,eng,528,93,5,7/1/1990,Marion Boyars Publishers +41371,Flirting With Danger (Samantha Jellicoe #1),Suzanne Enoch,3.93,0060593636,9780060593636,eng,384,3625,189,3/1/2005,Avon +41376,Flirting with Danger,Linda Turner,3.57,037307316X,9780373073160,eng,253,6,2,12/1/1989,Silhouette Books +41378,Flirting With Danger,Kate Walker,3.00,037311818X,9780373118182,eng,188,12,4,6/1/1996,Harlequin +41379,As Nature Made Him: The Boy Who Was Raised as a Girl,John Colapinto,3.97,0060929596,9780060929596,eng,320,5456,619,2/20/2001,Harper Perennial +41394,The Serial Killers Club,Jeff Povey,3.22,0446578428,9780446578424,eng,279,109,25,6/22/2006,Warner Books (NY) +41404,The Savage Wars Of Peace: Soldiers' Voices 1945-1989,Charles Allen,4.50,0718128826,9780718128821,eng,290,1,0,10/1/1990,Michael Joseph Ltd./Penguin Books Ltd. +41416,Dark Water (Fog Point #1),Linda Hall,3.66,1578569540,9781578569540,en-US,354,186,25,4/18/2006,Waterbrook Press +41423,The Outlaws of Sherwood,Robin McKinley,3.77,0441013252,9780441013258,eng,368,9043,617,10/4/2005,Ace +41424,Beauty: A Retelling of the Story of Beauty and the Beast,Robin McKinley,4.05,0064404773,9780064404778,eng,256,63876,3744,6/30/1993,HarperCollins +41426,Spindle's End,Robin McKinley,3.81,0552548227,9780552548229,eng,464,189,19,4/3/2003,Corgi Childrens +41430,Imaginary Lands,Robin McKinley/James P. Blaylock/Patricia A. McKillip/Robert Westall/Peter Dickinson/Jane Yolen/P.C. Hodgell/Michael de Larrabetti/Joan D. Vinge,3.59,0862032806,9780862032807,eng,256,463,19,3/26/1987,Julia MacRae +41446,Beauty,Robin McKinley,4.05,0862031435,9780862031435,eng,256,3,0,9/29/1983,Julia MacRae +41451,The Hero and the Crown (Damar #2),Robin McKinley,4.21,0441004997,9780441004997,eng,227,71,7,2/1/1985,Ace +41457,Hitty Her First Hundred Years,Rachel Field/Dorothy P. Lathrop,3.86,0689822847,9780689822841,eng,256,7097,292,9/1/1998,Aladdin +41459,Rachel Field's Hitty: Her First Hundred Years,Rosemary Wells/Susan Jeffers/Rachel Field,4.00,0689817169,9780689817168,eng,112,117,24,10/1/1999,Simon & Schuster +41460,Voting Rights Days (Hitty's Travels #3),Ellen Weiss/Betina Ogden,4.27,0689849125,9780689849121,eng,75,10,2,3/1/2002,Aladdin Paperbacks +41463,A Christmas Carol (Great Illustrated Classics),Malvina G. Vogel/Charles Dickens,4.36,159679237X,9781596792371,eng,238,466,31,1/1/2005,Abdo Publishing Company +41464,Moon in a Dewdrop: Writings of Zen Master Dogen,Dōgen/Kazuaki Tanahashi/Robert Aitken/Reb Anderson/Edward G. Brown/Norman Fischer/Arnold Kotler/Daniel Leighton/Lew Richmond/Katherine Thanas/Brian Unger/Mel Weitsman/Dan Welch/Philip Whalen/David Schneider,4.28,086547186X,9780865471863,eng,356,997,27,10/31/1995,North Point Press +41468,Dewdrops on a Lotus Leaf: Zen Poems of Ryokan,Ryōkan/John Stevens,4.58,1590301080,9781590301081,eng,120,183,19,4/13/2004,Shambhala +41473,A Green Desire,Anton Myrer/Alastair Westgarth,3.73,0060934638,9780060934637,en-US,576,152,9,12/4/2001,Harper Perennial +41474,The Big War,Anton Myrer,3.85,0060934735,9780060934736,en-US,512,98,9,12/4/2001,Harper Perennial +41485,I Heard That Song Before,Mary Higgins Clark,3.82,0743264916,9780743264914,eng,318,545,69,4/3/2007,Simon & Schuster +41486,Santa Cruise: A Holiday Mystery at Sea,Mary Higgins Clark/Carol Higgins Clark,3.41,1416535527,9781416535522,eng,261,4844,433,11/14/2006,Scribner +41487,No Place Like Home,Mary Higgins Clark,3.87,0743497287,9780743497282,eng,472,11128,599,4/1/2006,Pocket Books +41488,Ghost Ship: A Cape Cod Story,Mary Higgins Clark/Wendell Minor,3.73,1416935142,9781416935148,eng,32,353,38,4/3/2007,Simon Schuster/Paula Wiseman Books +41489,Deck the Halls,Mary Higgins Clark/Carol Higgins Clark,3.61,0743418131,9780743418133,eng,292,7116,276,10/1/2001,Pocket Books +41490,On the Street Where You Live,Mary Higgins Clark/Karin Dufner,3.87,0671004530,9780671004538,eng,387,17988,569,4/1/2002,Pocket Books +41491,Silent Night: The Remarkable Christmas Truce of 1914,Stanley Weintraub,3.60,0684866226,9780684866222,eng,256,4041,179,10/30/2001,Pocket Books +41492,Nighttime Is My Time,Mary Higgins Clark,3.82,074341263X,9780743412636,eng,434,11739,485,4/6/2004,Simon & Schuster Adult Publishing Group +41495,Watchfiends and Rack Screams: Works from the Final Period,Antonin Artaud/Bernard Bador/Clayton Eshleman,4.25,1878972189,9781878972187,eng,352,261,14,2/1/2004,Exact Change +41497,Inside My Heart: Choosing to Live with Passion and Purpose,Robin McGraw,3.62,078521836X,9780785218364,eng,221,1113,183,9/12/2006,Nelson Books +41502,Lord John and the Brotherhood of the Blade (Lord John Grey #2),Diana Gabaldon,3.91,0385337493,9780385337496,eng,494,17271,776,8/28/2007,Delacorte Press +41503,How to Stop Worrying and Start Living,Dale Carnegie,4.12,0749307234,9780749307233,eng,293,240,16,5/23/1990,Vermilion +41504,Andrew Carnegie and the Rise of Big Business (Library of American Biography Series),Harold C. Livesay,3.25,0321432878,9780321432872,eng,230,28,1,3/1/2006,Pearson +41505,How to Develop Self-Confidence and Influence People by Public Speaking,Dale Carnegie,4.14,0749305797,9780749305796,eng,256,68,1,3/29/1990,Vermilion +41506,The Autobiography of Andrew Carnegie and the Gospel of Wealth,Andrew Carnegie/Gordon Hutner,3.98,0451530381,9780451530387,eng,336,405,45,11/7/2006,Signet +41513,Love in the Time of Cholera,Gabriel García Márquez/Edith Grossman,3.91,0816147175,9780816147175,eng,551,20,1,5/1/1989,Thorndike Press +41518,A Fan's Notes,Frederick Exley/Jonathan Yardley,4.08,0679602712,9780679602712,eng,425,81,10,8/5/1997,Modern Library +41536,My Soul to Keep (African Immortals #1),Tananarive Due,4.17,006105366X,9780061053665,eng,346,3799,361,4/8/1998,Harper Voyager +41537,Joplin's Ghost,Tananarive Due,3.91,0743449045,9780743449045,eng,496,738,72,9/19/2006,Washington Square Press +41538,The Living Blood (African Immortals #2),Tananarive Due,4.34,0671040847,9780671040840,en-US,515,1862,124,1/1/2002,Washington Square Press +41539,The Good House,Tananarive Due,3.94,0743296168,9780743296168,eng,597,2679,365,12/1/2006,Simon & Schuster +41541,The Prestige,Christopher Priest,3.89,0765356171,9780765356178,eng,368,441,58,10/3/2006,Tor Books +41544,The Mammoth Book of Storms Shipwrecks and Sea Disasters,Richard Russell Lawrence,3.57,0786714689,9780786714681,eng,512,11,3,10/4/2004,Running Press +41551,The Stones of Summer,Dow Mossman,3.15,1585675172,9781585675173,eng,586,421,110,2/24/2004,Overlook Press +41555,The Summer House,Jean Stone,3.89,0553580833,9780553580839,eng,352,128,6,4/4/2000,Bantam +41559,Peek-a-Boo! (Babyfaces),Roberta Grobel Intrater,3.69,0590058967,9780590058964,eng,12,111,11,10/1/1997,Cartwheel +41567,The Handmaid's Tale,Margaret Atwood,4.11,0771008740,9780771008740,eng,368,1185,89,9/19/2006,McClelland & Stewart +41573,The BFG: A Set of Plays,Roald Dahl/David Wood,4.26,0142407925,9780142407929,eng,128,518,48,2/1/2007,Puffin Books +41576,Science Notebooks: Writing about Inquiry,Lori Fulton/Brian Campbell/Linda Gregg,3.64,0325005680,9780325005683,eng,112,55,6,7/2/2003,Heinemann Educational Books +41590,Interviews with John Kenneth Galbraith (Conversations with Public Intellectuals),John Kenneth Galbraith/James Ronald Stanfield/J. Ron Stanfield/Jacqueline Bloom Stanfield,4.50,1578066107,9781578066100,eng,247,2,0,2/20/2004,University Press of Mississippi +41592,The Economics of Innocent Fraud: Truth for Our Time,John Kenneth Galbraith,3.60,0618013245,9780618013241,en-US,62,225,28,4/26/2004,Houghton Mifflin Harcourt +41595,Robin Williams Web Design Workshop,Robin P. Williams/John Tollett/Dave Rohr,3.80,0201748673,9780201748673,eng,384,54,1,8/4/2001,Peachpit Press +41602,The Non-Designer's Web Book,Robin P. Williams/John Tollett,3.66,0321303377,9780321303370,en-US,335,212,19,9/26/2005,Peachpit Press +41611,Hard Drive: Bill Gates and the Making of the Microsoft Empire,James Wallace/Jim Erickson,4.11,0887306292,9780887306297,en-US,426,1234,41,3/26/1993,HarperCollins +41639,Bill Gates: Computer Legend (Famous Lives),Sara Barton-Wood,5.00,0739844326,9780739844328,eng,48,0,0,11/1/2001,Raintree +41648,Chicken Trek,Stephen Manes,4.39,0553157167,9780553157161,eng,128,96,8,7/1/1989,Bantam Skylark +41649,Make Four Million Dollars by Next Thursday!,Stephen Manes/George Ulrich,3.68,0440413702,9780440413707,eng,87,79,12,7/8/1996,Yearling Books +41651,Slim Down Camp,Stephen Manes,3.90,0553233505,9780553233506,eng,176,9,2,12/1/1986,Bantam Books +41652,The Boy Who Turned Into a TV Set,Stephen Manes/Michael Bass,4.00,0380620006,9780380620005,eng,10,8,3,2/1/1984,Avon Books +41654,Masters of Enterprise: Giants of American Business from John Jacob Astor and J.P. Morgan to Bill Gates and Oprah Winfrey,H.W. Brands,4.00,0684854732,9780684854731,eng,368,101,10,6/7/1999,Free Press +41658,The Devil in the Junior League,Linda Francis Lee,3.62,0312354959,9780312354954,eng,336,3852,531,8/22/2006,St. Martin's Press +41659,Prom Anonymous,Blake Nelson,3.42,0142407453,9780142407455,eng,262,462,59,2/15/2007,Speak +41661,The New Rules of High School,Blake Nelson,3.54,0142402427,9780142402429,en-US,224,46,2,9/9/2004,Speak +41662,Cool Girl,Blake Nelson/Hans Schumacher,3.76,3407788193,9783407788191,ger,298,8,1,12/1/2000,Beltz und Gelberg +41663,They Came from Below,Blake Nelson,3.66,0765314231,9780765314239,eng,299,189,42,6/26/2007,Tor Books +41664,User,Blake Nelson,3.37,0970481713,9780970481719,eng,255,81,8,7/15/2003,Versus Press +41665,Exile,Blake Nelson/Francine Kass,3.15,0684838389,9780684838380,en-US,288,159,14,6/11/1997,Scribner +41666,Girl (Girl #1),Blake Nelson,3.76,0671897071,9780671897079,en-US,252,2001,198,9/13/1994,Touchstone Books +41667,My Side of the Mountain (Mountain #1),Jean Craighead George,4.06,0142401110,9780142401118,eng,192,55045,2605,4/12/2004,Puffin Books +41675,The Theban Plays: Oedipus Rex Oedipus at Colonus & Antigone,Sophocles/George Young,3.97,048645049X,9780486450490,eng,176,182,14,6/23/2006,Dover Publications +41681,The Jungle,Upton Sinclair/Earl Lee/Kathleen DeGrave,3.74,1884365302,9781884365300,eng,335,110423,4133,4/1/2003,See Sharp Press +41684,The Jungle Books,Rudyard Kipling/Alev Lytle Croutier,4.02,0451529758,9780451529756,eng,368,78036,692,5/3/2005,Signet Classics +41688,Human Croquet,Kate Atkinson,3.72,0312186886,9780312186883,eng,352,6917,548,11/12/1999,Picador +41689,The Key to Rebecca,Ken Follett/Arto Häilä,3.89,0451207793,9780451207791,eng,352,19339,615,2/4/2003,NAL +41691,Paper Money,Ken Follett,3.32,0330345044,9780330345040,eng,286,102,17,3/1/1996,MacMillan General Books +41693,Skeleton Coast (Oregon Files #4),Clive Cussler/Jack Du Brul,4.12,0425211894,9780425211892,eng,373,7591,210,10/3/2006,Berkley +41694,Dragon (Dirk Pitt #10),Clive Cussler,3.92,1416537805,9781416537809,en-US,602,11450,230,10/31/2006,Pocket Books +41695,Dark Watch (Oregon Files #3),Clive Cussler/Jack Du Brul,4.10,0425205592,9780425205594,eng,357,5956,185,10/31/2005,Berkley +41696,Black Wind (Dirk Pitt #18),Clive Cussler/Dirk Cussler,3.86,0425204235,9780425204238,eng,639,10113,304,6/6/2006,G.P. Putnam's Sons +41697,Cyclops (Dirk Pitt #8),Clive Cussler,3.87,0671704648,9780671704643,eng,473,11750,216,12/1/1986,Pocket Books +41698,Deep Six (Dirk Pitt #7),Clive Cussler,3.90,1416516859,9781416516859,en-US,535,14501,241,1/1/2006,Pocket Books +41699,Polar Shift (NUMA Files #6),Clive Cussler/Paul Kemprecos,3.91,0141017724,9780141017723,eng,504,7121,185,8/30/2005,Putnam +41700,Vixen 03 (Dirk Pitt #5),Clive Cussler,3.84,055358944X,9780553589443,eng,384,10238,199,7/25/2006,Bantam +41701,The Mediterranean Caper (Dirk Pitt #2),Clive Cussler,3.78,0425197395,9780425197394,eng,391,15305,494,4/6/2004,G.P. Putnam's Sons +41702,The Navigator (NUMA Files #7),Clive Cussler/Paul Kemprecos,3.94,0399154191,9780399154195,en-US,437,6152,248,6/5/2007,Putnam Publishing Group +41703,Golden Buddha (Oregon Files #1),Clive Cussler/Craig Dirgo,3.90,0141010312,9780141010311,eng,527,9171,309,3/24/2005,Penguin Books +41704,Shock Wave (Dirk Pitt #13),Clive Cussler,4.02,0743449673,9780743449670,eng,537,14019,260,1/1/1996,Downtown Press +41706,Raise the Titanic! (Dirk Pitt #4),Clive Cussler,3.98,0425194523,9780425194522,eng,545,21489,636,2/3/2004,G.P. Putnam's Sons +41707,Atlantis Found (Dirk Pitt #15),Clive Cussler,3.99,0425204030,9780425204030,eng,530,21436,584,10/26/2004,Berkley Trade +41708,Muerte Blanca,Clive Cussler/Paul Kemprecos,3.91,030734326X,9780307343260,spa,421,2,0,9/6/2005,Debolsillo +41710,Iceberg (Dirk Pitt #3),Clive Cussler,3.85,0425197387,9780425197387,eng,340,18244,381,3/2/2004,Berkley Books +41711,Fire Ice (NUMA Files #3),Clive Cussler/Paul Kemprecos,3.92,0399148728,9780399148729,en-US,434,186,7,6/3/2002,Putnam Adult +41712,Lost City (NUMA Files #5),Clive Cussler/Paul Kemprecos,3.90,0425204197,9780425204191,en-US,515,227,17,7/26/2005,G.P. Putnam's Sons +41713,The Sea Hunters II (The Sea Hunters #2),Clive Cussler/Craig Dirgo,3.85,0425193721,9780425193723,en-US,464,1311,37,12/30/2003,G.P. Putnam's Sons +41714,The Sea Hunters (The Sea Hunters #1),Clive Cussler/Craig Dirgo,3.82,0743480694,9780743480697,en-US,432,2004,58,9/1/2003,Pocket Star +41715,La Ciudad Perdida (NUMA Files #5),Clive Cussler/Paul Kemprecos,3.90,0307376648,9780307376640,spa,432,2,0,11/7/2006,Debolsillo +41716,Sahara (Dirk Pitt #11),Clive Cussler,3.96,030720961X,9780307209610,spa,400,51807,724,1/11/2005,Debolsillo +41717,Clive Cussler and Dirk Pitt Revealed,Clive Cussler/Craig Dirgo,3.88,0671026224,9780671026226,eng,544,2066,35,10/1/1998,Pocket Books +41719,Cliffs Notes on Billy Budd & Typee,Mary Ellen Snodgrass,3.50,0764539507,9780764539503,eng,80,3,0,1/24/2003,Cliffs Notes +41735,Billy Budd Sailor,Herman Melville,3.12,014062175X,9780140621754,eng,96,178,20,10/24/1995,Penguin Books Ltd +41740,Billy Budd Sailor,Herman Melville,3.12,1417647116,9781417647118,eng,127,29,0,3/1/1999,Turtleback Books +41760,Billy Budd Sailor and Other Uncompleted Writings: The Writings of Herman Melville Volume 13,Herman Melville/Hershel Parker/G. Thomas Tanselle/Harrison Hayford/Robert Sandberg/Alma MacDougall Reising,3.11,0810111144,9780810111141,eng,1016,0,0,9/15/2017,Northwestern Univ Press +41773,Billy Budd marin,Herman Melville,3.12,2070709043,9782070709045,fre,182,9,0,5/14/1987,Gallimard +41780,The Elections of 2004,Michael Nelson,4.00,1568028342,9781568028347,eng,213,7,0,3/15/2005,CQ Press +41781,Love Sick: A Smoldering Look at Love Lust and Marriage,Michael J. Nelson/Charles S. Anderson Design Company/Pop Ink,3.76,0810957906,9780810957909,eng,176,71,8,9/1/2005,Harry N. Abrams +41782,Goth-Icky: A Macabre Menagerie of Morbid Monstrosities,Michael J. Nelson/Charles S. Anderson Design Company/Pop Ink,3.65,0810957892,9780810957893,eng,176,147,11,9/1/2005,Harry N. Abrams +41783,Fluffy Humpy Poopy Puppy: A Ruff Dog-Eared Look at Man's Best Friend,Michael J. Nelson/Pop Ink/Charles S. Anderson Design Company,4.00,0810970570,9780810970571,eng,176,56,7,9/1/2006,Harry N. Abrams +41784,Mike Nelson's Death Rat!,Michael J. Nelson,3.66,0060934727,9780060934729,eng,336,450,44,4/15/2003,Dey Street Books +41786,Joel on Software,Joel Spolsky,4.11,1590593898,9781590593899,eng,384,2981,118,10/28/2004,Apress +41793,Hackers & Painters: Big Ideas from the Computer Age,Paul Graham/Allen Noren/Matt Hutchinson,4.05,0596006624,9780596006624,eng,272,6572,302,5/25/2004,O'Reilly Media +41804,I Robot (Robot #0.1),Isaac Asimov,4.19,0553803700,9780553803709,eng,224,238100,4196,6/1/2004,Spectra +41805,I Robot: The Illustrated Screenplay,Harlan Ellison,4.03,1596870419,9781596870413,eng,288,26,1,5/1/2004,iBooks +41810,The Robots of Dawn (Robot #3),Isaac Asimov,4.16,0553299492,9780553299496,eng,435,31186,866,3/1/1994,Spectra +41814,I. Asimov,Isaac Asimov,4.20,055356997X,9780553569971,eng,578,1729,97,1/1/1995,Bantam +41815,Asimov's New Guide to Science,Isaac Asimov,4.38,0140172130,9780140172133,eng,896,49,1,5/27/1993,Penguin +41820,Pebble in the Sky (Galactic Empire #3),Isaac Asimov,3.88,0553293427,9780553293425,eng,308,14022,452,12/1/1991,Bantam +41821,The Gods Themselves,Isaac Asimov,4.09,1857989341,9781857989342,eng,288,42770,1022,2/10/2000,Millenium +41822,The Stars Like Dust (Galactic Empire #1),Isaac Asimov,3.74,0553293435,9780553293432,eng,304,12547,424,12/1/1991,Spectra +41824,The Currents of Space (Galactic Empire #2),Isaac Asimov,3.83,4490249512,9780449015414,eng,192,37,3,1/1/1952,Fawcett crest +41832,Gold: The Final Science Fiction Collection,Isaac Asimov/Orson Scott Card,4.00,0060556528,9780060556525,eng,416,2476,85,10/21/2003,Harper Voyager +41834,Asimov's Guide to the Bible: The Old Testament,Isaac Asimov,4.07,0380010321,9780380010325,eng,677,237,20,11/1/1971,Avon Books (P) +41840,100 Great Fantasy Short Short Stories,Isaac Asimov/Terry Carr/Martin H. Greenberg/Janet Fox,3.91,0380699176,9780380699179,eng,395,204,19,8/1/1985,Avon +41851,Rock Star Superstar,Blake Nelson,3.61,0142405744,9780142405741,en-US,229,310,34,4/6/2006,Speak +41856,Writings and Selected Narratives of the Exploration and Settlement of Virginia,John Smith,3.39,1598530011,9781598530018,en-US,1327,28,3,3/22/2007,Library of America +41861,John Paul George & Ben,Lane Smith,4.21,0786848936,9780786848935,eng,40,3500,393,4/1/2006,Little Brown Books for Young Readers +41862,Evolution and the Theory of Games,John Maynard Smith,4.00,0521288843,9780521288842,eng,234,86,5,10/21/1982,Cambridge University Press +41863,The Origins of Life: From the Birth of Life to the Origin of Language,John Maynard Smith/Eörs Szathmáry,4.13,019286209X,9780192862099,eng,192,43,3,11/26/2000,Oxford University Press USA +41864,American Genesis: Captain John Smith and the Founding of Virginia,Alden T. Vaughan,3.43,0673393550,9780673393555,eng,224,23,2,8/17/2019,Pearson +41865,Twilight (Twilight #1),Stephenie Meyer,3.59,0316015849,9780316015844,eng,501,4597666,94265,9/6/2006,Little Brown and Company +41885,Sense and Sensibility,Jane Austen,4.07,1593081251,9781593081256,eng,325,1278,153,7/25/2004,Barnes & Noble +41887,Uncle Shelby's ABZ Book,Shel Silverstein,4.36,067121148X,9780671211486,eng,80,2550,222,9/9/1985,Gallery Books +41890,Who Wants a Cheap Rhinoceros?,Shel Silverstein,3.96,0689851138,9780689851131,eng,64,1907,124,8/1/2002,Simon Schuster Books for Young Readers +41899,Fantastic Beasts and Where to Find Them (Hogwarts Library),Newt Scamander/J.K. Rowling,3.99,0439321603,9780439321600,eng,128,259399,5513,6/1/2001,Arthur A. Levine Books +41900,J.K. Rowling - A Biography,Sean Smith,3.73,1843170175,9781843170174,eng,248,937,41,5/1/2003,Michael O'Mara Books +41903,Das Zauberer-Handbuch - Die Magische Welt der Joanne K. Rowling von A bis Z,Allan Zola Kronzek,4.04,3442451531,9783442451531,ger,304,39,1,11/1/2001,Goldmann +41907,Harry Potter und die Kammer des Schreckens (Harry Potter #2),J.K. Rowling,4.42,3551552096,9783551552099,ger,351,26,1,9/30/2000,Carlsen +41908,Harry Potter und der Gefangene von Askaban (Harry Potter #3),J.K. Rowling/Rufus Beck,4.56,3895849618,9783895849619,ger,13,313,8,8/31/2002,Dhv der Hörverlag +41909,Harry Potter ve Sırlar Odası (Harry Potter #2),J.K. Rowling/Sevin Okyay,4.42,3570211029,9783570211021,tur,403,1000,41,10/1/2001,Yapı Kredi Yayınları +41911,Harry Potter und der Gefangene von Askaban (Harry Potter #3),J.K. Rowling,4.56,355155210X,9783551552105,ger,448,30,2,4/1/2001,Carlsen +41918,There are No Children Here: The Story of Two Boys Growing Up in the Other America,Alex Kotlowitz,4.27,0385265565,9780385265560,eng,323,12092,837,1/5/1992,Anchor Books +41919,Infants Children and Adolescents (MyDevelopmentLab Series),Laura E. Berk,3.64,0205419283,9780205419289,en-US,784,19,2,9/10/2004,Allyn & Bacon +41926,Spring Music,Elvi Rhodes,4.05,0552146552,9780552146555,eng,464,37,5,8/19/1999,Corgi +41951,Scarlet Feather,Maeve Binchy,3.96,0451203771,9780451203779,eng,549,22812,791,3/1/2002,Signet +41952,The Lilac Bus,Maeve Binchy,3.62,0099498642,9780099498643,eng,196,9649,297,1/12/2007,Dell +41962,Light a Penny Candle,Maeve Binchy,3.91,009949857X,9780099498575,eng,832,14656,585,5/4/2006,Arrow +41967,Evening Class,Maeve Binchy,3.99,0752876821,9780752876825,en-GB,528,35964,855,6/30/2005,Orion Publishing Group +41977,Circle of Friends,Maeve Binchy/René Huigen/Frans Thomése,4.03,0099498596,9780099498599,eng,722,51839,1396,6/1/2006,Arrow +41979,Nos rêves de Castelbay,Maeve Binchy,3.80,2268031675,9782268031675,fre,434,1,0,3/29/1999,Editions du Rocher +41991,Les Saveurs de la vie,Maeve Binchy,3.96,2266129376,9782266129374,fre,893,6,1,6/19/2003,Pocket +41993,Kiss,Jill Mansell,3.68,0747268460,9780747268468,eng,512,1587,67,9/7/2000,Headline Review +41994,Solo,Jill Mansell,3.65,0747267456,9780747267454,eng,421,3362,127,9/2/2002,Headline Review +41996,Two's Company,Jill Mansell,3.61,0747267448,9780747267447,eng,448,1462,53,10/27/2003,Headline Review +41998,Open House,Jill Mansell,3.90,074726743X,9780747267430,en-US,448,2440,65,3/3/2003,Headline +41999,The Dream Kingdom (The Morland Dynasty #26),Cynthia Harrod-Eagles,4.34,0751533432,9780751533439,eng,640,195,7,11/1/2004,Little Brown Book Group +42001,Falling for You,Jill Mansell,3.80,0755304853,9780755304851,eng,448,4816,143,8/16/2004,Headline Review +42002,Millie's Fling,Jill Mansell,3.75,0747264864,9780747264866,en-GB,512,8052,463,8/16/2001,Headline Review +42003,Sheer Mischief,Jill Mansell,3.82,0747268479,9780747268475,eng,504,2555,102,8/2/2001,Headline Review +42007,Head Over Heels,Jill Mansell,3.72,0747257361,9780747257363,en-US,448,3286,128,6/10/1999,Headline Review +42010,Mixed Doubles,Jill Mansell,3.71,0747257353,9780747257356,en-GB,416,2087,82,7/2/1998,Headline Review +42012,Méli-mélo,Jill Mansell,3.71,2290327506,9782290327500,fre,381,5,0,10/31/2002,J'ai Lu +42018,Seven Sunny Days,Chris Manby,3.35,0373895208,9780373895205,eng,352,588,30,4/26/2005,Red Dress Ink +42020,Girl Meets Ape,Chris Manby,3.46,0340828064,9780340828069,eng,406,553,20,1/5/2004,Coronet +42029,Girls' Night In,Jessica Adams/Chris Manby/Fiona Walker,3.26,0006514855,9780006514855,en-GB,586,140,11,7/3/2000,HarperCollins +42036,Tales from Shakespeare,Charles Lamb/Mary Lamb/Arthur Rackham,3.96,0140621598,9780140621594,eng,288,3097,154,10/26/2007,Penguin Books +42038,Shakespeare's Sonnets,William Shakespeare/Katherine Duncan-Jones,4.25,1903436575,9781903436578,eng,488,70617,614,8/21/1997,Bloomsbury Academic +42040,Love Poems and Sonnets,William Shakespeare,4.34,0385017332,9780385017336,eng,160,5808,64,9/3/1957,Doubleday Books +42041,Shakespeare A to Z: The Essential Reference to His Plays His Poems His Life and Times and More,Charles Boyce/David Allen White,4.35,0385313616,9780385313612,eng,752,153,6,11/10/1991,Delta +42045,The Sonnets,William Shakespeare/Stephen Orgel/John Hollander,4.25,0140714537,9780140714531,eng,164,349,19,12/1/2001,Penguin Classics +42048,Shakespeare's Secret,Elise Broach,3.88,0805073876,9780805073874,eng,256,7373,645,5/1/2005,Henry Holt & Company +42051,The Complete Sonnets and Poems,William Shakespeare/Colin Burrow,4.34,019281933X,9780192819338,eng,624,5487,43,7/18/2002,Oxford University Press +42054,The Arden Shakespeare Complete Works,William Shakespeare/Richard Proudfoot/Ann Thompson/David Scott Kastan/Harold Jenkins,4.50,1903436613,9781903436615,eng,1347,122,7,7/5/2001,Arden Shakespeare +42055,Reduced Shakespeare: The Attention-impaired Readers Guide to the World's Best Playwright,Reed Martin/Austin Tichenor,4.13,1401302203,9781401302207,en-US,256,281,53,7/11/2006,Hachette Books +42056,The Cat Who Knew Shakespeare (Cat Who... #7),Lilian Jackson Braun,3.92,0747250383,9780747250388,eng,208,6876,206,11/7/1996,Headline +42057,The Shakespeare Stealer (Shakespeare Stealer #1),Gary L. Blackwood,3.68,0141305959,9780141305950,eng,224,5582,451,7/1/2000,Puffin Books +42060,Richard III,William Shakespeare/Barbara A. Mowat/Paul Werstine,3.93,0743482840,9780743482844,eng,369,1945,191,7/1/2004,Simon Schuster +42068,King Henry VI Part 3,William Shakespeare/John D. Cox/Eric Rasmussen,3.76,1903436311,9781903436318,eng,460,3138,186,11/1/2001,Bloomsbury Arden Shakespeare +42070,The Age Of Shakespeare,Frank Kermode,3.68,0753819953,9780753819951,eng,208,20,2,7/7/2005,Phoenix +42078,Ukraine,Sarah Johnstone,3.91,186450336X,9781864503364,eng,216,27,5,7/1/2005,Lonely Planet +42099,Jimi Hendrix: The Complete Guide to His Music (Complete Guide to the Music of...),Peter Doggett,4.00,1844494241,9781844494248,eng,96,4,1,12/1/2004,Omnibus Press +42140,Outside the Dog Museum (Answered Prayers #4),Jonathan Carroll,3.97,0765311852,9780765311856,eng,267,1406,97,6/1/2005,Orb Books +42141,Glass Soup (Vincent Ettrich #2),Jonathan Carroll,3.88,0765311801,9780765311801,eng,320,1153,62,11/28/2006,Tor Books +42143,The Land of Laughs,Jonathan Carroll,3.90,0312873115,9780312873110,eng,253,4337,352,2/10/2001,Orb Books +42145,Sleeping in Flame (Answered Prayers #2),Jonathan Carroll/Dave McKean,4.05,0765311860,9780765311863,en-US,304,1543,76,10/1/2004,Orb Books +42146,Bones of the Moon (Answered Prayers #1),Jonathan Carroll,3.89,0312873123,9780312873127,eng,224,2046,116,5/3/2002,Orb Books +42148,Kissing the Beehive (Crane's View #1),Jonathan Carroll,3.70,0575402911,9780575402911,eng,256,808,40,8/10/2000,Orion +42149,Baby Proof,Emily Giffin,3.72,0312348649,9780312348649,eng,340,140762,3096,6/13/2006,St. Martin's Press +42155,Something Blue (Darcy & Rachel #2),Emily Giffin,3.93,0312323867,9780312323868,en-US,338,191577,6599,3/21/2006,Griffin +42156,Something Borrowed (Darcy & Rachel #1),Emily Giffin,3.85,031232118X,9780312321185,eng,322,454917,7487,6/1/2004,St. Martin's Press +42157,P.S. Longer Letter Later (Elizabeth and Tara*Starr #1),Paula Danziger/Ann M. Martin,3.78,0590213113,9780590213110,eng,234,2699,242,5/1/1999,Scholastic Paperbacks +42158,P.S. Your Cat Is Dead,James Kirkwood Jr.,3.75,0312321201,9780312321208,eng,218,1334,141,11/15/2003,St. Martin's Griffin +42162,P.S. I Love You Three!,Lynda Milligan/Nancy J. Smith,4.14,1880972476,9781880972472,eng,79,7,0,12/1/2002,Possibilities +42172,The Christmas Shoes (Christmas Hope #1),Donna VanLiere,4.23,0312289510,9780312289515,eng,132,32701,967,11/9/2001,St. Martin's Press +42177,Burning The Map,Laura Caldwell,3.54,0373250215,9780373250219,en-US,288,1336,66,10/25/2002,Red Dress Ink +42180,iMovie 4 & iDVD: The Missing Manual: The Missing Manual,David Pogue,3.25,0596006934,9780596006938,eng,496,4,0,8/23/2004,Pogue Press +42198,The Icarus Agenda,Robert Ludlum,3.96,0752858505,9780752858500,eng,836,37,3,7/1/2004,Orion Books +42210,Life Is a Dream,Pedro Calderón de la Barca,3.98,0486421244,9780486421247,eng,96,346,27,7/1/2002,Dover Publications +42211,Life Is a Dream and Other Spanish Classics (Eric Bentley's Dramatic Repertoire) - Volume II,Pedro Calderón de la Barca/Miguel de Cervantes Saavedra/Lope de Vega/Tirso de Molina/Roy Campbell/Eric Bentley,3.81,1557830061,0073999140774,eng,298,61,4,4/1/2000,Applause Theatre & Cinema Book Publishers +42212,Life Is A Dream = La Vida Es Sueño,Pedro Calderón de la Barca/Stanley Appelbaum,3.98,0486424731,9780486424736,eng,208,56,2,12/6/2002,Dover Publications +42213,Life Is a Dream,Pedro Calderón de la Barca/Gregary Racz,3.98,0143104829,9780143104827,eng,160,168,11,12/26/2006,Penguin Classics +42261,Stylepedia: A Guide to Graphic Design Mannerisms Quirks and Conceits,Steven Heller/Louise Fili,4.06,0811833461,9780811833462,eng,336,170,9,11/9/2006,Chronicle Books +42278,I Can Fly,Ruth Krauss/Mary Blair,4.24,0307001466,9780307001467,eng,24,1069,70,9/9/2003,Golden Books +42300,A Whole Lotta Love,Donna Hill/Francis Ray/Brenda Jackson/Monica Jackson,4.46,0451210905,9780451210906,eng,384,662,7,1/6/2004,Signet +42308,The Best of Pippi Longstocking (Pippi Longstocking #1-3),Astrid Lindgren/Tony Ross,4.25,0192753371,9780192753373,en-GB,378,217,16,10/9/2003,Oxford University Press +42311,Astrid Lindgren: Storyteller to the World,Johanna Hurwitz/Michael Dooling,3.69,0140326928,9780140326925,eng,64,10,2,11/1/1991,Puffin +42323,Astrid Lindgren,Eva-Maria Metcalf,3.78,0805745254,9780805745252,eng,157,7,2,11/1/1994,Twayne Publishers +42337,The Moffats (The Moffats #1),Eleanor Estes/Louis Slobodkin,4.00,0152025413,9780152025410,eng,212,9334,302,4/1/2001,Oddysey/Harcourt Young Classics +42341,Arthur and the Lost Kingdoms,Alistair Moffat,3.70,0753810743,9780753810743,eng,282,59,14,12/31/1999,Orion Publishing Group +42355,God's Generals Why They Succeeded and Why Some Fail,Roberts Liardon,4.45,0883689448,9780883689448,eng,416,1481,67,11/1/2000,Whitaker House +42357,The Alley (The Alley #1),Eleanor Estes/Edward Ardizzone,3.76,0152049185,9780152049188,eng,288,320,20,8/1/2003,HMH Books for Young Readers +42359,Pinky Pye (The Pyes #2),Eleanor Estes/Edward Ardizzone,3.86,0152025650,9780152025656,eng,192,1578,102,9/1/2000,HMH Books for Young Readers +42366,The Witch Family,Eleanor Estes/Edward Ardizzone,4.07,015202610X,9780152026103,eng,240,2550,98,9/1/2000,HMH Books for Young Readers +42369,The Hundred Dresses,Eleanor Estes/Louis Slobodkin,4.09,0152052607,9780152052607,eng,80,30311,2306,9/1/2004,HMH Books for Young Readers +42376,Theater Shoes,Noel Streatfeild/Diane Goode,4.02,0613013379,9780613013376,en-US,252,85,11,11/1/1999,Sagebrush +42377,Gemma Alone (Gemma #3),Noel Streatfeild,3.61,0440428653,9780440428657,eng,150,175,7,2/1/1987,Yearling +42380,When the Siren Wailed,Noel Streatfeild/Judith Gwyn Brown,3.72,0394931475,9780394931470,en-US,157,16,3,10/1/1977,Lions +42382,The Caine Mutiny Court-Martial,Herman Wouk,4.12,0385514417,9780385514415,eng,120,281,10,4/20/1954,Doubleday Books +42389,Band of Brothers: E Company 506th Regiment 101st Airborne from Normandy to Hitler's Eagle's Nest,Stephen E. Ambrose,4.43,0743464117,9780743464116,eng,432,82525,2124,9/1/2002,Simon & Schuster; Media Tie-In edition +42390,Midnight Riders: The Story of the Allman Brothers Band,Scott Freeman,3.97,0316294527,9780316294522,eng,343,278,16,7/1/1996,Little Brown and Company +42408,Babar's World Tour,Laurent de Brunhoff,3.82,0810957809,9780810957800,en-US,48,69,12,9/1/2005,Harry N. Abrams +42410,The Easter Rabbit's Parade,Lois Lenski,3.00,037582748X,9780375827488,eng,40,29,7,1/27/2004,Random House Books for Young Readers +42415,The Little Fire Engine,Lois Lenski,3.56,0375810706,9780375810701,eng,56,209,27,10/24/2000,Random House Books for Young Readers +42417,Right Stuff Wrong Sex: America's First Women in Space Program,Margaret A. Weitekamp,3.82,0801883946,9780801883941,eng,256,36,9,10/26/2005,Johns Hopkins University Press +42424,The Right Stuff (To Protect and Defend #3),Merline Lovelace,3.61,0373273495,9780373273492,eng,256,40,3,2/23/2004,Silhouette Books +42425,For Whom the Bell Tolls,Ernest Hemingway,3.97,1117066037,9781117066035,eng,503,365,33,1/1/1940,P. F. Collier and Sons +42429,Cliffs Notes on Hemingway's The Sun Also Rises,Gary K. Carey,3.50,0822012375,9780822012375,eng,80,14,2,5/20/1964,Cliffs Notes +42430,Dune (Dune #1),Frank Herbert/Domingo Santos,4.22,849759682X,9788497596824,spa,702,565,93,10/30/2003,Debolsillo +42432,God Emperor of Dune (Dune Chronicles #4),Frank Herbert,3.84,0575075066,9780575075061,eng,454,51343,896,3/13/2003,Victor Gollancz +42434,Sandworms of Dune (Dune Chronicles #8),Brian Herbert/Kevin J. Anderson,3.64,076531293X,9780765312938,en-US,494,8486,273,8/7/2007,Tor Books +42435,In Harm's Way: The Sinking of the USS Indianapolis and the Extraordinary Story of Its Survivors,Doug Stanton,4.29,0805073663,9780805073669,eng,339,16684,892,5/1/2003,Owl Books +42438,Harm's Way,Elizabeth Stewart,3.36,1419950584,9781419950582,eng,261,13,5,5/27/2005,Ellora's Cave +42439,Harm's Way: Lust & Madness & Murder & Mayhem,Joel-Peter Witkin/Stanley B. Burns,4.54,0944092284,9780944092286,eng,132,58,3,10/1/1994,Twin Palms Publishers +42444,I Like Winter (Seasons #3),Lois Lenski/Heidi Kilgras,3.94,0375810684,9780375810688,eng,56,65,9,10/24/2000,Random House Books for Young Readers +42447,Strawberry Girl,Lois Lenski,3.87,0064405850,9780064405850,eng,208,11143,423,4/26/2005,HarperCollins +42485,Betsy-Tacy and Tib (Betsy-Tacy #2),Maud Hart Lovelace/Lois Lenski,4.17,006024416X,9780060244163,eng,128,83,16,11/9/1994,HarperCollins +42489,After Collapse: The Regeneration of Complex Societies,Glenn M. Schwartz,4.00,0816525099,9780816525096,eng,336,0,0,5/25/2006,University of Arizona Press +42501,Seize The Fire,Elda Minger,4.00,0373161174,9780373161171,eng,249,3,0,7/25/1985,Harlequin American Romance +42512,We Were Soldiers Once... and Young: Ia Drang - The Battle that Changed the War in Vietnam,Harold G. Moore/Joseph L. Galloway,4.31,034547581X,9780345475817,eng,480,21876,451,11/23/2004,Presidio Press +42513,We Were Soldiers Once ... and Young (Ia Drang - the Battle That Changed the War in Vietnam),Harold G. Moore/Joseph L. Galloway,4.31,0060506989,9780060506988,eng,535,166,24,2/5/2002,HarperTorch +42514,We were Soldiers Once... and young,Harold G. Moore/Joseph L. Galloway,4.31,0552150266,9780552150262,eng,528,153,10,3/1/2002,Corgi +42519,Eisenhower: Soldier and President,Stephen E. Ambrose,3.98,0671747584,9780671747589,eng,640,10718,126,10/15/1991,Simon Schuster +42525,Dwight D. Eisenhower (The American Presidents #34),Tom Wicker/Arthur M. Schlesinger Jr.,3.84,0805069070,9780805069075,en-US,176,248,30,11/5/2002,Times Books +42528,Crusade in Europe,Dwight D. Eisenhower,4.08,080185668X,9780801856686,eng,559,1212,63,6/6/1997,Johns Hopkins University Press +42529,Total Cold War: Eisenhower's Secret Propaganda Battle at Home and Abroad,Kenneth Osgood,3.85,0700614451,9780700614455,eng,506,18,1,2/23/2006,University Press of Kansas +42533,So Far from God: The U.S. War With Mexico 1846-1848,John S.D. Eisenhower,3.93,0806132795,9780806132792,eng,464,271,29,9/15/2000,University of Oklahoma Press +42536,Yanks: The Epic Story of the American Army in World War I,John S.D. Eisenhower/Joanne Thompson Eisenhower,3.72,0743223853,9780743223850,eng,368,110,15,6/4/2002,Free Press +42543,Eisenhower Volume #2: The President,Stephen E. Ambrose,4.20,0671605658,9780671605650,eng,749,95,13,10/1/1985,Touchstone Books +42547,The Autobiography of Martin Luther King Jr.,Martin Luther King Jr./Clayborne Carson,4.35,0446676500,9780446676502,eng,400,14025,547,1/1/2001,Grand Central Publishing +42558,Bull Halsey,E.B. Potter,4.16,1591146917,9781591146919,eng,440,56,6,4/21/2003,US Naval Institute Press +42573,The Water Babies,Charles Kingsley/W. Heath Robinson,3.42,1853261483,9781853261480,eng,224,6148,318,12/5/1994,Wordsworth Editions +42579,Water Water Everywhere: A Splash & Giggle Bath Book (Baby Einstein),Julie Aigner-Clark/Nadeem Zaidi,3.71,0786819111,9780786819119,eng,10,79,10,9/1/2003,Hyperion Books for Children +42589,Shoot the Piano Player,David Goodis,4.02,0679732543,9780679732549,eng,158,2768,143,10/3/1990,Vintage Crime/Black Lizard +42594,CliffsNotes on Shakespeare's Twelfth Night,James Lamar Roberts/CliffsNotes/William Shakespeare,4.16,0822000946,9780822000945,eng,64,11,2,9/20/1960,Cliffs Notes +42597,Twelfth Night: Or What You Will,William Shakespeare/Elizabeth Story Donno/Penny Gay,3.98,052153514X,9780521535144,eng,186,62,7,3/15/2004,Cambridge University Press +42602,How to Spell Like a Champ,Barrie Trinkle/Paige Kimble/Carolyn Andrews,4.17,0761143696,9780761143697,eng,192,46,7,11/16/2006,Workman Publishing Company +42603,Black Like Me,John Howard Griffin,4.13,0451208641,9780451208644,eng,208,53790,2118,5/6/2003,Berkley Books +42604,Men Are Like Waffles Women Are Like Spaghetti,Bill Farrel/Pam Farrel,3.88,0736904867,9780736904865,eng,253,952,117,1/1/2001,Harvest House Publishers +42606,As You Like It,William Shakespeare/Arkangel Cast/Victoria Hamilton/Niamh Cusack/Stephen Mangan,3.83,1932219048,9781932219043,en-US,2,28,6,9/6/2005,The Audio Partners +42607,As You Like It,William Shakespeare,3.83,074348486X,9780743484862,eng,263,62368,1291,8/23/2011,Simon Schuster +42609,As You Like It,William Shakespeare/Juliet Dusinberre,3.83,1904271227,9781904271222,eng,449,410,36,7/25/2006,Bloomsbury Arden Shakespeare +42612,As You Like It (No Fear Shakespeare),William Shakespeare/SparkNotes/John Crowther,3.83,1411401042,9781411401044,eng,256,265,36,6/22/2004,SparkNotes +42615,War of the Rats,David L. Robbins,4.11,055358135X,9780553581355,eng,512,1800,127,6/6/2000,Bantam +42622,Nimitz Class (Admiral Arnold Morgan #1),Patrick Robinson,3.92,0060564423,9780060564421,eng,495,5402,97,2/3/2004,Harper Paperbacks +42625,Nimitz Class (Admiral Arnold Morgan #1),Patrick Robinson,3.92,0061096849,9780061096846,eng,528,1,0,1/23/1998,HarperTorch +42631,Having a Mary Heart in a Martha World: Finding Intimacy with God in the Busyness of Life,Joanna Weaver,4.18,1578562589,9781578562589,eng,256,14711,442,7/18/2000,Waterbrook Press +42632,Thirst,Mary Oliver,4.36,0807068969,9780807068960,eng,88,3689,351,10/15/2006,Beacon Press +42634,The Gilded Web (Web #1),Mary Balogh,3.58,0440243068,9780440243069,eng,480,2621,169,11/28/2006,Dell +42641,Resurrection,Leo Tolstoy/Louise Maude/Aylmer Maude,4.13,0735102864,9780735102866,eng,562,11468,530,2/1/2000,Replica Books +42647,Cold Mountain,Charles Frazier,3.86,0871136791,9780871136794,eng,356,1088,127,5/16/1997,Atlantic Monthly Press (NYC) +42652,Red Road From Stalingrad: Recollections of a Soviet Infantryman,Mansur Abdulin/Artem Drabkin,4.10,184415145X,9781844151455,en-US,195,82,4,1/19/2005,Pen & Sword Military +42661,The Fall of Berlin 1945,Antony Beevor,4.29,0142002801,9780142002803,eng,490,10230,326,4/29/2003,Penguin Books +42662,Paris: After the Liberation 1944-1949,Antony Beevor/Artemis Cooper,3.83,0142437921,9780142437926,eng,464,542,48,8/31/2004,Penguin Books +42668,Demon Angel (The Guardians #1),Meljean Brook,3.53,0425213471,9780425213476,eng,432,2704,237,1/2/2008,Berkley Sensation +42682,Mariel Hemingway's Healthy Living from the Inside Out: Every Woman's Guide to Real Beauty Renewed Energy and a Radiant Life,Mariel Hemingway,3.89,0060890398,9780060890391,eng,288,175,22,12/26/2006,HarperOne +42688,Hemingway vs. Fitzgerald,Scott Donaldson,3.85,1585671266,9781585671267,eng,352,185,19,12/1/2001,Harry N. Abrams +42691,The Haj,Leon Uris,4.03,0553248642,9780553248647,eng,525,11372,396,5/1/1985,Bantam +42692,Mila 18,Leon Uris,4.29,0553241605,9780553241600,eng,563,21662,485,11/1/1983,Bantam +42693,A God in Ruins,Leon Uris,3.26,0061097934,9780061097935,eng,517,1208,104,9/5/2000,Avon +42694,Battle Cry,Leon Uris,4.15,006075186X,9780060751869,eng,694,8323,137,6/28/2005,Avon +42695,The Angry Hills,Leon Uris,3.67,0553277871,9780553277876,eng,245,1163,50,1/1/1984,Bantam +42697,Exodus,Leon Uris,4.34,0553258478,9780553258479,eng,608,85927,1520,10/1/1986,Bantam Books Inc. +42698,Oh Play That Thing,Roddy Doyle,3.29,014303605X,9780143036050,en-US,384,1545,105,10/25/2005,Penguin Books +42701,The Van (The Barrytown Trilogy #3),Roddy Doyle,3.94,0140260021,9780140260021,eng,320,5718,164,3/1/1997,Penguin Books +42706,Fish & Chips (The Barrytown Trilogie #3),Roddy Doyle/Renate Orth-Guttmann,3.94,3596153026,9783596153022,ger,314,2,0,10/1/2002,Fischer Taschenbuch Verlag +42714,The Giggler Treatment,Roddy Doyle/Brian Ajhar,4.17,0439993857,9780439993852,en-GB,112,1425,149,7/20/2001,Scholastic Inc. +42718,A Star Called Henry,Roddy Doyle,3.84,0099284480,9780099284482,eng,342,6885,438,9/7/2000,Vintage +42719,The Van,Roddy Doyle,3.94,043620052X,9780436200526,eng,312,30,4,8/4/1991,Secker and Warburg +42728,Rover rettet Weihnachten.,Roddy Doyle/Brian Ajhar,4.12,3570127214,9783570127216,ger,160,1,0,9/1/2002,Omnibus Hc Bei Bertelsmann +42738,The Snapper,Roddy Doyle,3.93,3596153034,9783596153039,ger,217,26,5,9/1/2002,Fischer TB +42741,Yeats Is Dead,Roddy Doyle/Frank McCourt/Conor McPherson/Gene Kerrigan/Gina Moxley/Marian Keyes/Pauline McLynn/Tom Humphries/Joseph O'Connor/Anthony Cronin/Owen O'Neill/Hugo Hamilton/Charlie O'Neill/Gerard Stembridge/Donal O'Kelly,3.40,0099422344,9780099422341,eng,298,34,4,6/6/2002,Vintage +42758,The Fantastic Vampire: Studies in the Children of the Night: Selected Essays from the Eighteenth International Conference on the Fantastic in the Arts,James Craig Holte,0.00,0313309337,9780313309335,eng,176,0,0,3/30/2002,Greenwood Press +42763,A Dracula Handbook,Elizabeth Russell Miller,4.07,1413480942,9781413480948,eng,200,10,1,3/23/2005,Xlibris Corporation +42772,Real Estate Loopholes: Secrets of Successful Real Estate Investing,Diane Kennedy/Garrett Sutton/Robert T. Kiyosaki,4.15,0446691356,9780446691352,eng,240,721,9,12/31/2003,Warner Books (NY) +42777,Hope is the Thing with Feathers: A Personal Chronicle of Vanished Birds,Christopher Cokinos,4.22,0446677493,9780446677493,eng,384,308,33,4/1/2001,Warner Books (NY) +42797,Goodbye Forever (Sweet Dreams #72),Barbara Conklin,3.76,055324356X,9780553243567,eng,135,56,0,12/31/1984,Bantam Books +42798,Winter Dreams (Sweet Dreams #141),Barbara Conklin,3.85,0553270621,9780553270624,eng,176,104,4,2/1/1988,Bantam Books +42802,First Last and Always (Sweet Dreams #96),Barbara Conklin,3.76,0553251791,9780553251791,eng,160,65,2,9/1/1985,Bantam Books +42808,P.S. I Love You (Sealed with a Kiss #4),Valerie Parv,2.83,0373033664,9780373033669,eng,192,23,1,4/24/1995,Harlequin Romance +42811,PS I Love You Baby Collection,Lynda Milligan/Nancy J. Smith,4.43,0962247723,9780962247729,en-US,79,7,0,12/31/1990,Possibilities +42818,Tales from Margaritaville,Jimmy Buffett,3.90,0156026988,9780156026987,en-US,230,2450,175,6/3/1989,Fawcett +42819,A Pirate Looks at Fifty,Jimmy Buffett/Leona Nevler,3.83,0449005860,9780449005866,eng,420,3036,216,11/28/1999,Fawcett +42831,The Parrot-Head Companion: An Insider's Guide to Jimmy Buffett,Thomas Ryan,2.83,0806520159,9780806520155,eng,176,6,0,1/1/1998,Citadel Press +42849,The Dog Who Loved Too Much: Tales Treatments and the Psychology of Dogs,Nicholas Dodman,4.08,0553375261,9780553375268,eng,258,691,35,3/3/1997,Bantam +42854,Barack Obama: Working to Make a Difference,Marlene Targ Brill/Lerner Publishing Group,3.96,0822560569,9780822560562,en-US,48,19,5,4/1/2006,Lerner Publications +42855,Great Speeches by African Americans: Frederick Douglass Sojourner Truth Dr. Martin Luther King Jr. Barack Obama and Others,James Daley/Barack Obama/Martin Luther King Jr.,4.30,0486447618,9780486447612,eng,160,230,21,4/28/2006,Dover Publications +42862,The Heart of a Leader,Kenneth H. Blanchard,3.96,1562924885,9781562924881,en-US,162,542,33,6/1/1999,David C. Cook +42863,Mission Possible,Kenneth H. Blanchard,3.44,0071348271,9780071348270,eng,242,0,0,4/30/1999,McGraw-Hill Companies +42864,Lead Like Jesus: Lessons from the Greatest Leadership Role Model of All Time,Kenneth H. Blanchard/Phil Hodges,4.04,0849918723,9780849918728,en-US,239,808,41,3/1/2007,W Publishing Group +42866,The Little Book of Coaching: Motivating People to Be Winners,Kenneth H. Blanchard/Don Shula,3.65,0066621038,9780066621036,en-US,128,73,12,1/23/2001,Harper Business +42867,Full Steam Ahead!: Unleash the Power of Vision in Your Work and Your Life,Kenneth H. Blanchard/Jesse Stoner,3.76,1576753069,9781576753064,en-US,192,156,15,10/1/2004,Berrett-Koehler Publishers +42869,The Servant Leader,Kenneth H. Blanchard,4.09,0849996597,0023755004321,eng,128,276,26,3/11/2003,Thomas Nelson +42876,Down Under,Bill Bryson,4.07,055299703X,9780552997034,eng,398,4510,392,8/6/2001,Black Swan +42878,A Walk in the Woods: Rediscovering America on the Appalachian Trail,Bill Bryson,4.06,0767902513,9780767902519,eng,276,1405,266,5/4/1998,Bantam Doubleday Dell Publishing Group +42880,Bizarre World,Bill Bryson/Kathryn Lamb,3.38,0751510610,9780751510614,eng,120,73,6,5/1/2001,Little Brown Book Group +42882,The Life and Times of the Thunderbolt Kid: A Memoir,Bill Bryson,3.94,0767919378,9780767919371,en-US,268,1329,250,9/25/2007,Broadway Books +42883,Bill Bryson: The Complete Notes,Bill Bryson,4.09,038560131X,9780385601313,eng,544,901,36,10/5/2000,Doubleday +42885,Motel Blues,Bill Bryson/David B. Ellis,3.83,2228897353,9782228897358,fre,399,17,3,4/15/2003,Payot +42891,Journeys in English,Bill Bryson,3.72,0563496266,9780563496267,eng,3,510,60,2/2/2004,BBC Physical Audio +42895,Una breve historia de casi todo,Bill Bryson/José Manuel Álvarez,4.21,8478713808,9788478713806,spa,567,713,68,4/30/2006,Rba Libros +42898,Lover Revealed (Black Dagger Brotherhood #4),J.R. Ward,4.30,0451412354,9780451412355,eng,480,106469,3691,3/6/2007,Onyx +42899,Dark Lover (Black Dagger Brotherhood #1),J.R. Ward,4.20,0451216954,9780451216953,eng,393,259511,10475,9/6/2005,Penguin Group (USA) +42900,Lover Awakened (Black Dagger Brotherhood #3),J.R. Ward,4.45,0451219368,9780451219367,eng,448,144906,5728,9/5/2006,Signet +42909,All Things Wise and Wonderful,James Herriot,4.41,0312335288,9780312335281,eng,448,22780,366,11/1/2004,St. Martin's Griffin +42915,CliffsNotes on Remarque's All Quiet on the Western Front,Susan Van Kirk/CliffsNotes/Erich Maria Remarque,4.24,0764586718,9780764586712,eng,112,12,0,12/20/2000,Cliffs Notes +42916,All Quiet on the Western Front,Erich Maria Remarque,3.97,0449231801,9780449231807,en-GB,256,64,4,3/12/1987,Fawcett Crest +42924,The Nightingale's Song,Kathleen Eschenburg,3.88,0380815699,9780380815692,eng,384,16,3,10/30/2001,HarperTorch +42926,Nightingale's Song,Kate Pennington,3.02,0340878754,9780340878750,en-GB,219,40,5,10/19/2006,Hachette Children's +42929,Gai-Jin (Asian Saga #3),James Clavell,3.86,044021680X,9780440216803,eng,1236,10757,296,4/3/1994,Dell +42932,Whirlwind (Asian Saga #6),James Clavell,3.82,0340766182,9780340766187,eng,1231,5626,164,12/2/1999,Morrow +42933,Tai-Pan (Asian Saga #2),James Clavell,4.27,0440184622,9780440184621,eng,734,39315,778,9/1/2009,Dell +42934,Escape: The Love Story from Whirlwind,James Clavell,3.63,0340654163,9780340654163,eng,584,276,14,7/1/1999,Hodder & Stoughton +42953,Alaska,James A. Michener,4.12,037576142X,9780375761423,eng,868,9330,590,11/12/2002,Dial Press Trade Paperback +42955,The Drifters,James A. Michener,4.04,0449213536,9780449213537,eng,768,6253,353,10/12/1986,Fawcett Books +42956,Sayonara,James A. Michener,3.81,0449204146,9780449204146,eng,208,1848,104,9/12/1983,Fawcett +42959,The Bridge at Andau,James A. Michener,3.94,0449210502,9780449210505,en-US,288,1135,158,9/12/1985,Fawcett +42960,Caribbean,James A. Michener,3.93,0812974921,9780812974928,eng,672,4718,232,12/13/2005,Dial Press +42986,War and Remembrance (The Henry Family #2),Herman Wouk,4.41,0316954993,9780316954990,eng,1042,29555,680,2/5/2002,Back Bay Books +42988,Don't Stop the Carnival,Herman Wouk,3.93,0316955124,9780316955126,eng,416,2700,298,5/15/1992,Back Bay Books +42989,The Hope (The Hope and the Glory #1),Herman Wouk,4.15,0316954411,9780316954419,eng,704,2336,141,6/3/2002,Back Bay Books +42990,Youngblood Hawke,Herman Wouk,4.04,0316955175,9780316955171,en-US,783,1248,68,5/15/1992,Back Bay Books +42993,Aurora Dawn,Herman Wouk,3.47,0316955094,9780316955096,en-US,288,213,20,4/15/1992,Back Bay Books +43010,The Curious Incident of the Dog in the Night-Time,Mark Haddon,3.88,1419317261,9781419317262,eng,6,614,119,12/1/2006,Recorded Books +43015,A Long Way Gone: Memoirs of a Boy Soldier,Ishmael Beah,4.16,0374105235,9780374105235,eng,229,147820,9547,2/13/2007,Sarah Crichton Books +43017,Yellow Back Radio Broke-Down,Ishmael Reed,3.83,1564782387,9781564782380,eng,177,496,38,5/1/2000,Dalkey Archive Press +43027,Anthem,Ayn Rand,3.63,0452286352,9780452286351,eng,256,470,67,12/28/2004,NAL +43028,Sorrow's Anthem (Lincoln Perry #2),Michael Koryta,3.89,0312936605,9780312936600,eng,330,62,7,1/2/2007,St. Martin's Paperbacks +43035,White Fang,Jack London,3.98,0439236193,9780439236195,eng,252,119589,3124,1/1/2001,Scholastic Paperbacks +43037,The Call of the Wild White Fang and Other Stories,Jack London,3.99,0192835149,9780192835147,eng,400,18720,192,8/20/1998,Oxford University Press USA +43039,White Fang,Kathleen Olmstead/Jack London/Dan Andreasen/Arthur Pober,4.24,1402725000,9781402725005,en-US,160,713,31,3/28/2006,Sterling +43044,The Sea-Wolf and Selected Stories,Jack London/Ben Bova,4.06,0451529367,9780451529367,eng,352,781,40,5/4/2004,Signet Classics +43045,The Death of an Irish Sea Wolf (Peter McGarr #12),Bartholomew Gill,3.74,0380725789,9780380725786,eng,304,135,12,10/1/1997,Avon +43046,Jack London Illustrated: The Call of the Wild/White Fang/The Sea-Wolf/40 Short Stories,Jack London,4.26,0517309807,9780517309803,eng,761,20,1,10/2/1993,Random House Value Publishing +43049,The Sea Wolf,Jack London,4.04,1598184318,9781598184310,eng,425,19091,851,6/1/2005,Alan Rodgers Books +43051,Kilo Class (Admiral Arnold Morgan #2),Patrick Robinson,4.05,0061096857,9780061096853,eng,512,1738,58,3/3/1999,HarperPaperbacks +43058,Barracuda 945 (Admiral Arnold Morgan #6),Patrick Robinson,3.97,0060086637,9780060086633,eng,498,1119,27,6/29/2004,HarperTorch +43059,H.M.S. Unseen (Admiral Arnold Morgan #3),Patrick Robinson/Sandler/David McCallum,4.01,0061098019,9780061098017,eng,544,2076,38,3/1/2000,HarperTorch +43060,Slider,Patrick Robinson,4.13,006058033X,9780060580339,en-US,416,66,7,4/27/2004,It Books +43061,U.S.S. Seawolf (Admiral Arnold Morgan #4),Patrick Robinson,3.96,0061030651,9780061030659,eng,496,1581,46,5/1/2001,HarperTorch +43063,Menace Invisible (Admiral Arnold Morgan #3),Patrick Robinson,4.01,2226114971,9782226114976,fre,384,3,0,3/1/2000,Albin Michel +43068,True Blue: The Oxford Boat Race Mutiny,Daniel Topolski/Patrick Robinson,4.24,0553400037,9780553400038,en-US,320,69,13,2/23/1990,Bantam +43072,A Picture Book of Anne Frank,David A. Adler/Karen Ritz,4.18,0823410781,9780823410781,en-US,32,217,70,1/1/1993,Holiday House +43073,Who Was Anne Frank?,Ann Abramson/Nancy Harrison,4.26,0448444828,9780448444826,eng,103,1953,293,1/18/2007,Penguin Workshop +43074,Enslaved by Ducks,Bob Tarte,3.44,1565124502,9781565124509,eng,308,2263,448,10/1/2004,Algonquin Books +43076,Ice Castles,Leonore Fleischer,3.87,044970081X,9780449700815,eng,220,161,19,3/12/1982,Fawcett +43081,Marching Powder: A True Story of Friendship Cocaine and South America's Strangest Jail,Rusty Young/Thomas McFadden,4.26,0312330340,9780312330347,eng,400,11121,522,5/1/2004,St. Martin's Griffin +43082,Marching Powder,Rusty Young,4.26,0330419587,9780330419581,eng,371,906,94,7/1/2004,Pan MacMillan +43084,Nations and Nationalism since 1780: Programme Myth Reality,Eric Hobsbawm,3.90,0521439612,9780521439619,eng,214,1175,39,10/30/1992,Cambridge University Press +43087,Interesting Times: A Twentieth-Century Life,Eric Hobsbawm,4.06,1565849655,9781565849655,eng,448,374,24,5/16/2005,New Press +43089,Industry and Empire: The Birth of the Industrial Revolution,Eric Hobsbawm/Chris Wrigley,3.92,1565845617,9781565845619,eng,411,301,14,9/1/1999,The New Press +43098,The Communist Manifesto,Karl Marx/Friedrich Engels/Eric Hobsbawm,3.55,1859848982,9781859848982,eng,88,309,38,5/1/1998,Verso +43101,On the Edge of the New Century,Eric Hobsbawm/Allan Cameron/Antonio Polito,3.71,1565846710,9781565846715,eng,192,82,5,5/1/2001,New Press +43106,The Age of Extremes: The Short Twentieth Century 1914-1991,Eric Hobsbawm,4.25,0349106711,9780349106717,eng,638,348,24,11/12/1995,Abacus +43110,Echoes of the Marseillaise: Two Centuries Look Back on the French Revolution,Eric Hobsbawm,3.52,0813515246,9780813515243,eng,168,57,7,4/1/1990,Rutgers University Press +43128,Winter Is the Warmest Season,Lauren Stringer,3.90,0152049673,9780152049676,eng,40,408,83,10/1/2006,Harcourt +43129,Winter (Four Seasons #4),Núria Roca/Rosa María Curto,3.82,0764127314,9780764127311,eng,36,7,1,6/30/2004,Barron's Educational Series +43130,It's Winter,Linda Glaser/Glaser Linda/Susan Swan,3.64,0761316809,9780761316800,eng,32,88,14,9/1/2002,First Avenue Editions (Tm) +43132,Winter Season: A Dancer's Journal,Toni Bentley,3.92,0813027055,9780813027050,en-US,168,425,39,11/10/2003,University Press of Florida +43150,Twilight of the Idols/The Anti-Christ,Friedrich Nietzsche/Michael Tanner,4.16,0140445145,9780140445145,en-GB,208,7149,143,1/25/1990,Penguin Classics +43166,Practical DV Filmmaking,Russell Evans,3.46,0240807383,9780240807386,en-US,408,9,0,11/1/2005,Focal Press +43171,Diana Vreeland,Eleanor Dwight,4.24,0688167381,9780688167387,eng,320,150,17,10/22/2002,Harper Design +43175,Inventive Paris clothes: 1909-1939 - a photographic essay,Diana Vreeland/Irving Penn,3.67,067040067X,9780670400676,eng,95,3,0,5/26/1978,Penguin Putnam +43177,Brown V. Board of Education: A Civil Rights Milestone and Its Troubled Legacy,James T. Patterson,3.85,0195156323,9780195156324,eng,320,159,24,12/12/2002,Oxford University Press USA +43180,Henry V,William Shakespeare/Stephen Orgel/A.R. Braunmuller/Claire McEachern,3.88,0140714588,9780140714586,eng,121,433,39,9/1/1999,Penguin Classics +43219,Hegemony and Socialist Strategy: Towards a Radical Democratic Politics,Ernesto Laclau/Chantal Mouffe,3.89,1859843301,9781859843307,eng,200,1063,35,5/17/2001,Verso +43220,On Populist Reason,Ernesto Laclau,4.04,1859846513,9781859846513,eng,276,208,11,7/17/2005,Verso +43221,Contingency Hegemony Universality: Contemporary Dialogues on the Left,Judith Butler/Ernesto Laclau/Slavoj Žižek,3.92,185984278X,9781859842782,eng,329,707,18,7/17/2000,Verso +43228,The Meaning of Life,Terry Eagleton,3.50,0199210705,9780199210701,en-GB,187,755,94,5/1/2007,Oxford University Press USA +43229,Sweet Violence: The Idea of the Tragic,Terry Eagleton,4.00,0631233601,9780631233602,eng,348,85,8,9/27/2002,Wiley-Blackwell +43230,The English Novel: An Introduction,Terry Eagleton,3.77,1405117079,9781405117074,eng,376,101,10,8/6/2004,Wiley-Blackwell +43236,MySQL Cookbook,Paul DuBois,4.00,059652708X,9780596527082,en-US,980,126,8,12/4/2006,O'Reilly Media +43244,High Performance MySQL: Optimization Backups Replication & Load Balancing,Jeremy D. Zawodny/Derek J. Balling,4.23,0596003064,9780596003067,eng,304,403,17,4/18/2004,O'Reilly Media +43255,Not Without My Daughter,Betty Mahmoody,4.10,0552152161,9780552152167,eng,528,19790,1042,7/5/2004,Transworld Publishers Ltd +43268,Aman: The Story of a Somali Girl,Virginia Lee Barnes,3.77,0679762094,9780679762096,eng,368,549,46,8/29/1995,Vintage +43269,Amanda's Story (The Girls of Lighthouse Lane #4),Thomas Kinkade/Erika Tamar,4.04,0060543523,9780060543525,eng,208,4,0,3/14/2006,HarperCollins +43271,Lizabeth's Story (The Girls of Lighthouse Lane #3),Thomas Kinkade/Erika Tamar,3.96,0060543493,9780060543495,eng,192,24,0,10/18/2005,HarperCollins +43273,Kids Are Worth It!: Giving Your Child the Gift of Inner Discipline,Barbara Coloroso,4.19,0060014318,9780060014315,en-US,352,1215,129,8/20/2002,William Morrow Paperbacks +43278,Creating a Life Worth Living,Carol Lloyd,4.02,0060952431,9780060952433,eng,336,353,24,8/2/1997,William Morrow Paperbacks +43282,Happy Endings: Finishing the Edges of Your Quilts,Mimi Dietrich,4.25,1564775003,9781564775009,en-US,80,24,3,6/4/2013,That Patchwork Place +43283,Unspeakable Truths and Happy Endings: Human Cruelty and the New Trauma Therapy,Rebecca Coffey,4.25,1886968055,9781886968059,en-US,226,12,0,4/1/2005,Sidran Press +43287,Year's Happy Ending,Betty Neels,3.97,0373511620,9780373511624,eng,216,134,14,9/24/2001,Harlequin Readers' Choice +43313,Trail of Tears: The Rise and Fall of the Cherokee Nation,John Ehle,4.15,0385239548,9780385239547,eng,424,3166,152,9/22/1997,Anchor Books +43317,The Trail of Tears,Joseph Bruchac/Diana Magnuson,3.91,0679890521,9780679890522,eng,48,170,31,9/21/1999,Random House Books for Young Readers +43324,Are You Afraid of the Dark?,Sidney Sheldon,3.66,0007165161,9780007165162,eng,401,23924,681,7/1/2005,HarperCollins Publishers +43325,Nothing Lasts Forever,Sidney Sheldon,3.84,0446354732,9780446354738,eng,384,26040,614,9/1/1995,Grand Central +43328,Rage of Angels,Sidney Sheldon,3.93,0006178731,9780006178736,eng,512,30283,860,8/3/1999,HarperCollins Publishers +43331,He Sees You When You're Sleeping,Mary Higgins Clark/Carol Higgins Clark,3.79,0743456866,9780743456869,en-US,230,477,31,11/1/2002,Pocket Books +43332,My Gal Sunday,Mary Higgins Clark,3.57,0671014919,9780671014919,en-US,206,5355,183,2/1/2003,Pocket Books +43334,We'll Meet Again,Mary Higgins Clark,3.85,0743484312,9780743484312,eng,234,8892,260,2/2/2004,Pocket Books +43335,All Through the Night,Mary Higgins Clark,3.70,0671027123,9780671027124,en-US,256,6332,224,10/1/1999,Pocket Books +43338,The Night Awakens: A Mystery Writers of America Anthology,Mary Higgins Clark/Angela Zeman/Noreen Ayres/Sally Cabot Gunning/Joseph Hansen/Sarah Shankman/Nancy Pickard/Eleanor Taylor Bland/Brendan DuBois/Edward D. Hoch/Loren D. Estleman,3.51,0671519182,9780671519186,en-US,303,162,13,2/1/2000,Simon and Schuster +43339,Where Are the Children?,Mary Higgins Clark,4.02,1416507779,9781416507772,eng,304,39738,969,7/1/2005,Pocket Books +43340,The Second Time Around,Mary Higgins Clark,3.75,0743412621,9780743412629,eng,373,7472,296,4/1/2004,Pocket Books +43342,You Belong To Me,Mary Higgins Clark,3.87,0671004549,9780671004545,en-US,384,20843,421,4/1/1999,Pocket Books +43343,Stowaway and Milk Run: Two Unabridged Stories From Mary Higgins Clark,Mary Higgins Clark/Jan Maxwell,3.49,0671046241,9780671046248,eng,0,64,2,12/1/1999,Simon & Schuster Audio +43344,The Christmas Thief (Regan Reilly Mysteries #9),Mary Higgins Clark/Carol Higgins Clark,3.61,0739447343,9780739447345,eng,253,12,2,1/1/2004,Doubleday +43348,Kitchen Privileges: A Memoir,Mary Higgins Clark,3.84,0743206053,9780743206051,eng,208,1756,255,11/19/2002,Simon & Schuster +43352,I'll Be Seeing You,Mary Higgins Clark,3.81,0671888587,9780671888589,eng,307,14904,291,5/1/1994,Pocket Books +43360,Mount Vernon Love Story: A Novel of George and Martha Washington,Mary Higgins Clark,3.62,0743448944,9780743448949,eng,254,3914,495,6/1/2003,Pocket Books +43361,Inventing the People: The Rise of Popular Sovereignty in England and America,Edmund S. Morgan,3.78,0393306232,9780393306231,eng,320,106,4,9/17/1989,W. W. Norton Company +43363,Benjamin Franklin,Edmund S. Morgan,3.87,0300101627,9780300101621,eng,352,1476,84,8/11/2003,Yale University Press +43365,American Slavery American Freedom,Edmund S. Morgan,4.11,039332494X,9780393324945,eng,464,3008,83,10/17/2003,W. W. Norton Company +43368,The Puritan Dilemma: The Story of John Winthrop,Edmund S. Morgan,3.41,0321478061,9780321478061,eng,210,551,58,10/1/2006,Pearson +43370,Thomas Jefferson: Author of America,Christopher Hitchens,3.91,0060598964,9780060598969,eng,188,2319,221,5/31/2005,Atlas Books/HarperCollins Publishers +43371,No One Left to Lie to: The Values of the Worst Family,Christopher Hitchens,3.86,1859842844,9781859842843,eng,150,1433,157,7/17/2000,Verso +43372,The Missionary Position: Mother Teresa in Theory and Practice,Christopher Hitchens,4.06,185984054X,9781859840542,eng,98,7240,571,4/17/1997,Verso +43375,Unacknowledged Legislation: Writers in the Public Sphere,Christopher Hitchens,4.01,1859843832,9781859843833,eng,430,211,16,1/1/2002,Verso +43376,For the Sake of Argument: Essays and Minority Reports,Christopher Hitchens,4.16,0860916286,9780860916284,en-GB,368,221,9,9/17/1994,Verso +43377,The Trial of Henry Kissinger,Christopher Hitchens,3.96,1859843980,9781859843987,eng,161,2614,187,6/17/2002,Verso +43378,A Long Short War: The Postponed Liberation of Iraq,Christopher Hitchens,3.75,0452284988,9780452284982,en-US,112,371,24,6/3/2003,Plume +43380,Blaming the Victims: Spurious Scholarship and the Palestinian Question,Edward W. Said/Christopher Hitchens,4.22,1859843409,9781859843406,eng,296,166,7,9/17/2001,Verso +43384,Unacknowledged Legislation: Writers in the Public Sphere,Christopher Hitchens,4.01,1859847862,9781859847862,en-US,432,24,4,3/17/2001,Verso +43390,1968: War and Democracy,Eugene J. McCarthy/Christopher Hitchens,4.50,1883477379,9781883477370,eng,246,2,1,9/23/2000,Lone Oak Press +43394,Orwell in Spain: The Full Text of Homage to Catalonia with Associated Articles Reviews and Letters from the Complete Works of George Orwell,George Orwell/Christopher Hitchens,4.14,0141185163,9780141185163,eng,416,211,16,5/3/2001,Penguin Classics +43399,Prepared for the Worst: Selected Essays and Minority Reports,Christopher Hitchens,4.02,0809078678,9780809078677,eng,365,164,7,11/1/1988,Hill & Wang Publ. (NY) +43401,Hons and Rebels,Jessica Mitford/Christopher Hitchens,4.13,1590171101,9781590171103,eng,284,2999,200,9/30/2004,NYRB Classics +43407,Alles ist erleuchtet,Jonathan Safran Foer/Dirk van Gunsteren,3.90,3462032178,9783462032178,ger,384,39,4,2/20/2003,Kiepenheuer & Witsch +43409,How to Be Lost,Amanda Eyre Ward,3.54,0345483170,9780345483171,en-US,290,6176,675,8/30/2005,Ballantine Books +43416,The Complete Stories of Theodore Sturgeon Volume 7: A Saucer of Loneliness,Theodore Sturgeon/Paul Williams/Kurt Vonnegut Jr.,4.42,1556434243,9781556434242,eng,400,141,11,9/5/2002,North Atlantic Books +43419,Surviving Justice: America's Wrongfully Convicted and Exonerated,Scott Turow/Lola Vollen/Dave Eggers,4.29,1932416234,9781932416237,eng,489,264,32,11/4/2005,McSweeney's +43423,McSweeney's #14,Dave Eggers,3.73,1932416129,9781932416121,eng,306,334,21,9/27/2004,McSweeney's +43424,The Best of McSweeney's Vol. 2,Dave Eggers,3.81,0241142466,9780241142462,en-US,384,68,5,8/25/2005,Hamish hamilton +43426,Une oeuvre déchirante d'un génie renversant,Dave Eggers/Michelle Herpe-Volinsky,3.68,2290328243,9782290328248,fre,536,4,0,4/10/2003,J'ai lu +43432,The Tenants of Moonbloom,Edward Lewis Wallant/Dave Eggers,3.88,1590170709,9781590170700,en-US,264,520,78,11/30/2003,NYRB Classics +43433,McSweeney's #18,Dave Eggers,3.72,1932416382,9781932416381,eng,200,407,31,12/8/2005,McSweeney's +43437,McSweeney's #19,Dave Eggers/T. Coraghessan Boyle/Adam Golaski/Sean Casey/Brendan Connell,3.80,193241648X,9781932416480,en-GB,250,305,15,4/10/2006,McSweeney's +43438,McSweeney's #11,Dave Eggers/A.G. Pasquella/Brent Hoff/Stephen Elliott/Daphne Beal/Denis Johnson/Tom Bissell/Sean Warren/Samantha Hunt/Robert Olmstead/T. Coraghessan Boyle/David Means/Doug Dorst/Joyce Carol Oates/McSweeney's Publishing,3.94,1932416013,9781932416015,eng,293,171,6,7/1/2003,McSweeney's +43440,Forty Stories,Donald Barthelme,4.20,0141180943,9780141180946,eng,246,2496,123,4/7/2005,Penguin Books +43441,A Tramp Abroad,Mark Twain/Dave Eggers,3.86,0812970039,9780812970036,eng,400,26,9,10/14/2003,Modern Library +43451,Flores en el ático,V.C. Andrews/Jesús Pardo,3.81,849759746X,9788497597463,spa,480,1399,220,8/30/2005,DeBolsillo +43454,Black Cat (Gemini #2),V.C. Andrews,3.76,0743428676,9780743428675,eng,375,23,4,10/5/2004,Pocket Books +43455,Shooting Stars (Shooting Stars #1-4),V.C. Andrews,3.94,0743449029,9780743449021,en-US,656,1231,22,12/1/2002,Pocket Books +43456,Scattered Leaves (Early Spring #2),V.C. Andrews,3.78,1416530819,9781416530817,en-US,416,1481,44,2/27/2007,Pocket Star +43457,Rose (Shooting Stars #3),V.C. Andrews,3.72,0671039954,9780671039950,eng,185,2352,29,9/1/2001,Pocket Books +43459,Ice (Shooting Stars #2),V.C. Andrews,3.75,0671039946,9780671039943,en-US,208,2455,26,7/31/2001,Pocket Books +43460,Into the Woods (De Beers #4),V.C. Andrews,3.87,0743428595,9780743428590,eng,464,2395,34,1/1/2003,Pocket Books +43461,Ruby (Landry #1),V.C. Andrews,3.93,1568950748,9781568950747,eng,402,17,0,12/1/1994,Wheeler Publishing +43475,Criss Cross,Lynne Rae Perkins,3.34,0060092726,9780060092726,en-US,337,7752,1056,8/30/2005,Greenwillow Books +43476,The Criss Cross,Crystal Lacey Winslow,4.20,0971702128,9780971702127,en-US,360,110,16,8/1/2004,Melodrama Publishing +43484,Honey (Shooting Stars #4),V.C. Andrews,3.74,0671039962,9780671039967,eng,180,2447,27,10/2/2001,Pocket Books +43486,Raven (Orphans #4),V.C. Andrews,3.71,0671020315,9780671020316,eng,192,4678,59,1/27/1999,Pocket Books +43487,Fulgor oculto (Landry #3),V.C. Andrews/Elisa Cerdan,3.89,1400000742,9781400000746,spa,400,5,0,1/22/2002,Plaza y Janes +43488,Hidden Leaves (De Beers #5),V.C. Andrews,3.87,0743457870,9780743457873,en-US,288,2023,26,3/1/2003,Pocket Star +43489,Music in the Night (Logan #4),V.C. Andrews,3.85,067153467X,9780671534677,eng,320,5554,64,3/1/1998,Pocket Books +43490,Runaways (Orphans #5),V.C. Andrews,3.77,0671007637,9780671007638,eng,342,5121,78,11/1/1998,Pocket Books +43491,Child of Darkness (Gemini #3),V.C. Andrews,3.81,1416500502,9781416500506,eng,400,19,4,3/15/2005,Gallery Books +43499,Die Flucht der Waisen (Die Orphan-Saga #5),V.C. Andrews/Susanne Althoetmar-Smarczyk,3.77,3442354560,9783442354566,ger,349,2,0,3/1/2002,Goldmann +43503,Dornen des Glücks (Das Erbe von Foxworth Hall #3),V.C. Andrews/Michael Görden,3.77,3442552966,9783442552962,ger,412,5,0,9/1/2002,Goldmann +43504,Harry Potter and the Philosopher's Stone (Harry Potter #1),J.K. Rowling,4.47,158234681X,9781582346816,gla,250,11,0,7/1/2010,Bloomsbury USA Childrens +43509,Harry Potter and the Goblet of Fire (Harry Potter #4),J.K. Rowling,4.56,074754624X,9780747546245,eng,636,18754,906,7/8/2000,Bloomsbury +43526,Sun-Kissed (The Au Pairs #3),Melissa de la Cruz,3.86,1416917462,9781416917465,eng,306,2720,51,5/23/2006,Simon & Schuster +43527,Crazy Hot (The Au Pairs #4),Melissa de la Cruz,3.94,141693961X,9781416939610,eng,271,2501,64,5/8/2007,Simon & Schuster +43529,The Au Pairs (The Au Pairs #1),Melissa de la Cruz,3.65,0689873190,9780689873195,eng,294,6140,244,5/31/2005,Simon & Schuster Books for Young Readers +43536,Wooden: A Lifetime of Observations and Reflections On and Off the Court,John Wooden/Steve Jamison,4.45,0809230410,9780809230419,eng,201,3429,274,4/22/1997,McGraw-Hill +43544,The Strange Case of Dr. Jekyll and Mr. Hyde and Other Stories,Robert Louis Stevenson/Jenny Davidson,4.01,1593080549,9781593080549,eng,320,857,57,10/1/2003,Barnes Noble Classics +43545,The Once and Future King (The Once and Future King #1-4),T.H. White,4.07,0441627404,9780441627400,eng,639,85082,2921,6/15/1987,Ace +43547,Rose of No Man's Land,Michelle Tea,3.52,0156030934,9780156030939,eng,320,1484,161,2/5/2007,Mariner Books +43548,The Roses of No Man's Land,Lyn Macdonald,4.26,014017866X,9780140178661,eng,320,293,36,9/7/1993,Penguin UK +43554,The Quitter,Harvey Pekar/Dean Haspiel,3.60,1401204007,9781401204006,en-US,104,1318,125,9/6/2006,Vertigo +43555,The Best American Comics 2006,Harvey Pekar/Anne Elizabeth Moore/Esther Pearl Watson/Lilli Carré/Robert Crumb/Chris Ware/Kim Deitch/Jaime Hernández/Alison Bechdel/Joe Sacco/Lynda Barry/Justin Hall/Joel Priddy/Anders Nilsen/David Lasky/Ben Katchor/Rebecca Dart/Ivan Brunetti/Jonathan Bennett/John Porcellino/David Heatley/Lloyd Dangle/Hob/Gilbert Shelton/Olivia Schanzer/Alex Robinson/Jessica Abel/Seth Tobocman/Rick Geary/Tom Hart/Kurt Wolfgang/Jesse Reklaw,3.87,0618718745,9780618718740,eng,293,1502,124,10/1/2006,Houghton Mifflin +43556,The New American Splendor Anthology: From Off the Streets of Cleveland,Harvey Pekar,4.21,0941423646,9780941423649,eng,300,577,25,1/22/1993,Running Press Adult +43562,American Splendor: Another Day,Harvey Pekar/Ty Templeton/Eddie Campbell/Hilary Barta,3.71,1401212352,9781401212353,en-US,136,349,28,4/7/2007,Vertigo +43564,Face Off: How to Draw Amazing Caricatures & Comic Portraits,Harry Hamernik,4.02,1581807597,9781581807592,eng,127,67,5,9/27/2006,Impact +43582,David Boring,Daniel Clowes,3.81,1594971226,9781594971228,spa,128,71,2,5/25/2005,Public Square Books +43586,Lout Rampage!,Daniel Clowes,4.10,1560970707,9781560970705,eng,96,177,9,11/1/1992,Fantagraphics Books +43594,The Campfire Collection: Spine-tingling Tales to Tell in the Dark,Eric B. Martin/George R. Stewart/Peter Matthiessen/Robert W. Service/Judith M. Brueske/Anthony Boucher/Tobias Wolff/John Long/Frank Norris/Beryl Bainbridge/Greg Child/Marc Reisner/Haruki Murakami/Jack London/Edgar Allan Poe/Paul Bowles/Larry Kanuit,3.22,0811824543,9780811824545,en-US,176,50,6,3/1/2000,Chronicle Books +43603,The People of Paper,Salvador Plascencia,4.09,0156032112,9780156032117,eng,256,4154,458,11/13/2006,Mariner Books +43616,The Gunslinger's Bride (Montana Mavericks: Historicals #1),Cheryl St. John,3.68,0373291779,9780373291779,eng,304,137,11,8/24/2001,Harlequin Historical +43618,Two Brothers: The Lawman / The Gunslinger (Two Brothers #1-2),Linda Lael Miller,4.04,0743411544,9780743411547,eng,393,823,40,1/1/2001,Pocket Books +43619,The Gunslinger (Two Brothers #2),Linda Lael Miller,4.22,1568958129,9781568958125,eng,179,78,1,1/1/1999,Wheeler Publishing +43620,The Gunslinger,Mary McBride,4.10,0373288565,9780373288564,eng,304,17,2,12/23/1994,Harlequin Historical +43623,Gunslinger and Nine Other Action-Packed Stories of the Wild West,Ed Gorman/Bill Pronzini,4.25,1569800367,9781569800362,eng,131,4,1,3/1/1995,Barricade Books +43630,Leadership and the One Minute Manager: Increasing Effectiveness Through Situational Leadership,Kenneth H. Blanchard/Drea Zigarmi/Patricia Zigarmi,3.97,0688039693,9780688039691,en-US,111,2592,123,10/20/1999,William Morrow & Company +43636,Atlantic Shift,Emily Barr,3.31,0755301943,9780755301942,eng,406,138,12,3/14/2005,Headline Review +43641,Water for Elephants,Sara Gruen,4.09,1565125606,9781565125605,eng,335,1260027,52759,5/1/2007,Algonquin Books +43650,Something Borrowed,Rebecca Hagan Lee,4.14,0786500735,9780786500734,eng,282,38,1,2/1/1995,Diamond/Charter +43656,Double-Cross (Athena Force #4),Meredith Fletcher,3.72,0373513283,9780373513284,eng,304,38,3,9/24/2004,Silhouette Bombshell +43661,McNally's Alibi (Archy McNally Novels),Vincent Lardo/Lawrence Sanders,3.90,0425191192,9780425191194,eng,304,221,4,8/5/2003,Berkley +43666,McNally's Puzzle (Archy McNally #6),Lawrence Sanders,3.85,0425157466,9780425157466,eng,343,1569,63,2/1/1997,Berkley +43669,McNally's Caper (Archy McNally #4),Lawrence Sanders,3.90,0425145301,9780425145302,eng,352,1604,49,1/1/1995,Berkley +43673,The First Deadly Sin (Deadly Sins #2),Lawrence Sanders,4.04,0425104273,9780425104279,eng,628,5817,145,4/15/1987,Berkley +43675,First Deadly Sin,Lawrence Sanders,4.04,0871881780,9780871881786,eng,17,2,0,7/1/1989,Random House Audio +43678,The Anderson Tapes (Deadly Sins #1),Lawrence Sanders,3.68,0425103641,9780425103647,eng,336,1275,25,3/15/1987,Berkley +43681,A Garden Of Vipers (Carson Ryder #3),Jack Kerley,3.96,0451412338,9780451412331,en-US,400,562,37,2/6/2007,Onyx +43682,The Death Collectors (Carson Ryder #2),Jack Kerley,3.94,0451218299,9780451218292,eng,400,1088,78,5/2/2006,Signet +43691,The Master,Colm Tóibín,3.83,0743250419,9780743250412,eng,339,7299,771,5/3/2005,Scribner +43700,The South,Colm Tóibín,3.60,0140149864,9780140149869,eng,240,807,92,10/1/1992,Penguin Books +43702,The Blackwater Lightship,Colm Tóibín,3.87,0743203313,9780743203319,eng,288,4421,367,6/5/2005,Scribner +43704,The Sign of the Cross: Travels in Catholic Europe,Colm Tóibín,3.80,0330373579,9780330373579,eng,243,23,7,5/4/2001,Picador USA +43706,Through the Arc of the Rain Forest,Karen Tei Yamashita,3.90,091827382X,9780918273826,eng,212,127,18,7/1/1990,Coffee House Press +43708,Tropic of Orange,Karen Tei Yamashita,3.55,1566890640,9781566890649,eng,268,1749,118,9/1/1997,Coffee House Press +43713,Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science),Harold Abelson/Gerald Jay Sussman/Julie Sussman,4.45,0262510871,9780262510875,en-US,657,3654,133,7/25/1996,MIT Press +43717,Crooked Little Vein,Warren Ellis,3.82,0060723939,9780060723934,en-US,288,7811,991,7/24/2007,William Morrow +43722,Fell,Warren Ellis/Ben Templesmith,4.16,1582406936,9781582406930,eng,128,6740,283,6/5/2007,Image Comics +43723,Hellblazer: Setting Sun,Warren Ellis/Frank Teran/Tim Bradstreet/Javier Pulido/James Romberger/Marcelo Frusín,4.20,1401202454,9781401202453,en-GB,96,2583,35,10/1/2004,Vertigo +43725,NextWave: Agents of H.A.T.E. Vol. 1: This is What They Want,Warren Ellis/Stuart Immonen/Wade Von Grawbadger/Dave McCaig,4.16,0785122788,9780785122784,eng,144,4119,184,9/13/2006,Marvel Comics Group +43738,Desolation Jones: Made in England,Warren Ellis/J.H. Williams III,3.93,140121150X,9781401211509,eng,144,1767,76,10/4/2006,Wildstorm +43739,Iron Man: Extremis,Warren Ellis/Adi Granov,4.09,0785122583,9780785122586,eng,160,10792,290,2/14/2007,Marvel +43747,The Authority Vol. 2: Under New Management,Warren Ellis/Mark Millar/Bryan Hitch/Frank Quitely,4.15,1563897563,9781563897566,eng,200,4146,71,11/1/2000,Wildstorm +43755,Azumanga Daioh Vol. 3 (Azumanga Daioh #3),Kiyohiko Azuma/あずま きよひこ,4.38,1413900305,9781413900309,eng,166,2144,19,2/17/2004,ADV Manga +43758,The Queen of the Damned (The Vampire Chronicles #3),Anne Rice,3.89,0345419626,9780345419620,eng,448,121794,1667,11/29/1997,Ballantine Books +43759,La regina dei dannati,Anne Rice/Roberta Rambelli,3.89,8878193283,9788878193284,ita,507,333,18,2/1/1997,TEA +43763,Interview with the Vampire (The Vampire Chronicles #1),Anne Rice,3.99,0345476875,9780345476876,eng,342,433413,7368,8/31/2004,Ballantine Books +43779,Cántico de sangre (Crónicas Vampíricas #10),Anne Rice/Camila Batlles,3.72,8466620265,9788466620260,spa,416,143,9,7/1/2006,Ediciones B +43780,Vampire Chronicles: Interview with the Vampire The Vampire Lestat The Queen of the Damned (Anne Rice),Anne Rice/Robert O'Keefe/F. Murray Abraham/Michael York/Kate Nelligan/David Purdham,4.27,0679410503,9780679410508,eng,9,10350,120,11/17/1992,Random House Audio +43781,Merrick (The Vampire Chronicles #7),Anne Rice,3.73,0345422406,9780345422408,eng,370,35529,478,10/2/2001,Ballantine Books +43792,La reina de los condenados (Crónicas Vampíricas #3),Anne Rice,3.89,8466617116,9788466617116,spa,725,287,19,1/1/2007,Byblos +43796,The Vampire Companion,Katherine Ramsland/Anne Rice,3.94,0345397398,9780345397393,en-US,608,4829,25,8/1/1995,Ballantine Books +43798,The Feast of All Saints,Anne Rice,3.85,0345376048,9780345376046,en-US,570,16178,337,1/28/1992,Ballantine Books +43799,Exit to Eden,Anne Rampling/Anne Rice,3.58,0727853414,9780727853417,eng,336,12646,323,4/24/1998,Severn House Publishers +43808,Anne Rice's The Vampire Lestat: A Graphic Novel,Faye Perozich/Anne Rice/John Bolton/Daerick Gröss,4.20,0345373944,9780345373946,eng,404,70039,138,11/30/1991,Ballantine Books +43812,Entrevista con el vampiro (Crónicas vampíricas #1),Anne Rice/Marcelo Covián,3.99,8466616209,9788466616201,spa,463,1307,93,6/1/2005,Ediciones B +43814,The Vampire Lestat (The Vampire Chronicles #2),Anne Rice,4.07,0345476883,9780345476883,eng,481,156354,2720,8/31/2004,Ballantine Books +43817,El Mesías: El niño judío,Anne Rice/Luis Murillo,3.58,8466630031,9788466630030,spa,352,61,8,5/28/2007,Ediciones B +43819,Anne Rice Value Collection: Mayfair Witches (Lives of the Mayfair Witches #1-3),Anne Rice/Joe Morton/Tim Curry/Lindsay Crouse,4.23,037541620X,9780375416200,eng,10,35,3,11/7/2000,Random House Audio Publishing Group +43821,Merrick (Crónicas Vampíricas #7),Anne Rice,3.73,8466606602,9788466606608,spa,414,99,9,11/1/2002,Ediciones B +43824,Vittorio the Vampire (New Tales of the Vampires #2),Anne Rice,3.52,0375401601,9780375401602,eng,292,685,36,3/8/1999,Knopf Publishing Group +43826,The Feast Of All Saints,Anne Rice,3.85,0099269473,9780099269472,eng,640,86,5,12/4/1997,Arrow +43828,The Unauthorized Anne Rice Companion,George Beahm,3.68,0836210360,9780836210361,eng,246,97,0,5/1/1996,Andrews and McMeel +43841,When Christ and His Saints Slept (Henry II and Eleanor of Aquitaine #1),Sharon Kay Penman,4.27,0345396685,9780345396686,eng,784,12022,648,2/6/1996,Ballantine Books +43877,The Monk Who Sold His Ferrari: A Fable About Fulfilling Your Dreams and Reaching Your Destiny,Robin S. Sharma,3.83,0062515675,9780062515674,eng,208,71133,3741,4/21/1999,HarperOne +43878,The Monk Who Sold His Ferrari: A Fable about Fulfilling Your Dreams and Reaching Your Destiny (Revised),Robin S. Sharma,3.83,0007179731,9780007179732,eng,241,781,93,12/31/2015,Harper Element +43884,Phantom (Sword of Truth #10),Terry Goodkind,3.99,0765305240,9780765305244,eng,587,38420,452,7/18/2006,Tor Books +43888,The Sword of Truth Boxed Set I: Wizard's First Rule Blood of the Fold Stone of Tears (Sword of Truth #1-3),Terry Goodkind,4.29,0812575601,9780812575606,en-US,2480,4196,81,11/15/1998,Tor Books +43889,Wizard's First Rule (Sword of Truth #1),Terry Goodkind,4.13,0765346524,9780765346520,eng,836,204648,4986,4/14/2003,Tor Books +43893,Naked Empire (Sword of Truth #8),Terry Goodkind,3.81,0765344300,9780765344304,eng,736,44561,556,6/1/2004,Tor Books +43895,Legends 2 (Legends 1 Volume 2of3),Robert Silverberg/Terry Goodkind/George R.R. Martin/Anne McCaffrey,3.88,0812575237,9780812575231,eng,379,623,20,11/1/1999,Tor Books +43899,Naked Empire (Sword of Truth #8),Terry Goodkind,3.81,0007145594,9780007145591,en-GB,685,171,6,10/1/2004,Voyager +43905,The Wood Boy / The Burning Man,Raymond E. Feist/Tad Williams/Mat Broome/Robin Gillespie/Sean J. Jordan/Brett Booth,3.63,0976401118,9780976401117,eng,144,363,13,12/21/2005,Dabel Brothers Publishing +43910,The King's Buccaneer (Krondor's Sons #2),Raymond E. Feist,4.02,0385236255,9780385236256,en-GB,465,131,6,10/18/1992,Doubleday +43915,Magician: Apprentice Volume 1 (Raymond E. Feist's Magician: Apprentice #1),Raymond E. Feist/Michael Avon Oeming/Bryan J.L. Glass/Ryan Stegman,4.45,0785127224,9780785127222,eng,168,19895,114,5/30/2007,Marvel Comics Group +43918,Magician (The Riftwar Saga #1-2),Raymond E. Feist,4.32,0385175809,9780385175807,en-US,568,73,7,1/1/1982,Doubleday Books +43919,Faerie Tale,Raymond E. Feist,3.88,0586071393,9780586071397,eng,490,7908,349,11/15/1989,Voyager +43924,Promise Me (Myron Bolitar #8),Harlan Coben,3.99,0451219244,9780451219244,eng,504,21149,1138,3/27/2007,Dutton +43925,The Final Detail (Myron Bolitar #6),Harlan Coben,4.02,0752849182,9780752849188,eng,344,157,16,5/1/2005,Orion +43926,The Innocent,Harlan Coben,3.96,045121577X,9780451215772,eng,503,21382,1229,4/25/2006,Dutton +43927,No Second Chance,Harlan Coben,4.08,0451210557,9780451210555,eng,452,22104,1237,4/27/2004,Dutton Books +43929,Darkest Fear (Myron Bolitar #7),Harlan Coben,4.05,0752849190,9780752849195,eng,354,13462,583,11/8/2008,Dell +43930,Gone for Good,Harlan Coben,4.10,0440236738,9780440236733,eng,432,35722,1844,3/4/2003,Dell Publishing Company +43932,Drop Shot (Myron Bolitar #2),Harlan Coben/Martine Leconte,3.94,0440220459,9780440220459,eng,341,20461,981,2/5/1996,Dell Publishing Company +43933,Tell No One,Harlan Coben,4.11,0440236703,9780440236702,eng,370,95220,4017,8/25/2009,Dell Publishing Company +43937,The Aeneid: A New Prose Translation,Virgil/David West,3.84,0140444572,9780140444575,eng,353,105,10,8/6/1991,Penguin Classics +43939,The Complete Odes and Epodes,Horace/David West,4.00,019283942X,9780192839428,eng,200,40,3,5/16/2000,Oxford University Press +43940,Object Thinking,David West,3.99,0735619654,9780735619654,eng,334,155,21,7/23/2019,Microsoft Press +43949,Left Foot Forward: A Year in the Life of a Journeyman Footballer,Garry Nelson,3.97,0747251827,9780747251828,eng,375,92,4,5/1/1996,Headline Book Publishing +43958,Apologia Pro Vita Sua (A Defense of One's Life),John Henry Newman,4.12,0486442136,9780486442136,eng,336,894,52,6/17/2005,Dover Publications +43959,Margherita Dolce Vita,Stefano Benni/Antony Shugaar,3.71,1933372206,9781933372204,en-US,208,1704,100,11/1/2006,Europa Editions +43960,Living La Dolce Vita: Bring the Passion Laughter and Serenity of Italy Into Your Daily Life,Raeleen D'Agostino Mautner,3.76,1570719276,0760789719271,eng,272,110,11,4/1/2003,Sourcebooks +43961,The Letters of Vita Sackville-West and Virginia Woolf,Louise DeSalvo/Mitchell Alexander Leaska/Vita Sackville-West/Virginia Woolf,4.27,1573441961,9781573441964,eng,480,1133,37,9/30/2004,Cleis Press +43963,Vita,Melania G. Mazzucco/Virginia Jewiss,3.77,0312425864,9780312425869,eng,433,592,48,9/19/2006,St. Martins Press-3PL +43979,The Church in Emerging Culture: Five Perspectives,Leonard Sweet/Brian D. McLaren/Erwin Raphael McManus/Michael S. Horton/Frederica Matthewes-Green/Andy Crouch,3.36,0310254876,9780310254874,eng,272,190,6,10/19/2003,Zondervan +43980,A History of the World in 10½ Chapters,Julian Barnes,3.89,0679731377,9780679731375,eng,320,10008,638,11/27/1990,Vintage +43988,Life Is a Caravanserai,Emine Sevgi Özdamar/Luise von Flotow,3.71,189825334X,9781898253341,eng,270,89,8,8/30/2000,Middlesex University Press +43992,True Evil,Greg Iles,4.09,0743292499,9780743292498,eng,512,13021,781,12/12/2006,Scribner Book Company +43993,The Quiet Game (Penn Cage #1),Greg Iles,4.20,0340686030,9780340686034,eng,580,21288,1418,7/1/2000,Coronet Books (GB) +43994,Trapped (Mississippi #2),Greg Iles,4.00,0451207505,9780451207500,en-US,434,320,19,8/27/2002,Signet +43995,The Footprints of God,Greg Iles,3.77,0743454146,9780743454148,eng,528,6179,516,12/28/2004,Pocket Star Books +43996,Dead Sleep,Greg Iles,4.05,0451206525,9780451206527,eng,452,8124,475,7/2/2002,Berkley Books +44001,Small Island,Andrea Levy,3.95,0312424671,9780312424671,eng,441,21165,1145,4/1/2005,Picador USA +44002,Never Far From Nowhere,Andrea Levy,3.70,0747252130,9780747252139,eng,282,648,42,8/8/1996,Tinder Press +44011,Shield of Thunder (Troy #2),David Gemmell/Željko Petrović,4.36,0593052226,9780593052228,eng,480,7356,171,9/1/2006,Bantam Press +44012,Shield of Thunder (Troy #2),David Gemmell,4.36,0345477014,9780345477019,ale,512,102,16,3/27/2007,Ballantine Books +44018,Historia de una Gaviota y del Gato Que le Enseñó a Volar,Luis Sepúlveda/Chris Sheban,4.14,0439560268,9780439560269,spa,128,9,1,9/1/2003,Arthur A. Levine Books +44022,Full Circle: A South American Journey,Luis Sepúlveda/Chris Andrews,3.77,0864424655,9780864424655,eng,192,56,9,12/31/1996,Lonely Planet +44030,Looking East,Steve McCurry,4.55,0714846376,9780714846378,eng,124,83,8,9/1/2006,Phaidon Press +44034,Masters of Small Worlds: Yeoman Households Gender Relations and the Political Culture of the Antebellum South Carolina Low Country,Stephanie McCurry,3.69,0195117956,9780195117950,eng,344,98,6,11/1/1997,Oxford University Press USA +44039,Borges and The Eternal Orangutans,Luis Fernando Verissimo/Margaret Jull Costa,3.81,081121592X,9780811215923,eng,135,567,80,5/17/2005,New Directions +44045,A Universal History of Iniquity,Jorge Luis Borges/Andrew Hurley,3.97,0142437891,9780142437896,eng,128,3101,129,7/27/2004,Penguin Classics +44046,Jorge Luis Borges,Nextext/McDougal Publishing Staff,3.50,0618048235,9780618048236,spa,223,2,0,2/25/2000,Houghton Mifflin +44053,Odes to Common Things,Pablo Neruda/Ferris Cook/Ken Krabbenhoft,4.39,0821220802,9780821220801,eng,152,1885,105,5/1/1994,Bulfinch +44067,Full Woman Fleshly Apple Hot Moon: Selected Poems,Pablo Neruda/Stephen Mitchell,4.45,0060928778,9780060928773,eng,288,1018,66,2/11/1998,Harper Perennial +44086,Maps for Lost Lovers,Nadeem Aslam,3.78,1400076978,9781400076970,eng,400,2127,277,5/9/2006,Vintage +44089,Phantom Pain,Arnon Grunberg/Sam Garrett,3.34,1590511263,9781590511268,en-US,288,406,11,5/15/2004,Other Press (NY) +44100,The Ethics and Politics of Asylum: Liberal Democracy and the Response to Refugees,Matthew J. Gibney,3.55,0521009375,9780521009379,eng,287,10,2,7/8/2004,Cambridge University Press +44101,Arkham Asylum: Living Hell,Dan Slott/Ryan Sook/Wade Von Grawbadger/Jim Royal,3.81,1401201938,9781401201937,eng,144,1709,88,3/1/2004,DC Comics +44128,Blackout (Kat Bronsky #2),John J. Nance,3.96,0330481916,9780330481915,eng,672,572,36,12/9/2000,Pan Books +44131,Design Like You Give a Damn: Architectural Responses to Humanitarian Crises,Architecture For Humanity/Cameron Sinclair,4.12,1933045256,9781933045252,eng,336,792,27,1/15/2006,US Green Building Council +44133,The Winter's Tale,William Shakespeare/Susan Snyder/Deborah T. Curren-Aquino,3.70,0521293731,9780521293730,eng,279,18126,587,3/1/2007,Cambridge University Press +44145,The Bar on the Seine,Georges Simenon/David Watson,3.69,0143038311,9780143038313,en-US,160,380,54,12/26/2006,Penguin Books +44146,Maigret in Holland,Georges Simenon,3.59,0156028522,9780156028523,en-US,180,265,20,6/16/2003,Mariner Books +44147,The Man Who Watched Trains Go By,Georges Simenon/Marc Romano/D. Thin/Luc Sante,3.85,1590171497,9781590171493,eng,203,1392,86,11/7/2005,New York Review of Books +44148,Maigret and the Killer,Georges Simenon/Lyn Moir,3.86,0156028417,9780156028417,en-US,168,471,29,6/16/2003,Mariner Books +44149,Lock 14,Georges Simenon/Robert Baldick,3.63,0143037277,9780143037279,en-US,154,406,45,7/25/2006,Penguin Books +44151,The Madman of Bergerac,Georges Simenon,3.77,0141187263,9780141187266,eng,160,7,1,12/4/2003,Penguin Books Ltd +44153,Dirty Snow,Georges Simenon/Marc Romano/William T. Vollmann,3.93,1590170431,9781590170434,eng,244,1780,220,8/31/2003,NYRB Classics +44156,The Man Who Wasn't Maigret: A Portrait of Georges Simenon,Patrick Marnham,4.08,0156000598,9780156000598,eng,404,44,7,4/15/1994,Mariner Books +44157,Maigret à New York (Maigret #27),Georges Simenon,3.55,2253142425,9782253142423,fre,189,315,15,12/4/2002,Presses de La Cite +44158,The Engagement,Georges Simenon/Anna Moschovakis/John N. Gray,3.75,1590172280,9781590172285,en-US,135,494,67,3/6/2007,New York Review of Books +44160,Mon Ami Maigret,Georges Simenon,3.62,2253142441,9782253142447,fre,219,37,6,4/23/2003,Livre de Poche +44162,Maigret and the Headless Corpse,Georges Simenon/Eileen Ellenbogen,3.81,0156551446,9780156551441,eng,196,392,37,6/26/1985,Mariner Books +44164,Maigret Loses His Temper (Maigret #61),Georges Simenon,3.83,0156028476,9780156028479,eng,144,370,26,6/16/2003,Mariner Books +44170,The Looking Glass Wars,Frank Beddor,3.93,0803731531,9780803731530,eng,364,37148,3142,9/26/2006,Dial Books +44175,Rash,Pete Hautman,3.75,0689868014,9780689868016,eng,256,2994,459,6/1/2006,Simon Schuster Books for Young Readers +44176,Saints at the River,Ron Rash,3.81,0312424914,9780312424916,eng,239,2967,335,7/1/2005,Picador USA +44179,The World Made Straight,Ron Rash,3.87,0312426607,9780312426606,eng,289,2143,254,3/20/2007,Picador USA +44181,Eureka Mill,Ron Rash,4.20,189188526X,9781891885266,eng,64,155,15,9/1/2001,Hub City Press +44183,Chemistry and Other Stories,Ron Rash,4.19,0312425082,9780312425081,eng,230,601,79,9/5/2000,St. Martins Press-3PL +44184,Monster,Walter Dean Myers,3.72,0064407314,9780064407311,eng,281,56171,5341,3/5/2019,Amistad +44185,The Gospel of the Flying Spaghetti Monster,Bobby Henderson,3.93,0812976568,9780812976564,eng,169,3248,341,3/28/2006,Villard +44186,The Monster at the End of this Book,Jon Stone/Michael J. Smollin,4.44,037582913X,9780375829130,eng,32,114297,2565,5/11/2004,Golden Books +44187,The Sea of Monsters (Percy Jackson and the Olympians #2),Rick Riordan,4.24,1423103343,9781423103349,eng,280,10551,1205,4/1/2007,Disney Hyperion Books +44188,Monster: The Autobiography of an L.A. Gang Member,Sanyika Shakur,3.97,0802141447,9780802141446,en-GB,400,4239,350,6/29/2004,Grove Press +44190,Monster Island (Monster Island #1),David Wellington,3.60,1560258500,9781560258506,eng,282,9808,497,3/24/2006,Running Press Adult +44208,The Frog King,Frank McConnell,3.60,0802757480,9780802757487,eng,226,10,1,7/1/1990,Walker & Company +44215,I Should Be Extremely Happy in Your Company: A Novel of Lewis and Clark,Brian Hall,3.35,0142003719,9780142003718,en-US,432,339,76,12/30/2003,Penguin +44217,D.B.,Elwood Reid,3.23,0385497393,9780385497398,eng,356,53,8,7/12/2005,Anchor Books +44224,Lincoln,Gore Vidal,4.21,8448306996,9788448306991,spa,354,5,0,7/30/2006,Acento Editorial +44225,Lincoln (Narratives of a Golden Age),Gore Vidal,4.21,0349105308,9780349105307,en-GB,736,29,4,4/21/1994,Abacus Books +44229,The Silver Pigs (Marcus Didius Falco #1),Lindsey Davis,3.94,0345369076,9780345369079,eng,241,144,26,2/13/1991,Fawcett Books +44230,The Silver Pigs (Marcus Didius Falco #1),Lindsey Davis,3.94,031235777X,9780312357771,eng,329,8882,561,10/3/2006,Minotaur Books +44231,The Silver Pigs,Lindsey Davis/Mary Cutler/Anton Lesser/Fritha Goodey,3.94,056352569X,9780563525691,eng,2,5,0,2/7/2005,BBC Audiobooks +44233,Judas Pig,Horace Silver,4.27,1904316344,9781904316343,eng,345,63,9,7/1/2004,Do-Not Press +44236,The Civil War Vol. 1: Fort Sumter to Perryville,Shelby Foote,4.42,0394746236,9780394746234,eng,856,9760,346,11/12/1986,Vintage +44244,The Beleaguered City: The Vicksburg Campaign,Shelby Foote,4.22,0679601708,9780679601708,eng,368,271,25,1/30/2000,Modern Library +44246,Stars in Their Courses: The Gettysburg Campaign June-July 1863,Shelby Foote,4.44,0679601120,9780679601128,eng,304,1464,88,6/28/1994,Modern Library (NY) +44254,La telaraña de Carlota,E.B. White/Guillermo Solana/Garth Williams,4.17,006075740X,9780060757403,spa,224,225,38,10/4/2005,HarperCollins Espanol +44255,Toujours Provence,Peter Mayle,4.02,0679736042,9780679736042,eng,241,25092,432,6/2/1992,Vintage +44269,The American Heritage New History of the Civil War,Bruce Catton/James M. McPherson,4.11,1586631985,9781586631987,eng,630,104,2,10/1/2001,MetroBooks (NY) +44284,The Confident Child,Terri Apter,3.63,0393040585,9780393040586,eng,270,13,5,1/1/1997,W. W. Norton & Company +44296,Your Child's Self-Esteem: Step-by-Step Guidelines for Raising Responsible Productive Happy Children,Dorothy Corkille Briggs,4.27,0385040202,9780385040204,en-US,368,184,29,6/15/1988,Harmony +44300,Smart Discipline: Fast Lasting Solutions for Your Child's Self-Esteem and Your Peace of Mind,Larry J. Koenig,3.99,0060936665,9780060936662,en-US,208,13,2,3/2/2004,William Morrow Paperbacks +44309,Reading in the Dark,Seamus Deane,3.73,0375700234,9780375700231,en-US,256,3237,227,2/24/1998,Vintage +44312,Alphabet Weekends,Elizabeth Noble,3.59,0061122181,9780061122187,en-US,448,5796,386,1/23/2007,William Morrow Paperbacks +44321,A Cargo of Women: Susannah Watson and the Convicts of the Princess Royal,Babette Smith,3.58,1877058335,9781877058332,eng,264,0,0,6/1/2005,Rosenberg Publishing +44323,The Rose and the Beast: Fairy Tales Retold,Francesca Lia Block,3.77,0064407454,9780064407458,en-US,240,6872,395,8/7/2001,Joanna Cotler Books/HarperCollinsPublishers +44325,I Was a Teenage Fairy,Francesca Lia Block,3.82,0064408620,9780064408622,eng,192,6599,236,5/3/2000,HarperTeen +44328,Firebirds Rising: An Anthology of Original Science Fiction and Fantasy,Sharyn November/Francesca Lia Block/Diana Wynne Jones/Ellen Klages/Sharon Shinn/Patricia A. McKillip/Emma Bull/Kelly Link/Tamora Pierce/Nina Kiriki Hoffman/Alison Goodman/Charles de Lint/Kara Dalkey/Alan Dean Foster/Carol Emshwiller/Tanith Lee/Pamela Dean,3.92,0142405493,9780142405499,eng,530,2819,127,4/6/2006,Firebird +44331,Witch Baby (Weetzie Bat #2),Francesca Lia Block,4.18,0064470652,9780064470650,eng,128,3576,110,1/1/1992,HarperTeen +44349,Goat Girls (Weetzie Bat #2-3),Francesca Lia Block,4.42,0060594349,9780060594343,en-US,240,469,5,7/6/2004,HarperTeen +44350,Beautiful Boys (Weetzie Bat #4-5),Francesca Lia Block,4.43,0060594357,9780060594350,en-US,304,413,5,7/6/2004,HarperTeen +44353,Weetzie Bat (Weetzie Bat #1),Francesca Lia Block,3.74,0060736259,9780060736255,eng,128,13013,1025,7/6/2004,HarperTeen +44361,Velvet Elvis: Repainting the Christian Faith,Rob Bell,3.78,031026345X,9780310263456,eng,194,20131,848,7/31/2005,Zondervan Publishing Company +44380,Man Walks Into a Room,Nicole Krauss,3.33,0385721919,9780385721912,eng,248,5422,554,11/11/2003,Anchor Books +44382,Testaments Betrayed: An Essay in Nine Parts,Milan Kundera/Linda Asher/فروغ پوریاوری,4.04,0060927518,9780060927516,eng,288,1294,59,8/2/1996,Harper Perennial +44399,Too Busy Not to Pray: Slowing Down to Be With God,Bill Hybels/Lavonne Neff,4.16,0830819711,9780830819713,en-US,191,9632,212,4/1/1998,InterVarsity Press +44408,Becoming a Contagious Christian,Bill Hybels/Mark Mittelberg,3.92,0310210089,9780310210085,eng,224,1315,50,4/20/1996,Zondervan +44433,Courageous Faith Through the Year,Bill Hybels/Keri Wyatt Kent,3.50,0830832947,9780830832941,eng,327,0,0,7/1/2004,IVP Books +44436,Becoming a Contagious Christian Leader's Guide: Communicating Your Faith in a Style That Fits You,Mark Mittelberg/Lee Strobel,3.75,0310257867,9780310257868,eng,299,8,1,2/12/2007,Zondervan +44439,"A" Is for Abductive : The Language of the Emerging Church,Leonard Sweet/Brian D. McLaren,3.14,0310243564,9780310243564,en-US,338,49,3,12/24/2002,Zondervan +44442,The Church on the Other Side: Doing Ministry in the Postmodern Matrix,Brian D. McLaren,3.58,0310252199,9780310252191,eng,224,205,10,1/9/2003,Zondervan +44446,Great Russian Short Stories,Paul Negri/Alexander Pushkin/Maxim Gorky/Aleksandr Ivanovich Kuprin/Leonid Andreyev/Nikolai Gogol/Ivan Turgenev/Fyodor Dostoyevsky/Leo Tolstoy/Nicholay Leskov/Vsevolod Garshin/Anton Chekhov/Theodor Sologub,4.02,048642992X,9780486429922,eng,208,162,20,7/29/2003,Dover Publications +44450,The Portable Dorothy Parker,Dorothy Parker/Marion Meade/Seth,4.34,0143039539,9780143039532,eng,626,1447,199,3/28/2006,Penguin Books +44455,Not Much Fun: The Lost Poems of Dorothy Parker,Dorothy Parker/Stuart Y. Silverstein,4.18,0743211480,9780743211482,eng,256,444,27,7/10/2001,Scribner +44458,The Collected Dorothy Parker,Dorothy Parker/Brendan Gill,4.29,014118258X,9780141182582,eng,604,1106,50,5/31/2001,Penguin Classics +44469,The Killer Angels: A Novel of the Civil War (The Civil War Trilogy #2),Michael Shaara,4.32,0679643249,9780679643241,eng,337,425,48,12/23/2004,Modern Library +44470,The Killer Angels,Michael Shaara/Stephen Hoye,4.32,0739309056,9780739309056,en-US,13,92,37,5/11/2004,Random House Audio Publishing Group +44471,The Killer Angels (The Civil War Trilogy #2),Michael Shaara,4.32,1841580821,9781841580821,eng,395,318,45,4/1/2001,Birlinn Ltd +44478,Architecture and Tourism: Perception Performance and Place,D. Medina Lasansky,3.20,1859737099,9781859737095,eng,320,5,1,9/4/2004,Bloomsbury Academic +44481,The Last Eyewitness: The Final Week,Chris Seay/Rob Pepper/Brian D. McLaren,3.65,0529123452,9780529123459,eng,144,23,6,5/10/2006,Thomas Nelson +44505,The Best American Essays 2006,Lauren Slater/Robert Atwan,3.88,0618705295,9780618705290,en-US,304,434,34,10/11/2006,Mariner Books +44508,The Best American Spiritual Writing 2006,Philip Zaleski/Peter J. Gomes,3.50,0618586458,9780618586455,eng,336,29,11,10/11/2006,Mariner Books +44509,The Best American Travel Writing 2006,Tim Cahill,3.94,0618582150,9780618582150,eng,352,492,47,10/11/2006,Mariner Books +44510,The Best American Crime Writing 2006,Mark Bowden/Otto Penzler/Thomas H. Cook/S.C. Gwynne/Paige Williams/Mary Battiata/Howard Blum/John Connolly/Richard Rubin/Chuck Hustmyre/David Friedman/Denise Grollmus/Deanne Stillman/Jeffrey Toobin/Skip Hollandsworth/Jimmy Breslin/John Heilemann/Mark Jacobson/Robert Nelson,4.00,0060815523,9780060815523,eng,352,206,18,9/5/2006,Ecco +44511,How Democratic Is the American Constitution?,Robert A. Dahl,3.64,0300095244,9780300095241,en-US,240,466,48,11/10/2003,Yale University Press +44513,The Roald Dahl Omnibus: Perfect Bedtime Stories for Sleepless Nights,Roald Dahl,4.35,0880291230,9780880291231,eng,681,2276,170,6/13/1993,Barnes & Noble +44514,A Preface to Democratic Theory,Robert A. Dahl,3.63,0226134342,9780226134345,en-GB,200,88,8,9/15/2006,University of Chicago Press +44520,Matilda,Roald Dahl/Joely Richardson,4.31,0060582545,9780060582548,eng,5,56,18,1/20/2004,Festival Books +44521,Kiss Kiss,Roald Dahl,4.10,0140018328,9780140018325,eng,231,5961,347,10/26/1987,Penguin Books +44524,Roald Dahl: A Biography,Jeremy Treglown,3.62,0156001993,9780156001991,eng,336,221,26,6/5/1995,Mariner Books +44528,Matilda,Roald Dahl/Rula Lenska/Sian Thomas/Christopher Timothy,4.31,0141805625,9780141805627,eng,1,6,0,3/3/2005,Puffin Audiobooks +44529,The Adventures of Charlie and Mr. Willy Wonka: A Fully Dramatized Recording,Roald Dahl,4.13,0141805617,9780141805610,en-GB,4,11,2,11/25/2004,Puffin +44531,Fantastic Mr Fox and Other Animal Stories,Roald Dahl,3.95,0141805641,9780141805641,eng,4,25,1,11/25/2004,Puffin +44533,Hood,Emma Donoghue,3.59,1555834531,9781555834531,eng,309,1895,170,7/1/1998,Alyson Books +44535,Landing,Emma Donoghue,3.41,0151012970,9780151012978,eng,336,3032,309,5/7/2007,Houghton Mifflin Harcourt +44536,Touchy Subjects,Emma Donoghue,3.49,0156032619,9780156032612,eng,288,14,2,5/7/2007,Mariner Books +44537,Kissing the Witch: Old Tales in New Skins,Emma Donoghue,3.89,0064407721,9780064407724,eng,228,6097,592,2/27/1999,HarperTeen +44538,Life Mask,Emma Donoghue,3.50,0156032643,9780156032643,eng,672,1883,185,9/5/2005,Mariner Books +44539,Stir-Fry,Emma Donoghue,3.59,1555837239,9781555837235,eng,240,1565,97,12/29/2006,Alyson Books +44540,Poems Between Women: Four Centuries of Love Romantic Friendship and Desire,Emma Donoghue,3.88,0231109253,9780231109253,en-US,256,68,4,3/19/1999,Columbia University Press +44541,What Sappho Would Have Said,Emma Donoghue,3.62,0241136822,9780241136829,eng,256,24,3,4/24/1997,Hamish Hamilton Ltd +44542,Mammoth Book Of Lesbian Short Stories (Mammoth Books),Emma Donoghue,3.65,1841190497,9781841190495,eng,512,7,1,6/24/1999,Robson Books London +44543,Slammerkin,Emma Donoghue,3.71,0156007479,9780156007474,eng,410,12551,1251,5/1/2002,Mariner Books +44545,We Are Michael Field,Emma Donoghue/Nick Drake,3.55,1899791663,9781899791668,en-US,152,50,4,10/1/1998,Absolute Press +44559,Life is Elsewhere,Milan Kundera/Aaron Asher,3.95,0060997028,9780060997021,eng,432,10129,306,7/25/2000,Harper Perennial +44567,Todo está iluminado,Jonathan Safran Foer,3.90,030734312X,9780307343123,spa,352,8,0,7/5/2005,Debolsillo +44574,Hart's Hope,Orson Scott Card,3.47,0812521358,9780812521351,eng,261,32,5,3/28/1992,Tor Books +44585,Firefighters in the Dark,Dashka Slater/Nicoletta Ceccoli,3.60,0618554599,9780618554591,en-US,32,89,17,10/2/2006,HMH Books for Young Readers +44595,Wide Sargasso Sea,Jean Rhys,3.58,0140818030,9780140818031,en-US,168,878,79,4/26/2001,Penguin Classics +44597,Wide Sargasso Sea,Jean Rhys,3.58,0140274219,9780140274219,eng,160,21384,1386,9/3/1998,Penguin Books +44612,Marcel Proust: On Art and Literature 1896-1919,Marcel Proust/Sylvia Townsend Warner,4.06,0786704543,9780786704545,eng,416,73,5,8/5/1997,Carroll & Graf Publishers +44613,Remembrance of Things Past (Boxed Set),Marcel Proust/C.K. Scott Moncrieff/Frederick A. Blossom/Joseph Wood Crutch,4.34,0701125594,9780701125592,eng,3400,6,1,3/5/1981,Chatto & Windus +44617,The Complete Green Letters,Miles J. Stanford,4.20,0310330513,9780310330516,en-US,336,293,32,1/1/1984,Zondervan +44621,Naked,David Sedaris/Amy Sedaris,4.09,1586212230,9781586212230,en-US,3,308,62,10/1/2001,Grand Central Publishing +44628,The Last Shot: City Streets Basketball Dreams,Darcy Frey,4.17,0618446710,9780618446711,en-CA,233,5106,155,3/3/2004,Mariner Books +44630,The Inner Sanctum,Stephen W. Frey,3.64,0451190149,9780451190147,eng,448,472,36,7/1/1998,Signet +44634,Life on Planet Rock: From Guns N' Roses to NIRVana a Backstage Journey Through Rock's Most Debauched Decade,Lonn M. Friend,3.58,0767922085,9780767922081,eng,320,241,30,7/11/2006,Three Rivers Press +44644,Principle-Centered Leadership,Stephen R. Covey,4.10,0671792806,9780671792800,eng,336,15003,140,10/1/1992,Free Press +44649,7 hábitos de las familias altamente efectivas,Stephen R. Covey,4.16,1400083419,9781400083411,spa,412,7,0,9/1/2003,Grijalbo +44652,Fablehaven (Fablehaven #1),Brandon Mull,4.10,1590385810,9781590385814,eng,351,117341,8718,6/7/2006,Shadow Mountain +44684,Queen of Sorcery (The Belgariad #2),David Eddings,4.14,0552148083,9780552148085,eng,447,453,20,8/3/2000,Corgi Books (Adult) +44685,Castle of Wizardry (The Belgariad #4),David Eddings,4.16,0552148105,9780552148108,eng,443,434,12,9/21/1984,Corgi +44705,The Leadership Challenge: Skills for Taking Charge,Warren G. Bennis,0.00,088684049X,9780886840495,eng,60,0,0,12/1/1985,AMR/Advanced Management Reports +44734,Fullmetal Alchemist Vol. 6 (Fullmetal Alchemist #6),Hiromu Arakawa/Akira Watanabe,4.58,1421503190,9781421503196,eng,200,10052,201,3/21/2006,VIZ Media LLC +44735,The Elements of Typographic Style,Robert Bringhurst,4.24,0881792063,9780881792065,en-US,352,7564,206,9/27/2004,Hartley & Marks Publishers +44737,The Elements of Visual Style: The Basics of Print Design for Every PC and Mac User,Robert W. Harris,3.21,0618772456,9780618772452,en-US,177,14,3,5/1/2007,Houghton Mifflin Harcourt +44739,Graphic Design Solutions,Robin Landa,4.04,1401881548,9781401881542,en-US,403,147,12,4/27/2005,Delmar Thomson Learning +44748,The Mask of the Enchantress,Victoria Holt,3.85,0449210847,9780449210840,eng,0,21,1,10/12/1981,Ivy Books +44749,Secret for a Nightingale,Victoria Holt,3.82,0449212963,9780449212967,eng,396,1873,34,10/12/1987,Ivy Books +44758,The Silk Vendetta,Victoria Holt,3.82,0449215482,9780449215487,eng,373,2261,47,11/27/1988,Ivy Books +44759,Curse Of The Kings,Victoria Holt,3.76,044920068X,9780449200681,eng,304,15,1,6/12/1985,Fawcett Crest Books +44766,Purple Cane Road (Dave Robicheaux #11),James Lee Burke,4.15,0440224047,9780440224044,en-US,387,5467,246,5/8/2001,Dell +44781,Parliament of Whores: A Lone Humorist Attempts to Explain the Entire U.S. Government,P.J. O'Rourke,4.01,0802139701,9780802139702,en-US,240,2762,180,1/7/2003,Grove Press +44783,Monkeewrench (Monkeewrench #1),P.J. Tracy,4.12,045121157X,9780451211576,eng,421,8031,618,4/6/2004,G.P. Putnam's Sons +44787,P. J. Funnybunny Camps Out,Marilyn Sadler/Roger Bollen,3.87,0679832696,9780679832690,eng,32,169,16,2/22/1994,Random House Books for Young Readers +44790,Lo único que no podrás hacer en el cielo,Mark Cahill,4.13,0964366568,9780964366565,spa,255,15,0,3/1/2007,Mark Cahill Ministries +44795,The Moon And Sixpence,W. Somerset Maugham,4.13,0099284766,9780099284765,eng,215,447,53,9/2/1999,Vintage Classics +44801,De profundis,Oscar Wilde,4.18,8484034348,9788484034346,spa,192,13,2,9/1/2004,Edimat Libros +44815,Un amour de swann (À la recherche du temps perdu #1.2),Marcel Proust,3.92,2035882133,9782035882134,fre,432,4,0,6/1/2006,Larousse +44816,Serious Girls,Maxine Swann,3.20,0312288018,9780312288013,eng,240,207,28,12/1/2004,Picador USA +44821,Deadly Love (Francesca Cahill Deadly #1),Brenda Joyce,3.96,0312977670,9780312977672,eng,338,755,52,1/15/2001,St. Martin's +44824,Exiled in Paris: Richard Wright James Baldwin Samuel Beckett and Others on the Left Bank,James Campbell,4.03,0520234413,9780520234413,eng,304,35,6,2/1/2003,University of California Press +44826,The Price of the Ticket: Collected Nonfiction 1948-1985,James Baldwin,4.70,0312643063,9780312643065,eng,712,404,30,9/15/1985,St. Martin's Press +44836,2006 International Building Code,International Code Council (ICC),3.27,1580012515,9781580012515,eng,664,11,1,3/6/2006,International Code Council +44841,Einstein's Monsters,Martin Amis/Erroll McDonald,3.40,0679729968,9780679729969,eng,151,820,33,1/5/2011,Vintage International +44849,Code Check Electrical: An Illustrated Guide to Wiring a Safe House,Michael Casey/Redwood Kardon/Douglas Hansen,4.67,1561587389,9781561587384,eng,29,3,0,11/11/2005,Taunton Press +44851,International Building Code 2003,International Code Council (ICC),3.62,1892395568,9781892395566,eng,656,15,2,2/16/2003,International Code Council +44865,The Major Works,Alexander Pope/Pat Rogers,3.87,019920361X,9780199203611,eng,768,213,8,11/6/2006,Oxford University Press +44866,Poetry and Prose of Alexander Pope (Riverside Editions),Alexander Pope/Aubrey Williams,3.97,0395051568,9780395051566,eng,512,93,5,1/2/1968,Houghton Mifflin Company +44877,Illustrated Guide to the NEC: Based on the 2005 National Electric Code,Charles R. Miller,4.06,1401850685,9781401850685,eng,452,2,0,12/1/2004,Cengage Learning +44879,Surfer's Code: Twelve Simple Lessons For Riding Through Life,Shaun Tomson/Patrick Moser,3.82,1423600762,9781423600763,en-US,192,114,17,9/1/2006,Gibbs Smith Publishers +44881,Code Orange,Caroline B. Cooney,3.63,0385732597,9780385732598,eng,200,5889,693,9/27/2005,Delacorte Press +44882,Code,Charles Petzold,4.39,0735611319,9780735611313,eng,400,4919,418,10/21/2000,Microsoft Press +44883,Brando Unzipped: A Revisionist and Very Private Look at America's Greatest Actor,Darwin Porter,3.51,0974811823,9780974811826,eng,625,81,16,1/5/2006,Blood Moon Productions +44891,The Kid Stays in the Picture,Robert Evans,3.92,0571219314,9780571219315,eng,462,2209,176,2/19/2004,Faber & Faber +44896,Measle and the Dragodon,Ian Ogilvy,3.97,0060586907,9780060586904,eng,352,263,13,9/1/2006,HarperTrophy +44898,The Unpublished David Ogilvy,David Ogilvy/Joel Raphaelson,4.16,0517566095,9780517566091,eng,178,255,19,10/21/1987,Crown +44900,The Alchemist’s Kitchen: Extraordinary Potions & Curious Notions,Guy Ogilvy,4.03,0802715400,9780802715401,eng,58,136,12,10/17/2006,Bloomsbury +44905,Writing Down the Bones: Freeing the Writer Within,Natalie Goldberg,4.19,1590303164,9781590303160,eng,312,21673,1395,1/10/2006,Shambhala Publications +44906,Black Hawk Down: A Story of Modern War,Mark Bowden,4.28,0451205146,9780451205148,eng,496,368,39,1/1/2002,Signet +44916,Writing Secure Code,Michael Howard/David LeBlanc,4.01,0735617228,9780735617223,en-US,768,328,10,12/14/2002,Microsoft Press +44919,Working Effectively with Legacy Code,Michael C. Feathers,4.14,0131177052,0076092025986,eng,464,3450,195,9/1/2004,Prentice Hall +44921,Explode the Code 1,Nancy Hall,4.37,0838814603,9780838814604,eng,99,89,10,1/1/2001,School Specialty Publishing +44925,Down the Long Hills,Louis L'Amour,4.07,0553280813,9780553280814,eng,208,2503,141,9/1/1984,Bantam +44930,The Glass Books of the Dream Eaters (Miss Temple Doctor Svenson and Cardinal Chang #1),Gordon Dahlquist,3.50,0385340354,9780385340359,en-US,760,3678,459,12/15/2006,Bantam Books +44933,Breaking the Maya Code,Michael D. Coe,4.03,0500281335,9780500281338,eng,304,402,42,10/1/1999,Thames Hudson +44936,Refactoring: Improving the Design of Existing Code,Martin Fowler/Kent Beck/Don Roberts/Erich Gamma,4.24,0201485672,9780201485677,eng,431,6086,222,7/8/1999,Addison-Wesley Professional +44941,The Heart's Code: Tapping the Wisdom and Power of Our Heart Energy,Paul Pearsall/Gary E. Schwartz/Linda G. Russek,4.01,0767900952,9780767900959,en-US,304,267,34,4/6/1999,Harmony +44949,Write Great Code: Volume 1: Understanding the Machine,Randall Hyde,3.92,1593270038,9781593270032,eng,456,145,12,11/8/2004,No Starch Press +44950,Code of the Samurai: A Modern Translation of the Bushido Shoshinshu of Taira Shigesuke,Daidōji Yūzan/Oscar Ratti/Thomas Cleary,4.04,0804831904,9780804831901,eng,128,2274,87,9/15/1999,Tuttle Publishing +44954,Code: And Other Laws of Cyberspace,Lawrence Lessig,3.94,0465039138,9780465039135,eng,320,212,12,7/13/2000,Basic Books +44958,Landscape Within: Insights and Inspirations for Photographers,David Ward/Joe Cornish,4.36,190253834X,9781902538341,eng,128,22,3,11/1/2004,Aurum Press +44972,Bob Marley - Songs of Freedom,Bob Marley,4.48,0793536693,9780793536696,eng,200,16,1,12/1/1995,Hal Leonard Publishing Corporation +44976,Such a Good Girl and Other Crime Stories,Ed Gorman/Richard Laymon,3.60,0786229985,9780786229987,eng,256,5,1,1/7/2001,Five Star (ME) +44979,Howards End,E.M. Forster/Nadia May,3.96,0786168471,9780786168477,eng,9,32,16,6/1/2007,Blackstone Audiobooks +44982,Three Complete Novels: Howards End A Room with a View Where Angels Fear to Tread,E.M. Forster/Neil Felshman,4.22,0517091267,9780517091265,eng,503,389,31,2/20/1993,Gramercy Books +44987,Kim,Rudyard Kipling,3.72,0486445089,9780486445083,eng,240,159,19,11/8/2005,Dover Publications +44988,Kim,Rudyard Kipling/Pankaj Mishra,3.72,0812971345,9780812971347,eng,306,113,22,2/10/2004,Modern Library +45000,The Island at the Center of the World: The Epic Story of Dutch Manhattan and the Forgotten Colony That Shaped America,Russell Shorto,4.14,1400078679,9781400078677,eng,384,6919,777,4/12/2005,Vintage +45017,The Bard's Tale: Prima's Official Strategy Guide,Craig Keller,4.17,0761545646,9780761545644,eng,144,6,0,10/26/2004,Prima Games +45018,The Free Bards (Bardic Voices #1-3),Mercedes Lackey,4.18,067187778X,9780671877781,eng,712,1530,20,5/1/1997,Baen +45019,Insurgency and Terrorism: From Revolution to Apocalypse,Bard E. O'Neill,3.91,1574881728,9781574881721,eng,240,133,8,6/1/2005,Potomac Books +45020,Shakespeare's Landlord (Lily Bard #1),Charlaine Harris,3.76,0425206866,9780425206867,eng,216,22721,1111,11/1/2005,Berkley +45025,Liturgies of the Western Church,Bard Thompson,3.96,0800614283,9780800614287,eng,434,52,8,9/1/1980,Augsburg Fortress Publishing +45030,Bedlam's Bard (Bedlam Bard #1-2),Mercedes Lackey/Ellen Guon,3.95,141653282X,9781416532828,eng,617,3016,30,6/30/2006,Baen Books +45035,Mansfield Park,Jane Austen/James Kinsley/Jane Stabler,3.86,019280264X,9780192802644,eng,418,1492,73,10/2/2003,Oxford University Press +45036,Walking the Rez Road,Jim Northrup,4.15,089658321X,9780896583214,eng,176,153,16,10/26/1995,Voyageur Press +45037,Mansfield Park,Jane Austen/Carol Shields,3.86,0375757813,9780375757815,eng,420,328,38,10/9/2001,Modern Library +45041,Mansfield Park,Jane Austen,3.86,0755331478,9780755331475,eng,454,142,18,5/15/2006,Headline +45046,Mansfield Park,Jane Austen,3.86,0140620664,9780140620665,eng,479,505,54,5/26/1994,Penguin +45052,The Mini Zen Gardening Kit,Daniel Abdal-Hayy Moore,3.16,0762408286,9780762408283,eng,40,14,1,9/4/2000,RP Minis +45054,The Zen Gardening Kit/Book and Japanese Rock Garden,Daniel Abdal-Hayy Moore,3.16,1561381489,9781561381487,eng,96,29,2,11/23/1992,Running Press Book Publishers +45057,Stalky & Co.,Rudyard Kipling,3.89,1406503258,9781406503258,eng,212,552,42,12/21/2005,Dodo Press +45066,The Mill on the Floss,George Eliot/Carol T. Christ,3.79,0393963322,9780393963328,eng,640,133,16,11/17/1993,W. W. Norton & Company +45085,Zen in Your Garden,Jenny Hendy,3.60,1841811106,9781841811109,eng,128,7,2,1/4/2003,Godsfield Press Ltd +45092,Agnes Grey,Anne Brontë/Fred Schwarzbach,3.68,1593083238,9781593083236,eng,224,418,77,10/1/2005,Barnes Noble Classics +45101,The Mad Ship (Liveship Traders #2),Robin Hobb,4.23,0006498868,9780006498865,eng,906,38753,893,2/4/2008,Harper Voyager +45102,Ship of Destiny (Liveship Traders #3),Robin Hobb,4.22,0553575651,9780553575651,eng,789,46646,1014,11/27/2001,Spectra Books +45106,Forest Mage (Soldier Son #2),Robin Hobb,3.39,0060757639,9780060757632,eng,718,13716,393,8/29/2006,Harper Voyager +45112,Assassin's Quest (Farseer Trilogy #3),Robin Hobb,4.18,0553565699,9780553565690,eng,757,67473,1967,1/5/1998,Spectra +45113,Der lohfarbene Mann (Die zweiten Chroniken von Fitz dem Weitseher #1),Robin Hobb,4.31,3404283368,9783404283361,ger,880,8,0,4/1/2003,Lübbe +45114,Disordered Minds,Minette Walters,3.78,0425199355,9780425199350,eng,544,2968,123,12/7/2004,Berkley +45116,The Scold's Bridle,Minette Walters,3.95,0312956126,9780312956127,eng,384,7019,113,10/15/1995,St. Martin's Press +45117,Fox Evil,Minette Walters,3.60,0425214923,9780425214923,en-US,400,2777,119,11/7/2006,Berkley Trade +45118,The Devil's Feather,Minette Walters,3.63,0307264629,9780307264626,eng,349,2343,153,8/22/2006,Alfred A. Knopf +45119,The Breaker,Minette Walters,3.62,0515128821,9780515128826,eng,384,2919,142,8/1/2000,Jove +45121,The Echo,Minette Walters,3.63,0515122564,9780515122565,eng,368,3017,124,4/1/1998,Jove Books +45149,A Painted House,John Grisham,3.70,0099416158,9780099416159,eng,466,484,48,9/29/2002,Arrow Books +45159,D is for Dahl: A gloriumptious A-Z guide to the world of Roald Dahl,Wendy Cooling/Quentin Blake/Roald Dahl,4.08,0670060232,9780670060238,en-US,160,1246,54,6/2/2005,Viking Children's Books +45161,The Roald Dahl Audio Collection,Roald Dahl,4.41,0061214965,9780061214967,en-US,4,199,36,2/20/2007,HarperCollins Publishers +45169,Step on a Crack (Michael Bennett #1),James Patterson/Michael Ledwidge,4.01,0316013943,9780316013949,eng,383,37552,1592,2/6/2007,Little Brown and Company +45179,The Railway Children,E. Nesbit,4.01,0140621628,9780140621624,en-GB,212,177,16,4/1/1995,Penguin Books Limited (UK) +45181,Five Children and It (Five Children #1),E. Nesbit,3.88,0140367357,9780140367355,eng,237,18723,722,12/1/1996,Puffin +45182,Five Children and It,E. Nesbit/Gillian Avery,3.88,0143039156,9780143039150,eng,240,63,7,12/28/2004,Penguin Classics +45183,The Enchanted Castle,E. Nesbit/H.R. Millar,3.85,0140367438,9780140367430,eng,291,6352,397,7/1/1994,Puffin +45193,Treasure Island #2: Off to Sea (Easy Reader Classics),Catherine Nichols/Sally Wern Comport/Robert Louis Stevenson,4.17,1402732988,9781402732980,eng,32,6,0,5/28/2006,Sterling +45194,A Passage to India: A Reader's Guide to Essential Criticism,Betty Jay,3.56,184046027X,9781840460278,en-GB,176,108,6,8/16/2003,Palgrave Macmillan +45195,A Passage to India,E.M. Forster/Oliver Stallybrass/Pankaj Mishra,3.68,014144116X,9780141441160,eng,376,55810,2148,8/30/2005,Penguin Books +45201,A Passage to India,E.M. Forster,3.68,0140274235,9780140274233,en-GB,288,441,40,9/3/1998,Penguin Books +45205,No Name,Wilkie Collins/Virginia Blain,3.92,019283388X,9780192833884,eng,748,7174,297,6/25/1998,Oxford University Press +45206,Miss or Mrs?/ The Haunted Hotel/ The Guilty River,Wilkie Collins/Norman Page/Toru Sasaki,3.79,0192833073,9780192833075,eng,360,175,14,5/13/1999,Oxford University Press USA +45207,The Law and the Lady,Wilkie Collins/David Skilton,3.80,0140436073,9780140436075,en-GB,383,120,15,9/24/1998,Penguin Classics +45213,The Woman In White,Wilkie Collins,4.00,185715018X,9781857150186,en-GB,664,50,11,9/26/1991,Everyman's Library +45217,Armadale,Wilkie Collins/Catharine Peters,3.91,0192834673,9780192834676,eng,880,56,11,8/12/1999,Oxford University Press +45220,I Never Promised You a Rose Garden,Hannah Green/Joanne Greenberg,3.87,0451160312,9780451160317,eng,288,24126,609,11/7/1989,Signet +45223,I Never Promised You a Rose Garden,Hannah Green/Joanne Greenberg,3.87,0451131363,9780451131362,eng,256,2,0,3/1/1965,Signet +45234,The Gun Seller,Hugh Laurie,3.68,067102082X,9780671020828,eng,340,14495,1434,10/1/1998,Washington Square Press +45250,A Quantum Murder (Greg Mandel #2),Peter F. Hamilton,3.97,0812555244,9780812555240,eng,375,4016,95,6/15/1998,Tor Books +45251,Judas Unchained (Commonwealth Saga #2),Peter F. Hamilton,4.31,0345461673,9780345461674,en-US,1008,738,68,3/27/2007,Del Rey +45252,Pandora's Star,Peter F. Hamilton,4.24,0345461622,9780345461629,eng,768,33987,1519,3/2/2005,Del Rey +45253,Mindstar Rising (Greg Mandel #1),Peter F. Hamilton,3.92,0812590562,9780812590562,en-US,432,6192,171,5/15/1997,Tor Books +45255,The Reality Dysfunction Part 2: Expansion (Night's Dawn 1),Peter F. Hamilton,4.30,0446605166,9780446605168,eng,572,4092,39,8/1/1997,Aspect +45259,Anthony Thwaite: In Conversation With Peter Dale and Ian Hamilton,Peter Dale/Ian Hamilton/Anthony Thwaite,0.00,0953284123,9780953284122,eng,96,0,0,12/9/1999,Between the Lines Productions +45267,Doisneau,Peter Hamilton/Robert Doisneau/David Elliott,4.36,1900826240,9781900826242,eng,128,4,0,7/1/2000,Cartago +45279,Criptonomicón II: El código Pontifex,Neal Stephenson/Pedro Jorge Romero,4.10,8466616926,9788466616928,spa,496,404,17,11/1/2005,Ediciones B +45280,Quicksilver (The Baroque Cycle #1),Neal Stephenson,3.93,0434008176,9780434008179,eng,927,171,12,10/2/2003,William Heinemann +45283,Todo está iluminado,Jonathan Safran Foer,3.90,8497930975,9788497930970,spa,344,108,11,11/30/2007,DeBolsillo +45288,The Portable Walt Whitman,Walt Whitman/Michael Warner,4.33,0142437689,9780142437681,eng,570,82,5,12/30/2003,Penguin Books +45289,Walt Whitman's America,David S. Reynolds,4.17,0679767096,9780679767091,eng,672,387,43,3/19/1996,Vintage +45291,Walt Whitman: A Life,Justin Kaplan,3.99,0060535113,9780060535117,eng,464,217,17,7/8/2003,Harper Perennial Modern Classics +45292,Walt Whitman: Words for America,Barbara Kerley/Brian Selznick,4.05,0439357918,9780439357913,eng,56,258,58,10/1/2004,Scholastic Press +45294,Love Hate and Everything in Between: Expressing Emotions in Japanese,Mamiko Murakami/Ernest Reiss,3.54,4770028032,9784770028037,eng,176,27,0,3/1/2002,Kodansha +45296,Blind Willow Sleeping Woman,Haruki Murakami/Jay Rubin/Philip Gabriel,3.84,1400096081,9781400096084,eng,362,1162,132,9/1/2007,Vintage +45306,Haruki Murakami and the Music of Words,Jay Rubin,3.83,1860469868,9781860469862,eng,326,38,2,12/3/2005,Harvill Press +45310,Hard-Boiled Wonderland and the End of the World,Haruki Murakami/Alfred Birnbaum,4.15,4770015445,9784770015440,eng,400,247,41,9/1/1991,Kodansha +45312,The Wind-Up Bird Chronicle,Haruki Murakami/Jay Rubin,4.17,0679446699,9780679446699,eng,611,301,67,10/21/1997,Alfred A. Knopf +45313,After the Quake,Haruki Murakami/Jay Rubin,3.78,0375413901,9780375413902,eng,182,564,84,8/13/2002,Alfred A. Knopf +45314,Kafka on the Shore,Haruki Murakami/Philip Gabriel,4.14,1400043662,9781400043668,en-US,436,1989,315,1/26/2005,Knopf Publishing Group +45316,Sputnik Sweetheart,Haruki Murakami/Philip Gabriel,3.83,0375411690,9780375411694,eng,210,582,92,4/24/2001,Alfred A. Knopf +45325,Joseph Cornell: Secrets in a Box (Adventures in Art),Alison Baverstock/Joseph Cornell/Christopher Wynne,4.03,3791329286,9783791329284,eng,27,32,5,9/1/2003,Prestel Publishing +45334,Mandala: Luminous Symbols for Healing (with a New CD of Meditations and Exercises!),Judith Cornell/Joan Borysenko/Miron Borysenko,4.11,0835608476,9780835608473,en-US,176,73,4,9/1/2006,Quest Books +45336,Dime-Store Alchemy: The Art of Joseph Cornell,Charles Simic,4.18,1590171705,9781590171707,eng,116,70,12,9/12/2006,NYRB Classics +45337,Night Has a Thousand Eyes,Cornell Woolrich,3.77,1933648279,9781933648279,eng,344,704,74,4/1/2007,Pegasus Books +45338,Rendezvous in Black,Cornell Woolrich/Richard Dooling,3.96,0812971450,9780812971453,eng,211,1087,99,3/16/2004,Modern Library +45343,The Nixie's Song (Beyond the Spiderwick Chronicles #1),Tony DiTerlizzi/Holly Black,3.73,0689871317,9780689871313,eng,162,9927,416,9/18/2007,Simon Schuster Books for Young Readers +45348,When the Darkness Will Not Lift: Doing What We Can While We Wait for God—And Joy,John Piper,4.13,1581348762,9781581348767,eng,79,1279,126,12/14/2006,Crossway Books +45349,Desiring God: Meditations of a Christian Hedonist,John Piper,4.14,1844740447,9781844740444,en-US,391,65,9,7/16/2004,Inter-Varsity Press +45350,Suffering and the Sovereignty of God,John Piper/Justin Taylor/Mark Talbot/David A. Powlison/Steve Saint/Dustin Shramek/Carl Ellis,4.30,1581348096,9781581348095,eng,254,652,47,9/13/2006,Crossway Books +45352,When I Don't Desire God: How to Fight for Joy,John Piper,4.19,1581346522,9781581346527,eng,268,4446,218,9/21/2004,Crossway Books +45354,The Legacy of Sovereign Joy: God's Triumphant Grace in the Lives of Augustine Luther and Calvin (The Swans Are Not Silent #1),John Piper,4.27,1581348134,9781581348132,eng,158,839,65,8/11/2006,Crossway Books +45358,The Hidden Smile of God: The Fruit of Affliction in the Lives of John Bunyan William Cowper and David Brainerd (The Swans Are Not Silent #2),John Piper,4.34,1581342470,9781581342475,eng,175,675,61,1/15/2001,Crossway Books +45362,The Passion of Jesus Christ,John Piper,4.23,1581346085,9781581346084,eng,127,6164,136,1/9/2004,Crossway Books +45369,Arthur & George,Julian Barnes,3.70,1400097037,9781400097036,eng,445,11626,1141,1/9/2007,Vintage International +45378,Wartime Lies,Louis Begley,3.71,0449001172,9780449001172,eng,240,524,54,10/15/1997,Ballantine Books +45382,Schmidt Delivered (Schmidt #2),Louis Begley,3.61,0345440838,9780345440839,en-US,320,107,12,10/30/2001,Ballantine Books +45392,The Brave Women of the Gulf Wars: Operation Desert Storm and Operation Iraqi Freedom,Karen Zeinert/Mary Miller,4.00,0761327053,9780761327059,eng,112,1,0,9/1/2005,Twenty-First Century Books (CT) +45399,The Classic Ten: The True Story of the Little Black Dress and Nine Other Fashion Favorites,Nancy MacDonell Smith/Nancy MacDonell,3.43,0142003565,9780142003565,en-US,224,109,14,10/28/2003,Penguin Books +45414,The Locked Room (The New York Trilogy #3),Paul Auster,3.89,0140097368,9780140097368,en-US,192,62,3,1/5/1988,Penguin Books +45420,The Home Front,Brian Braithwaite/Noelle Walsh/Glyn Davies,3.40,0852237510,9780852237519,eng,192,1,1,2/23/1989,Ebury Press +45431,Half Moon Investigations,Eoin Colfer,3.77,0786849606,9780786849604,en-US,304,279,41,4/1/2007,Disney-Hyperion +45432,The Supernaturalist,Eoin Colfer,3.86,078685149X,9780786851492,en-US,267,24863,1001,4/20/2005,Disney-Hyperion +45436,The Wish List,Eoin Colfer,3.77,0439443369,9780439443364,eng,252,13988,589,7/1/2004,Scholastic Inc. +45438,Legend of the Worst Boy in the World,Eoin Colfer/Glenn McCoy,3.76,0786855037,9780786855032,en-US,101,328,43,5/1/2007,Hyperion Books for Children +45440,The Legend of Spud Murphy,Eoin Colfer/Glenn McCoy,3.88,0786855010,9780786855018,eng,96,92,25,9/6/2004,Disney-Hyperion +45442,La venganza de Opal (Artemis Fowl #4),Eoin Colfer/Ana Alcaina,4.05,0307344673,9780307344670,spa,368,42,2,11/1/2005,Random House Mondadori +45444,Going Potty,Eoin Colfer,3.14,0862786029,9780862786021,eng,64,7,1,10/1/1999,O'Brien Press +45449,Artemis Fowl (Artemis Fowl #1),Eoin Colfer/Claudia Feldmann,3.84,3548603203,9783548603209,ger,240,428,24,5/1/2003,List +45450,La última oportunidad,Eoin Colfer,3.77,0307350053,9780307350053,spa,258,2,0,4/4/2006,Plaza y Janes +45455,Artemis Fowl (Artemis Fowl #1),Eoin Colfer/Ana Alcaina,3.84,8497939204,9788497939201,spa,286,45,3,3/30/2006,DEBOLS!LLO +45462,La venganza de opal (Artemis Fowl #4),Eoin Colfer,4.05,8484412474,9788484412472,spa,368,21,1,4/30/2005,Montena +45463,Encuentro en el Ártico (Artemis Fowl #2),Eoin Colfer/Ana Alcaina Pérez,3.95,0307343103,9780307343109,spa,320,15,3,7/5/2005,Montena +45465,Artemis Fowl (Artemis Fowl #1),Eoin Colfer/Nathaniel Parker,3.84,1400085918,9781400085910,eng,6,55,14,4/6/2004,Listening Library +45472,Treasury of American Tall Tales: Volume 1: Davy Crockett Rip Van Winkle Johnny Appleseed Paul Bunyan (Rabbit Ears),David Bromberg/Jay Ungar/Molly Mason/Garrison Keillor/Mark O'Connor/Jonathan Winters/Duck Baker/Washington Irving/Anjelica Huston/Nicolas Cage/Leo Kottke,3.86,0739336509,9780739336502,eng,0,36,9,8/22/2006,Listening Library (Audio) +45479,The Subtle Knife (His Dark Materials #2),Philip Pullman/Ian Beck,4.13,0375846727,9780375846724,eng,326,677,77,9/1/2007,Alfred A. Knopf Books for Young Readers +45480,The Amber Spyglass (His Dark Materials #3),Philip Pullman/Ian Beck,4.09,0375846735,9780375846731,en-US,518,562,61,9/1/2007,Alfred A. Knopf Books for Young Readers +45485,The Subtle Knife (His Dark Materials #2),Philip Pullman,4.13,0807210471,9780807210475,eng,8,39,8,1/28/2000,Listening Library +45486,His Dark Materials (His Dark Materials #1-3),Philip Pullman,4.26,0375847227,9780375847226,eng,933,2656,260,4/10/2007,Alfred A. Knopf +45487,El catalejo lacado (La Materia Oscura #3),Philip Pullman,4.09,8440699476,9788440699473,spa,446,565,49,5/1/2005,Ediciones B +45490,His Dark Materials Omnibus (His Dark Materials),Philip Pullman,4.26,0375947221,9780375947223,eng,944,70,9,4/10/2007,Knopf Books for Young Readers +45492,Northern Lights (His Dark Materials #1),Philip Pullman,3.98,0439994128,9780439994125,en-GB,399,836,62,9/14/2001,Scholastic Press +45495,El alquimista: una fábula para seguir tus sueños,Paulo Coelho/Juan Godó Costa,3.86,0062511408,9780062511409,eng,192,775,43,10/23/2018,Rayo +45500,La conspiración de los alquimistas,Hania Czajkowski,4.00,030727411X,9780307274113,spa,488,51,4,3/5/2005,Debolsillo +45503,El Alquimista: Edicion Illustrada: Edicion Illustrada,Paulo Coelho,3.86,0061351342,9780061351341,eng,192,43,5,4/10/2007,Rayo +45506,The Call of the Mall: How we shop,Paco Underhill,3.60,1861974426,9781861974426,eng,227,14,1,4/1/2004,Profile Books +45511,Die Broke: A Radical Four-Part Financial Plan,Stephen M. Pollan/Mark LeVine,3.64,0887309429,9780887309427,en-US,320,270,45,9/23/1998,Harper Business +45515,Live Rich Die Broke,Stephen M. Pollan,3.29,1594860165,9781594860164,en-US,482,14,2,1/1/2005,Rodale Books +45516,The Die Broke Financial Problem Solver,Stephen M. Pollan/Mark LeVine,2.33,0066619912,9780066619910,en-US,272,3,0,12/26/2000,William Morrow Paperbacks +45529,Montaillou: The Promised Land of Error,Emmanuel Le Roy Ladurie/Barbara Bray,3.96,0394729641,9780394729640,eng,416,1142,62,7/12/1979,Vintage/Random House (NY) +45530,Montaillou: Cathars and Catholics in a French Village 1294-1324,Emmanuel Le Roy Ladurie/Barbara Bray,3.96,0140137009,9780140137002,eng,400,80,14,12/5/2002,Penguin +45531,Montaillou village occitan de 1294 à 1324,Emmanuel Le Roy Ladurie/Emmanuel Le Roy-Ladurie,3.96,2070323285,9782070323289,fre,640,15,2,6/31/1982,Folio histoire +45533,Montaillou: Cathars and Catholics in a French Village 1294-1324,Emmanuel Le Roy Ladurie/Barbara Bray,3.96,0140054715,9780140054712,en-GB,400,17,2,5/29/1980,Penguin Books Ltd. +45536,On the Road,Jack Kerouac/Ann Charters,3.63,0142437255,9780142437254,en-US,307,3271,342,1/3/2006,Penguin Classics +45546,Undaunted Courage: The Pioneering First Mission to Explore America's Wild Frontier,Stephen E. Ambrose,4.21,074347788X,9780743477888,eng,592,41236,1830,10/6/2003,Simon & Schuster +45549,Undaunted Courage,Stephen E. Ambrose/Barrett Whitener,4.21,1415918090,9781415918098,eng,22,8,2,3/8/2005,Books on Tape +45557,Co. Aytch: A Confederate Memoir of the Civil War,Sam R. Watkins,4.13,0684833247,9780684833248,eng,240,23,2,8/12/1997,Touchstone Books +45564,Jonny Reb & Billy Yank,Alexander Hunter,4.11,1568520808,9781568520803,eng,635,14,2,5/31/1998,Not Avail +45568,El Superzorro,Roald Dahl/Horacio Elena,4.05,9681907191,9789681907198,spa,96,174,20,6/1/2000,Alfaguara Infantil +45570,Fantastic Mr Fox,David Wood/Roald Dahl,4.09,057305133X,9780573051333,en-GB,74,65,2,1/5/2011,Samuel French Ltd +45572,Fantastic Mr. Fox (Cover to Cover),Roald Dahl,4.05,1855495090,9781855495098,eng,90,7,0,9/15/1995,BBC Audiobooks +45574,Ajax in Action,Dave Crane/Eric Pascarello/Darren James,3.56,1932394613,9781932394610,en-US,680,126,10,11/3/2005,Manning Publications +45583,Historia del rey transparente,Rosa Montero,3.90,8466318771,9788466318778,spa,592,1266,90,9/1/2006,Punto de Lectura +45585,Bella y oscura,Rosa Montero,3.66,843221728X,9788432217289,spa,204,293,31,3/1/2006,Planeta Publishing +45592,La tía Julia y el escribidor,Mario Vargas Llosa,3.92,8466302298,9788466302296,spa,566,162,10,3/1/2001,Suma +45595,La Tía Julia y el Escribidor,Mario Vargas Llosa,3.92,8432203238,9788432203237,spa,447,25,4,7/10/1977,Seix Barral +45604,Narraciones Extraordinarias,Edgar Allan Poe,4.13,9583006408,9789583006401,spa,316,36,4,6/1/2004,Panamericana Editorial +45607,Las Crónicas de Narnia,C.S. Lewis/Margarita E. Valdes/Gemma Gallart/Pauline Baynes,4.26,0061199001,9780061199004,spa,816,186,11,11/7/2006,HarperCollins Espanol +45615,O Trono de Prata (As Crónicas de Nárnia #6),C.S. Lewis/Ana Falcão Bastos,3.96,972233168X,9789722331685,por,168,141,10,4/16/2004,Editorial Presença +45616,A Última Batalha (As Crónicas de Nárnia #7),C.S. Lewis/Pauline Baynes/Ana Falcão Bastos,4.03,9722332201,9789722332200,por,149,211,24,7/17/2004,Editorial Presença +45617,O Cavalo e o Seu Rapaz (As Crónicas de Nárnia #3),C.S. Lewis/Pauline Baynes/Ana Falcão Bastos,3.92,9722330551,9789722330558,por,160,207,16,8/15/2003,Editorial Presença +45623,O Sobrinho do Mágico (As Crónicas de Nárnia #1),C.S. Lewis/Pauline Baynes/Ana Falcão Bastos,4.04,9722329987,9789722329989,por,147,396,37,4/8/2003,Editorial Presença +45625,A Viagem do Caminheiro da Alvorada (As Crónicas de Nárnia #5),C.S. Lewis/Pauline Baynes/Ana Falcão Bastos,4.09,9722331329,9789722331326,por,176,161,14,9/1/2004,Editorial Presença +45626,O Príncipe Caspian (As Crónicas de Nárnia #4),C.S. Lewis/Pauline Baynes/Ana Falcão Bastos,3.97,9722330977,9789722330978,por,160,215,11,10/11/2003,Editorial Presença +45630,Whores for Gloria,William T. Vollmann,3.69,0140231579,9780140231571,en-US,160,932,111,2/1/1994,Penguin Books +45631,Expelled from Eden: A William T. Vollmann Reader,William T. Vollmann/Larry McCaffery/Michael Hemmingson,4.06,1560254416,9781560254416,eng,512,156,20,12/21/2004,Da Capo Press +45633,You Bright and Risen Angels,William T. Vollmann,4.08,0140110879,9780140110876,eng,635,783,56,12/1/1988,Penguin Books +45634,The Ice-Shirt (Seven Dreams #1),William T. Vollmann,3.96,0140131965,9780140131963,eng,415,820,95,8/1/1993,Penguin Books +45639,Poor People,William T. Vollmann,3.72,0060878827,9780060878825,eng,434,769,139,2/27/2007,Ecco +45641,Las aventuras de Tom Sawyer,Mark Twain,3.91,8497646983,9788497646987,spa,272,113,12,5/28/2006,Edimat Libros diff --git a/tests_new/integration_tests/modules/s3_datasets/sample_data/folder1/pivotRole.yaml b/tests_new/integration_tests/modules/s3_datasets/sample_data/folder1/pivotRole.yaml new file mode 100644 index 000000000..26435d897 --- /dev/null +++ b/tests_new/integration_tests/modules/s3_datasets/sample_data/folder1/pivotRole.yaml @@ -0,0 +1,499 @@ +AWSTemplateFormatVersion: 2010-09-09 +Description: IAM Role used by dataall platform to run AWS short running tasks +Parameters: + AwsAccountId: + Description: AWS AccountId of the dataall INFRASTRUCTURE account that we wish to link this environment with. + Type: String + ExternalId: + Description: ExternalId to secure dataall assume role (copy/paste from the UI) + Type: String + PivotRoleName: + Description: IAM role name (copy/paste from the UI) + Type: String + EnvironmentResourcePrefix: + Description: The resource prefix value of the dataall environment. It MUST match the resource prefix that we use when we create the environment. + Type: String +Resources: + PivotRole: + Type: 'AWS::IAM::Role' + Properties: + RoleName: !Ref PivotRoleName + Path: / + MaxSessionDuration: 43200 + AssumeRolePolicyDocument: + Version: 2012-10-17 + Statement: + - Effect: Allow + Principal: + Service: + - lakeformation.amazonaws.com + - lambda.amazonaws.com + - glue.amazonaws.com + Action: + - 'sts:AssumeRole' + - Effect: Allow + Principal: + AWS: + - !Ref AwsAccountId + Action: + - 'sts:AssumeRole' + Condition: + StringEquals: + 'sts:ExternalId': !Ref ExternalId + StringLike: + 'aws:PrincipalArn': [ + !Sub "arn:aws:iam::${AwsAccountId}:role/*graphql-role", + !Sub "arn:aws:iam::${AwsAccountId}:role/*awsworker-role", + !Sub "arn:aws:iam::${AwsAccountId}:role/*ecs-tasks-role" + ] + PivotRolePolicy0: + Type: 'AWS::IAM::ManagedPolicy' + Properties: + PolicyDocument: + Version: 2012-10-17 + Statement: + - Sid: ReadBuckets + Action: + - 's3:ListAllMyBuckets' + - 's3:GetBucketLocation' + - 's3:PutBucketTagging' + - 's3:GetEncryptionConfiguration' + Effect: Allow + Resource: '*' + - Sid: ManagedBuckets + Action: + - 's3:List*' + - 's3:Delete*' + - 's3:Get*' + - 's3:Put*' + Effect: Allow + Resource: + - !Sub 'arn:aws:s3:::${EnvironmentResourcePrefix}*' + - Sid: ImportedBuckets + Action: + - 's3:List*' + - 's3:GetBucket*' + - 's3:GetLifecycleConfiguration' + - 's3:GetObject' + - 's3:PutBucketPolicy' + - 's3:PutBucketTagging' + - 's3:PutObject' + - 's3:PutObjectAcl' + - 's3:PutBucketOwnershipControls' + Effect: Allow + Resource: + - 'arn:aws:s3:::*' + - Sid: KMS + Action: + - 'kms:Decrypt' + - 'kms:Encrypt' + - 'kms:GenerateDataKey*' + - 'kms:GetKeyPolicy' + - 'kms:PutKeyPolicy' + - 'kms:ReEncrypt*' + - 'kms:TagResource' + - 'kms:UntagResource' + Effect: Allow + Resource: + - '*' + - Sid: KMSList + Action: + - 'kms:List*' + - 'kms:DescribeKey' + Effect: Allow + Resource: '*' + - Sid: AthenaWorkgroups + Action: + - 'athena:GetWorkGroup' + - 'athena:GetQueryExecution' + - 'athena:GetQueryResults' + - 'athena:StartQueryExecution' + Effect: Allow + Resource: !Sub 'arn:aws:athena:*:${AWS::AccountId}:workgroup/${EnvironmentResourcePrefix}*' + - Sid: ManagedAccessPoints + Action: + - 's3:GetAccessPoint' + - 's3:GetAccessPointPolicy' + - 's3:ListAccessPoints' + - 's3:CreateAccessPoint' + - 's3:DeleteAccessPoint' + - 's3:GetAccessPointPolicyStatus' + - 's3:DeleteAccessPointPolicy' + - 's3:PutAccessPointPolicy' + Effect: Allow + Resource: + - !Sub 'arn:aws:s3:*:${AWS::AccountId}:accesspoint/*' + - Sid: GlueCatalog + Action: + - 'glue:BatchCreatePartition' + - 'glue:BatchDeletePartition' + - 'glue:BatchDeleteTable' + - 'glue:CreateDatabase' + - 'glue:CreatePartition' + - 'glue:CreateTable' + - 'glue:DeleteDatabase' + - 'glue:DeletePartition' + - 'glue:DeleteTable' + - 'glue:BatchGet*' + - 'glue:Get*' + - 'glue:List*' + - 'glue:SearchTables' + - 'glue:UpdateDatabase' + - 'glue:UpdatePartition' + - 'glue:UpdateTable' + - 'glue:TagResource' + - 'glue:DeleteResourcePolicy' + - 'glue:PutResourcePolicy' + Effect: Allow + Resource: '*' + - Sid: GlueETL + Action: + - 'glue:StartCrawler' + - 'glue:StartJobRun' + - 'glue:StartTrigger' + - 'glue:UpdateTrigger' + - 'glue:UpdateJob' + - 'glue:UpdateCrawler' + Effect: Allow + Resource: + - !Sub 'arn:aws:glue:*:${AWS::AccountId}:crawler/${EnvironmentResourcePrefix}*' + - !Sub 'arn:aws:glue:*:${AWS::AccountId}:job/${EnvironmentResourcePrefix}*' + - !Sub 'arn:aws:glue:*:${AWS::AccountId}:trigger/${EnvironmentResourcePrefix}*' + - Sid: SNSPublish + Action: + - 'sns:Publish' + - 'sns:SetTopicAttributes' + - 'sns:GetTopicAttributes' + - 'sns:DeleteTopic' + - 'sns:Subscribe' + - 'sns:TagResource' + - 'sns:UntagResource' + - 'sns:CreateTopic' + Effect: Allow + Resource: !Sub 'arn:aws:sns:*:${AWS::AccountId}:${EnvironmentResourcePrefix}*' + - Sid: SNSList + Action: + - 'sns:ListTopics' + Effect: Allow + Resource: '*' + - Sid: SQSList + Action: + - 'sqs:ListQueues' + Effect: Allow + Resource: '*' + - Sid: SQS + Action: + - 'sqs:ReceiveMessage' + - 'sqs:SendMessage' + Effect: Allow + Resource: !Sub 'arn:aws:sqs:*:${AWS::AccountId}:${EnvironmentResourcePrefix}*' + - Sid: AWSLoggingBuckets + Action: + - 's3:PutBucketAcl' + - 's3:PutBucketNotification' + Effect: Allow + Resource: + - !Sub 'arn:aws:s3:::${EnvironmentResourcePrefix}-logging-*' + - Sid: CWMetrics + Action: + - 'cloudwatch:PutMetricData' + - 'cloudwatch:GetMetricData' + - 'cloudwatch:GetMetricStatistics' + Effect: Allow + Resource: '*' + - Sid: Logs + Effect: Allow + Action: + - 'logs:CreateLogGroup' + - 'logs:CreateLogStream' + Resource: + - !Sub 'arn:aws:logs:*:${AWS::AccountId}:log-group:/aws/lambda/*' + - !Sub 'arn:aws:logs:*:${AWS::AccountId}:log-group:/${EnvironmentResourcePrefix}*' + - Sid: Logging + Action: + - 'logs:PutLogEvents' + Effect: Allow + Resource: '*' + ManagedPolicyName: !Sub ${EnvironmentResourcePrefix}-pivotrole-policy-0 + Roles: + - !Ref PivotRoleName + DependsOn: PivotRole + + PivotRolePolicy1: + Type: 'AWS::IAM::ManagedPolicy' + Properties: + PolicyDocument: + Version: 2012-10-17 + Statement: + - Sid: EC2SG + Effect: Allow + Action: + - 'ec2:DescribeSubnets' + - 'ec2:DescribeSecurityGroups' + - 'ec2:DescribeVpcs' + - 'ec2:DescribeInstances' + - 'ec2:DescribeNetworkInterfaces' + Resource: '*' + - Sid: SageMakerNotebookActions + Effect: Allow + Action: + - 'sagemaker:ListTags' + - 'sagemaker:DescribeUserProfile' + - 'sagemaker:StopNotebookInstance' + - 'sagemaker:CreatePresignedNotebookInstanceUrl' + - 'sagemaker:DescribeNotebookInstance' + - 'sagemaker:StartNotebookInstance' + - 'sagemaker:AddTags' + - 'sagemaker:DescribeDomain' + - 'sagemaker:CreatePresignedDomainUrl' + Resource: + - !Sub 'arn:aws:sagemaker:*:${AWS::AccountId}:notebook-instance/${EnvironmentResourcePrefix}*' + - !Sub 'arn:aws:sagemaker:*:${AWS::AccountId}:domain/*' + - !Sub 'arn:aws:sagemaker:*:${AWS::AccountId}:user-profile/*/*' + - Sid: SagemakerNotebookInstances + Effect: Allow + Action: + - 'sagemaker:ListNotebookInstances' + - 'sagemaker:ListDomains' + - 'sagemaker:ListApps' + - 'sagemaker:DeleteApp' + Resource: '*' + - Sid: RamTag + Effect: Allow + Action: + - 'ram:TagResource' + Resource: '*' + Condition: + 'ForAllValues:StringLike': + 'ram:ResourceShareName': + - LakeFormation* + - Sid: RamCreateResource + Effect: Allow + Action: + - 'ram:CreateResourceShare' + Resource: '*' + Condition: + 'ForAllValues:StringEquals': + 'ram:RequestedResourceType': + - 'glue:Table' + - 'glue:Database' + - 'glue:Catalog' + - Sid: RamUpdateResource + Effect: Allow + Action: + - 'ram:UpdateResourceShare' + Resource: !Sub 'arn:aws:ram:*:${AWS::AccountId}:resource-share/*' + Condition: + 'ForAllValues:StringLike': + 'ram:ResourceShareName': + - LakeFormation* + - Sid: RamAssociateResource + Effect: Allow + Action: + - 'ram:AssociateResourceShare' + - 'ram:DisassociateResourceShare' + Resource: !Sub 'arn:aws:ram:*:${AWS::AccountId}:resource-share/*' + Condition: + 'ForAllValues:StringLike': + 'ram:ResourceShareName': + - LakeFormation* + - Sid: RamDeleteResource + Effect: Allow + Action: + - 'ram:DeleteResourceShare' + Resource: !Sub 'arn:aws:ram:*:${AWS::AccountId}:resource-share/*' + - Sid: RamInvitations + Effect: Allow + Action: + - "ram:AcceptResourceShareInvitation" + - "ram:RejectResourceShareInvitation" + - "ram:EnableSharingWithAwsOrganization" + Resource: '*' + - Sid: RamRead + Effect: Allow + Action: + - 'ram:Get*' + - 'ram:List*' + Resource: '*' + - Sid: CloudFormation + Effect: Allow + Action: + - 'cloudformation:DescribeStacks' + - 'cloudformation:DescribeStackResources' + - 'cloudformation:DescribeStackEvents' + - 'cloudformation:DeleteStack' + - 'cloudformation:ContinueUpdateRollback' + Resource: + - !Sub 'arn:aws:cloudformation:*:${AWS::AccountId}:stack/${EnvironmentResourcePrefix}*/*' + - !Sub 'arn:aws:cloudformation:*:${AWS::AccountId}:stack/CDKToolkit/*' + - Sid: CloudFormationDataPipelines + Effect: Allow + Action: + - 'cloudformation:DescribeStacks' + - 'cloudformation:DescribeStackResources' + - 'cloudformation:DescribeStackEvents' + - 'cloudformation:DeleteStack' + Resource: + - !Sub 'arn:aws:cloudformation:*:${AWS::AccountId}:stack/*/*' + ManagedPolicyName: !Sub ${EnvironmentResourcePrefix}-pivotrole-policy-1 + Roles: + - !Ref PivotRoleName + DependsOn: PivotRole + + PivotRolepolicy2: + Type: 'AWS::IAM::ManagedPolicy' + Properties: + PolicyDocument: + Version: 2012-10-17 + Statement: + - Sid: LakeFormation + Effect: Allow + Action: + - "lakeformation:UpdateResource" + - "lakeformation:DescribeResource" + - "lakeformation:AddLFTagsToResource" + - "lakeformation:RemoveLFTagsFromResource" + - "lakeformation:GetResourceLFTags" + - "lakeformation:ListLFTags" + - "lakeformation:CreateLFTag" + - "lakeformation:GetLFTag" + - "lakeformation:UpdateLFTag" + - "lakeformation:DeleteLFTag" + - "lakeformation:SearchTablesByLFTags" + - "lakeformation:SearchDatabasesByLFTags" + - 'lakeformation:ListResources' + - 'lakeformation:ListPermissions' + - 'lakeformation:GrantPermissions' + - 'lakeformation:BatchGrantPermissions' + - 'lakeformation:RevokePermissions' + - 'lakeformation:BatchRevokePermissions' + - 'lakeformation:PutDataLakeSettings' + - 'lakeformation:GetDataLakeSettings' + - 'lakeformation:GetDataAccess' + - 'lakeformation:GetWorkUnits' + - 'lakeformation:StartQueryPlanning' + - 'lakeformation:GetWorkUnitResults' + - 'lakeformation:GetQueryState' + - 'lakeformation:GetQueryStatistics' + - 'lakeformation:GetTableObjects' + - 'lakeformation:UpdateTableObjects' + - 'lakeformation:DeleteObjectsOnCancel' + Resource: '*' + - Sid: QuickSight + Effect: Allow + Action: + - "quicksight:CreateGroup" + - "quicksight:DescribeGroup" + - "quicksight:ListDashboards" + - "quicksight:DescribeDataSource" + - "quicksight:DescribeDashboard" + - "quicksight:DescribeUser" + - "quicksight:SearchDashboards" + - "quicksight:GenerateEmbedUrlForRegisteredUser" + - "quicksight:GenerateEmbedUrlForAnonymousUser" + - "quicksight:UpdateUser" + - "quicksight:ListUserGroups" + - "quicksight:RegisterUser" + - "quicksight:DescribeDashboardPermissions" + - "quicksight:UpdateDashboardPermissions" + - "quicksight:GetAuthCode" + - "quicksight:CreateGroupMembership" + - "quicksight:DescribeAccountSubscription" + - "quicksight:DescribeAccountSettings" + Resource: + - !Sub "arn:aws:quicksight:*:${AWS::AccountId}:group/default/*" + - !Sub "arn:aws:quicksight:*:${AWS::AccountId}:user/default/*" + - !Sub "arn:aws:quicksight:*:${AWS::AccountId}:datasource/*" + - !Sub "arn:aws:quicksight:*:${AWS::AccountId}:user/*" + - !Sub "arn:aws:quicksight:*:${AWS::AccountId}:dashboard/*" + - !Sub "arn:aws:quicksight:*:${AWS::AccountId}:namespace/default" + - !Sub "arn:aws:quicksight:*:${AWS::AccountId}:account/*" + - !Sub "arn:aws:quicksight:*:${AWS::AccountId}:*" + - Sid: QuickSightSession + Effect: Allow + Action: + - 'quicksight:GetSessionEmbedUrl' + Resource: '*' + ManagedPolicyName: !Sub ${EnvironmentResourcePrefix}-pivotrole-policy-2 + Roles: + - !Ref PivotRoleName + DependsOn: PivotRole + + PivotRolepolicy3: + Type: 'AWS::IAM::ManagedPolicy' + Properties: + PolicyDocument: + Version: 2012-10-17 + Statement: + - Sid: ParameterStore + Effect: Allow + Action: + - "ssm:GetParameter" + Resource: + - !Sub 'arn:aws:ssm:*:${AWS::AccountId}:parameter/${EnvironmentResourcePrefix}/*' + - !Sub 'arn:aws:ssm:*:${AWS::AccountId}:parameter/dataall/*' + - !Sub 'arn:aws:ssm:*:${AWS::AccountId}:parameter/cdk*' + - Sid: IAMListGet + Action: + - 'iam:Get*' + - 'iam:ListRoles' + Effect: Allow + Resource: '*' + - Sid: IAMRolePolicy + Action: + - 'iam:PutRolePolicy' + - 'iam:DeleteRolePolicy' + Effect: Allow + Resource: '*' + - Sid: IAMPassRole + Action: + - 'iam:PassRole' + Effect: Allow + Resource: + - !Sub 'arn:aws:iam::${AWS::AccountId}:role/${PivotRoleName}' + - Sid: IAMPassRoleGlue + Action: + - 'iam:PassRole' + Effect: Allow + Resource: + - !Sub 'arn:aws:iam::${AWS::AccountId}:role/${EnvironmentResourcePrefix}*' + Condition: + StringEquals: + 'iam:PassedToService': [ "glue.amazonaws.com" ] + - Sid: STS + Action: + - 'sts:AssumeRole' + Effect: Allow + Resource: + - !Sub 'arn:aws:iam::${AWS::AccountId}:role/${EnvironmentResourcePrefix}*' + - !Sub 'arn:aws:iam::${AWS::AccountId}:role/cdk-*' + - Sid: CodeCommit + Action: + - 'codecommit:GetFile' + - 'codecommit:ListBranches' + - 'codecommit:GetFolder' + - 'codecommit:GetCommit' + - 'codecommit:GitPull' + - 'codecommit:GetRepository' + - 'codecommit:TagResource' + - 'codecommit:UntagResource' + - 'codecommit:CreateBranch' + - 'codecommit:CreateCommit' + - 'codecommit:CreateRepository' + - 'codecommit:DeleteRepository' + - 'codecommit:GitPush' + - 'codecommit:PutFile' + - 'codecommit:GetBranch' + Effect: Allow + Resource: + - !Sub 'arn:aws:codecommit:*:${AWS::AccountId}:${EnvironmentResourcePrefix}*' + ManagedPolicyName: !Sub ${EnvironmentResourcePrefix}-pivotrole-policy-3 + Roles: + - !Ref PivotRoleName + DependsOn: PivotRole +Outputs: + PivotRoleOutput: + Description: Platform Pivot Role + Value: PivotRole + Export: + Name: !Sub '${AWS::StackName}-PivotRole' diff --git a/tests_new/integration_tests/modules/s3_datasets/sample_data/parquet_table/sample1.parquet b/tests_new/integration_tests/modules/s3_datasets/sample_data/parquet_table/sample1.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9b6a78cf8cc7cd3ece15e13c9b2f222c8f09b81e GIT binary patch literal 1308 zcmWG=3^EjD5Z%Hr`iosh^b{kI%_hpmz#!kv!2kyTLxU6Z9~tnZHa*@opEc(Au?K1g zOD4aYo#~scS*oJ`_R8gD$~^!1^Jl8v?6d#uZT@&1Z&h*OEsK+iS@vM( z^NvMD|`UJH2qG^xTWJ-dT6$7G6DVTky7Woy5#*nvWVEJpR{CJ{Fy0- zE8ux@_5^8x!?dEIRau&2MyW=j!5h*xtj<|H$T%nI_ zrsjz?W}YW@dt8{DRBI|`*(jU(m2ZmM@u#NQ!s{)z%{yLgtZF$)cAddC?xOT5D^_mz z-x7J9sr1v$v$K{(^`5h;Sz-1gc2*AGUh7}8F0R?}-B&E(IrH;G`GUhY z?q@1K*wQW0otd;iYI&}N?~AIE{%tkCroWN7t$#4bGw~KP0|PJ-eBc+|z=1tM#0JF{ zU3TEfTh6OHr)jl`=8?k_CV5&tiR=x1?{{sI`|Af*?oUEIqS_tiuleY8e||}EY3bMB zzp9qaKhIf|e>9xYs^&t{(WWC|y8X+=Uc{}=?T>Xh_5JxVk(1Vsywf&)T&i$tu2}yJ zsTDW>>9!Q_yZT7oEaCof4t43QdkFv1JFG`q9?h6g zxTpBgk6%&qwlli6{)!hkc#l_C=)}P;-Ys+NvjP>bYG~cCGCw}YQ1x-0z@w1)u@}^n zTV#|>Z7-{GtbTT=rr=<)~?``+iTxh4l+3|MS-tdVRHm+9w`h0!z=3knV zrSnX_{WmK}KJ?@4(a#30zmF(AmC{eNN7s8Lx}H>x1pMHFk2oys;%$ zvXN_R)m$dd8M|y^7q?Bh-x;&%icdYm3!CL}KR{`PNz%rYL4r4>G&wsZDZV&4BQ-Zs zl!ZZ*N0mu}Jvl$8G&j!xn4o|vkwidc4g-VODMm>dNgXu?8BrcdQ3gqbdKRFR7=zd% z4mA!N3D&gCqT&(>R>!2I%v3Q34HQ1GkiyV!C<@hogF|f<&;XY3{QMLNR)w6z;u4^K eWG+xU(4JF_Y8(t2Y%V}QxHvIf1_}lM%S8a*|2_@? literal 0 HcmV?d00001 diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index 3201e59e5..bf25f9905 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -2,8 +2,16 @@ from datetime import datetime import time from assertpy import assert_that - -from integration_tests.modules.s3_datasets.queries import get_dataset, update_dataset, delete_dataset +import requests + +from integration_tests.modules.s3_datasets.queries import ( + get_dataset, + update_dataset, + delete_dataset, + get_dataset_assume_role_url, + generate_dataset_access_token, + get_dataset_presigned_role_url, +) from integration_tests.modules.s3_datasets.global_conftest import create_s3_dataset from integration_tests.modules.datasets_base.queries import list_datasets from integration_tests.core.stack.queries import update_stack @@ -139,3 +147,68 @@ def test_persistent_import_kms_s3_dataset_update(client1, persistent_imported_km client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type ) assert_that(stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') + + +def test_access_dataset_assume_role_url(client1, client2, session_s3_dataset1): + dataset_uri = session_s3_dataset1.datasetUri + + assert_that(get_dataset_assume_role_url).raises(GqlError).when_called_with(client2, dataset_uri).contains( + 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri + ) + + assert_that(get_dataset_assume_role_url(client1, dataset_uri)).starts_with( + 'https://signin.aws.amazon.com/federation' + ) + + +def test_generate_dataset_access_token(client1, client2, session_s3_dataset1): + dataset_uri = session_s3_dataset1.datasetUri + + assert_that(generate_dataset_access_token).raises(GqlError).when_called_with(client2, dataset_uri).contains( + 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri + ) + + creds = generate_dataset_access_token(client1, dataset_uri) + assert_that(creds).contains_key('AccessKey', 'SessionKey', 'sessionToken') + + +def test_get_dataset_presigned_url_upload_data(client1, client2, session_s3_dataset1): + dataset_uri = session_s3_dataset1.datasetUri + assert_that(get_dataset_presigned_role_url).raises(GqlError).when_called_with(client2, dataset_uri).contains( + 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri + ) + + object_name = './sample_data/books.csv' + + # Upload multiple files with post request using presigned URL + + with open(object_name, 'rb') as f: + response = get_dataset_presigned_role_url( + client1, dataset_uri, input={'prefix': 'sample_data', 'fileName': f.name} + ) + assert_that(response).contains_key('url', 'fields') + + files = {'file': (object_name, f)} + http_response = requests.post(response['url'], data=response['fields'], files=files) + http_response.raise_for_status() + + +# def test_upload_data_to_new_datasets_success(path_to_config, client_mapping): +# config = Config(path_to_config).config +# for resource in config.get("test_resources").get("created_datasets") + config.get("test_resources").get("imported_datasets"): +# client = client_mapping.get(resource.get("username")) +# normalized_name = f"dataall-{resource.get('name').lower()}-{resource.get('uri')}" +# bucket_name = resource.get("aws_infra",{}).get("bucket") if resource.get("aws_infra",{}).get("bucket") else normalized_name +# print("Getting AWS credentials for dataset IAM role") +# creds = client.generate_dataset_access_token(datasetUri=resource.get("uri")) +# S3Client(creds=json.loads(creds)).upload_local_folder(bucket_name=bucket_name) + +# def test_upload_data_to_new_datasets_success(path_to_config, client_mapping): +# config = Config(path_to_config).config +# for resource in config.get("test_resources").get("created_datasets") + config.get("test_resources").get("imported_datasets"): +# client = client_mapping.get(resource.get("username")) +# normalized_name = f"dataall-{resource.get('name').lower()}-{resource.get('uri')}" +# bucket_name = resource.get("aws_infra",{}).get("bucket") if resource.get("aws_infra",{}).get("bucket") else normalized_name +# print("Getting AWS credentials for dataset IAM role") +# creds = client.generate_dataset_access_token(datasetUri=resource.get("uri")) +# S3Client(creds=json.loads(creds)).upload_local_folder(bucket_name=bucket_name) From 9b2c7115d580dac834e2766b37d95639fb1fea39 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Wed, 3 Jul 2024 22:26:04 -0400 Subject: [PATCH 18/34] Add sample data and tests for dataset role access --- .../modules/s3_datasets/test_s3_dataset.py | 37 ++++++++----------- 1 file changed, 15 insertions(+), 22 deletions(-) diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index bf25f9905..2fa8fc999 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -179,9 +179,7 @@ def test_get_dataset_presigned_url_upload_data(client1, client2, session_s3_data ) object_name = './sample_data/books.csv' - - # Upload multiple files with post request using presigned URL - + # TODO: Test + Iterate for Multiple Files with open(object_name, 'rb') as f: response = get_dataset_presigned_role_url( client1, dataset_uri, input={'prefix': 'sample_data', 'fileName': f.name} @@ -193,22 +191,17 @@ def test_get_dataset_presigned_url_upload_data(client1, client2, session_s3_data http_response.raise_for_status() -# def test_upload_data_to_new_datasets_success(path_to_config, client_mapping): -# config = Config(path_to_config).config -# for resource in config.get("test_resources").get("created_datasets") + config.get("test_resources").get("imported_datasets"): -# client = client_mapping.get(resource.get("username")) -# normalized_name = f"dataall-{resource.get('name').lower()}-{resource.get('uri')}" -# bucket_name = resource.get("aws_infra",{}).get("bucket") if resource.get("aws_infra",{}).get("bucket") else normalized_name -# print("Getting AWS credentials for dataset IAM role") -# creds = client.generate_dataset_access_token(datasetUri=resource.get("uri")) -# S3Client(creds=json.loads(creds)).upload_local_folder(bucket_name=bucket_name) - -# def test_upload_data_to_new_datasets_success(path_to_config, client_mapping): -# config = Config(path_to_config).config -# for resource in config.get("test_resources").get("created_datasets") + config.get("test_resources").get("imported_datasets"): -# client = client_mapping.get(resource.get("username")) -# normalized_name = f"dataall-{resource.get('name').lower()}-{resource.get('uri')}" -# bucket_name = resource.get("aws_infra",{}).get("bucket") if resource.get("aws_infra",{}).get("bucket") else normalized_name -# print("Getting AWS credentials for dataset IAM role") -# creds = client.generate_dataset_access_token(datasetUri=resource.get("uri")) -# S3Client(creds=json.loads(creds)).upload_local_folder(bucket_name=bucket_name) +# TODO: Write Tests for the following casses + unauth user assertions +# def test_start_crawler() + +# def test_sync_tables() + +# def test_start_table_profiling() + +# def test_preview_table() + +# def test_delete_table() + +# def test_create_folder() + +# def test_delete_folder() From 2dcd60fb79456f0eaa2bf7b81b3dd591b95b9633 Mon Sep 17 00:00:00 2001 From: dlpzx Date: Mon, 8 Jul 2024 11:38:19 +0200 Subject: [PATCH 19/34] Add assume role permissions to codebuild role --- deploy/stacks/pipeline.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/stacks/pipeline.py b/deploy/stacks/pipeline.py index 0df007dfc..572904ed1 100644 --- a/deploy/stacks/pipeline.py +++ b/deploy/stacks/pipeline.py @@ -339,6 +339,7 @@ def set_codebuild_iam_roles(self): ], resources=[ f'arn:aws:iam::*:role/{self.resource_prefix}*', + 'arn:aws:iam::*:role/dataall-integration-tests*', 'arn:aws:cloudfront::*:distribution/*', ], ) From c261da7fe34d9b786b28752da18a4d653167140a Mon Sep 17 00:00:00 2001 From: dlpzx Date: Mon, 8 Jul 2024 12:37:09 +0200 Subject: [PATCH 20/34] Add naming checks in clients + create table --- .../modules/s3_datasets/aws_clients.py | 28 ++++++++- .../modules/s3_datasets/global_conftest.py | 57 ++++++++++++++----- .../modules/s3_datasets/queries.py | 4 +- 3 files changed, 73 insertions(+), 16 deletions(-) diff --git a/tests_new/integration_tests/modules/s3_datasets/aws_clients.py b/tests_new/integration_tests/modules/s3_datasets/aws_clients.py index 768b10eec..5d9bdb89b 100644 --- a/tests_new/integration_tests/modules/s3_datasets/aws_clients.py +++ b/tests_new/integration_tests/modules/s3_datasets/aws_clients.py @@ -1,5 +1,6 @@ import logging import json +import re from botocore.exceptions import ClientError log = logging.getLogger(__name__) @@ -18,6 +19,7 @@ def create_bucket(self, bucket_name, kms_key_id=None): :param kms_key_id: KMS key ID to use for encryption if encryption_type is 'aws:kms' :return: None """ + bucket_name = re.sub('[^a-zA-Z0-9-]', '', bucket_name) encryption_type = 'aws:kms' if kms_key_id else 'AES256' encryption_config = ( @@ -43,6 +45,7 @@ def create_bucket(self, bucket_name, kms_key_id=None): ] }, ) + return bucket_name except ClientError as e: log.exception(f'Error creating S3 bucket: {e}') @@ -74,10 +77,11 @@ def create_key_with_alias(self, alias_name): try: response = self._client.create_key() key_id = response['KeyMetadata']['KeyId'] + alias_name = re.sub('[^a-zA-Z0-9-]', '', alias_name) self._client.create_alias(AliasName=f'alias/{alias_name}', TargetKeyId=key_id) self._put_key_policy(key_id) - return key_id + return key_id, alias_name except ClientError as e: log.exception(f'Error creating KMS key with alias: {e}') @@ -150,7 +154,29 @@ def __init__(self, session, region): def create_database(self, database_name, bucket): try: + database_name = re.sub('[^a-zA-Z0-9_]', '', database_name) self._client.create_database(DatabaseInput={'Name': database_name, 'LocationUri': f's3://{bucket}/'}) + return database_name + except ClientError as e: + log.exception(f'Error creating Glue database: {e}') + + def create_table(self, database_name, bucket, table_name): + try: + self._client.create_table( + DatabaseName=database_name, + TableInput={ + 'Name': table_name, + 'Description': 'integration tests', + 'StorageDescriptor': { + 'Columns': [ + {'Name': 'column1', 'Type': 'string'}, + {'Name': 'column2', 'Type': 'string'}, + {'Name': 'column3', 'Type': 'string'}, + ], + 'Location': f's3://{bucket}/', + }, + }, + ) except ClientError as e: log.exception(f'Error creating Glue database: {e}') diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index 707d4d3da..605fb3a29 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -1,15 +1,17 @@ import logging - +import re import pytest - +import boto3 from integration_tests.client import GqlError from integration_tests.core.stack.utils import check_stack_ready from integration_tests.modules.s3_datasets.queries import ( create_dataset, + generate_dataset_access_token, import_dataset, delete_dataset, get_dataset, + sync_tables, ) from tests_new.integration_tests.modules.datasets_base.queries import list_datasets @@ -98,6 +100,35 @@ def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdat delete_s3_dataset(client1, session_env1['environmentUri'], ds) +@pytest.fixture(scope='session') +def session_s3_dataset2_with_table(client1, group1, org1, session_env1, session_id, testdata): + ds = None + try: + ds = create_s3_dataset( + client1, + owner='someone', + group=group1, + org_uri=org1['organizationUri'], + env_uri=session_env1['environmentUri'], + tags=[session_id], + ) + creds = generate_dataset_access_token(client1, ds.datasetUri) + dataset_session = boto3.Session( + aws_access_key_id=creds['AccessKey'], + aws_secret_access_key=creds['SessionKey'], + aws_session_token=creds['sessionToken'], + ) + GlueClient(dataset_session, ds.region).create_table( + database_name=ds.GlueDatabaseName, table_name='integrationtest', bucket=ds.S3Bucket + ) + response = sync_tables(client1, datasetUri=ds.datasetUri) + + yield ds, response.get('nodes', [])[0] + finally: + if ds: + delete_s3_dataset(client1, session_env1['environmentUri'], ds) + + @pytest.fixture(scope='session') def session_imported_sse_s3_dataset1( client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client @@ -117,14 +148,14 @@ def session_imported_sse_s3_dataset1( org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], tags=[session_id], - bucket=bucket_name, + bucket=bucket, ) yield ds finally: if ds: delete_s3_dataset(client1, session_env1['environmentUri'], ds) if bucket: - S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(bucket_name) + S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(bucket) @pytest.fixture(scope='session') @@ -134,13 +165,13 @@ def session_imported_kms_s3_dataset1( ds = None resource_name = f'sessionimportedkms{session_id}' try: - kms_key_id = KMSClient( + kms_key_id, kms_alias = KMSClient( session=session_env1_aws_client, account_id=session_env1['AwsAccountId'], region=session_env1['region'] ).create_key_with_alias(resource_name) - S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( + bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( bucket_name=resource_name, kms_key_id=kms_key_id ) - GlueClient(session=session_env1_aws_client, region=session_env1['region']).create_database( + database = GlueClient(session=session_env1_aws_client, region=session_env1['region']).create_database( database_name=resource_name, bucket=resource_name ) ds = import_s3_dataset( @@ -150,19 +181,19 @@ def session_imported_kms_s3_dataset1( org_uri=org1['organizationUri'], env_uri=session_env1['environmentUri'], tags=[session_id], - bucket=resource_name, - kms_alias=resource_name, - glue_db_name=resource_name, + bucket=bucket, + kms_alias=kms_alias, + glue_db_name=database, ) yield ds finally: if ds: delete_s3_dataset(client1, session_env1['environmentUri'], ds) - S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(resource_name) + S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(bucket) KMSClient( session=session_env1_aws_client, account_id=session_env1['AwsAccountId'], region=session_env1['region'] - ).delete_key_by_alias(resource_name) - GlueClient(session=session_env1_aws_client, region=session_env1['region']).delete_database(resource_name) + ).delete_key_by_alias(kms_alias) + GlueClient(session=session_env1_aws_client, region=session_env1['region']).delete_database(database) """ diff --git a/tests_new/integration_tests/modules/s3_datasets/queries.py b/tests_new/integration_tests/modules/s3_datasets/queries.py index f272cc9ef..3c7280576 100644 --- a/tests_new/integration_tests/modules/s3_datasets/queries.py +++ b/tests_new/integration_tests/modules/s3_datasets/queries.py @@ -251,7 +251,7 @@ def get_dataset_presigned_role_url(client, datasetUri, input): return response.data.getDatasetPresignedUrl -def start_glue_Crawler(client, datasetUri, input): +def start_glue_crawler(client, datasetUri, input): query = { 'operationName': 'StartGlueCrawler', 'variables': {'datasetUri': datasetUri, 'input': input}, @@ -349,7 +349,7 @@ def delete_table(client, tableUri): return response.data.deleteDatasetTable -def add_folder(client, datasetUri, input): +def create_folder(client, datasetUri, input): query = { 'operationName': 'CreateDatasetStorageLocation', 'variables': {'datasetUri': datasetUri, 'input': input}, From 1e9732b74654fa9a828180dcf51924ce87c70219 Mon Sep 17 00:00:00 2001 From: dlpzx Date: Mon, 8 Jul 2024 14:28:14 +0200 Subject: [PATCH 21/34] Add permissions, confidentiality and commented tests --- .../core/environment/cdk/environment_stack.py | 4 +- .../modules/s3_datasets/global_conftest.py | 56 +++--- .../modules/s3_datasets/queries.py | 2 +- .../modules/s3_datasets/test_s3_dataset.py | 165 +++++++++++++++--- 4 files changed, 176 insertions(+), 51 deletions(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index f797c035e..776ef9572 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -584,14 +584,14 @@ def create_integration_tests_role(self): ) self.test_role.add_to_policy( iam.PolicyStatement( - actions=['glue:createDatabase', 'glue:deleteDatabase'], + actions=['glue:createDatabase', 'glue:createTable', 'glue:deleteDatabase'], effect=iam.Effect.ALLOW, resources=['*'], ) ) self.test_role.add_to_policy( iam.PolicyStatement( - actions=['kms:CreateKey', 'kms:DeleteKey', 'kms:ListAliases'], + actions=['kms:CreateKey', 'kms:CreateAlias', 'kms:DeleteKey', 'kms:ListAliases'], effect=iam.Effect.ALLOW, resources=['*'], ) diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index 605fb3a29..7623fdb45 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -83,7 +83,7 @@ def delete_s3_dataset(client, env_uri, dataset): @pytest.fixture(scope='session') -def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): +def session_s3_dataset1(client1, group1, org1, persistent_env1, session_id, testdata): ds = None try: ds = create_s3_dataset( @@ -91,17 +91,17 @@ def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdat owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=session_env1['environmentUri'], + env_uri=persistent_env1['environmentUri'], tags=[session_id], ) yield ds finally: if ds: - delete_s3_dataset(client1, session_env1['environmentUri'], ds) + delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) @pytest.fixture(scope='session') -def session_s3_dataset2_with_table(client1, group1, org1, session_env1, session_id, testdata): +def session_s3_dataset2_with_table(client1, group1, org1, persistent_env1, session_id, testdata): ds = None try: ds = create_s3_dataset( @@ -109,7 +109,7 @@ def session_s3_dataset2_with_table(client1, group1, org1, session_env1, session_ owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=session_env1['environmentUri'], + env_uri=persistent_env1['environmentUri'], tags=[session_id], ) creds = generate_dataset_access_token(client1, ds.datasetUri) @@ -126,18 +126,18 @@ def session_s3_dataset2_with_table(client1, group1, org1, session_env1, session_ yield ds, response.get('nodes', [])[0] finally: if ds: - delete_s3_dataset(client1, session_env1['environmentUri'], ds) + delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) @pytest.fixture(scope='session') def session_imported_sse_s3_dataset1( - client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client + client1, group1, org1, persistent_env1, session_id, testdata, persistent_env1_aws_client ): ds = None bucket = None bucket_name = f'sessionimportedsses3{session_id}' try: - bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( + bucket = S3Client(session=persistent_env1_aws_client, region=persistent_env1['region']).create_bucket( bucket_name=bucket_name, kms_key_id=None ) @@ -146,32 +146,37 @@ def session_imported_sse_s3_dataset1( owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=session_env1['environmentUri'], + env_uri=persistent_env1['environmentUri'], tags=[session_id], bucket=bucket, ) yield ds finally: if ds: - delete_s3_dataset(client1, session_env1['environmentUri'], ds) + delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) if bucket: - S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(bucket) + S3Client(session=persistent_env1_aws_client, region=persistent_env1['region']).delete_bucket(bucket) @pytest.fixture(scope='session') def session_imported_kms_s3_dataset1( - client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client + client1, group1, org1, persistent_env1, session_id, testdata, persistent_env1_aws_client ): ds = None + bucket = None + database = None + kms_alias = None resource_name = f'sessionimportedkms{session_id}' try: kms_key_id, kms_alias = KMSClient( - session=session_env1_aws_client, account_id=session_env1['AwsAccountId'], region=session_env1['region'] + session=persistent_env1_aws_client, + account_id=persistent_env1['AwsAccountId'], + region=persistent_env1['region'], ).create_key_with_alias(resource_name) - bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( + bucket = S3Client(session=persistent_env1_aws_client, region=persistent_env1['region']).create_bucket( bucket_name=resource_name, kms_key_id=kms_key_id ) - database = GlueClient(session=session_env1_aws_client, region=session_env1['region']).create_database( + database = GlueClient(session=persistent_env1_aws_client, region=persistent_env1['region']).create_database( database_name=resource_name, bucket=resource_name ) ds = import_s3_dataset( @@ -179,7 +184,7 @@ def session_imported_kms_s3_dataset1( owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=session_env1['environmentUri'], + env_uri=persistent_env1['environmentUri'], tags=[session_id], bucket=bucket, kms_alias=kms_alias, @@ -188,12 +193,17 @@ def session_imported_kms_s3_dataset1( yield ds finally: if ds: - delete_s3_dataset(client1, session_env1['environmentUri'], ds) - S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(bucket) + delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) + if bucket: + S3Client(session=persistent_env1_aws_client, region=persistent_env1['region']).delete_bucket(bucket) + if kms_alias: KMSClient( - session=session_env1_aws_client, account_id=session_env1['AwsAccountId'], region=session_env1['region'] + session=persistent_env1_aws_client, + account_id=persistent_env1['AwsAccountId'], + region=persistent_env1['region'], ).delete_key_by_alias(kms_alias) - GlueClient(session=session_env1_aws_client, region=session_env1['region']).delete_database(database) + if database: + GlueClient(session=persistent_env1_aws_client, region=persistent_env1['region']).delete_database(database) """ @@ -203,7 +213,7 @@ def session_imported_kms_s3_dataset1( @pytest.fixture(scope='function') -def temp_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): +def temp_s3_dataset1(client1, group1, org1, persistent_env1, session_id, testdata): ds = None try: ds = create_s3_dataset( @@ -211,13 +221,13 @@ def temp_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=session_env1['environmentUri'], + env_uri=persistent_env1['environmentUri'], tags=[session_id], ) yield ds finally: if ds: - delete_s3_dataset(client1, session_env1['environmentUri'], ds) + delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) """ diff --git a/tests_new/integration_tests/modules/s3_datasets/queries.py b/tests_new/integration_tests/modules/s3_datasets/queries.py index 3c7280576..e7aa06376 100644 --- a/tests_new/integration_tests/modules/s3_datasets/queries.py +++ b/tests_new/integration_tests/modules/s3_datasets/queries.py @@ -141,7 +141,7 @@ def import_dataset( 'environmentUri': environmentUri, 'SamlAdminGroupName': group, 'organizationUri': organizationUri, - 'confidentiality': confidentiality or ConfidentialityClassification.Unclassified.value, + 'confidentiality': confidentiality or 'Unclassified', 'autoApprovalEnabled': autoApprovalEnabled, 'bucketName': bucketName, 'KmsKeyAlias': KmsKeyAlias, diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index 2fa8fc999..c068e4b2b 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -5,17 +5,23 @@ import requests from integration_tests.modules.s3_datasets.queries import ( - get_dataset, - update_dataset, + create_folder, delete_dataset, + delete_folder, + delete_table, + get_dataset, get_dataset_assume_role_url, generate_dataset_access_token, get_dataset_presigned_role_url, + preview_table, + start_dataset_profiling_run, + start_glue_crawler, + sync_tables, + update_dataset, ) -from integration_tests.modules.s3_datasets.global_conftest import create_s3_dataset from integration_tests.modules.datasets_base.queries import list_datasets from integration_tests.core.stack.queries import update_stack -from integration_tests.core.stack.utils import check_stack_in_progress, check_stack_ready +from integration_tests.core.stack.utils import check_stack_ready from integration_tests.errors import GqlError log = logging.getLogger(__name__) @@ -149,35 +155,40 @@ def test_persistent_import_kms_s3_dataset_update(client1, persistent_imported_km assert_that(stack.status).is_in('CREATE_COMPLETE', 'UPDATE_COMPLETE') -def test_access_dataset_assume_role_url(client1, client2, session_s3_dataset1): +def test_access_dataset_assume_role_url(client1, session_s3_dataset1): dataset_uri = session_s3_dataset1.datasetUri - assert_that(get_dataset_assume_role_url).raises(GqlError).when_called_with(client2, dataset_uri).contains( - 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri - ) - assert_that(get_dataset_assume_role_url(client1, dataset_uri)).starts_with( 'https://signin.aws.amazon.com/federation' ) -def test_generate_dataset_access_token(client1, client2, session_s3_dataset1): +def test_access_dataset_assume_role_url_unauthorized(client2, session_s3_dataset1): dataset_uri = session_s3_dataset1.datasetUri - assert_that(generate_dataset_access_token).raises(GqlError).when_called_with(client2, dataset_uri).contains( + assert_that(get_dataset_assume_role_url).raises(GqlError).when_called_with(client2, dataset_uri).contains( 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri ) + +def test_generate_dataset_access_token(client1, session_s3_dataset1): + dataset_uri = session_s3_dataset1.datasetUri + creds = generate_dataset_access_token(client1, dataset_uri) assert_that(creds).contains_key('AccessKey', 'SessionKey', 'sessionToken') -def test_get_dataset_presigned_url_upload_data(client1, client2, session_s3_dataset1): +def test_generate_dataset_access_token_unauthorized(client1, client2, session_s3_dataset1): dataset_uri = session_s3_dataset1.datasetUri - assert_that(get_dataset_presigned_role_url).raises(GqlError).when_called_with(client2, dataset_uri).contains( + + assert_that(generate_dataset_access_token).raises(GqlError).when_called_with(client2, dataset_uri).contains( 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri ) + +def test_get_dataset_presigned_url_upload_data(client1, session_s3_dataset1): + dataset_uri = session_s3_dataset1.datasetUri + object_name = './sample_data/books.csv' # TODO: Test + Iterate for Multiple Files with open(object_name, 'rb') as f: @@ -191,17 +202,121 @@ def test_get_dataset_presigned_url_upload_data(client1, client2, session_s3_data http_response.raise_for_status() -# TODO: Write Tests for the following casses + unauth user assertions -# def test_start_crawler() - -# def test_sync_tables() - -# def test_start_table_profiling() - -# def test_preview_table() - -# def test_delete_table() +def test_get_dataset_presigned_url_upload_data_unauthorized(client2, session_s3_dataset1): + dataset_uri = session_s3_dataset1.datasetUri + assert_that(get_dataset_presigned_role_url).raises(GqlError).when_called_with(client2, dataset_uri).contains( + 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri + ) -# def test_create_folder() -# def test_delete_folder() +# +# +# def test_start_crawler(client1, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# response = start_glue_crawler(client1, datasetUri=dataset_uri, input=None) +# assert_that(response.get('Name')).is_equal_to(session_s3_dataset1.GlueCrawlerName) +# assert_that(response.get('status')).is_in(['Pending', 'Running']) +# # TODO: check it can run successfully + check sending prefix +# +# +# def test_start_crawler_unauthorized(client2, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# assert_that(start_glue_crawler).raises(GqlError).when_called_with(client2, dataset_uri).contains( +# 'UnauthorizedOperation', 'CRAWL_DATASET', dataset_uri +# ) +# +# +# def test_sync_tables(client1, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# response = sync_tables(client1, datasetUri=dataset_uri) +# assert_that(response.count).is_equal_to(2) +# +# +# def test_sync_tables_unauthorized(client2, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# assert_that(sync_tables).raises(GqlError).when_called_with(client2, dataset_uri).contains( +# 'UnauthorizedOperation', 'SYNC_DATASET', dataset_uri +# ) +# +# +# def test_start_table_profiling(client1, session_s3_dataset2_with_table): +# dataset, table = session_s3_dataset2_with_table +# table_uri = table.tableUri +# dataset_uri = dataset.datasetUri +# response = start_dataset_profiling_run( +# client1, input={'datasetUri': dataset_uri, 'tableUri': table_uri, 'GlueTableName': table.GlueTableName} +# ) +# assert_that(response.datasetUri).is_equal_to(dataset_uri) +# assert_that(response.status).is_equal_to('RUNNING') +# assert_that(response.GlueTableName).is_equal_to(table.GlueTableName) +# +# +# def test_start_table_profiling_unauthorized(client2, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# assert_that(start_dataset_profiling_run).raises(GqlError).when_called_with(client2, dataset_uri).contains( +# 'UnauthorizedOperation', 'PROFILE_DATASET_TABLE', dataset_uri +# ) +# +# +# def test_preview_table(client1, session_s3_dataset2_with_table): +# dataset, table = session_s3_dataset2_with_table +# table_uri = table.tableUri +# response = preview_table(client1, table_uri) +# assert_that(response.rows).exists() +# +# +# def test_preview_table_unauthorized(client2, session_s3_dataset2_with_table): +# dataset, table = session_s3_dataset2_with_table +# table_uri = table.tableUri +# # TODO: confidentiality levels +# assert_that(preview_table).raises(GqlError).when_called_with(client2, table_uri, {}).contains( +# 'UnauthorizedOperation', 'PREVIEW_DATASET_TABLE', table_uri +# ) +# +# +# def test_delete_table(client1, session_s3_dataset2_with_table): +# dataset, table = session_s3_dataset2_with_table +# # todo +# +# +# def test_delete_table_unauthorized(client2, session_s3_dataset2_with_table): +# dataset, table = session_s3_dataset2_with_table +# table_uri = table.tableUri +# assert_that(delete_table).raises(GqlError).when_called_with(client2, table_uri).contains( +# 'UnauthorizedOperation', 'DELETE_DATASET_TABLE', table_uri +# ) +# +# +# def test_create_folder(client1, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# response = create_folder( +# client1, datasetUri=dataset_uri, input={'prefix': 'folderCreatedInTest', 'label': 'labelFolder'} +# ) +# assert_that(response.S3Prefix).is_equal_to('folderCreatedInTest') +# assert_that(response.label).is_equal_to('labelFolder') +# +# +# def test_create_folder_unauthorized(client2, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# assert_that(create_folder).raises(GqlError).when_called_with(client2, dataset_uri, {}).contains( +# 'UnauthorizedOperation', 'CREATE_DATASET_FOLDER', dataset_uri +# ) +# +# +# def test_delete_folder(client1, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# location = create_folder( +# client1, datasetUri=dataset_uri, input={'prefix': 'folderToDelete', 'label': 'folderToDelete'} +# ) +# response = delete_folder(client1, location.locationUri) +# assert_that(response).is_equal_to(True) +# +# +# def test_delete_folder_unauthorized(client1, client2, session_s3_dataset1): +# dataset_uri = session_s3_dataset1.datasetUri +# location = create_folder( +# client1, datasetUri=dataset_uri, input={'prefix': 'folderToDelete', 'label': 'folderToDelete'} +# ) +# assert_that(delete_folder).raises(GqlError).when_called_with(client2, location.locationUri).contains( +# 'UnauthorizedOperation', 'DELETE_DATASET_FOLDER', location.locationUri +# ) From 5ea8b6bb5f0d8d2e56685c528fc3c324c5f43764 Mon Sep 17 00:00:00 2001 From: dlpzx Date: Mon, 8 Jul 2024 15:11:05 +0200 Subject: [PATCH 22/34] revert persistent environment --- .../modules/s3_datasets/global_conftest.py | 61 +++++++++---------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index 7623fdb45..ab7a1a8a2 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -1,5 +1,4 @@ import logging -import re import pytest import boto3 from integration_tests.client import GqlError @@ -32,7 +31,7 @@ def create_s3_dataset(client, owner, group, org_uri, env_uri, tags=[], autoAppro autoApprovalEnabled=autoApprovalEnabled, confidentiality=confidentiality, ) - check_stack_ready(client, env_uri, dataset.stack.stackUri) + check_stack_ready(client, env_uri, dataset.stack.stackUri, env_uri, 'dataset') return get_dataset(client, dataset.datasetUri) @@ -63,12 +62,12 @@ def import_s3_dataset( autoApprovalEnabled=autoApprovalEnabled, confidentiality=confidentiality, ) - check_stack_ready(client, env_uri, dataset.stack.stackUri) + check_stack_ready(client, env_uri, dataset.stack.stackUri, env_uri, 'dataset') return get_dataset(client, dataset.datasetUri) def delete_s3_dataset(client, env_uri, dataset): - check_stack_ready(client, env_uri, dataset.stack.stackUri) + check_stack_ready(client, env_uri, dataset.stack.stackUri, env_uri, 'dataset') try: return delete_dataset(client, dataset.datasetUri) except GqlError: @@ -83,7 +82,7 @@ def delete_s3_dataset(client, env_uri, dataset): @pytest.fixture(scope='session') -def session_s3_dataset1(client1, group1, org1, persistent_env1, session_id, testdata): +def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): ds = None try: ds = create_s3_dataset( @@ -91,17 +90,17 @@ def session_s3_dataset1(client1, group1, org1, persistent_env1, session_id, test owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=persistent_env1['environmentUri'], + env_uri=session_env1['environmentUri'], tags=[session_id], ) yield ds finally: if ds: - delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) + delete_s3_dataset(client1, session_env1['environmentUri'], ds) @pytest.fixture(scope='session') -def session_s3_dataset2_with_table(client1, group1, org1, persistent_env1, session_id, testdata): +def session_s3_dataset2_with_table(client1, group1, org1, session_env1, session_id, testdata): ds = None try: ds = create_s3_dataset( @@ -109,7 +108,7 @@ def session_s3_dataset2_with_table(client1, group1, org1, persistent_env1, sessi owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=persistent_env1['environmentUri'], + env_uri=session_env1['environmentUri'], tags=[session_id], ) creds = generate_dataset_access_token(client1, ds.datasetUri) @@ -126,18 +125,18 @@ def session_s3_dataset2_with_table(client1, group1, org1, persistent_env1, sessi yield ds, response.get('nodes', [])[0] finally: if ds: - delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) + delete_s3_dataset(client1, session_env1['environmentUri'], ds) @pytest.fixture(scope='session') def session_imported_sse_s3_dataset1( - client1, group1, org1, persistent_env1, session_id, testdata, persistent_env1_aws_client + client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client ): ds = None bucket = None bucket_name = f'sessionimportedsses3{session_id}' try: - bucket = S3Client(session=persistent_env1_aws_client, region=persistent_env1['region']).create_bucket( + bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( bucket_name=bucket_name, kms_key_id=None ) @@ -146,21 +145,21 @@ def session_imported_sse_s3_dataset1( owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=persistent_env1['environmentUri'], + env_uri=session_env1['environmentUri'], tags=[session_id], bucket=bucket, ) yield ds finally: if ds: - delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) + delete_s3_dataset(client1, session_env1['environmentUri'], ds) if bucket: - S3Client(session=persistent_env1_aws_client, region=persistent_env1['region']).delete_bucket(bucket) + S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(bucket) @pytest.fixture(scope='session') def session_imported_kms_s3_dataset1( - client1, group1, org1, persistent_env1, session_id, testdata, persistent_env1_aws_client + client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client ): ds = None bucket = None @@ -169,14 +168,14 @@ def session_imported_kms_s3_dataset1( resource_name = f'sessionimportedkms{session_id}' try: kms_key_id, kms_alias = KMSClient( - session=persistent_env1_aws_client, - account_id=persistent_env1['AwsAccountId'], - region=persistent_env1['region'], + session=session_env1_aws_client, + account_id=session_env1['AwsAccountId'], + region=session_env1['region'], ).create_key_with_alias(resource_name) - bucket = S3Client(session=persistent_env1_aws_client, region=persistent_env1['region']).create_bucket( + bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( bucket_name=resource_name, kms_key_id=kms_key_id ) - database = GlueClient(session=persistent_env1_aws_client, region=persistent_env1['region']).create_database( + database = GlueClient(session=session_env1_aws_client, region=session_env1['region']).create_database( database_name=resource_name, bucket=resource_name ) ds = import_s3_dataset( @@ -184,7 +183,7 @@ def session_imported_kms_s3_dataset1( owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=persistent_env1['environmentUri'], + env_uri=session_env1['environmentUri'], tags=[session_id], bucket=bucket, kms_alias=kms_alias, @@ -193,17 +192,17 @@ def session_imported_kms_s3_dataset1( yield ds finally: if ds: - delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) + delete_s3_dataset(client1, session_env1['environmentUri'], ds) if bucket: - S3Client(session=persistent_env1_aws_client, region=persistent_env1['region']).delete_bucket(bucket) + S3Client(session=session_env1_aws_client, region=session_env1['region']).delete_bucket(bucket) if kms_alias: KMSClient( - session=persistent_env1_aws_client, - account_id=persistent_env1['AwsAccountId'], - region=persistent_env1['region'], + session=session_env1_aws_client, + account_id=session_env1['AwsAccountId'], + region=session_env1['region'], ).delete_key_by_alias(kms_alias) if database: - GlueClient(session=persistent_env1_aws_client, region=persistent_env1['region']).delete_database(database) + GlueClient(session=session_env1_aws_client, region=session_env1['region']).delete_database(database) """ @@ -213,7 +212,7 @@ def session_imported_kms_s3_dataset1( @pytest.fixture(scope='function') -def temp_s3_dataset1(client1, group1, org1, persistent_env1, session_id, testdata): +def temp_s3_dataset1(client1, group1, org1, session_env1, session_id, testdata): ds = None try: ds = create_s3_dataset( @@ -221,13 +220,13 @@ def temp_s3_dataset1(client1, group1, org1, persistent_env1, session_id, testdat owner='someone', group=group1, org_uri=org1['organizationUri'], - env_uri=persistent_env1['environmentUri'], + env_uri=session_env1['environmentUri'], tags=[session_id], ) yield ds finally: if ds: - delete_s3_dataset(client1, persistent_env1['environmentUri'], ds) + delete_s3_dataset(client1, session_env1['environmentUri'], ds) """ From 520a34e561e5bfa6a9e2530106b17329234ed8e3 Mon Sep 17 00:00:00 2001 From: dlpzx Date: Mon, 8 Jul 2024 15:43:39 +0200 Subject: [PATCH 23/34] Fix check_stack_ready in dataset creation --- .../modules/s3_datasets/global_conftest.py | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index ab7a1a8a2..66aa09589 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -31,7 +31,13 @@ def create_s3_dataset(client, owner, group, org_uri, env_uri, tags=[], autoAppro autoApprovalEnabled=autoApprovalEnabled, confidentiality=confidentiality, ) - check_stack_ready(client, env_uri, dataset.stack.stackUri, env_uri, 'dataset') + check_stack_ready( + client=client, + env_uri=env_uri, + stack_uri=dataset.stack.stackUri, + target_uri=dataset.datasetUri, + target_type='dataset', + ) return get_dataset(client, dataset.datasetUri) @@ -62,12 +68,24 @@ def import_s3_dataset( autoApprovalEnabled=autoApprovalEnabled, confidentiality=confidentiality, ) - check_stack_ready(client, env_uri, dataset.stack.stackUri, env_uri, 'dataset') + check_stack_ready( + client=client, + env_uri=env_uri, + stack_uri=dataset.stack.stackUri, + target_uri=dataset.datasetUri, + target_type='dataset', + ) return get_dataset(client, dataset.datasetUri) def delete_s3_dataset(client, env_uri, dataset): - check_stack_ready(client, env_uri, dataset.stack.stackUri, env_uri, 'dataset') + check_stack_ready( + client=client, + env_uri=env_uri, + stack_uri=dataset.stack.stackUri, + target_uri=dataset.datasetUri, + target_type='dataset', + ) try: return delete_dataset(client, dataset.datasetUri) except GqlError: From 972c88391985e2e4728d3391002b9518ac9eca73 Mon Sep 17 00:00:00 2001 From: dlpzx Date: Mon, 8 Jul 2024 18:51:42 +0200 Subject: [PATCH 24/34] Revert session environment and add tests --- .../core/environment/cdk/environment_stack.py | 31 ++++++- tests_new/integration_tests/conftest.py | 7 ++ .../core/environment/global_conftest.py | 33 ++++++- .../modules/s3_datasets/aws_clients.py | 58 +++++++++++- .../modules/s3_datasets/global_conftest.py | 91 ++++++++++++------- .../modules/s3_datasets/test_s3_dataset.py | 20 ++-- 6 files changed, 186 insertions(+), 54 deletions(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index 776ef9572..d409074ee 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -577,21 +577,42 @@ def create_integration_tests_role(self): ) self.test_role.add_to_policy( iam.PolicyStatement( - actions=['s3:CreateBucket', 's3:DeleteBucket'], + actions=['s3:CreateBucket', 's3:DeleteBucket', 's3:PutEncryptionConfiguration'], effect=iam.Effect.ALLOW, - resources=['*'], + resources=['arn:aws:s3:::dataalltesting*'], ) ) self.test_role.add_to_policy( iam.PolicyStatement( - actions=['glue:createDatabase', 'glue:createTable', 'glue:deleteDatabase'], + actions=['glue:CreateDatabase', 'glue:DeleteDatabase'], effect=iam.Effect.ALLOW, - resources=['*'], + resources=[ + f'arn:aws:glue:*:{self.account}:catalog', + f'arn:aws:glue::{self.account}:database/dataalltesting*', + ], + ) + ) + self.test_role.add_to_policy( + iam.PolicyStatement( + actions=['kms:CreateAlias', 'kms:DeleteAlias'], + effect=iam.Effect.ALLOW, + resources=[f'arn:aws:kms::{self.account}:alias/dataalltesting'], ) ) + self.test_role.add_to_policy( iam.PolicyStatement( - actions=['kms:CreateKey', 'kms:CreateAlias', 'kms:DeleteKey', 'kms:ListAliases'], + actions=[ + 'lakeformation:GrantPermissions', + 'lakeformation:PutDataLakeSettings', + 'kms:CreateKey', + 'kms:ListAliases', + 'kms:GetKeyPolicy', + 'kms:PutKeyPolicy', + 'kms:ScheduleKeyDeletion', + 'kms:TagResource', + 's3:GetBucketVersioning', + ], effect=iam.Effect.ALLOW, resources=['*'], ) diff --git a/tests_new/integration_tests/conftest.py b/tests_new/integration_tests/conftest.py index 7f09b9231..2ca8f5f5f 100644 --- a/tests_new/integration_tests/conftest.py +++ b/tests_new/integration_tests/conftest.py @@ -1,6 +1,7 @@ import datetime import logging import os +import re import sys from dataclasses import dataclass @@ -139,3 +140,9 @@ def clientTenant(userTenant) -> Client: @pytest.fixture(scope='session') def session_id() -> str: return datetime.datetime.utcnow().isoformat() + + +@pytest.fixture(scope='session') +def resources_prefix(session_id) -> str: + re.sub('[^a-zA-Z0-9-]', '', session_id).lower() + return f'dataalltesting{session_id}' diff --git a/tests_new/integration_tests/core/environment/global_conftest.py b/tests_new/integration_tests/core/environment/global_conftest.py index b198aac7d..fdb261119 100644 --- a/tests_new/integration_tests/core/environment/global_conftest.py +++ b/tests_new/integration_tests/core/environment/global_conftest.py @@ -51,11 +51,40 @@ def session_env1(client1, group1, org1, session_id, testdata): @pytest.fixture(scope='session') -def session_env1_aws_client(session_env1, session_id): +def session_env1_integration_role_arn(session_env1): + yield f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role-{session_env1.region}' + + +@pytest.fixture(scope='session') +def session_env1_aws_client(session_env1, session_id, session_env1_integration_role_arn): try: base_session = boto3.Session() - role_arn = f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role-{session_env1.region}' response = base_session.client('sts', region_name=session_env1.region).assume_role( + RoleArn=session_env1_integration_role_arn, RoleSessionName=session_env1_integration_role_arn.split('/')[1] + ) + yield boto3.Session( + aws_access_key_id=response['Credentials']['AccessKeyId'], + aws_secret_access_key=response['Credentials']['SecretAccessKey'], + aws_session_token=response['Credentials']['SessionToken'], + ) + except: + log.exception('Failed to assume environment integration test role') + raise + + +@pytest.fixture(scope='session') +def persistent_env1_integration_role_arn(persistent_env1): + yield f'arn:aws:iam::{persistent_env1.AwsAccountId}:role/dataall-integration-tests-role-{persistent_env1.region}' + + +@pytest.fixture(scope='session') +def persistent_env1_aws_client(persistent_env1, session_id): + try: + base_session = boto3.Session() + role_arn = ( + f'arn:aws:iam::{persistent_env1.AwsAccountId}:role/dataall-integration-tests-role-{persistent_env1.region}' + ) + response = base_session.client('sts', region_name=persistent_env1.region).assume_role( RoleArn=role_arn, RoleSessionName=role_arn.split('/')[1] ) yield boto3.Session( diff --git a/tests_new/integration_tests/modules/s3_datasets/aws_clients.py b/tests_new/integration_tests/modules/s3_datasets/aws_clients.py index 5d9bdb89b..ff5ac979a 100644 --- a/tests_new/integration_tests/modules/s3_datasets/aws_clients.py +++ b/tests_new/integration_tests/modules/s3_datasets/aws_clients.py @@ -19,7 +19,7 @@ def create_bucket(self, bucket_name, kms_key_id=None): :param kms_key_id: KMS key ID to use for encryption if encryption_type is 'aws:kms' :return: None """ - bucket_name = re.sub('[^a-zA-Z0-9-]', '', bucket_name) + bucket_name = re.sub('[^a-zA-Z0-9-]', '', bucket_name).lower() encryption_type = 'aws:kms' if kms_key_id else 'AES256' encryption_config = ( @@ -77,7 +77,7 @@ def create_key_with_alias(self, alias_name): try: response = self._client.create_key() key_id = response['KeyMetadata']['KeyId'] - alias_name = re.sub('[^a-zA-Z0-9-]', '', alias_name) + alias_name = re.sub('[^a-zA-Z0-9-]', '', alias_name).lower() self._client.create_alias(AliasName=f'alias/{alias_name}', TargetKeyId=key_id) self._put_key_policy(key_id) @@ -154,7 +154,7 @@ def __init__(self, session, region): def create_database(self, database_name, bucket): try: - database_name = re.sub('[^a-zA-Z0-9_]', '', database_name) + database_name = re.sub('[^a-zA-Z0-9_]', '', database_name).lower() self._client.create_database(DatabaseInput={'Name': database_name, 'LocationUri': f's3://{bucket}/'}) return database_name except ClientError as e: @@ -193,3 +193,55 @@ def delete_database(self, database_name): log.exception(f"Glue database '{database_name}' does not exist.") else: log.exception(f'Error deleting Glue database: {e}') + + +class LakeFormationClient: + def __init__(self, session, region): + self._client = session.client('lakeformation', region_name=region) + + def add_role_to_datalake_admin(self, role_arn): + try: + response = self._client.get_data_lake_settings() + existing_admins = response.get('DataLakeSettings', {}).get('DataLakeAdmins', []) + if existing_admins: + existing_admins = [admin['DataLakePrincipalIdentifier'] for admin in existing_admins] + + new_admins = [role_arn] + new_admins.extend(existing_admins or []) + self._client.put_data_lake_settings( + DataLakeSettings={ + 'DataLakeAdmins': [{'DataLakePrincipalIdentifier': principal} for principal in new_admins] + }, + ) + return existing_admins + except ClientError as e: + log.exception(f'Error granting lake formation permissions: {e}') + + def remove_role_from_datalake_admin(self, old_existing_principals): + try: + self._client.put_data_lake_settings( + DataLakeSettings={ + 'DataLakeAdmins': [ + {'DataLakePrincipalIdentifier': principal} for principal in old_existing_principals + ] + }, + ) + return True + except ClientError as e: + log.exception(f'Error granting lake formation permissions: {e}') + + def grant_create_database(self, role_arn): + """ + Grants permissions to create a Glue database in catalog. + :param role_arn: principal to grant permissions + :return: None + """ + try: + self._client.grant_permissions( + Principal={'DataLakePrincipalIdentifier': role_arn}, + Resource={'Catalog': {}}, + Permissions=['CREATE_DATABASE'], + ) + return True + except ClientError as e: + log.exception(f'Error granting permissions to create database: {e}') diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index 66aa09589..46744a90c 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -14,7 +14,7 @@ ) from tests_new.integration_tests.modules.datasets_base.queries import list_datasets -from integration_tests.modules.s3_datasets.aws_clients import S3Client, KMSClient, GlueClient +from integration_tests.modules.s3_datasets.aws_clients import S3Client, KMSClient, GlueClient, LakeFormationClient log = logging.getLogger(__name__) @@ -117,42 +117,43 @@ def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdat delete_s3_dataset(client1, session_env1['environmentUri'], ds) -@pytest.fixture(scope='session') -def session_s3_dataset2_with_table(client1, group1, org1, session_env1, session_id, testdata): - ds = None - try: - ds = create_s3_dataset( - client1, - owner='someone', - group=group1, - org_uri=org1['organizationUri'], - env_uri=session_env1['environmentUri'], - tags=[session_id], - ) - creds = generate_dataset_access_token(client1, ds.datasetUri) - dataset_session = boto3.Session( - aws_access_key_id=creds['AccessKey'], - aws_secret_access_key=creds['SessionKey'], - aws_session_token=creds['sessionToken'], - ) - GlueClient(dataset_session, ds.region).create_table( - database_name=ds.GlueDatabaseName, table_name='integrationtest', bucket=ds.S3Bucket - ) - response = sync_tables(client1, datasetUri=ds.datasetUri) - - yield ds, response.get('nodes', [])[0] - finally: - if ds: - delete_s3_dataset(client1, session_env1['environmentUri'], ds) +# +# @pytest.fixture(scope='session') +# def session_s3_dataset2_with_table(client1, group1, org1, session_env1, session_id, testdata): +# ds = None +# try: +# ds = create_s3_dataset( +# client1, +# owner='someone', +# group=group1, +# org_uri=org1['organizationUri'], +# env_uri=session_env1['environmentUri'], +# tags=[session_id], +# ) +# creds = generate_dataset_access_token(client1, ds.datasetUri) +# dataset_session = boto3.Session( +# aws_access_key_id=creds['AccessKey'], +# aws_secret_access_key=creds['SessionKey'], +# aws_session_token=creds['sessionToken'], +# ) +# GlueClient(dataset_session, ds.region).create_table( +# database_name=ds.GlueDatabaseName, table_name='integrationtest', bucket=ds.S3Bucket +# ) +# response = sync_tables(client1, datasetUri=ds.datasetUri) +# +# yield ds, response.get('nodes', [])[0] +# finally: +# if ds: +# delete_s3_dataset(client1, session_env1['environmentUri'], ds) @pytest.fixture(scope='session') def session_imported_sse_s3_dataset1( - client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client + client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client, resources_prefix ): ds = None bucket = None - bucket_name = f'sessionimportedsses3{session_id}' + bucket_name = f'{resources_prefix}importedsses3' try: bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( bucket_name=bucket_name, kms_key_id=None @@ -167,6 +168,8 @@ def session_imported_sse_s3_dataset1( tags=[session_id], bucket=bucket, ) + if not bucket: + raise Exception('Error creating import dataset AWS resources') yield ds finally: if ds: @@ -177,13 +180,22 @@ def session_imported_sse_s3_dataset1( @pytest.fixture(scope='session') def session_imported_kms_s3_dataset1( - client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client + client1, + group1, + org1, + session_env1, + session_id, + testdata, + session_env1_aws_client, + session_env1_integration_role_arn, + resources_prefix, ): ds = None bucket = None database = None + existing_lf_admins = [] kms_alias = None - resource_name = f'sessionimportedkms{session_id}' + resource_name = f'{resources_prefix}importedkms' try: kms_key_id, kms_alias = KMSClient( session=session_env1_aws_client, @@ -193,9 +205,14 @@ def session_imported_kms_s3_dataset1( bucket = S3Client(session=session_env1_aws_client, region=session_env1['region']).create_bucket( bucket_name=resource_name, kms_key_id=kms_key_id ) - database = GlueClient(session=session_env1_aws_client, region=session_env1['region']).create_database( - database_name=resource_name, bucket=resource_name - ) + lf_client = LakeFormationClient(session=session_env1_aws_client, region=session_env1['region']) + existing_lf_admins = lf_client.add_role_to_datalake_admin(role_arn=session_env1_integration_role_arn) + if lf_client.grant_create_database(role_arn=session_env1_integration_role_arn): + database = GlueClient(session=session_env1_aws_client, region=session_env1['region']).create_database( + database_name=resource_name, bucket=resource_name + ) + if None in [bucket, database, kms_alias]: + raise Exception('Error creating import dataset AWS resources') ds = import_s3_dataset( client1, owner='someone', @@ -219,6 +236,10 @@ def session_imported_kms_s3_dataset1( account_id=session_env1['AwsAccountId'], region=session_env1['region'], ).delete_key_by_alias(kms_alias) + if existing_lf_admins: + LakeFormationClient( + session=session_env1_aws_client, region=session_env1['region'] + ).remove_role_from_datalake_admin(existing_lf_admins) if database: GlueClient(session=session_env1_aws_client, region=session_env1['region']).delete_database(database) diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index c068e4b2b..1a03be304 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -1,4 +1,5 @@ import logging +import json from datetime import datetime import time from assertpy import assert_that @@ -45,11 +46,10 @@ def test_get_s3_dataset(client1, session_s3_dataset1): assert_that(dataset.label).is_equal_to(session_s3_dataset1.label) -def test_get_s3_dataset_unauthorized(client2, session_s3_dataset1): - dataset_uri = session_s3_dataset1.datasetUri - assert_that(get_dataset).raises(GqlError).when_called_with(client2, dataset_uri).contains( - 'UnauthorizedOperation', dataset_uri - ) +def test_get_s3_dataset_non_admin(client2, session_s3_dataset1): + dataset = get_dataset(client2, session_s3_dataset1.datasetUri) + assert dataset + assert_that(dataset.userRoleForDataset).is_equal_to('NoPermission') def test_list_datasets( @@ -67,7 +67,9 @@ def test_list_datasets_unauthorized( def test_modify_dataset(client1, session_s3_dataset1): test_description = f'a test description {datetime.utcnow().isoformat()}' dataset_uri = session_s3_dataset1.datasetUri - updated_dataset = update_dataset(client1, dataset_uri, {'description': test_description}) + updated_dataset = update_dataset( + client1, dataset_uri, {'description': test_description, 'KmsAlias': session_s3_dataset1.KmsAlias} + ) assert_that(updated_dataset).contains_entry(datasetUri=dataset_uri, description=test_description) env = get_dataset(client1, dataset_uri) assert_that(env).contains_entry(datasetUri=dataset_uri, description=test_description) @@ -77,7 +79,7 @@ def test_modify_dataset_unauthorized(client1, client2, session_s3_dataset1): test_description = f'unauthorized {datetime.utcnow().isoformat()}' dataset_uri = session_s3_dataset1.datasetUri assert_that(update_dataset).raises(GqlError).when_called_with( - client2, dataset_uri, {'description': test_description} + client2, dataset_uri, {'description': test_description, 'KmsAlias': session_s3_dataset1.KmsAlias} ).contains('UnauthorizedOperation', dataset_uri) dataset = get_dataset(client1, dataset_uri) assert_that(dataset).contains_entry(datasetUri=dataset_uri).does_not_contain_entry(description=test_description) @@ -175,7 +177,7 @@ def test_generate_dataset_access_token(client1, session_s3_dataset1): dataset_uri = session_s3_dataset1.datasetUri creds = generate_dataset_access_token(client1, dataset_uri) - assert_that(creds).contains_key('AccessKey', 'SessionKey', 'sessionToken') + assert_that(json.loads(creds)).contains_key('AccessKey', 'SessionKey', 'sessionToken') def test_generate_dataset_access_token_unauthorized(client1, client2, session_s3_dataset1): @@ -204,7 +206,7 @@ def test_get_dataset_presigned_url_upload_data(client1, session_s3_dataset1): def test_get_dataset_presigned_url_upload_data_unauthorized(client2, session_s3_dataset1): dataset_uri = session_s3_dataset1.datasetUri - assert_that(get_dataset_presigned_role_url).raises(GqlError).when_called_with(client2, dataset_uri).contains( + assert_that(get_dataset_presigned_role_url).raises(GqlError).when_called_with(client2, dataset_uri, input={'prefix': 'sample_data', 'fileName': 'name'}).contains( 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri ) From 7b1c9425c4a1faba0e0f70142d84fdf5efc40f9e Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Mon, 8 Jul 2024 14:56:38 -0400 Subject: [PATCH 25/34] fix integration role datasets --- .../core/environment/cdk/environment_stack.py | 26 +++++++++++-------- .../modules/s3_datasets/aws_clients.py | 13 +++++++--- .../modules/s3_datasets/test_s3_dataset.py | 6 ++--- 3 files changed, 27 insertions(+), 18 deletions(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index d409074ee..9198bbf89 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -577,7 +577,14 @@ def create_integration_tests_role(self): ) self.test_role.add_to_policy( iam.PolicyStatement( - actions=['s3:CreateBucket', 's3:DeleteBucket', 's3:PutEncryptionConfiguration'], + actions=[ + 's3:CreateBucket', + 's3:DeleteBucket', + 's3:PutEncryptionConfiguration', + 's3:List*', + 's3:GetObject*', + 's3:DeleteObject', + ], effect=iam.Effect.ALLOW, resources=['arn:aws:s3:::dataalltesting*'], ) @@ -587,25 +594,22 @@ def create_integration_tests_role(self): actions=['glue:CreateDatabase', 'glue:DeleteDatabase'], effect=iam.Effect.ALLOW, resources=[ - f'arn:aws:glue:*:{self.account}:catalog', - f'arn:aws:glue::{self.account}:database/dataalltesting*', + f'arn:aws:glue:{self.region}:{self.account}:catalog', + f'arn:aws:glue:{self.region}:{self.account}:database/dataalltesting*', + f'arn:aws:glue:{self.region}:{self.account}:table/dataalltesting*', + f'arn:aws:glue:{self.region}:{self.account}:userDefinedFunction/dataalltesting*', ], ) ) - self.test_role.add_to_policy( - iam.PolicyStatement( - actions=['kms:CreateAlias', 'kms:DeleteAlias'], - effect=iam.Effect.ALLOW, - resources=[f'arn:aws:kms::{self.account}:alias/dataalltesting'], - ) - ) - self.test_role.add_to_policy( iam.PolicyStatement( actions=[ 'lakeformation:GrantPermissions', 'lakeformation:PutDataLakeSettings', + 'lakeformation:GetDataLakeSettings', 'kms:CreateKey', + 'kms:CreateAlias', + 'kms:DeleteAlias', 'kms:ListAliases', 'kms:GetKeyPolicy', 'kms:PutKeyPolicy', diff --git a/tests_new/integration_tests/modules/s3_datasets/aws_clients.py b/tests_new/integration_tests/modules/s3_datasets/aws_clients.py index ff5ac979a..fc623f364 100644 --- a/tests_new/integration_tests/modules/s3_datasets/aws_clients.py +++ b/tests_new/integration_tests/modules/s3_datasets/aws_clients.py @@ -91,12 +91,11 @@ def _put_key_policy(self, key_id): policy = json.loads(response['Policy']) # The updated policy replaces the existing policy. Add a new statement to # the list along with the original policy statements. - principal = f'arn:aws:iam::{self._account_id}:role/dataallPivotRole-cdk' policy['Statement'].append( { 'Sid': 'Allow access for PivotRole', 'Effect': 'Allow', - 'Principal': {'AWS': principal}, + 'Principal': {'AWS': '*'}, 'Action': [ 'kms:Decrypt', 'kms:Encrypt', @@ -108,6 +107,9 @@ def _put_key_policy(self, key_id): 'kms:UntagResource', ], 'Resource': '*', + 'Condition': { + 'ArnLike': {'aws:PrincipalArn': f'arn:aws:iam::{self._account_id}:role/dataallPivotRole*'} + }, } ) try: @@ -116,7 +118,7 @@ def _put_key_policy(self, key_id): log.exception( "Couldn't set policy for key %s. Here's why %s", key_id, - err.response['Error']['Message'], + err, ) def delete_key_by_alias(self, alias_name): @@ -130,6 +132,7 @@ def delete_key_by_alias(self, alias_name): if key_id: # Schedule the key for deletion self._client.schedule_key_deletion(KeyId=key_id) + self._client.delete_alias(AliasName=f'alias/{alias_name}') except ClientError as e: log.exception(f'Error deleting KMS key by alias: {e}') @@ -210,7 +213,9 @@ def add_role_to_datalake_admin(self, role_arn): new_admins.extend(existing_admins or []) self._client.put_data_lake_settings( DataLakeSettings={ - 'DataLakeAdmins': [{'DataLakePrincipalIdentifier': principal} for principal in new_admins] + 'DataLakeAdmins': [ + {'DataLakePrincipalIdentifier': principal} for principal in list(set(new_admins)) + ] }, ) return existing_admins diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index 1a03be304..3d94e8a7c 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -206,9 +206,9 @@ def test_get_dataset_presigned_url_upload_data(client1, session_s3_dataset1): def test_get_dataset_presigned_url_upload_data_unauthorized(client2, session_s3_dataset1): dataset_uri = session_s3_dataset1.datasetUri - assert_that(get_dataset_presigned_role_url).raises(GqlError).when_called_with(client2, dataset_uri, input={'prefix': 'sample_data', 'fileName': 'name'}).contains( - 'UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri - ) + assert_that(get_dataset_presigned_role_url).raises(GqlError).when_called_with( + client2, dataset_uri, input={'prefix': 'sample_data', 'fileName': 'name'} + ).contains('UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri) # From d9042dc984d17b6884bd850947c3791ea6a3ac4e Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Mon, 8 Jul 2024 21:58:45 -0400 Subject: [PATCH 26/34] Fix presigned URL upload test --- .../s3_datasets/services/dataset_service.py | 1 + .../modules/s3_datasets/test_s3_dataset.py | 21 ++++++++++++------- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/backend/dataall/modules/s3_datasets/services/dataset_service.py b/backend/dataall/modules/s3_datasets/services/dataset_service.py index 58561112a..a8bdbc700 100644 --- a/backend/dataall/modules/s3_datasets/services/dataset_service.py +++ b/backend/dataall/modules/s3_datasets/services/dataset_service.py @@ -218,6 +218,7 @@ def get_dataset(uri): return dataset @staticmethod + @ResourcePolicyService.has_resource_permission(CREDENTIALS_DATASET) def get_file_upload_presigned_url(uri: str, data: dict): with get_context().db_engine.scoped_session() as session: dataset = DatasetRepository.get_dataset_by_uri(session, uri) diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index 3d94e8a7c..4064c8e8c 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -1,4 +1,5 @@ import logging +import os import json from datetime import datetime import time @@ -189,17 +190,21 @@ def test_generate_dataset_access_token_unauthorized(client1, client2, session_s3 def test_get_dataset_presigned_url_upload_data(client1, session_s3_dataset1): + # TODO: Test + Iterate for Multiple Files dataset_uri = session_s3_dataset1.datasetUri + file_path = os.path.join(os.path.dirname(__file__), 'sample_data/csv_table/books.csv') + prefix = 'csv_table' + file_name = 'books.csv' - object_name = './sample_data/books.csv' - # TODO: Test + Iterate for Multiple Files - with open(object_name, 'rb') as f: - response = get_dataset_presigned_role_url( - client1, dataset_uri, input={'prefix': 'sample_data', 'fileName': f.name} - ) - assert_that(response).contains_key('url', 'fields') + response = json.loads( + get_dataset_presigned_role_url(client1, dataset_uri, input={'prefix': prefix, 'fileName': file_name}) + ) + assert_that(response).contains_key('url', 'fields') + with open(file_path, 'rb') as f: + # Create a dictionary with the form fields and the file data + files = {'file': (f'{prefix}/{file_name}', f)} - files = {'file': (object_name, f)} + # Send the POST request with the presigned URL, form fields, and file data http_response = requests.post(response['url'], data=response['fields'], files=files) http_response.raise_for_status() From 112ec464262072f450de9be581899d7d4a3f7618 Mon Sep 17 00:00:00 2001 From: dlpzx Date: Tue, 9 Jul 2024 14:50:56 +0200 Subject: [PATCH 27/34] Remove commented code and increase sleep time for update dataset --- .../modules/s3_datasets/global_conftest.py | 30 ----- .../modules/s3_datasets/test_s3_dataset.py | 119 +----------------- 2 files changed, 3 insertions(+), 146 deletions(-) diff --git a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py index 46744a90c..09c4b2e7f 100644 --- a/tests_new/integration_tests/modules/s3_datasets/global_conftest.py +++ b/tests_new/integration_tests/modules/s3_datasets/global_conftest.py @@ -117,36 +117,6 @@ def session_s3_dataset1(client1, group1, org1, session_env1, session_id, testdat delete_s3_dataset(client1, session_env1['environmentUri'], ds) -# -# @pytest.fixture(scope='session') -# def session_s3_dataset2_with_table(client1, group1, org1, session_env1, session_id, testdata): -# ds = None -# try: -# ds = create_s3_dataset( -# client1, -# owner='someone', -# group=group1, -# org_uri=org1['organizationUri'], -# env_uri=session_env1['environmentUri'], -# tags=[session_id], -# ) -# creds = generate_dataset_access_token(client1, ds.datasetUri) -# dataset_session = boto3.Session( -# aws_access_key_id=creds['AccessKey'], -# aws_secret_access_key=creds['SessionKey'], -# aws_session_token=creds['sessionToken'], -# ) -# GlueClient(dataset_session, ds.region).create_table( -# database_name=ds.GlueDatabaseName, table_name='integrationtest', bucket=ds.S3Bucket -# ) -# response = sync_tables(client1, datasetUri=ds.datasetUri) -# -# yield ds, response.get('nodes', [])[0] -# finally: -# if ds: -# delete_s3_dataset(client1, session_env1['environmentUri'], ds) - - @pytest.fixture(scope='session') def session_imported_sse_s3_dataset1( client1, group1, org1, session_env1, session_id, testdata, session_env1_aws_client, resources_prefix diff --git a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py index 4064c8e8c..98eb956cd 100644 --- a/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py +++ b/tests_new/integration_tests/modules/s3_datasets/test_s3_dataset.py @@ -108,7 +108,7 @@ def test_persistent_s3_dataset_update(client1, persistent_s3_dataset1): # TODO: Come up with better way to handle wait in progress if applicable # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) # check_stack_in_progress(client1, env_uri, stack_uri) - time.sleep(10) + time.sleep(120) stack = check_stack_ready( client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type @@ -129,7 +129,7 @@ def test_persistent_import_sse_s3_dataset_update(client1, persistent_imported_ss # TODO: Come up with better way to handle wait in progress if applicable # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) # check_stack_in_progress(client1, env_uri, stack_uri) - time.sleep(10) + time.sleep(120) stack = check_stack_ready( client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type @@ -150,7 +150,7 @@ def test_persistent_import_kms_s3_dataset_update(client1, persistent_imported_km # TODO: Come up with better way to handle wait in progress if applicable # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) # check_stack_in_progress(client1, env_uri, stack_uri) - time.sleep(10) + time.sleep(120) stack = check_stack_ready( client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=dataset_uri, target_type=target_type @@ -214,116 +214,3 @@ def test_get_dataset_presigned_url_upload_data_unauthorized(client2, session_s3_ assert_that(get_dataset_presigned_role_url).raises(GqlError).when_called_with( client2, dataset_uri, input={'prefix': 'sample_data', 'fileName': 'name'} ).contains('UnauthorizedOperation', 'CREDENTIALS_DATASET', dataset_uri) - - -# -# -# def test_start_crawler(client1, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# response = start_glue_crawler(client1, datasetUri=dataset_uri, input=None) -# assert_that(response.get('Name')).is_equal_to(session_s3_dataset1.GlueCrawlerName) -# assert_that(response.get('status')).is_in(['Pending', 'Running']) -# # TODO: check it can run successfully + check sending prefix -# -# -# def test_start_crawler_unauthorized(client2, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# assert_that(start_glue_crawler).raises(GqlError).when_called_with(client2, dataset_uri).contains( -# 'UnauthorizedOperation', 'CRAWL_DATASET', dataset_uri -# ) -# -# -# def test_sync_tables(client1, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# response = sync_tables(client1, datasetUri=dataset_uri) -# assert_that(response.count).is_equal_to(2) -# -# -# def test_sync_tables_unauthorized(client2, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# assert_that(sync_tables).raises(GqlError).when_called_with(client2, dataset_uri).contains( -# 'UnauthorizedOperation', 'SYNC_DATASET', dataset_uri -# ) -# -# -# def test_start_table_profiling(client1, session_s3_dataset2_with_table): -# dataset, table = session_s3_dataset2_with_table -# table_uri = table.tableUri -# dataset_uri = dataset.datasetUri -# response = start_dataset_profiling_run( -# client1, input={'datasetUri': dataset_uri, 'tableUri': table_uri, 'GlueTableName': table.GlueTableName} -# ) -# assert_that(response.datasetUri).is_equal_to(dataset_uri) -# assert_that(response.status).is_equal_to('RUNNING') -# assert_that(response.GlueTableName).is_equal_to(table.GlueTableName) -# -# -# def test_start_table_profiling_unauthorized(client2, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# assert_that(start_dataset_profiling_run).raises(GqlError).when_called_with(client2, dataset_uri).contains( -# 'UnauthorizedOperation', 'PROFILE_DATASET_TABLE', dataset_uri -# ) -# -# -# def test_preview_table(client1, session_s3_dataset2_with_table): -# dataset, table = session_s3_dataset2_with_table -# table_uri = table.tableUri -# response = preview_table(client1, table_uri) -# assert_that(response.rows).exists() -# -# -# def test_preview_table_unauthorized(client2, session_s3_dataset2_with_table): -# dataset, table = session_s3_dataset2_with_table -# table_uri = table.tableUri -# # TODO: confidentiality levels -# assert_that(preview_table).raises(GqlError).when_called_with(client2, table_uri, {}).contains( -# 'UnauthorizedOperation', 'PREVIEW_DATASET_TABLE', table_uri -# ) -# -# -# def test_delete_table(client1, session_s3_dataset2_with_table): -# dataset, table = session_s3_dataset2_with_table -# # todo -# -# -# def test_delete_table_unauthorized(client2, session_s3_dataset2_with_table): -# dataset, table = session_s3_dataset2_with_table -# table_uri = table.tableUri -# assert_that(delete_table).raises(GqlError).when_called_with(client2, table_uri).contains( -# 'UnauthorizedOperation', 'DELETE_DATASET_TABLE', table_uri -# ) -# -# -# def test_create_folder(client1, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# response = create_folder( -# client1, datasetUri=dataset_uri, input={'prefix': 'folderCreatedInTest', 'label': 'labelFolder'} -# ) -# assert_that(response.S3Prefix).is_equal_to('folderCreatedInTest') -# assert_that(response.label).is_equal_to('labelFolder') -# -# -# def test_create_folder_unauthorized(client2, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# assert_that(create_folder).raises(GqlError).when_called_with(client2, dataset_uri, {}).contains( -# 'UnauthorizedOperation', 'CREATE_DATASET_FOLDER', dataset_uri -# ) -# -# -# def test_delete_folder(client1, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# location = create_folder( -# client1, datasetUri=dataset_uri, input={'prefix': 'folderToDelete', 'label': 'folderToDelete'} -# ) -# response = delete_folder(client1, location.locationUri) -# assert_that(response).is_equal_to(True) -# -# -# def test_delete_folder_unauthorized(client1, client2, session_s3_dataset1): -# dataset_uri = session_s3_dataset1.datasetUri -# location = create_folder( -# client1, datasetUri=dataset_uri, input={'prefix': 'folderToDelete', 'label': 'folderToDelete'} -# ) -# assert_that(delete_folder).raises(GqlError).when_called_with(client2, location.locationUri).contains( -# 'UnauthorizedOperation', 'DELETE_DATASET_FOLDER', location.locationUri -# ) From 601cb8ffcd0401394d259c9de05bc940e6726470 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 9 Jul 2024 10:48:35 -0400 Subject: [PATCH 28/34] ruff fix --- .../core/environment/global_conftest.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/tests_new/integration_tests/core/environment/global_conftest.py b/tests_new/integration_tests/core/environment/global_conftest.py index 8683c8655..05876ce81 100644 --- a/tests_new/integration_tests/core/environment/global_conftest.py +++ b/tests_new/integration_tests/core/environment/global_conftest.py @@ -153,21 +153,3 @@ def get_or_create_persistent_env(env_name, client, group, testdata): @pytest.fixture(scope='session') def persistent_env1(client1, group1, testdata): return get_or_create_persistent_env('persistent_env1', client1, group1, testdata) - - -@pytest.fixture(scope='session') -def persistent_env1_aws_client(persistent_env1): - try: - base_session = boto3.Session() - role_arn = f'arn:aws:iam::{persistent_env1.AwsAccountId}:role/dataall-integration-tests-role' - response = base_session.client('sts', region_name=persistent_env1.region).assume_role( - RoleArn=role_arn, RoleSessionName=role_arn.split('/')[1] - ) - yield boto3.Session( - aws_access_key_id=response['Credentials']['AccessKeyId'], - aws_secret_access_key=response['Credentials']['SecretAccessKey'], - aws_session_token=response['Credentials']['SessionToken'], - ) - except: - log.exception('Failed to assume environment integration test role') - raise From b8fd5062f3547be571a971cafb532e2a3ca82236 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 9 Jul 2024 11:00:49 -0400 Subject: [PATCH 29/34] PR Fixes --- deploy/stacks/param_store_stack.py | 2 +- tests_new/integration_tests/conftest.py | 1 - .../core/environment/global_conftest.py | 41 +++++++------------ .../{global_conftest.py => conftest.py} | 15 +------ .../modules/notebooks/queries.py | 1 + .../modules/notebooks/test_notebooks.py | 2 +- 6 files changed, 20 insertions(+), 42 deletions(-) rename tests_new/integration_tests/modules/notebooks/{global_conftest.py => conftest.py} (91%) diff --git a/deploy/stacks/param_store_stack.py b/deploy/stacks/param_store_stack.py index b7008f7da..5b351d120 100644 --- a/deploy/stacks/param_store_stack.py +++ b/deploy/stacks/param_store_stack.py @@ -125,7 +125,7 @@ def __init__( f'toolingAccountParam{envname}', parameter_name=f'/dataall/{envname}/toolingAccount', string_value=str(tooling_account_id), - description=f'Stores AWS account if for the tooling account that hosts the code for environment {envname}', + description=f'Store AWS account if for the tooling account that hosts the code for environment {envname}', ) if prod_sizing: diff --git a/tests_new/integration_tests/conftest.py b/tests_new/integration_tests/conftest.py index 83be09997..2ca8f5f5f 100644 --- a/tests_new/integration_tests/conftest.py +++ b/tests_new/integration_tests/conftest.py @@ -15,7 +15,6 @@ pytest_plugins = [ 'integration_tests.core.organizations.global_conftest', 'integration_tests.core.environment.global_conftest', - 'integration_tests.modules.notebooks.global_conftest', 'integration_tests.modules.s3_datasets.global_conftest', ] diff --git a/tests_new/integration_tests/core/environment/global_conftest.py b/tests_new/integration_tests/core/environment/global_conftest.py index 05876ce81..170cd07b5 100644 --- a/tests_new/integration_tests/core/environment/global_conftest.py +++ b/tests_new/integration_tests/core/environment/global_conftest.py @@ -51,17 +51,11 @@ def session_env1(client1, group1, org1, session_id, testdata): delete_env(client1, env) -@pytest.fixture(scope='session') -def session_env1_integration_role_arn(session_env1): - yield f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role-{session_env1.region}' - - -@pytest.fixture(scope='session') -def session_env1_aws_client(session_env1, session_id, session_env1_integration_role_arn): +def get_environment_aws_session(role_arn, env): try: base_session = boto3.Session() - response = base_session.client('sts', region_name=session_env1.region).assume_role( - RoleArn=session_env1_integration_role_arn, RoleSessionName=session_env1_integration_role_arn.split('/')[1] + response = base_session.client('sts', region_name=env.region).assume_role( + RoleArn=role_arn, RoleSessionName=role_arn.split('/')[1] ) yield boto3.Session( aws_access_key_id=response['Credentials']['AccessKeyId'], @@ -73,29 +67,24 @@ def session_env1_aws_client(session_env1, session_id, session_env1_integration_r raise +@pytest.fixture(scope='session') +def session_env1_integration_role_arn(session_env1): + yield f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role-{session_env1.region}' + + +@pytest.fixture(scope='session') +def session_env1_aws_client(session_env1, session_env1_integration_role_arn): + yield get_environment_aws_session(session_env1_integration_role_arn, session_env1) + + @pytest.fixture(scope='session') def persistent_env1_integration_role_arn(persistent_env1): yield f'arn:aws:iam::{persistent_env1.AwsAccountId}:role/dataall-integration-tests-role-{persistent_env1.region}' @pytest.fixture(scope='session') -def persistent_env1_aws_client(persistent_env1, session_id): - try: - base_session = boto3.Session() - role_arn = ( - f'arn:aws:iam::{persistent_env1.AwsAccountId}:role/dataall-integration-tests-role-{persistent_env1.region}' - ) - response = base_session.client('sts', region_name=persistent_env1.region).assume_role( - RoleArn=role_arn, RoleSessionName=role_arn.split('/')[1] - ) - yield boto3.Session( - aws_access_key_id=response['Credentials']['AccessKeyId'], - aws_secret_access_key=response['Credentials']['SecretAccessKey'], - aws_session_token=response['Credentials']['SessionToken'], - ) - except: - log.exception('Failed to assume environment integration test role') - raise +def persistent_env1_aws_client(persistent_env1, persistent_env1_integration_role_arn): + yield get_environment_aws_session(persistent_env1_integration_role_arn, persistent_env1) @pytest.fixture(scope='session') diff --git a/tests_new/integration_tests/modules/notebooks/global_conftest.py b/tests_new/integration_tests/modules/notebooks/conftest.py similarity index 91% rename from tests_new/integration_tests/modules/notebooks/global_conftest.py rename to tests_new/integration_tests/modules/notebooks/conftest.py index 1919a6fc2..efda06de7 100644 --- a/tests_new/integration_tests/modules/notebooks/global_conftest.py +++ b/tests_new/integration_tests/modules/notebooks/conftest.py @@ -9,15 +9,10 @@ delete_sagemaker_notebook, list_sagemaker_notebooks, ) -from integration_tests.core.stack.utils import check_stack_ready, check_stack_in_progress, wait_stack_delete_complete +from integration_tests.core.stack.utils import check_stack_ready, wait_stack_delete_complete from integration_tests.modules.notebooks.aws_clients import VpcClient -from dataall.base.utils.naming_convention import ( - NamingConventionService, - NamingConventionPattern, -) - log = logging.getLogger(__name__) @@ -82,14 +77,8 @@ def session_notebook1(client1, group1, session_env1, session_id, session_env1_aw finally: if notebook: delete_notebook(client1, session_env1['environmentUri'], notebook) - stack_name = NamingConventionService( - target_label='notebook', - target_uri=notebook.notebookUri, - pattern=NamingConventionPattern.DEFAULT, - resource_prefix=session_env1['resourcePrefix'], - ).build_compliant_name() wait_stack_delete_complete( - session_env1_aws_client.client('cloudformation', region_name=session_env1['region']), stack_name + session_env1_aws_client.client('cloudformation', region_name=session_env1['region']), notebook.stack.name ) vpc_client = VpcClient(session=session_env1_aws_client, region=session_env1['region']) diff --git a/tests_new/integration_tests/modules/notebooks/queries.py b/tests_new/integration_tests/modules/notebooks/queries.py index 40e639120..e8ee95a68 100644 --- a/tests_new/integration_tests/modules/notebooks/queries.py +++ b/tests_new/integration_tests/modules/notebooks/queries.py @@ -27,6 +27,7 @@ } stack { stack + name status stackUri targetUri diff --git a/tests_new/integration_tests/modules/notebooks/test_notebooks.py b/tests_new/integration_tests/modules/notebooks/test_notebooks.py index cad5ee18e..14a9b3c4c 100644 --- a/tests_new/integration_tests/modules/notebooks/test_notebooks.py +++ b/tests_new/integration_tests/modules/notebooks/test_notebooks.py @@ -83,7 +83,7 @@ def test_persistent_notebook_update(client1, persistent_notebook1): # TODO: Come up with better way to handle wait in progress if applicable # Use time.sleep() instead of poller b/c of case where no changes founds (i.e. no update required) # check_stack_in_progress(client1, env_uri, stack_uri) - time.sleep(20) + time.sleep(120) stack = check_stack_ready( client1, env_uri=env_uri, stack_uri=stack_uri, target_uri=notebook_uri, target_type=target_type From 77bb8db4a27238043a56080d5c04bd2134236d4d Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 9 Jul 2024 11:04:32 -0400 Subject: [PATCH 30/34] ruff --- tests_new/integration_tests/modules/notebooks/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests_new/integration_tests/modules/notebooks/conftest.py b/tests_new/integration_tests/modules/notebooks/conftest.py index efda06de7..f341bb191 100644 --- a/tests_new/integration_tests/modules/notebooks/conftest.py +++ b/tests_new/integration_tests/modules/notebooks/conftest.py @@ -78,7 +78,8 @@ def session_notebook1(client1, group1, session_env1, session_id, session_env1_aw if notebook: delete_notebook(client1, session_env1['environmentUri'], notebook) wait_stack_delete_complete( - session_env1_aws_client.client('cloudformation', region_name=session_env1['region']), notebook.stack.name + session_env1_aws_client.client('cloudformation', region_name=session_env1['region']), + notebook.stack.name, ) vpc_client = VpcClient(session=session_env1_aws_client, region=session_env1['region']) From 934d752719e520e2abb5f111ded62e4948fa28eb Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 9 Jul 2024 11:26:35 -0400 Subject: [PATCH 31/34] tighten IAM role --- .../core/environment/cdk/environment_stack.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index 2247969b2..0e31311da 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -624,7 +624,22 @@ def create_integration_tests_role(self): self.test_role.add_to_policy( iam.PolicyStatement( - actions=['ec2:Describe*', 'ec2:*Vpc', 'ec2:*Subnet', 'ec2:*Route*', 'ec2:*Tags'], + actions=['ec2:Describe*', 'ec2:*Vpc*', 'ec2:*Subnet*', 'ec2:*Route*', 'ec2:*Tags*'], + effect=iam.Effect.ALLOW, + resources=[ + 'arn:aws:ec2:*:139956106467:route-table/*', + 'arn:aws:ec2:*:139956106467:security-group/*', + 'arn:aws:ec2:*:139956106467:vpc/*', + 'arn:aws:ec2:*:139956106467:security-group-rule/*', + 'arn:aws:ec2:*:139956106467:subnet/*', + 'arn:aws:ec2:*:139956106467:network-acl/*', + ], + ), + ) + + self.test_role.add_to_policy( + iam.PolicyStatement( + actions=['ec2:Describe*'], effect=iam.Effect.ALLOW, resources=['*'], ), From 1de8a714d8bcd79e85cb53f7706ff6498b90c1c2 Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 9 Jul 2024 13:33:56 -0400 Subject: [PATCH 32/34] fix env session fixture --- .../core/environment/global_conftest.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests_new/integration_tests/core/environment/global_conftest.py b/tests_new/integration_tests/core/environment/global_conftest.py index 170cd07b5..b700afbeb 100644 --- a/tests_new/integration_tests/core/environment/global_conftest.py +++ b/tests_new/integration_tests/core/environment/global_conftest.py @@ -57,7 +57,7 @@ def get_environment_aws_session(role_arn, env): response = base_session.client('sts', region_name=env.region).assume_role( RoleArn=role_arn, RoleSessionName=role_arn.split('/')[1] ) - yield boto3.Session( + return boto3.Session( aws_access_key_id=response['Credentials']['AccessKeyId'], aws_secret_access_key=response['Credentials']['SecretAccessKey'], aws_session_token=response['Credentials']['SessionToken'], @@ -69,22 +69,22 @@ def get_environment_aws_session(role_arn, env): @pytest.fixture(scope='session') def session_env1_integration_role_arn(session_env1): - yield f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role-{session_env1.region}' + return f'arn:aws:iam::{session_env1.AwsAccountId}:role/dataall-integration-tests-role-{session_env1.region}' @pytest.fixture(scope='session') def session_env1_aws_client(session_env1, session_env1_integration_role_arn): - yield get_environment_aws_session(session_env1_integration_role_arn, session_env1) + return get_environment_aws_session(session_env1_integration_role_arn, session_env1) @pytest.fixture(scope='session') def persistent_env1_integration_role_arn(persistent_env1): - yield f'arn:aws:iam::{persistent_env1.AwsAccountId}:role/dataall-integration-tests-role-{persistent_env1.region}' + return f'arn:aws:iam::{persistent_env1.AwsAccountId}:role/dataall-integration-tests-role-{persistent_env1.region}' @pytest.fixture(scope='session') def persistent_env1_aws_client(persistent_env1, persistent_env1_integration_role_arn): - yield get_environment_aws_session(persistent_env1_integration_role_arn, persistent_env1) + return get_environment_aws_session(persistent_env1_integration_role_arn, persistent_env1) @pytest.fixture(scope='session') From 4cbb8bfcea4be9a299e9f272e382d86437938e2f Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 9 Jul 2024 13:35:19 -0400 Subject: [PATCH 33/34] fix retry --- tests_new/integration_tests/client.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests_new/integration_tests/client.py b/tests_new/integration_tests/client.py index 755595163..f92f6dbd5 100644 --- a/tests_new/integration_tests/client.py +++ b/tests_new/integration_tests/client.py @@ -14,8 +14,13 @@ def __init__(self, username, password): self.password = password self.token = self._get_jwt_token() + @staticmethod + def _retry_if_connection_error(exception): + """Return True if we should retry, False otherwise""" + return isinstance(exception, requests.exceptions.ConnectionError) or isinstance(exception, requests.ReadTimeout) + @retry( - exceptions=requests.exceptions.ConnectionError, + retry_on_exception=_retry_if_connection_error, stop_max_attempt_number=3, wait_random_min=1000, wait_random_max=3000, From 601695a223379ece468c31464fdb80f1b8c12bdc Mon Sep 17 00:00:00 2001 From: Noah Paige Date: Tue, 9 Jul 2024 14:33:48 -0400 Subject: [PATCH 34/34] Fix return and IAM role integ tests --- backend/dataall/core/environment/cdk/environment_stack.py | 8 ++++++++ tests_new/integration_tests/modules/notebooks/conftest.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/backend/dataall/core/environment/cdk/environment_stack.py b/backend/dataall/core/environment/cdk/environment_stack.py index 0e31311da..f0161f14b 100644 --- a/backend/dataall/core/environment/cdk/environment_stack.py +++ b/backend/dataall/core/environment/cdk/environment_stack.py @@ -644,3 +644,11 @@ def create_integration_tests_role(self): resources=['*'], ), ) + + self.test_role.add_to_policy( + iam.PolicyStatement( + actions=['cloudformation:Describe*'], + effect=iam.Effect.ALLOW, + resources=['arn:aws:cloudformation:*:139956106467:stack/*/*'], + ), + ) diff --git a/tests_new/integration_tests/modules/notebooks/conftest.py b/tests_new/integration_tests/modules/notebooks/conftest.py index f341bb191..975f621f0 100644 --- a/tests_new/integration_tests/modules/notebooks/conftest.py +++ b/tests_new/integration_tests/modules/notebooks/conftest.py @@ -154,7 +154,7 @@ def get_or_create_persistent_notebook(resource_name, client, group, env, session name=resource_name, ) if notebook.stack.status in ['CREATE_COMPLETE', 'UPDATE_COMPLETE']: - return env + return notebook else: delete_notebook(client, env['environmentUri'], notebook) raise RuntimeError(f'failed to create {resource_name=} {notebook=}')